{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/icFgbk4zSCyb7u8Qc5dC/jbVqSLGCpvcS2pvocMvr/A4XcfP5RJ.js", "ssg:https://framerusercontent.com/modules/2aNzZTXKgCd8HLUPmyYW/DON3t9pz3osBWr3F4961/FMigKw_lD.js", "ssg:https://framerusercontent.com/modules/PTB31TNwN2dvbxYqhK1g/XC7kU0l7HAy1RIzrK6BS/KCq4xg4O8.js", "ssg:https://framerusercontent.com/modules/xNZU2NGYch2LndxNkrun/odS71Mjh00ZeRGvtQQaf/Kpe75vavS.js", "ssg:https://framerusercontent.com/modules/S6G3ann6LjkoqeHNj4Tz/pVVh3jCojAovJQdsSKbs/mvRYPnMRg.js", "ssg:https://framerusercontent.com/modules/EdkkOSSbSzl8ktvPLl50/v9HeQ67pXinbYL3A4Scw/U6ehA4SeH.js", "ssg:https://framerusercontent.com/modules/dlrmAeZSSvlgNv5hroA1/uyXEADpyky23e56Rv31Q/CcUTg73IJ.js", "ssg:https://framerusercontent.com/modules/x5p1iiIu2Y4XP3nM484m/lbnPBwHd8I1rqVurJIFH/jZqF_RvJu.js", "ssg:https://framerusercontent.com/modules/3eWzH6VjyHY9DXpnAeIU/nPMrMaIHTX9V9v96Ldbl/FMigKw_lD.js", "ssg:https://framerusercontent.com/modules/5G5KSkzhgP1r39PVXh2s/m0sgza7IgPvAFO2i9Bht/Kpe75vavS.js", "ssg:https://framerusercontent.com/modules/7WA6EUs3yrC0171Tlthw/Q39ROGjWjnTXRwCcuXLL/M1JIXDsBo.js", "ssg:https://framerusercontent.com/modules/u1L8ZzPqb9lnLpTr7OQQ/FLG1DZMCYlrarqEEn6Wz/tjxCMrYEr.js", "ssg:https://framerusercontent.com/modules/xE6nJW4cVOi2A10IW5Cz/jvQP1xcvyssFy0KBf00S/tQSnISZ0J.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,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)`};/**\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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// 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[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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;startTransition(()=>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)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"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.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,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||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"TRAyx1RTM\",\"jfODZ0glS\"];const serializationHash=\"framer-CltfT\";const variantClassNames={jfODZ0glS:\"framer-v-6cocne\",TRAyx1RTM:\"framer-v-1ws0kip\"};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:400,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??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={Image:\"jfODZ0glS\",Text:\"TRAyx1RTM\"};const getProps=({height,id,image,title,width,...props})=>{return{...props,jbD4_zMby:title??props.jbD4_zMby??\"Get Started Now\",tdBmuUbA2:image??props.tdBmuUbA2,variant:humanReadableVariantMap[props.variant]??props.variant??\"TRAyx1RTM\"};};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,jbD4_zMby,tdBmuUbA2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TRAyx1RTM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"jfODZ0glS\")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,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ws0kip\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"TRAyx1RTM\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{jfODZ0glS:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({jfODZ0glS:{\"data-framer-name\":\"Image\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(tdBmuUbA2)}}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255)))\"},children:\"Get Started Now\"})}),className:\"framer-1yqtnzb\",\"data-framer-name\":\"Get Started\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"t_PeFagde\",style:{\"--extracted-1of0zx5\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:jbD4_zMby,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CltfT.framer-1shkikl, .framer-CltfT .framer-1shkikl { display: block; }\",\".framer-CltfT.framer-1ws0kip { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 30px 20px 30px; position: relative; width: min-content; }\",\".framer-CltfT .framer-1yqtnzb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CltfT.framer-1ws0kip { gap: 0px; } .framer-CltfT.framer-1ws0kip > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-CltfT.framer-1ws0kip > :first-child { margin-left: 0px; } .framer-CltfT.framer-1ws0kip > :last-child { margin-right: 0px; } }\",\".framer-CltfT.framer-v-6cocne.framer-1ws0kip { height: 87px; width: 400px; }\",'.framer-CltfT[data-border=\"true\"]::after, .framer-CltfT [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 107\n * @framerIntrinsicWidth 459.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"jfODZ0glS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"jbD4_zMby\":\"title\",\"tdBmuUbA2\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerA4XcfP5RJ=withCSS(Component,css,\"framer-CltfT\");export default FramerA4XcfP5RJ;FramerA4XcfP5RJ.displayName=\"Pill\";FramerA4XcfP5RJ.defaultProps={height:107,width:459.5};addPropertyControls(FramerA4XcfP5RJ,{variant:{options:[\"TRAyx1RTM\",\"jfODZ0glS\"],optionTitles:[\"Text\",\"Image\"],title:\"Variant\",type:ControlType.Enum},jbD4_zMby:{defaultValue:\"Get Started Now\",displayTextArea:false,title:\"Title\",type:ControlType.String},tdBmuUbA2:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerA4XcfP5RJ,[{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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA4XcfP5RJ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jfODZ0glS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"jbD4_zMby\\\":\\\"title\\\",\\\"tdBmuUbA2\\\":\\\"image\\\"}\",\"framerIntrinsicWidth\":\"459.5\",\"framerIntrinsicHeight\":\"107\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./A4XcfP5RJ.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={UTs_672Uo:{hover:true},yYsnouhay:{hover:true}};const cycleOrder=[\"UTs_672Uo\",\"yYsnouhay\"];const serializationHash=\"framer-BOZiy\";const variantClassNames={UTs_672Uo:\"framer-v-rohs2x\",yYsnouhay:\"framer-v-1rv7fjg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Left:\"yYsnouhay\",Right:\"UTs_672Uo\"};const getProps=({click,height,id,width,...props})=>{return{...props,Jh_gzM42k:click??props.Jh_gzM42k,variant:humanReadableVariantMap[props.variant]??props.variant??\"UTs_672Uo\"};};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,Jh_gzM42k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UTs_672Uo\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1c133ht=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Jh_gzM42k){const res=await Jh_gzM42k(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-rohs2x\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UTs_672Uo\",onTap:onTap1c133ht,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(72, 72, 72)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-98825ee3-a1da-4904-b59a-1db9a410a99c, rgba(255, 255, 255, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"UTs_672Uo-hover\":{\"--border-color\":\"rgba(33, 33, 33, 0)\",backgroundColor:\"var(--token-30fad490-24e5-4b89-b74d-9cd079bddd06, rgba(54, 124, 255, 0.9))\"},\"yYsnouhay-hover\":{\"--border-color\":\"rgba(33, 33, 33, 0)\",backgroundColor:\"var(--token-30fad490-24e5-4b89-b74d-9cd079bddd06, rgba(54, 124, 255, 0.9))\"}},...addPropertyOverrides({\"UTs_672Uo-hover\":{\"data-framer-name\":undefined},\"yYsnouhay-hover\":{\"data-framer-name\":undefined},yYsnouhay:{\"data-framer-name\":\"Left\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1my8dhd\",\"data-framer-name\":\"Line Rounded/Arrow Left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"txMOszEa0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10283547255,withExternalLayout:true,...addPropertyOverrides({\"UTs_672Uo-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12167238473},\"yYsnouhay-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12131253270},yYsnouhay:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9330468030}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BOZiy.framer-hhq7t2, .framer-BOZiy .framer-hhq7t2 { display: block; }\",\".framer-BOZiy.framer-rohs2x { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BOZiy .framer-1my8dhd { flex: none; height: 29px; position: relative; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BOZiy.framer-rohs2x { gap: 0px; } .framer-BOZiy.framer-rohs2x > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BOZiy.framer-rohs2x > :first-child { margin-left: 0px; } .framer-BOZiy.framer-rohs2x > :last-child { margin-right: 0px; } }\",\".framer-BOZiy.framer-v-1rv7fjg.framer-rohs2x, .framer-BOZiy.framer-v-rohs2x.hover.framer-rohs2x { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); }\",'.framer-BOZiy[data-border=\"true\"]::after, .framer-BOZiy [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yYsnouhay\":{\"layout\":[\"fixed\",\"fixed\"]},\"KeLjx9V4L\":{\"layout\":[\"fixed\",\"fixed\"]},\"O_ojSyzL2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Jh_gzM42k\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFMigKw_lD=withCSS(Component,css,\"framer-BOZiy\");export default FramerFMigKw_lD;FramerFMigKw_lD.displayName=\"Components/Button Arrow\";FramerFMigKw_lD.defaultProps={height:64,width:64};addPropertyControls(FramerFMigKw_lD,{variant:{options:[\"UTs_672Uo\",\"yYsnouhay\"],optionTitles:[\"Right\",\"Left\"],title:\"Variant\",type:ControlType.Enum},Jh_gzM42k:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerFMigKw_lD,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFMigKw_lD\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yYsnouhay\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KeLjx9V4L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O_ojSyzL2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"64\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerVariables\":\"{\\\"Jh_gzM42k\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FMigKw_lD.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={M47JTUjQi:{hover:true},yBYsdzX8y:{hover:true}};const cycleOrder=[\"M47JTUjQi\",\"yBYsdzX8y\"];const serializationHash=\"framer-F4yIW\";const variantClassNames={M47JTUjQi:\"framer-v-1muw6ut\",yBYsdzX8y:\"framer-v-1ue286p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Left:\"yBYsdzX8y\",Right:\"M47JTUjQi\"};const getProps=({click,height,id,width,...props})=>{return{...props,Jh_gzM42k:click??props.Jh_gzM42k,variant:humanReadableVariantMap[props.variant]??props.variant??\"M47JTUjQi\"};};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,Jh_gzM42k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"M47JTUjQi\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1c133ht=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Jh_gzM42k){const res=await Jh_gzM42k(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1muw6ut\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"M47JTUjQi\",onTap:onTap1c133ht,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-98825ee3-a1da-4904-b59a-1db9a410a99c, rgba(255, 255, 255, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"M47JTUjQi-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75))\"},\"yBYsdzX8y-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75))\"}},...addPropertyOverrides({\"M47JTUjQi-hover\":{\"data-framer-name\":undefined},\"yBYsdzX8y-hover\":{\"data-framer-name\":undefined},yBYsdzX8y:{\"data-framer-name\":\"Left\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z291rz\",\"data-framer-name\":\"Line Rounded/Arrow Left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"mOfSbELGx\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, rgb(19, 24, 47))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10307829178,withExternalLayout:true,...addPropertyOverrides({\"M47JTUjQi-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12167238473},\"yBYsdzX8y-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12131253270},yBYsdzX8y:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, rgb(19, 24, 47))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11474393931}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-F4yIW.framer-1tajdy6, .framer-F4yIW .framer-1tajdy6 { display: block; }\",\".framer-F4yIW.framer-1muw6ut { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-F4yIW .framer-z291rz { flex: none; height: 29px; position: relative; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-F4yIW.framer-1muw6ut { gap: 0px; } .framer-F4yIW.framer-1muw6ut > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-F4yIW.framer-1muw6ut > :first-child { margin-left: 0px; } .framer-F4yIW.framer-1muw6ut > :last-child { margin-right: 0px; } }\",\".framer-F4yIW.framer-v-1ue286p.framer-1muw6ut, .framer-F4yIW.framer-v-1muw6ut.hover.framer-1muw6ut { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); }\",'.framer-F4yIW[data-border=\"true\"]::after, .framer-F4yIW [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yBYsdzX8y\":{\"layout\":[\"fixed\",\"fixed\"]},\"D6NCUNECm\":{\"layout\":[\"fixed\",\"fixed\"]},\"zEXiv6TuS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Jh_gzM42k\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKCq4xg4O8=withCSS(Component,css,\"framer-F4yIW\");export default FramerKCq4xg4O8;FramerKCq4xg4O8.displayName=\"Components/Button Arrow 4\";FramerKCq4xg4O8.defaultProps={height:64,width:64};addPropertyControls(FramerKCq4xg4O8,{variant:{options:[\"M47JTUjQi\",\"yBYsdzX8y\"],optionTitles:[\"Right\",\"Left\"],title:\"Variant\",type:ControlType.Enum},Jh_gzM42k:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerKCq4xg4O8,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKCq4xg4O8\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yBYsdzX8y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D6NCUNECm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zEXiv6TuS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"64\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"64\",\"framerVariables\":\"{\\\"Jh_gzM42k\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KCq4xg4O8.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={m9EV1ss57:{hover:true},w387_BPqm:{hover:true}};const cycleOrder=[\"m9EV1ss57\",\"w387_BPqm\"];const serializationHash=\"framer-435AB\";const variantClassNames={m9EV1ss57:\"framer-v-wwdqf\",w387_BPqm:\"framer-v-1b0fu5p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Left:\"w387_BPqm\",Right:\"m9EV1ss57\"};const getProps=({click,height,id,width,...props})=>{return{...props,Jh_gzM42k:click??props.Jh_gzM42k,variant:humanReadableVariantMap[props.variant]??props.variant??\"m9EV1ss57\"};};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,Jh_gzM42k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"m9EV1ss57\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1c133ht=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Jh_gzM42k){const res=await Jh_gzM42k(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wwdqf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"m9EV1ss57\",onTap:onTap1c133ht,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(72, 72, 72)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-98825ee3-a1da-4904-b59a-1db9a410a99c, rgba(255, 255, 255, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"m9EV1ss57-hover\":{\"--border-color\":\"rgba(33, 33, 33, 0)\",backgroundColor:\"var(--token-30fad490-24e5-4b89-b74d-9cd079bddd06, rgba(54, 124, 255, 0.9))\"},\"w387_BPqm-hover\":{\"--border-color\":\"rgba(71, 71, 71, 0)\",backgroundColor:\"var(--token-30fad490-24e5-4b89-b74d-9cd079bddd06, rgba(54, 124, 255, 0.9))\"}},...addPropertyOverrides({\"m9EV1ss57-hover\":{\"data-framer-name\":undefined},\"w387_BPqm-hover\":{\"data-framer-name\":undefined},w387_BPqm:{\"data-framer-name\":\"Left\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12konig\",\"data-framer-name\":\"Line Rounded/Arrow Left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xZj_njmr5\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11654014578,withExternalLayout:true,...addPropertyOverrides({\"m9EV1ss57-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10633662816},\"w387_BPqm-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12500656086},w387_BPqm:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10962306008}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-435AB.framer-1lvhscz, .framer-435AB .framer-1lvhscz { display: block; }\",\".framer-435AB.framer-wwdqf { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-435AB .framer-12konig { flex: none; height: 29px; position: relative; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-435AB.framer-wwdqf { gap: 0px; } .framer-435AB.framer-wwdqf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-435AB.framer-wwdqf > :first-child { margin-left: 0px; } .framer-435AB.framer-wwdqf > :last-child { margin-right: 0px; } }\",\".framer-435AB.framer-v-1b0fu5p.framer-wwdqf, .framer-435AB.framer-v-wwdqf.hover.framer-wwdqf { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); }\",'.framer-435AB[data-border=\"true\"]::after, .framer-435AB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"w387_BPqm\":{\"layout\":[\"fixed\",\"fixed\"]},\"x034ENuti\":{\"layout\":[\"fixed\",\"fixed\"]},\"X0zxPIfLA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Jh_gzM42k\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKpe75vavS=withCSS(Component,css,\"framer-435AB\");export default FramerKpe75vavS;FramerKpe75vavS.displayName=\"Components/Button Arrow 2\";FramerKpe75vavS.defaultProps={height:64,width:64};addPropertyControls(FramerKpe75vavS,{variant:{options:[\"m9EV1ss57\",\"w387_BPqm\"],optionTitles:[\"Right\",\"Left\"],title:\"Variant\",type:ControlType.Enum},Jh_gzM42k:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerKpe75vavS,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKpe75vavS\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"64\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"w387_BPqm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x034ENuti\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X0zxPIfLA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Jh_gzM42k\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"64\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Kpe75vavS.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}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/o8Z6lgEcj1kFrxqgxbcE/tIT5Jh5kaVwrR9n6DFOr/MI023BdDN.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vNoEPi5O8YgN8zypsJRK/OgwY2lemwkIVCFgyRAm7/p60gJ_6qa.js\";const cycleOrder=[\"jllvw1VvN\",\"dbJEtpuIl\",\"SSgb65evY\"];const serializationHash=\"framer-qm1nf\";const variantClassNames={dbJEtpuIl:\"framer-v-10qtzou\",jllvw1VvN:\"framer-v-j21pls\",SSgb65evY:\"framer-v-xqt03b\"};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 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:\"jllvw1VvN\",Phone:\"SSgb65evY\",Tablet:\"dbJEtpuIl\"};const getProps=({height,id,nameYear,title,width,...props})=>{return{...props,i1MCaDK9o:title??props.i1MCaDK9o??\"\u201CThe care and service is exceptional\u201D\",R_CIJ3P8p:nameYear??props.R_CIJ3P8p??\"John Carter,\",variant:humanReadableVariantMap[props.variant]??props.variant??\"jllvw1VvN\"};};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,i1MCaDK9o,R_CIJ3P8p,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jllvw1VvN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapipjzao=activeVariantCallback(async(...args)=>{setVariant(\"jllvw1VvN\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-j21pls\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"jllvw1VvN\",ref:refBinding,style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({dbJEtpuIl:{\"data-framer-name\":\"Tablet\"},SSgb65evY:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rehby9\",layoutDependency:layoutDependency,layoutId:\"GPWt5tBPm\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f7bxzs\",\"data-framer-name\":\"Details Wrapper\",layoutDependency:layoutDependency,layoutId:\"DEIkk20s9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ve0goa\",\"data-styles-preset\":\"MI023BdDN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31)))\"},children:\"John Carter,\"})}),className:\"framer-1jv843b\",\"data-framer-name\":\"Name\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GqZFsfUjU\",onTap:onTapipjzao,style:{\"--extracted-r6o4lv\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},text:R_CIJ3P8p,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SSgb65evY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ve0goa\",\"data-styles-preset\":\"MI023BdDN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31)))\"},children:\"John Carter,\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vxu1on\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"KHDRRBr91\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1j0j7r1\",\"data-styles-preset\":\"p60gJ_6qa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31)))\"},children:\"\u201CThe care and service is exceptional\u201D\"})}),className:\"framer-1w7lswk\",\"data-framer-name\":\"Heading H3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nuJdohrcW\",style:{\"--extracted-a0htzi\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},text:i1MCaDK9o,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qm1nf.framer-1xqm4ab, .framer-qm1nf .framer-1xqm4ab { display: block; }\",\".framer-qm1nf.framer-j21pls { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 512px; justify-content: center; overflow: visible; padding: 56px 72px 56px 72px; position: relative; width: 908px; }\",\".framer-qm1nf .framer-1rehby9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-qm1nf .framer-1f7bxzs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qm1nf .framer-1jv843b { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qm1nf .framer-vxu1on { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qm1nf .framer-1w7lswk { 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-qm1nf.framer-j21pls, .framer-qm1nf .framer-1rehby9, .framer-qm1nf .framer-1f7bxzs, .framer-qm1nf .framer-vxu1on { gap: 0px; } .framer-qm1nf.framer-j21pls > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-qm1nf.framer-j21pls > :first-child, .framer-qm1nf .framer-vxu1on > :first-child { margin-top: 0px; } .framer-qm1nf.framer-j21pls > :last-child, .framer-qm1nf .framer-vxu1on > :last-child { margin-bottom: 0px; } .framer-qm1nf .framer-1rehby9 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-qm1nf .framer-1rehby9 > :first-child, .framer-qm1nf .framer-1f7bxzs > :first-child { margin-left: 0px; } .framer-qm1nf .framer-1rehby9 > :last-child, .framer-qm1nf .framer-1f7bxzs > :last-child { margin-right: 0px; } .framer-qm1nf .framer-1f7bxzs > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-qm1nf .framer-vxu1on > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\".framer-qm1nf.framer-v-10qtzou.framer-j21pls { width: 810px; }\",\".framer-qm1nf.framer-v-xqt03b.framer-j21pls { gap: 24px; height: min-content; padding: 40px 24px 40px 24px; width: 390px; }\",\".framer-qm1nf.framer-v-xqt03b .framer-1rehby9 { flex-direction: column; gap: 12px; justify-content: center; }\",\".framer-qm1nf.framer-v-xqt03b .framer-1f7bxzs { align-content: center; align-items: center; justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qm1nf.framer-v-xqt03b.framer-j21pls, .framer-qm1nf.framer-v-xqt03b .framer-1rehby9 { gap: 0px; } .framer-qm1nf.framer-v-xqt03b.framer-j21pls > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-qm1nf.framer-v-xqt03b.framer-j21pls > :first-child, .framer-qm1nf.framer-v-xqt03b .framer-1rehby9 > :first-child { margin-top: 0px; } .framer-qm1nf.framer-v-xqt03b.framer-j21pls > :last-child, .framer-qm1nf.framer-v-xqt03b .framer-1rehby9 > :last-child { margin-bottom: 0px; } .framer-qm1nf.framer-v-xqt03b .framer-1rehby9 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 512\n * @framerIntrinsicWidth 908\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dbJEtpuIl\":{\"layout\":[\"fixed\",\"fixed\"]},\"SSgb65evY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"i1MCaDK9o\":\"title\",\"R_CIJ3P8p\":\"nameYear\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermvRYPnMRg=withCSS(Component,css,\"framer-qm1nf\");export default FramermvRYPnMRg;FramermvRYPnMRg.displayName=\"Page Components/Testimonials Card V2\";FramermvRYPnMRg.defaultProps={height:512,width:908};addPropertyControls(FramermvRYPnMRg,{variant:{options:[\"jllvw1VvN\",\"dbJEtpuIl\",\"SSgb65evY\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},i1MCaDK9o:{defaultValue:\"\u201CThe care and service is exceptional\u201D\",displayTextArea:false,title:\"Title\",type:ControlType.String},R_CIJ3P8p:{defaultValue:\"John Carter,\",displayTextArea:false,title:\"Name + Year\",type:ControlType.String}});addFonts(FramermvRYPnMRg,[{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\":\"FramermvRYPnMRg\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dbJEtpuIl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SSgb65evY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"908\",\"framerIntrinsicHeight\":\"512\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"i1MCaDK9o\\\":\\\"title\\\",\\\"R_CIJ3P8p\\\":\\\"nameYear\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={eBApK9leJ:{hover:true},lznzEJDT3:{hover:true}};const cycleOrder=[\"eBApK9leJ\",\"lznzEJDT3\"];const serializationHash=\"framer-QtEOI\";const variantClassNames={eBApK9leJ:\"framer-v-zkldwo\",lznzEJDT3:\"framer-v-y1xtu9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Left:\"lznzEJDT3\",Right:\"eBApK9leJ\"};const getProps=({click,height,id,width,...props})=>{return{...props,Jh_gzM42k:click??props.Jh_gzM42k,variant:humanReadableVariantMap[props.variant]??props.variant??\"eBApK9leJ\"};};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,Jh_gzM42k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eBApK9leJ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1c133ht=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Jh_gzM42k){const res=await Jh_gzM42k(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-zkldwo\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"eBApK9leJ\",onTap:onTap1c133ht,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-98825ee3-a1da-4904-b59a-1db9a410a99c, rgba(255, 255, 255, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"eBApK9leJ-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75))\"},\"lznzEJDT3-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75))\"}},...addPropertyOverrides({\"eBApK9leJ-hover\":{\"data-framer-name\":undefined},\"lznzEJDT3-hover\":{\"data-framer-name\":undefined},lznzEJDT3:{\"data-framer-name\":\"Left\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ocfl61\",\"data-framer-name\":\"Line Rounded/Arrow Left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BTnRfytnq\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, rgb(19, 24, 47))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10307829178,withExternalLayout:true,...addPropertyOverrides({\"eBApK9leJ-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12167238473},\"lznzEJDT3-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12131253270},lznzEJDT3:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-08e9a936-5377-467b-a768-f5b9eadbc411, rgb(19, 24, 47))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11474393931}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QtEOI.framer-18znelz, .framer-QtEOI .framer-18znelz { display: block; }\",\".framer-QtEOI.framer-zkldwo { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QtEOI .framer-1ocfl61 { flex: none; height: 29px; position: relative; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QtEOI.framer-zkldwo { gap: 0px; } .framer-QtEOI.framer-zkldwo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QtEOI.framer-zkldwo > :first-child { margin-left: 0px; } .framer-QtEOI.framer-zkldwo > :last-child { margin-right: 0px; } }\",\".framer-QtEOI.framer-v-y1xtu9.framer-zkldwo, .framer-QtEOI.framer-v-zkldwo.hover.framer-zkldwo { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); }\",'.framer-QtEOI[data-border=\"true\"]::after, .framer-QtEOI [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"lznzEJDT3\":{\"layout\":[\"fixed\",\"fixed\"]},\"ef37RHASL\":{\"layout\":[\"fixed\",\"fixed\"]},\"lD1cgWW1u\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Jh_gzM42k\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerU6ehA4SeH=withCSS(Component,css,\"framer-QtEOI\");export default FramerU6ehA4SeH;FramerU6ehA4SeH.displayName=\"Components/Button Arrow 3\";FramerU6ehA4SeH.defaultProps={height:64,width:64};addPropertyControls(FramerU6ehA4SeH,{variant:{options:[\"eBApK9leJ\",\"lznzEJDT3\"],optionTitles:[\"Right\",\"Left\"],title:\"Variant\",type:ControlType.Enum},Jh_gzM42k:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerU6ehA4SeH,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerU6ehA4SeH\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"Jh_gzM42k\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lznzEJDT3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ef37RHASL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lD1cgWW1u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"64\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./U6ehA4SeH.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ComponentsButtonArrow from\"https://framerusercontent.com/modules/2aNzZTXKgCd8HLUPmyYW/DON3t9pz3osBWr3F4961/FMigKw_lD.js\";import ComponentsButtonArrow4 from\"https://framerusercontent.com/modules/PTB31TNwN2dvbxYqhK1g/XC7kU0l7HAy1RIzrK6BS/KCq4xg4O8.js\";import ComponentsButtonArrow2 from\"https://framerusercontent.com/modules/xNZU2NGYch2LndxNkrun/odS71Mjh00ZeRGvtQQaf/Kpe75vavS.js\";import PageComponentsTestimonialsCardV2 from\"https://framerusercontent.com/modules/S6G3ann6LjkoqeHNj4Tz/pVVh3jCojAovJQdsSKbs/mvRYPnMRg.js\";import ComponentsButtonArrow3 from\"https://framerusercontent.com/modules/EdkkOSSbSzl8ktvPLl50/v9HeQ67pXinbYL3A4Scw/U6ehA4SeH.js\";const PageComponentsTestimonialsCardV2Fonts=getFonts(PageComponentsTestimonialsCardV2);const ComponentsButtonArrowFonts=getFonts(ComponentsButtonArrow);const ComponentsButtonArrow2Fonts=getFonts(ComponentsButtonArrow2);const ComponentsButtonArrow3Fonts=getFonts(ComponentsButtonArrow3);const ComponentsButtonArrow4Fonts=getFonts(ComponentsButtonArrow4);const cycleOrder=[\"AhF1v8ksX\",\"H06CJ55ik\",\"vlRxfDYMs\",\"krZRNPb8n\",\"W_4KjGgBW\",\"NLSTw5238\",\"aQIGD9p6W\",\"a1ePcmkGJ\",\"ncsDn6gYg\"];const serializationHash=\"framer-Jv6y1\";const variantClassNames={a1ePcmkGJ:\"framer-v-e81u77\",AhF1v8ksX:\"framer-v-1qks5dk\",aQIGD9p6W:\"framer-v-1xsw4y3\",H06CJ55ik:\"framer-v-bpxkk1\",krZRNPb8n:\"framer-v-ozck1\",ncsDn6gYg:\"framer-v-m69zp2\",NLSTw5238:\"framer-v-17p9kqy\",vlRxfDYMs:\"framer-v-874z69\",W_4KjGgBW:\"framer-v-kslzwq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.6,type:\"spring\"};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/Slider 01\":\"AhF1v8ksX\",\"Desktop/Slider 02\":\"H06CJ55ik\",\"Desktop/Slider 03\":\"vlRxfDYMs\",\"Phone/Slider 01\":\"aQIGD9p6W\",\"Phone/Slider 02\":\"a1ePcmkGJ\",\"Phone/Slider 03\":\"ncsDn6gYg\",\"Tablet/Slider 01\":\"krZRNPb8n\",\"Tablet/Slider 02\":\"W_4KjGgBW\",\"Tablet/Slider 03\":\"NLSTw5238\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"AhF1v8ksX\"};};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:\"AhF1v8ksX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Jh_gzM42k1ko71s4=activeVariantCallback(async(...args)=>{setVariant(\"vlRxfDYMs\");});const Jh_gzM42k1xc7s4r=activeVariantCallback(async(...args)=>{setVariant(\"AhF1v8ksX\");});const Jh_gzM42kmxmzxt=activeVariantCallback(async(...args)=>{setVariant(\"H06CJ55ik\");});const Jh_gzM42keg7x66=activeVariantCallback(async(...args)=>{setVariant(\"NLSTw5238\");});const Jh_gzM42kt5y0t1=activeVariantCallback(async(...args)=>{setVariant(\"krZRNPb8n\");});const Jh_gzM42k11uli68=activeVariantCallback(async(...args)=>{setVariant(\"W_4KjGgBW\");});const Jh_gzM42k1e6hpgu=activeVariantCallback(async(...args)=>{setVariant(\"ncsDn6gYg\");});const Jh_gzM42kr2rgsk=activeVariantCallback(async(...args)=>{setVariant(\"aQIGD9p6W\");});const Jh_gzM42k10nbrxl=activeVariantCallback(async(...args)=>{setVariant(\"a1ePcmkGJ\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"aQIGD9p6W\",\"a1ePcmkGJ\",\"ncsDn6gYg\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"aQIGD9p6W\",\"a1ePcmkGJ\",\"ncsDn6gYg\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-1qks5dk\",className,classNames),\"data-framer-name\":\"Desktop/Slider 01\",layoutDependency:layoutDependency,layoutId:\"AhF1v8ksX\",ref:refBinding,style:{backgroundColor:\"var(--token-31918e0b-f62b-419f-989f-48a6ef2ed204, rgb(255, 248, 240))\",...style},...addPropertyOverrides({a1ePcmkGJ:{\"data-framer-name\":\"Phone/Slider 02\"},aQIGD9p6W:{\"data-framer-name\":\"Phone/Slider 01\"},H06CJ55ik:{\"data-framer-name\":\"Desktop/Slider 02\"},krZRNPb8n:{\"data-framer-name\":\"Tablet/Slider 01\"},ncsDn6gYg:{\"data-framer-name\":\"Phone/Slider 03\"},NLSTw5238:{\"data-framer-name\":\"Tablet/Slider 03\"},vlRxfDYMs:{\"data-framer-name\":\"Desktop/Slider 03\"},W_4KjGgBW:{\"data-framer-name\":\"Tablet/Slider 02\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:512,width:`min(${componentViewport?.width||\"100vw\"}, 990px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||576)-0-576)/1*0),...addPropertyOverrides({a1ePcmkGJ:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||971)-0-576)/1*0)},aQIGD9p6W:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||747)-0-576)/1*0)},ncsDn6gYg:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||747)-0-576)/1*0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2hd2eu-container\",layoutDependency:layoutDependency,layoutId:\"RUCr7ZVP8-container\",nodeId:\"RUCr7ZVP8\",rendersWithMotion:true,scopeId:\"CcUTg73IJ\",children:/*#__PURE__*/_jsx(PageComponentsTestimonialsCardV2,{height:\"100%\",i1MCaDK9o:'\"Thank you so very much for awarding us this grant. We appreciate the foundation\u2019s generosity, thoughtfulness, and consideration.\"',id:\"RUCr7ZVP8\",layoutId:\"RUCr7ZVP8\",R_CIJ3P8p:\"Annalise Koprowski, 2025 Grant Recipient\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"jllvw1VvN\",width:\"100%\",...addPropertyOverrides({a1ePcmkGJ:{i1MCaDK9o:'\u201COh my goodness thank you!! This means so much to my family and I .. It will absolutely help take some of the burden of Charlotte\u2019s mounting hospital bills off of her father and I. What your organization does is an absolute blessing.\"',R_CIJ3P8p:\"Charlotte Hoskins, 2023 Grant Recipient\",variant:\"SSgb65evY\"},aQIGD9p6W:{variant:\"SSgb65evY\"},H06CJ55ik:{i1MCaDK9o:'\u201COh my goodness thank you!! This means so much to my family and I .. It will absolutely help take some of the burden of Charlotte\u2019s mounting hospital bills off of her father and I. What your organization does is an absolute blessing.\"',R_CIJ3P8p:\"Charlotte Hoskins, 2023 Grant Recipient\"},krZRNPb8n:{variant:\"dbJEtpuIl\"},ncsDn6gYg:{i1MCaDK9o:'\"Thank you so much for all of your help and support so far. Hearing you say that I shouldn\u2019t let diabetes steal my joy meant more than you will know.\"',R_CIJ3P8p:\"Cole Cooper, 2020 Grant Recipient\",variant:\"SSgb65evY\"},NLSTw5238:{i1MCaDK9o:'\"Thank you so much for all of your help and support so far. Hearing you say that I shouldn\u2019t let diabetes steal my joy meant more than you will know.\"',R_CIJ3P8p:\"Cole Cooper, 2020 Grant Recipient\",variant:\"dbJEtpuIl\"},vlRxfDYMs:{i1MCaDK9o:'\"Thank you so much for all of your help and support so far. Hearing you say that I shouldn\u2019t let diabetes steal my joy meant more than you will know.\"',R_CIJ3P8p:\"Cole Cooper, 2020 Grant Recipient\"},W_4KjGgBW:{i1MCaDK9o:'\u201COh my goodness thank you!! This means so much to my family and I .. It will absolutely help take some of the burden of Charlotte\u2019s mounting hospital bills off of her father and I. What your organization does is an absolute blessing.\"',R_CIJ3P8p:\"Charlotte Hoskins, 2023 Grant Recipient\",variant:\"dbJEtpuIl\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15ku58u\",layoutDependency:layoutDependency,layoutId:\"tbn3Xiryf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+(0+512+((componentViewport?.height||576)-0-576)/1*1)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6noayc-container\",layoutDependency:layoutDependency,layoutId:\"foQqyzOER-container\",nodeId:\"foQqyzOER\",rendersWithMotion:true,scopeId:\"CcUTg73IJ\",children:/*#__PURE__*/_jsx(ComponentsButtonArrow,{height:\"100%\",id:\"foQqyzOER\",Jh_gzM42k:Jh_gzM42k1ko71s4,layoutId:\"foQqyzOER\",style:{height:\"100%\",width:\"100%\"},variant:\"yYsnouhay\",width:\"100%\",...addPropertyOverrides({H06CJ55ik:{Jh_gzM42k:Jh_gzM42k1xc7s4r},krZRNPb8n:{Jh_gzM42k:Jh_gzM42keg7x66},NLSTw5238:{Jh_gzM42k:Jh_gzM42k11uli68},vlRxfDYMs:{Jh_gzM42k:Jh_gzM42kmxmzxt},W_4KjGgBW:{Jh_gzM42k:Jh_gzM42kt5y0t1}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+(0+512+((componentViewport?.height||576)-0-576)/1*1)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kcndu5-container\",layoutDependency:layoutDependency,layoutId:\"LSV3CMnXR-container\",nodeId:\"LSV3CMnXR\",rendersWithMotion:true,scopeId:\"CcUTg73IJ\",children:/*#__PURE__*/_jsx(ComponentsButtonArrow2,{height:\"100%\",id:\"LSV3CMnXR\",Jh_gzM42k:Jh_gzM42kmxmzxt,layoutId:\"LSV3CMnXR\",style:{height:\"100%\",width:\"100%\"},variant:\"m9EV1ss57\",width:\"100%\",...addPropertyOverrides({H06CJ55ik:{Jh_gzM42k:Jh_gzM42k1ko71s4},krZRNPb8n:{Jh_gzM42k:Jh_gzM42k11uli68},NLSTw5238:{Jh_gzM42k:Jh_gzM42kt5y0t1},vlRxfDYMs:{Jh_gzM42k:Jh_gzM42k1xc7s4r},W_4KjGgBW:{Jh_gzM42k:Jh_gzM42keg7x66}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xpz7gt\",\"data-framer-name\":\"Buttons Row Phone\",layoutDependency:layoutDependency,layoutId:\"skbCQDsL8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",...addPropertyOverrides({a1ePcmkGJ:{y:(componentViewport?.y||0)+0+(0+512+((componentViewport?.height||971)-0-576)/1*1)+0},aQIGD9p6W:{y:(componentViewport?.y||0)+0+(0+512+((componentViewport?.height||747)-0-576)/1*1)+0},ncsDn6gYg:{y:(componentViewport?.y||0)+0+(0+512+((componentViewport?.height||747)-0-576)/1*1)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m0ylx1-container\",layoutDependency:layoutDependency,layoutId:\"UsFrpocDY-container\",nodeId:\"UsFrpocDY\",rendersWithMotion:true,scopeId:\"CcUTg73IJ\",children:/*#__PURE__*/_jsx(ComponentsButtonArrow3,{height:\"100%\",id:\"UsFrpocDY\",Jh_gzM42k:Jh_gzM42k1e6hpgu,layoutId:\"UsFrpocDY\",style:{height:\"100%\",width:\"100%\"},variant:\"lznzEJDT3\",width:\"100%\",...addPropertyOverrides({a1ePcmkGJ:{Jh_gzM42k:Jh_gzM42kr2rgsk},ncsDn6gYg:{Jh_gzM42k:Jh_gzM42k10nbrxl}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",...addPropertyOverrides({a1ePcmkGJ:{y:(componentViewport?.y||0)+0+(0+512+((componentViewport?.height||971)-0-576)/1*1)+0},aQIGD9p6W:{y:(componentViewport?.y||0)+0+(0+512+((componentViewport?.height||747)-0-576)/1*1)+0},ncsDn6gYg:{y:(componentViewport?.y||0)+0+(0+512+((componentViewport?.height||747)-0-576)/1*1)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qniwls-container\",layoutDependency:layoutDependency,layoutId:\"hdbQOUXj3-container\",nodeId:\"hdbQOUXj3\",rendersWithMotion:true,scopeId:\"CcUTg73IJ\",children:/*#__PURE__*/_jsx(ComponentsButtonArrow4,{height:\"100%\",id:\"hdbQOUXj3\",Jh_gzM42k:Jh_gzM42k10nbrxl,layoutId:\"hdbQOUXj3\",style:{height:\"100%\",width:\"100%\"},variant:\"M47JTUjQi\",width:\"100%\",...addPropertyOverrides({a1ePcmkGJ:{Jh_gzM42k:Jh_gzM42k1e6hpgu},ncsDn6gYg:{Jh_gzM42k:Jh_gzM42kr2rgsk}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Jv6y1.framer-tniene, .framer-Jv6y1 .framer-tniene { display: block; }\",\".framer-Jv6y1.framer-1qks5dk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1292px; }\",\".framer-Jv6y1 .framer-2hd2eu-container { flex: none; height: auto; max-width: 990px; position: relative; width: 100%; }\",\".framer-Jv6y1 .framer-15ku58u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jv6y1 .framer-6noayc-container, .framer-Jv6y1 .framer-1kcndu5-container, .framer-Jv6y1 .framer-1m0ylx1-container, .framer-Jv6y1 .framer-1qniwls-container { flex: none; height: 64px; position: relative; width: 64px; }\",\".framer-Jv6y1 .framer-1xpz7gt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jv6y1 .framer-15ku58u, .framer-Jv6y1 .framer-1xpz7gt { gap: 0px; } .framer-Jv6y1 .framer-15ku58u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Jv6y1 .framer-15ku58u > :first-child, .framer-Jv6y1 .framer-1xpz7gt > :first-child { margin-left: 0px; } .framer-Jv6y1 .framer-15ku58u > :last-child, .framer-Jv6y1 .framer-1xpz7gt > :last-child { margin-right: 0px; } .framer-Jv6y1 .framer-1xpz7gt > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-Jv6y1.framer-v-ozck1.framer-1qks5dk, .framer-Jv6y1.framer-v-kslzwq.framer-1qks5dk, .framer-Jv6y1.framer-v-17p9kqy.framer-1qks5dk { width: 810px; }\",\".framer-Jv6y1.framer-v-1xsw4y3.framer-1qks5dk, .framer-Jv6y1.framer-v-e81u77.framer-1qks5dk, .framer-Jv6y1.framer-v-m69zp2.framer-1qks5dk { width: 390px; }\",\".framer-Jv6y1.framer-v-1xsw4y3 .framer-2hd2eu-container { order: 0; }\",\".framer-Jv6y1.framer-v-1xsw4y3 .framer-1xpz7gt { order: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 576\n * @framerIntrinsicWidth 1292\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"H06CJ55ik\":{\"layout\":[\"fixed\",\"auto\"]},\"vlRxfDYMs\":{\"layout\":[\"fixed\",\"auto\"]},\"krZRNPb8n\":{\"layout\":[\"fixed\",\"auto\"]},\"W_4KjGgBW\":{\"layout\":[\"fixed\",\"auto\"]},\"NLSTw5238\":{\"layout\":[\"fixed\",\"auto\"]},\"aQIGD9p6W\":{\"layout\":[\"fixed\",\"auto\"]},\"a1ePcmkGJ\":{\"layout\":[\"fixed\",\"auto\"]},\"ncsDn6gYg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCcUTg73IJ=withCSS(Component,css,\"framer-Jv6y1\");export default FramerCcUTg73IJ;FramerCcUTg73IJ.displayName=\"Page Components/Slider Testimonials V2\";FramerCcUTg73IJ.defaultProps={height:576,width:1292};addPropertyControls(FramerCcUTg73IJ,{variant:{options:[\"AhF1v8ksX\",\"H06CJ55ik\",\"vlRxfDYMs\",\"krZRNPb8n\",\"W_4KjGgBW\",\"NLSTw5238\",\"aQIGD9p6W\",\"a1ePcmkGJ\",\"ncsDn6gYg\"],optionTitles:[\"Desktop/Slider 01\",\"Desktop/Slider 02\",\"Desktop/Slider 03\",\"Tablet/Slider 01\",\"Tablet/Slider 02\",\"Tablet/Slider 03\",\"Phone/Slider 01\",\"Phone/Slider 02\",\"Phone/Slider 03\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCcUTg73IJ,[{explicitInter:true,fonts:[]},...PageComponentsTestimonialsCardV2Fonts,...ComponentsButtonArrowFonts,...ComponentsButtonArrow2Fonts,...ComponentsButtonArrow3Fonts,...ComponentsButtonArrow4Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCcUTg73IJ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"576\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1292\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H06CJ55ik\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vlRxfDYMs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"krZRNPb8n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W_4KjGgBW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NLSTw5238\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aQIGD9p6W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a1ePcmkGJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ncsDn6gYg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,CycleVariantState,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/8T22Bzy5GcBxjjDX4upp/FKdXCf9ozdsy5BSIm4Zi/MI023BdDN.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6lQC63JnL58iJBqSehxP/xhxB7PisxV0GOs5PSCvS/ZKStAZhRl.js\";import ButtonsButton from\"https://framerusercontent.com/modules/rfxe1zEoesNxKk6ulv9J/ZLqkNH0lxYuTZY7cKlLE/yNOMrNmIV.js\";const ButtonsButtonFonts=getFonts(ButtonsButton);const cycleOrder=[\"QQxREPxWG\",\"Sx5WTkXAP\",\"wWbwc67MV\",\"p7rhL4q0O\",\"rnBN9Fp5s\",\"eoXfIJWpa\"];const serializationHash=\"framer-jtxgw\";const variantClassNames={eoXfIJWpa:\"framer-v-1hsknex\",p7rhL4q0O:\"framer-v-1kk8i73\",QQxREPxWG:\"framer-v-1f7dh4y\",rnBN9Fp5s:\"framer-v-j9pvk9\",Sx5WTkXAP:\"framer-v-ljv73s\",wWbwc67MV:\"framer-v-3skwm8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:75,delay:0,mass:1,stiffness:154,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={\"Insulin Base\":\"p7rhL4q0O\",\"Insulin Hover\":\"rnBN9Fp5s\",\"Insulin Mobile\":\"eoXfIJWpa\",\"Variant 1\":\"QQxREPxWG\",\"Variant 2\":\"Sx5WTkXAP\",Mobile:\"wWbwc67MV\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"QQxREPxWG\"};};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:\"QQxREPxWG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1garwa0=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(CycleVariantState);});const onMouseLeave1ru0l42=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"QQxREPxWG\");});const onMouseLeave1enrsfw=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"p7rhL4q0O\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"wWbwc67MV\",\"eoXfIJWpa\"].includes(baseVariant))return false;return true;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-1f7dh4y\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"QQxREPxWG\",onMouseEnter:onMouseEnter1garwa0,ref:refBinding,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({eoXfIJWpa:{\"data-framer-name\":\"Insulin Mobile\",\"data-highlight\":undefined,onMouseEnter:undefined},p7rhL4q0O:{\"data-framer-name\":\"Insulin Base\"},rnBN9Fp5s:{\"data-framer-name\":\"Insulin Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1enrsfw},Sx5WTkXAP:{\"data-framer-name\":\"Variant 2\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1ru0l42},wWbwc67MV:{\"data-framer-name\":\"Mobile\",\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1577,pixelWidth:1182,src:\"https://framerusercontent.com/images/ezCunMK3Y629vHVGTx7zVVAV9hU.jpg\"},className:\"framer-1lpglpd\",\"data-framer-name\":\"bg\",layoutDependency:layoutDependency,layoutId:\"vCYmoiGTo\",...addPropertyOverrides({eoXfIJWpa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:3154,pixelWidth:2366,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/357isIeRaHc1Rr6eb5GUi6o0.png\",srcSet:\"https://framerusercontent.com/images/357isIeRaHc1Rr6eb5GUi6o0.png?scale-down-to=1024 768w,https://framerusercontent.com/images/357isIeRaHc1Rr6eb5GUi6o0.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/357isIeRaHc1Rr6eb5GUi6o0.png 2366w\"}},p7rhL4q0O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:3154,pixelWidth:2366,src:\"https://framerusercontent.com/images/357isIeRaHc1Rr6eb5GUi6o0.png\"}},rnBN9Fp5s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-20),pixelHeight:3154,pixelWidth:2366,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.07)`,src:\"https://framerusercontent.com/images/357isIeRaHc1Rr6eb5GUi6o0.png\",srcSet:\"https://framerusercontent.com/images/357isIeRaHc1Rr6eb5GUi6o0.png?scale-down-to=1024 768w,https://framerusercontent.com/images/357isIeRaHc1Rr6eb5GUi6o0.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/357isIeRaHc1Rr6eb5GUi6o0.png 2366w\"},transformTemplate:transformTemplate1},Sx5WTkXAP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-20),pixelHeight:1577,pixelWidth:1182,src:\"https://framerusercontent.com/images/ezCunMK3Y629vHVGTx7zVVAV9hU.jpg\"},transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||590)-470),pixelHeight:609,pixelWidth:753,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/m86Te7eXAAz9n5gR0y36M87Ow.svg\",srcSet:\"https://framerusercontent.com/images/m86Te7eXAAz9n5gR0y36M87Ow.svg?scale-down-to=512 512w,https://framerusercontent.com/images/m86Te7eXAAz9n5gR0y36M87Ow.svg 753w\"},className:\"framer-1y236g6\",\"data-framer-name\":\"dots\",layoutDependency:layoutDependency,layoutId:\"ydvYKSVtz\",...addPropertyOverrides({p7rhL4q0O:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||590)-390),pixelHeight:1180,pixelWidth:1100,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WdtLZhqr5TqGTa7HA4nhiFAp0Y.png\",srcSet:\"https://framerusercontent.com/images/WdtLZhqr5TqGTa7HA4nhiFAp0Y.png?scale-down-to=1024 954w,https://framerusercontent.com/images/WdtLZhqr5TqGTa7HA4nhiFAp0Y.png 1100w\"}},rnBN9Fp5s:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||590)-1040),pixelHeight:1180,pixelWidth:1100,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WdtLZhqr5TqGTa7HA4nhiFAp0Y.png\",srcSet:\"https://framerusercontent.com/images/WdtLZhqr5TqGTa7HA4nhiFAp0Y.png?scale-down-to=1024 954w,https://framerusercontent.com/images/WdtLZhqr5TqGTa7HA4nhiFAp0Y.png 1100w\"}},Sx5WTkXAP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||590)-1040),pixelHeight:609,pixelWidth:753,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/m86Te7eXAAz9n5gR0y36M87Ow.svg\",srcSet:\"https://framerusercontent.com/images/m86Te7eXAAz9n5gR0y36M87Ow.svg?scale-down-to=512 512w,https://framerusercontent.com/images/m86Te7eXAAz9n5gR0y36M87Ow.svg 753w\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-.5),pixelHeight:1577,pixelWidth:1182,src:\"https://framerusercontent.com/images/g8syIhvp5WKSw9tD6SA5EtE9o.png\"},className:\"framer-15mxqnw\",\"data-framer-name\":\"nobg\",layoutDependency:layoutDependency,layoutId:\"EblwONLoG\",transformTemplate:transformTemplate1,...addPropertyOverrides({p7rhL4q0O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-.5),pixelHeight:3154,pixelWidth:2366,src:\"https://framerusercontent.com/images/4gbzL7JnrxRoDuB1183IOeSk.png\"}},rnBN9Fp5s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-20.5),pixelHeight:3154,pixelWidth:2366,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.07)`,src:\"https://framerusercontent.com/images/4gbzL7JnrxRoDuB1183IOeSk.png\",srcSet:\"https://framerusercontent.com/images/4gbzL7JnrxRoDuB1183IOeSk.png?scale-down-to=1024 768w,https://framerusercontent.com/images/4gbzL7JnrxRoDuB1183IOeSk.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/4gbzL7JnrxRoDuB1183IOeSk.png 2366w\"}},Sx5WTkXAP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-20.5),pixelHeight:1577,pixelWidth:1182,src:\"https://framerusercontent.com/images/g8syIhvp5WKSw9tD6SA5EtE9o.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hluvl2\",layoutDependency:layoutDependency,layoutId:\"Hh8IdtcwM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3p0sfg\",layoutDependency:layoutDependency,layoutId:\"W1eyGS4XF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-lvlbbk\",\"data-styles-preset\":\"ZKStAZhRl\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255)))\"},children:\"Durable Medical Equipment Grant\"})}),className:\"framer-1ibitsi\",\"data-framer-name\":\"Individual therapy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kbnwgbbtY\",style:{\"--extracted-1eung3n\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},variants:{eoXfIJWpa:{\"--extracted-1eung3n\":\"var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75))\"},p7rhL4q0O:{\"--extracted-1eung3n\":\"var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75))\"},rnBN9Fp5s:{\"--extracted-1eung3n\":\"var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eoXfIJWpa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-lvlbbk\",\"data-styles-preset\":\"ZKStAZhRl\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75)))\"},children:\"Emergency Grant\"})})},p7rhL4q0O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-lvlbbk\",\"data-styles-preset\":\"ZKStAZhRl\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75)))\"},children:\"Emergency Grant\"})})},rnBN9Fp5s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-lvlbbk\",\"data-styles-preset\":\"ZKStAZhRl\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75)))\"},children:\"Emergency Grant\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ve0goa\",\"data-styles-preset\":\"MI023BdDN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255)))\"},children:\"Provides assistance toward insulin pumps and continuous glucose monitors (CGMs) to help individuals better manage their Diabetes.\"})}),className:\"framer-1h6qqd6\",\"data-framer-name\":\"As a lifelong learner, I am committed to staying up-to-date with the latest research and developments in the field of psychotherapy.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DmmjI3BEo\",style:{\"--extracted-r6o4lv\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},variants:{eoXfIJWpa:{\"--extracted-r6o4lv\":\"var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75))\"},p7rhL4q0O:{\"--extracted-r6o4lv\":\"var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75))\"},rnBN9Fp5s:{\"--extracted-r6o4lv\":\"var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eoXfIJWpa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ve0goa\",\"data-styles-preset\":\"MI023BdDN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75)))\"},children:\"Provides assistance towards insulin, unexpected hospital bills, and other urgent diabetes-related expenses.\"})})},p7rhL4q0O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ve0goa\",\"data-styles-preset\":\"MI023BdDN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75)))\"},children:\"Provides assistance towards insulin, unexpected hospital bills, and other urgent diabetes-related expenses.\"})})},rnBN9Fp5s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ve0goa\",\"data-styles-preset\":\"MI023BdDN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, rgb(22, 56, 75)))\"},children:\"Provides assistance towards insulin, unexpected hospital bills, and other urgent diabetes-related expenses.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u43f57\",layoutDependency:layoutDependency,layoutId:\"DfwT4pCks\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Qp2jpTmbk\"},implicitPathVariables:undefined},{href:{webPageId:\"Qp2jpTmbk\"},implicitPathVariables:undefined},{href:{webPageId:\"Qp2jpTmbk\"},implicitPathVariables:undefined},{href:{webPageId:\"Qp2jpTmbk\"},implicitPathVariables:undefined},{href:{webPageId:\"Qp2jpTmbk\"},implicitPathVariables:undefined},{href:{webPageId:\"Qp2jpTmbk\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||590)-0-0)/1)*1-0-295+176+10)+20+0,...addPropertyOverrides({eoXfIJWpa:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||590)-0-0)/1)*1-0-295+196+10)+20+0},wWbwc67MV:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||590)-0-0)/1)*1-0-295+196+10)+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ldx9kb-container\",layoutDependency:layoutDependency,layoutId:\"F1xQEIZS5-container\",nodeId:\"F1xQEIZS5\",rendersWithMotion:true,scopeId:\"jZqF_RvJu\",children:/*#__PURE__*/_jsx(ButtonsButton,{height:\"100%\",id:\"F1xQEIZS5\",jbD4_zMby:\"Apply Now\",layoutId:\"F1xQEIZS5\",rImk10kr9:resolvedLinks[0],variant:\"Km6JfhbCj\",width:\"100%\",...addPropertyOverrides({eoXfIJWpa:{rImk10kr9:resolvedLinks[5]},p7rhL4q0O:{rImk10kr9:resolvedLinks[3]},rnBN9Fp5s:{rImk10kr9:resolvedLinks[4]},Sx5WTkXAP:{rImk10kr9:resolvedLinks[1]},wWbwc67MV:{rImk10kr9:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jtxgw.framer-1fmav8o, .framer-jtxgw .framer-1fmav8o { display: block; }\",\".framer-jtxgw.framer-1f7dh4y { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 590px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 550px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jtxgw .framer-1lpglpd { aspect-ratio: 0.9324009324009324 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 590px); left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-jtxgw .framer-1y236g6 { aspect-ratio: 0.32546786004882017 / 1; bottom: -1220px; flex: none; height: var(--framer-aspect-ratio-supported, 1690px); left: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-jtxgw .framer-15mxqnw { aspect-ratio: 0.9324009324009324 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 589px); left: 50%; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-jtxgw .framer-hluvl2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jtxgw .framer-3p0sfg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 40px 0px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-jtxgw .framer-1ibitsi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-jtxgw .framer-1h6qqd6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 95%; word-break: break-word; word-wrap: break-word; }\",\".framer-jtxgw .framer-u43f57 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-jtxgw .framer-1ldx9kb-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jtxgw.framer-1f7dh4y, .framer-jtxgw .framer-hluvl2, .framer-jtxgw .framer-3p0sfg, .framer-jtxgw .framer-u43f57 { gap: 0px; } .framer-jtxgw.framer-1f7dh4y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jtxgw.framer-1f7dh4y > :first-child, .framer-jtxgw .framer-hluvl2 > :first-child, .framer-jtxgw .framer-3p0sfg > :first-child, .framer-jtxgw .framer-u43f57 > :first-child { margin-top: 0px; } .framer-jtxgw.framer-1f7dh4y > :last-child, .framer-jtxgw .framer-hluvl2 > :last-child, .framer-jtxgw .framer-3p0sfg > :last-child, .framer-jtxgw .framer-u43f57 > :last-child { margin-bottom: 0px; } .framer-jtxgw .framer-hluvl2 > *, .framer-jtxgw .framer-u43f57 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jtxgw .framer-3p0sfg > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-jtxgw.framer-v-ljv73s .framer-1lpglpd, .framer-jtxgw.framer-v-j9pvk9 .framer-1lpglpd { bottom: -21px; height: var(--framer-aspect-ratio-supported, 631px); left: 50%; top: -20px; width: 107%; }\",\".framer-jtxgw.framer-v-ljv73s .framer-1y236g6, .framer-jtxgw.framer-v-j9pvk9 .framer-1y236g6 { bottom: -650px; }\",\".framer-jtxgw.framer-v-ljv73s .framer-15mxqnw, .framer-jtxgw.framer-v-j9pvk9 .framer-15mxqnw { bottom: -20px; height: var(--framer-aspect-ratio-supported, 631px); top: -20px; width: 107%; }\",\".framer-jtxgw.framer-v-ljv73s .framer-u43f57, .framer-jtxgw.framer-v-j9pvk9 .framer-u43f57 { z-index: 1; }\",\".framer-jtxgw.framer-v-3skwm8 .framer-3p0sfg, .framer-jtxgw.framer-v-1hsknex .framer-3p0sfg { padding: 20px; }\",\".framer-jtxgw.framer-v-3skwm8 .framer-u43f57, .framer-jtxgw.framer-v-1hsknex .framer-u43f57 { padding: 20px; z-index: 1; }\",\".framer-jtxgw.framer-v-3skwm8 .framer-1ldx9kb-container, .framer-jtxgw.framer-v-1hsknex .framer-1ldx9kb-container { order: 0; }\",\".framer-jtxgw.framer-v-1kk8i73 .framer-1y236g6 { bottom: -1300px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 590\n * @framerIntrinsicWidth 550\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Sx5WTkXAP\":{\"layout\":[\"fixed\",\"fixed\"]},\"wWbwc67MV\":{\"layout\":[\"fixed\",\"fixed\"]},\"p7rhL4q0O\":{\"layout\":[\"fixed\",\"fixed\"]},\"rnBN9Fp5s\":{\"layout\":[\"fixed\",\"fixed\"]},\"eoXfIJWpa\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjZqF_RvJu=withCSS(Component,css,\"framer-jtxgw\");export default FramerjZqF_RvJu;FramerjZqF_RvJu.displayName=\"Hover Grant Card\";FramerjZqF_RvJu.defaultProps={height:590,width:550};addPropertyControls(FramerjZqF_RvJu,{variant:{options:[\"QQxREPxWG\",\"Sx5WTkXAP\",\"wWbwc67MV\",\"p7rhL4q0O\",\"rnBN9Fp5s\",\"eoXfIJWpa\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Mobile\",\"Insulin Base\",\"Insulin Hover\",\"Insulin Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjZqF_RvJu,[{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\"}]},...ButtonsButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjZqF_RvJu\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"590\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"550\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Sx5WTkXAP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wWbwc67MV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p7rhL4q0O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rnBN9Fp5s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eoXfIJWpa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jZqF_RvJu.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={UTs_672Uo:{hover:true},yYsnouhay:{hover:true}};const cycleOrder=[\"UTs_672Uo\",\"yYsnouhay\"];const serializationHash=\"framer-BOZiy\";const variantClassNames={UTs_672Uo:\"framer-v-rohs2x\",yYsnouhay:\"framer-v-1rv7fjg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Left:\"yYsnouhay\",Right:\"UTs_672Uo\"};const getProps=({click,height,id,width,...props})=>{return{...props,Jh_gzM42k:click??props.Jh_gzM42k,variant:humanReadableVariantMap[props.variant]??props.variant??\"UTs_672Uo\"};};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,Jh_gzM42k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UTs_672Uo\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1c133ht=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Jh_gzM42k){const res=await Jh_gzM42k(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-rohs2x\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UTs_672Uo\",onTap:onTap1c133ht,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(72, 72, 72)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-98825ee3-a1da-4904-b59a-1db9a410a99c, rgba(255, 255, 255, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"UTs_672Uo-hover\":{\"--border-color\":\"rgba(33, 33, 33, 0)\",backgroundColor:\"var(--token-30fad490-24e5-4b89-b74d-9cd079bddd06, rgba(54, 124, 255, 0.9))\"},\"yYsnouhay-hover\":{\"--border-color\":\"rgba(33, 33, 33, 0)\",backgroundColor:\"var(--token-30fad490-24e5-4b89-b74d-9cd079bddd06, rgba(54, 124, 255, 0.9))\"}},...addPropertyOverrides({\"UTs_672Uo-hover\":{\"data-framer-name\":undefined},\"yYsnouhay-hover\":{\"data-framer-name\":undefined},yYsnouhay:{\"data-framer-name\":\"Left\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1my8dhd\",\"data-framer-name\":\"Line Rounded/Arrow Left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"txMOszEa0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10283547255,withExternalLayout:true,...addPropertyOverrides({\"UTs_672Uo-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12167238473},\"yYsnouhay-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12131253270},yYsnouhay:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9330468030}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BOZiy.framer-hhq7t2, .framer-BOZiy .framer-hhq7t2 { display: block; }\",\".framer-BOZiy.framer-rohs2x { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BOZiy .framer-1my8dhd { flex: none; height: 29px; position: relative; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BOZiy.framer-rohs2x { gap: 0px; } .framer-BOZiy.framer-rohs2x > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BOZiy.framer-rohs2x > :first-child { margin-left: 0px; } .framer-BOZiy.framer-rohs2x > :last-child { margin-right: 0px; } }\",\".framer-BOZiy.framer-v-1rv7fjg.framer-rohs2x, .framer-BOZiy.framer-v-rohs2x.hover.framer-rohs2x { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); }\",'.framer-BOZiy[data-border=\"true\"]::after, .framer-BOZiy [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yYsnouhay\":{\"layout\":[\"fixed\",\"fixed\"]},\"KeLjx9V4L\":{\"layout\":[\"fixed\",\"fixed\"]},\"O_ojSyzL2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Jh_gzM42k\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFMigKw_lD=withCSS(Component,css,\"framer-BOZiy\");export default FramerFMigKw_lD;FramerFMigKw_lD.displayName=\"Components/Button Arrow\";FramerFMigKw_lD.defaultProps={height:64,width:64};addPropertyControls(FramerFMigKw_lD,{variant:{options:[\"UTs_672Uo\",\"yYsnouhay\"],optionTitles:[\"Right\",\"Left\"],title:\"Variant\",type:ControlType.Enum},Jh_gzM42k:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerFMigKw_lD,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFMigKw_lD\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yYsnouhay\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KeLjx9V4L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O_ojSyzL2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"64\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerVariables\":\"{\\\"Jh_gzM42k\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FMigKw_lD.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={m9EV1ss57:{hover:true},w387_BPqm:{hover:true}};const cycleOrder=[\"m9EV1ss57\",\"w387_BPqm\"];const serializationHash=\"framer-435AB\";const variantClassNames={m9EV1ss57:\"framer-v-wwdqf\",w387_BPqm:\"framer-v-1b0fu5p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Left:\"w387_BPqm\",Right:\"m9EV1ss57\"};const getProps=({click,height,id,width,...props})=>{return{...props,Jh_gzM42k:click??props.Jh_gzM42k,variant:humanReadableVariantMap[props.variant]??props.variant??\"m9EV1ss57\"};};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,Jh_gzM42k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"m9EV1ss57\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1c133ht=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Jh_gzM42k){const res=await Jh_gzM42k(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wwdqf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"m9EV1ss57\",onTap:onTap1c133ht,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(72, 72, 72)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-98825ee3-a1da-4904-b59a-1db9a410a99c, rgba(255, 255, 255, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"m9EV1ss57-hover\":{\"--border-color\":\"rgba(33, 33, 33, 0)\",backgroundColor:\"var(--token-30fad490-24e5-4b89-b74d-9cd079bddd06, rgba(54, 124, 255, 0.9))\"},\"w387_BPqm-hover\":{\"--border-color\":\"rgba(71, 71, 71, 0)\",backgroundColor:\"var(--token-30fad490-24e5-4b89-b74d-9cd079bddd06, rgba(54, 124, 255, 0.9))\"}},...addPropertyOverrides({\"m9EV1ss57-hover\":{\"data-framer-name\":undefined},\"w387_BPqm-hover\":{\"data-framer-name\":undefined},w387_BPqm:{\"data-framer-name\":\"Left\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12konig\",\"data-framer-name\":\"Line Rounded/Arrow Left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xZj_njmr5\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11654014578,withExternalLayout:true,...addPropertyOverrides({\"m9EV1ss57-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-180 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10633662816},\"w387_BPqm-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6a1ad819-74e3-4376-a32b-ea9afc045142, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12500656086},w387_BPqm:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 9.871 0 L 0 9.871 M 0 9.871 L 9.871 19.742 M 0 9.871 L 21 9.871\" transform=\"translate(3.5 4.563) rotate(-360 10.5 9.871)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10962306008}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-435AB.framer-1lvhscz, .framer-435AB .framer-1lvhscz { display: block; }\",\".framer-435AB.framer-wwdqf { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-435AB .framer-12konig { flex: none; height: 29px; position: relative; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-435AB.framer-wwdqf { gap: 0px; } .framer-435AB.framer-wwdqf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-435AB.framer-wwdqf > :first-child { margin-left: 0px; } .framer-435AB.framer-wwdqf > :last-child { margin-right: 0px; } }\",\".framer-435AB.framer-v-1b0fu5p.framer-wwdqf, .framer-435AB.framer-v-wwdqf.hover.framer-wwdqf { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); }\",'.framer-435AB[data-border=\"true\"]::after, .framer-435AB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"w387_BPqm\":{\"layout\":[\"fixed\",\"fixed\"]},\"x034ENuti\":{\"layout\":[\"fixed\",\"fixed\"]},\"X0zxPIfLA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Jh_gzM42k\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKpe75vavS=withCSS(Component,css,\"framer-435AB\");export default FramerKpe75vavS;FramerKpe75vavS.displayName=\"Components/Button Arrow 2\";FramerKpe75vavS.defaultProps={height:64,width:64};addPropertyControls(FramerKpe75vavS,{variant:{options:[\"m9EV1ss57\",\"w387_BPqm\"],optionTitles:[\"Right\",\"Left\"],title:\"Variant\",type:ControlType.Enum},Jh_gzM42k:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerKpe75vavS,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKpe75vavS\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"64\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"w387_BPqm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x034ENuti\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X0zxPIfLA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Jh_gzM42k\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"64\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Kpe75vavS.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/o8Z6lgEcj1kFrxqgxbcE/tIT5Jh5kaVwrR9n6DFOr/MI023BdDN.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/hZQu0gNU24KbIvWKtiEt/KBJhxJia4AIAjFvmuaVy/ZKStAZhRl.js\";import FooterLink3 from\"https://framerusercontent.com/modules/xA5t70cFnaa3Vy67JXLr/tREZL6doJI4f2q7mCNPi/LBFEZXvrO.js\";const FooterLink3Fonts=getFonts(FooterLink3);const serializationHash=\"framer-ErPJr\";const variantClassNames={TplhbOHav:\"framer-v-vtjuy1\"};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:400,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??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 getProps=({height,id,picture,resourceDescription,resourceLink,resourceName,width,...props})=>{return{...props,AKXd_AIWM:picture??props.AKXd_AIWM,TrNYXZEHu:resourceName??props.TrNYXZEHu??\"text\",uKGjwOAyu:resourceLink??props.uKGjwOAyu,Xwxp9VaZd:resourceDescription??props.Xwxp9VaZd??\"text\"};};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,AKXd_AIWM,TrNYXZEHu,Xwxp9VaZd,uKGjwOAyu,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"TplhbOHav\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-vtjuy1\",className,classNames),\"data-framer-name\":\"Desktop \",layoutDependency:layoutDependency,layoutId:\"TplhbOHav\",ref:refBinding,style:{backgroundColor:\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-i7kq6b\",\"data-framer-name\":\"Card Image \",layoutDependency:layoutDependency,layoutId:\"FfPc4AzOn\",style:{backgroundColor:\"rgb(248, 248, 248)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(AKXd_AIWM),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-9ls5jk\",\"data-framer-name\":\"Image \",layoutDependency:layoutDependency,layoutId:\"LGZUVQhUi\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n9zuye\",\"data-framer-name\":\"Card Title \",layoutDependency:layoutDependency,layoutId:\"JLYJ8COFs\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3829bm\",layoutDependency:layoutDependency,layoutId:\"tAhDQQhRI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-lvlbbk\",\"data-styles-preset\":\"ZKStAZhRl\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31)))\"},children:\"text\"})}),className:\"framer-1u3dwvu\",\"data-framer-name\":\"Team\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f9yz0KYI8\",style:{\"--extracted-1eung3n\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},text:TrNYXZEHu,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ve0goa\",\"data-styles-preset\":\"MI023BdDN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31)))\"},children:\"text\"})}),className:\"framer-1uwrybd\",\"data-framer-name\":\"Team\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AaNK3PxqN\",style:{\"--extracted-r6o4lv\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\",\"--framer-paragraph-spacing\":\"0px\"},text:Xwxp9VaZd,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+0+430+0+(0+156+(Math.max(0,((componentViewport?.height||550)-0-430)/1)*1-0-181)/1*1),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fvqc39-container\",layoutDependency:layoutDependency,layoutId:\"MRUfDpnv0-container\",nodeId:\"MRUfDpnv0\",rendersWithMotion:true,scopeId:\"M1JIXDsBo\",children:/*#__PURE__*/_jsx(FooterLink3,{height:\"100%\",id:\"MRUfDpnv0\",IEvIObBrE:uKGjwOAyu,layoutId:\"MRUfDpnv0\",tZhADr8wE:\"Learn More ->\",variant:\"Xi6gfTiJR\",width:\"100%\",yJKwnPPHa:false})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ErPJr.framer-4muufe, .framer-ErPJr .framer-4muufe { display: block; }\",\".framer-ErPJr.framer-vtjuy1 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 550px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 625px; }\",\".framer-ErPJr .framer-i7kq6b { 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: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ErPJr .framer-9ls5jk { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-ErPJr .framer-1n9zuye { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ErPJr .framer-3829bm { 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-ErPJr .framer-1u3dwvu, .framer-ErPJr .framer-1uwrybd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ErPJr .framer-fvqc39-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ErPJr.framer-vtjuy1, .framer-ErPJr .framer-i7kq6b, .framer-ErPJr .framer-3829bm { gap: 0px; } .framer-ErPJr.framer-vtjuy1 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ErPJr.framer-vtjuy1 > :first-child, .framer-ErPJr .framer-i7kq6b > :first-child, .framer-ErPJr .framer-3829bm > :first-child { margin-top: 0px; } .framer-ErPJr.framer-vtjuy1 > :last-child, .framer-ErPJr .framer-i7kq6b > :last-child, .framer-ErPJr .framer-3829bm > :last-child { margin-bottom: 0px; } .framer-ErPJr .framer-i7kq6b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ErPJr .framer-3829bm > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 550\n * @framerIntrinsicWidth 625\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AKXd_AIWM\":\"picture\",\"TrNYXZEHu\":\"resourceName\",\"Xwxp9VaZd\":\"resourceDescription\",\"uKGjwOAyu\":\"resourceLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerM1JIXDsBo=withCSS(Component,css,\"framer-ErPJr\");export default FramerM1JIXDsBo;FramerM1JIXDsBo.displayName=\"Resources Card\";FramerM1JIXDsBo.defaultProps={height:550,width:625};addPropertyControls(FramerM1JIXDsBo,{AKXd_AIWM:{title:\"Picture\",type:ControlType.ResponsiveImage},TrNYXZEHu:{defaultValue:\"text\",displayTextArea:false,title:\"Resource Name\",type:ControlType.String},Xwxp9VaZd:{defaultValue:\"text\",displayTextArea:false,title:\"Resource Description\",type:ControlType.String},uKGjwOAyu:{title:\"Resource Link\",type:ControlType.Link}});addFonts(FramerM1JIXDsBo,[{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\"}]},...FooterLink3Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM1JIXDsBo\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"625\",\"framerVariables\":\"{\\\"AKXd_AIWM\\\":\\\"picture\\\",\\\"TrNYXZEHu\\\":\\\"resourceName\\\",\\\"Xwxp9VaZd\\\":\\\"resourceDescription\\\",\\\"uKGjwOAyu\\\":\\\"resourceLink\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"550\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/3C3kC2nsq0xx47xYmGTz/hcL4LNhkrtV8bkYyjPTx/NqDJjPXGK.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/p3dVSCJa7YQburbXX5TM/Z5eHFE83n8mhOBGTsdoX/VydSPZ8Pu.js\";import ComponentsButtonArrow from\"https://framerusercontent.com/modules/3eWzH6VjyHY9DXpnAeIU/nPMrMaIHTX9V9v96Ldbl/FMigKw_lD.js\";import ComponentsButtonArrow2 from\"https://framerusercontent.com/modules/5G5KSkzhgP1r39PVXh2s/m0sgza7IgPvAFO2i9Bht/Kpe75vavS.js\";import ResourcesCard from\"https://framerusercontent.com/modules/7WA6EUs3yrC0171Tlthw/Q39ROGjWjnTXRwCcuXLL/M1JIXDsBo.js\";const ComponentsButtonArrowFonts=getFonts(ComponentsButtonArrow);const ComponentsButtonArrow2Fonts=getFonts(ComponentsButtonArrow2);const ResourcesCardFonts=getFonts(ResourcesCard);const cycleOrder=[\"KfLN9rlDz\",\"L8OD6KoSD\",\"OEVMBvA49\",\"XowYPB5mg\",\"HdDApCpni\",\"VNTyxedZ8\",\"Tcb7YiFRk\",\"kUiFa627O\",\"XOmxmfaIE\",\"WR1FLhXWp\",\"cjhsaFjPy\",\"f6PXf42yu\",\"RMRlcZoXA\",\"DBpDCcntP\"];const serializationHash=\"framer-wf0RV\";const variantClassNames={cjhsaFjPy:\"framer-v-an2dmx\",DBpDCcntP:\"framer-v-132l0vy\",f6PXf42yu:\"framer-v-in8wnj\",HdDApCpni:\"framer-v-qtueqe\",KfLN9rlDz:\"framer-v-o40tlw\",kUiFa627O:\"framer-v-1fc49at\",L8OD6KoSD:\"framer-v-1uvg3fp\",OEVMBvA49:\"framer-v-1buzwf8\",RMRlcZoXA:\"framer-v-idadl8\",Tcb7YiFRk:\"framer-v-kksq59\",VNTyxedZ8:\"framer-v-frxru0\",WR1FLhXWp:\"framer-v-189la5g\",XOmxmfaIE:\"framer-v-1i26d6\",XowYPB5mg:\"framer-v-4lolrz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={delay:0,duration:.3,ease:[0,0,1,1],type:\"tween\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Big Desktop 1\":\"L8OD6KoSD\",\"Big Desktop 2\":\"OEVMBvA49\",\"Big Desktop 3\":\"XowYPB5mg\",\"Big Desktop 4\":\"HdDApCpni\",\"Big Desktop 5\":\"VNTyxedZ8\",\"Big Desktop All. Dont Edit\":\"KfLN9rlDz\",\"Desktop 1\":\"kUiFa627O\",\"Desktop 2\":\"XOmxmfaIE\",\"Desktop 3\":\"WR1FLhXWp\",\"Desktop 4\":\"cjhsaFjPy\",\"Desktop 5\":\"f6PXf42yu\",\"Desktop All\":\"Tcb7YiFRk\",\"Tablet 1\":\"RMRlcZoXA\",Mobile:\"DBpDCcntP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KfLN9rlDz\"};};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:\"KfLN9rlDz\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Jh_gzM42k19a2gpz=activeVariantCallback(async(...args)=>{setVariant(\"VNTyxedZ8\");});const Jh_gzM42k3xrp6v=activeVariantCallback(async(...args)=>{setVariant(\"L8OD6KoSD\");});const Jh_gzM42k1pn9k52=activeVariantCallback(async(...args)=>{setVariant(\"OEVMBvA49\");});const Jh_gzM42k129tucc=activeVariantCallback(async(...args)=>{setVariant(\"XowYPB5mg\");});const Jh_gzM42k23eqov=activeVariantCallback(async(...args)=>{setVariant(\"HdDApCpni\");});const Jh_gzM42k18q4i3p=activeVariantCallback(async(...args)=>{setVariant(\"f6PXf42yu\");});const Jh_gzM42k1wlmh7a=activeVariantCallback(async(...args)=>{setVariant(\"kUiFa627O\");});const Jh_gzM42k10z5k98=activeVariantCallback(async(...args)=>{setVariant(\"XOmxmfaIE\");});const Jh_gzM42k1e4fzcf=activeVariantCallback(async(...args)=>{setVariant(\"WR1FLhXWp\");});const Jh_gzM42k12woeze=activeVariantCallback(async(...args)=>{setVariant(\"cjhsaFjPy\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"RMRlcZoXA\",\"DBpDCcntP\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"OEVMBvA49\",\"XowYPB5mg\",\"XOmxmfaIE\",\"WR1FLhXWp\",\"RMRlcZoXA\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"XowYPB5mg\",\"HdDApCpni\",\"WR1FLhXWp\",\"cjhsaFjPy\",\"RMRlcZoXA\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"HdDApCpni\",\"VNTyxedZ8\",\"cjhsaFjPy\",\"f6PXf42yu\",\"RMRlcZoXA\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"L8OD6KoSD\",\"VNTyxedZ8\",\"kUiFa627O\",\"f6PXf42yu\",\"RMRlcZoXA\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"L8OD6KoSD\",\"OEVMBvA49\",\"kUiFa627O\",\"XOmxmfaIE\",\"RMRlcZoXA\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"RMRlcZoXA\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({cjhsaFjPy:{value:transition2},f6PXf42yu:{value:transition2},HdDApCpni:{value:transition2},kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},OEVMBvA49:{value:transition2},VNTyxedZ8:{value:transition2},WR1FLhXWp:{value:transition2},XOmxmfaIE:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-o40tlw\",className,classNames),\"data-framer-name\":\"Big Desktop All. Dont Edit\",layoutDependency:layoutDependency,layoutId:\"KfLN9rlDz\",ref:refBinding,style:{backgroundColor:\"var(--token-31918e0b-f62b-419f-989f-48a6ef2ed204, rgb(255, 248, 240))\",...style},...addPropertyOverrides({cjhsaFjPy:{\"data-framer-name\":\"Desktop 4\"},DBpDCcntP:{\"data-framer-name\":\"Mobile\"},f6PXf42yu:{\"data-framer-name\":\"Desktop 5\"},HdDApCpni:{\"data-framer-name\":\"Big Desktop 4\"},kUiFa627O:{\"data-framer-name\":\"Desktop 1\"},L8OD6KoSD:{\"data-framer-name\":\"Big Desktop 1\"},OEVMBvA49:{\"data-framer-name\":\"Big Desktop 2\"},RMRlcZoXA:{\"data-framer-name\":\"Tablet 1\"},Tcb7YiFRk:{\"data-framer-name\":\"Desktop All\"},VNTyxedZ8:{\"data-framer-name\":\"Big Desktop 5\"},WR1FLhXWp:{\"data-framer-name\":\"Desktop 3\"},XOmxmfaIE:{\"data-framer-name\":\"Desktop 2\"},XowYPB5mg:{\"data-framer-name\":\"Big Desktop 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cjhsaFjPy:{value:transition2},f6PXf42yu:{value:transition2},HdDApCpni:{value:transition2},kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},OEVMBvA49:{value:transition2},VNTyxedZ8:{value:transition2},WR1FLhXWp:{value:transition2},XOmxmfaIE:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19kn9ve\",layoutDependency:layoutDependency,layoutId:\"j9pltOaLn\",children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cjhsaFjPy:{value:transition2},f6PXf42yu:{value:transition2},HdDApCpni:{value:transition2},kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},OEVMBvA49:{value:transition2},VNTyxedZ8:{value:transition2},WR1FLhXWp:{value:transition2},XOmxmfaIE:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jriqe5\",layoutDependency:layoutDependency,layoutId:\"LpSq8CkIG\",children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cjhsaFjPy:{value:transition2},f6PXf42yu:{value:transition2},HdDApCpni:{value:transition2},kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},OEVMBvA49:{value:transition2},VNTyxedZ8:{value:transition2},WR1FLhXWp:{value:transition2},XOmxmfaIE:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-vbzi6t\",\"data-styles-preset\":\"VydSPZ8Pu\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31)))\"},children:\"Resources\"})}),className:\"framer-2w5nxm\",\"data-framer-name\":\"Here to support you\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WlMUP2jnV\",style:{\"--extracted-1of0zx5\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cjhsaFjPy:{value:transition2},f6PXf42yu:{value:transition2},HdDApCpni:{value:transition2},kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},OEVMBvA49:{value:transition2},VNTyxedZ8:{value:transition2},WR1FLhXWp:{value:transition2},XOmxmfaIE:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8uem6x\",\"data-styles-preset\":\"NqDJjPXGK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31)))\"},children:\"A curated library of resources to help answer your questions and point you in the right direction.\"})}),className:\"framer-dm19v5\",\"data-framer-name\":\"Benefit of our network of more than 50 mental health professionals\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cxCFVPU6S\",style:{\"--extracted-r6o4lv\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cjhsaFjPy:{value:transition2},f6PXf42yu:{value:transition2},HdDApCpni:{value:transition2},kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},OEVMBvA49:{value:transition2},VNTyxedZ8:{value:transition2},WR1FLhXWp:{value:transition2},XOmxmfaIE:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13x6yr9\",layoutDependency:layoutDependency,layoutId:\"AfX04gY2q\",children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cjhsaFjPy:{value:transition2},f6PXf42yu:{value:transition2},HdDApCpni:{value:transition2},kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},OEVMBvA49:{value:transition2},VNTyxedZ8:{value:transition2},WR1FLhXWp:{value:transition2},XOmxmfaIE:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+60+0+66.8+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-joqn47-container\",layoutDependency:layoutDependency,layoutId:\"hBGmoLuaq-container\",nodeId:\"hBGmoLuaq\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ComponentsButtonArrow,{height:\"100%\",id:\"hBGmoLuaq\",Jh_gzM42k:Jh_gzM42k19a2gpz,layoutId:\"hBGmoLuaq\",style:{height:\"100%\",width:\"100%\"},variant:\"yYsnouhay\",width:\"100%\",...addPropertyOverrides({cjhsaFjPy:{Jh_gzM42k:Jh_gzM42k1e4fzcf},f6PXf42yu:{Jh_gzM42k:Jh_gzM42k12woeze},HdDApCpni:{Jh_gzM42k:Jh_gzM42k129tucc},kUiFa627O:{Jh_gzM42k:Jh_gzM42k18q4i3p},OEVMBvA49:{Jh_gzM42k:Jh_gzM42k3xrp6v},VNTyxedZ8:{Jh_gzM42k:Jh_gzM42k23eqov},WR1FLhXWp:{Jh_gzM42k:Jh_gzM42k10z5k98},XOmxmfaIE:{Jh_gzM42k:Jh_gzM42k1wlmh7a},XowYPB5mg:{Jh_gzM42k:Jh_gzM42k1pn9k52}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cjhsaFjPy:{value:transition2},f6PXf42yu:{value:transition2},HdDApCpni:{value:transition2},kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},OEVMBvA49:{value:transition2},VNTyxedZ8:{value:transition2},WR1FLhXWp:{value:transition2},XOmxmfaIE:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+60+0+66.8+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11eehnf-container\",layoutDependency:layoutDependency,layoutId:\"bvU9ZY0kj-container\",nodeId:\"bvU9ZY0kj\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ComponentsButtonArrow2,{height:\"100%\",id:\"bvU9ZY0kj\",Jh_gzM42k:Jh_gzM42k1pn9k52,layoutId:\"bvU9ZY0kj\",style:{height:\"100%\",width:\"100%\"},variant:\"m9EV1ss57\",width:\"100%\",...addPropertyOverrides({cjhsaFjPy:{Jh_gzM42k:Jh_gzM42k18q4i3p},f6PXf42yu:{Jh_gzM42k:Jh_gzM42k1wlmh7a},HdDApCpni:{Jh_gzM42k:Jh_gzM42k19a2gpz},kUiFa627O:{Jh_gzM42k:Jh_gzM42k10z5k98},OEVMBvA49:{Jh_gzM42k:Jh_gzM42k129tucc},VNTyxedZ8:{Jh_gzM42k:Jh_gzM42k3xrp6v},WR1FLhXWp:{Jh_gzM42k:Jh_gzM42k12woeze},XOmxmfaIE:{Jh_gzM42k:Jh_gzM42k1e4fzcf},XowYPB5mg:{Jh_gzM42k:Jh_gzM42k23eqov}},baseVariant,gestureVariant)})})})})]})})]})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cjhsaFjPy:{value:transition2},f6PXf42yu:{value:transition2},HdDApCpni:{value:transition2},kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},OEVMBvA49:{value:transition2},VNTyxedZ8:{value:transition2},WR1FLhXWp:{value:transition2},XOmxmfaIE:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cfgqw4\",layoutDependency:layoutDependency,layoutId:\"cqsW7OrDM\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cjhsaFjPy:{value:transition2},f6PXf42yu:{value:transition2},HdDApCpni:{value:transition2},kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},VNTyxedZ8:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:`max((${componentViewport?.width||\"100vw\"} - 160px) / 5, 1px)`,y:(componentViewport?.y||0)+60+257.6+0,...addPropertyOverrides({cjhsaFjPy:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},DBpDCcntP:{height:600,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+60+257.6+0+0},f6PXf42yu:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},HdDApCpni:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},kUiFa627O:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},L8OD6KoSD:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},Tcb7YiFRk:{width:`max((${componentViewport?.width||\"100vw\"} - 220px) / 5, 1px)`},VNTyxedZ8:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fipqo8-container\",\"data-framer-name\":\"Card 1\",layoutDependency:layoutDependency,layoutId:\"xZPhHvKnD-container\",name:\"Card 1\",nodeId:\"xZPhHvKnD\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ResourcesCard,{AKXd_AIWM:addImageAlt({src:\"https://framerusercontent.com/images/CusKN4YD5JrTihrZbojm0D2jIdA.png\",srcSet:\"https://framerusercontent.com/images/CusKN4YD5JrTihrZbojm0D2jIdA.png?scale-down-to=512 512w,https://framerusercontent.com/images/CusKN4YD5JrTihrZbojm0D2jIdA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CusKN4YD5JrTihrZbojm0D2jIdA.png 1048w\"},\"\"),height:\"100%\",id:\"xZPhHvKnD\",layoutId:\"xZPhHvKnD\",name:\"Card 1\",style:{height:\"100%\",width:\"100%\"},TrNYXZEHu:\"Beyond Type 1\",uKGjwOAyu:\"https://beyondtype1.org\",width:\"100%\",Xwxp9VaZd:\"Beyond Type 1 is a nonprofit dedicated to uniting and empowering people impacted by diabetes.\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({f6PXf42yu:{value:transition2},kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},OEVMBvA49:{value:transition2},VNTyxedZ8:{value:transition2},XOmxmfaIE:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:`max((${componentViewport?.width||\"100vw\"} - 160px) / 5, 1px)`,y:(componentViewport?.y||0)+60+257.6+0,...addPropertyOverrides({DBpDCcntP:{height:630,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+60+257.6+0+640},f6PXf42yu:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},kUiFa627O:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},L8OD6KoSD:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},OEVMBvA49:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},Tcb7YiFRk:{width:`max((${componentViewport?.width||\"100vw\"} - 220px) / 5, 1px)`},VNTyxedZ8:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},XOmxmfaIE:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uakle9-container\",\"data-framer-name\":\"Card 2\",layoutDependency:layoutDependency,layoutId:\"eotj2M80Y-container\",name:\"Card 2\",nodeId:\"eotj2M80Y\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ResourcesCard,{AKXd_AIWM:addImageAlt({src:\"https://framerusercontent.com/images/kSgBlKPU6wPUP7Af0PIreKa0Ag.png\",srcSet:\"https://framerusercontent.com/images/kSgBlKPU6wPUP7Af0PIreKa0Ag.png?scale-down-to=512 512w,https://framerusercontent.com/images/kSgBlKPU6wPUP7Af0PIreKa0Ag.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kSgBlKPU6wPUP7Af0PIreKa0Ag.png 1048w\"},\"\"),height:\"100%\",id:\"eotj2M80Y\",layoutId:\"eotj2M80Y\",name:\"Card 2\",style:{height:\"100%\",width:\"100%\"},TrNYXZEHu:\"Raising Teens with Diabetes: A Survival Guide for Parents\",uKGjwOAyu:\"https://www.amazon.com/Raising-Teens-Diabetes-Survival-Parents/dp/1938170202\",width:\"100%\",Xwxp9VaZd:\"A concise, practical resource offering guidance, empathy, and real-life strategies for parenting teens with diabetes.\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({kUiFa627O:{value:transition2},L8OD6KoSD:{value:transition2},OEVMBvA49:{value:transition2},WR1FLhXWp:{value:transition2},XOmxmfaIE:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:`max((${componentViewport?.width||\"100vw\"} - 160px) / 5, 1px)`,y:(componentViewport?.y||0)+60+257.6+0,...addPropertyOverrides({DBpDCcntP:{height:630,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+60+257.6+0+1310},kUiFa627O:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},L8OD6KoSD:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},OEVMBvA49:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},Tcb7YiFRk:{width:`max((${componentViewport?.width||\"100vw\"} - 220px) / 5, 1px)`},WR1FLhXWp:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},XOmxmfaIE:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},XowYPB5mg:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n4qn15-container\",\"data-framer-name\":\"Card 3\",layoutDependency:layoutDependency,layoutId:\"bX7Bf2MUP-container\",name:\"Card 3\",nodeId:\"bX7Bf2MUP\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ResourcesCard,{AKXd_AIWM:addImageAlt({src:\"https://framerusercontent.com/images/2r6WOmnXRZ0BxbQq52Pdbjy05I.png\",srcSet:\"https://framerusercontent.com/images/2r6WOmnXRZ0BxbQq52Pdbjy05I.png?scale-down-to=512 512w,https://framerusercontent.com/images/2r6WOmnXRZ0BxbQq52Pdbjy05I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2r6WOmnXRZ0BxbQq52Pdbjy05I.png 1048w\"},\"\"),height:\"100%\",id:\"bX7Bf2MUP\",layoutId:\"bX7Bf2MUP\",name:\"Card 3\",style:{height:\"100%\",width:\"100%\"},TrNYXZEHu:\"American Diabetes Association Safe at School\",uKGjwOAyu:\"https://diabetes.org/advocacy/safe-at-school-state-laws\",width:\"100%\",Xwxp9VaZd:\"This initiative ensures students with diabetes receive the care and support they need in school, backed by strong state laws.\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cjhsaFjPy:{value:transition2},HdDApCpni:{value:transition2},OEVMBvA49:{value:transition2},WR1FLhXWp:{value:transition2},XOmxmfaIE:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:`max((${componentViewport?.width||\"100vw\"} - 160px) / 5, 1px)`,y:(componentViewport?.y||0)+60+257.6+0,...addPropertyOverrides({cjhsaFjPy:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},DBpDCcntP:{height:600,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+60+257.6+0+1980},HdDApCpni:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},OEVMBvA49:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},Tcb7YiFRk:{width:`max((${componentViewport?.width||\"100vw\"} - 220px) / 5, 1px)`},WR1FLhXWp:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},XOmxmfaIE:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},XowYPB5mg:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lef795-container\",\"data-framer-name\":\"Card 4\",layoutDependency:layoutDependency,layoutId:\"tpx9HLxD4-container\",name:\"Card 4\",nodeId:\"tpx9HLxD4\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ResourcesCard,{AKXd_AIWM:addImageAlt({src:\"https://framerusercontent.com/images/unKoUzepb8ZH84FtWm7GZo5mFc.png\",srcSet:\"https://framerusercontent.com/images/unKoUzepb8ZH84FtWm7GZo5mFc.png?scale-down-to=512 512w,https://framerusercontent.com/images/unKoUzepb8ZH84FtWm7GZo5mFc.png 948w\"},\"\"),height:\"100%\",id:\"tpx9HLxD4\",layoutId:\"tpx9HLxD4\",name:\"Card 4\",style:{height:\"100%\",width:\"100%\"},TrNYXZEHu:\"Podcast Diabetes Connections\",uKGjwOAyu:\"https://diabetes-connections.com\",width:\"100%\",Xwxp9VaZd:\"An engaging podcast sharing personal stories, expert insights, and practical tips for living with diabetes.\"})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cjhsaFjPy:{value:transition2},f6PXf42yu:{value:transition2},HdDApCpni:{value:transition2},VNTyxedZ8:{value:transition2},WR1FLhXWp:{value:transition2},XowYPB5mg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:`max((${componentViewport?.width||\"100vw\"} - 160px) / 5, 1px)`,y:(componentViewport?.y||0)+60+257.6+0,...addPropertyOverrides({cjhsaFjPy:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},DBpDCcntP:{height:630,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+60+257.6+0+2620},f6PXf42yu:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},HdDApCpni:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},Tcb7YiFRk:{width:`max((${componentViewport?.width||\"100vw\"} - 220px) / 5, 1px)`},VNTyxedZ8:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},WR1FLhXWp:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`},XowYPB5mg:{width:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ju801p-container\",\"data-framer-name\":\"Card 5\",layoutDependency:layoutDependency,layoutId:\"X7MNyAuNo-container\",name:\"Card 5\",nodeId:\"X7MNyAuNo\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ResourcesCard,{AKXd_AIWM:addImageAlt({src:\"https://framerusercontent.com/images/Vk0Yf9JW3ki7xqK1KaaBHNq2OQ.png\",srcSet:\"https://framerusercontent.com/images/Vk0Yf9JW3ki7xqK1KaaBHNq2OQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vk0Yf9JW3ki7xqK1KaaBHNq2OQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vk0Yf9JW3ki7xqK1KaaBHNq2OQ.png 1048w\"},\"\"),height:\"100%\",id:\"X7MNyAuNo\",layoutId:\"X7MNyAuNo\",name:\"Card 5\",style:{height:\"100%\",width:\"100%\"},TrNYXZEHu:\"Steven the Insulin Pump\u201D by Amy Christie (for younger kids)\",uKGjwOAyu:\"https://www.amazon.com/Steven-Insulin-Pump-Amy-Christie/dp/B0DMP6FDLR\",width:\"100%\",Xwxp9VaZd:\"A cheerful children\u2019s book that introduces young readers to insulin pump therapy through Steven\u2019s fun adventures.\"})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({RMRlcZoXA:{height:651,width:`calc(${componentViewport?.width||\"100vw\"} - 69px)`,y:(componentViewport?.y||0)+60+257.6+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vh5rgd-container\",\"data-framer-name\":\"Card 1\",layoutDependency:layoutDependency,layoutId:\"qBffrXPz5-container\",name:\"Card 1\",nodeId:\"qBffrXPz5\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ResourcesCard,{AKXd_AIWM:addImageAlt({src:\"https://framerusercontent.com/images/CusKN4YD5JrTihrZbojm0D2jIdA.png\",srcSet:\"https://framerusercontent.com/images/CusKN4YD5JrTihrZbojm0D2jIdA.png?scale-down-to=512 512w,https://framerusercontent.com/images/CusKN4YD5JrTihrZbojm0D2jIdA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CusKN4YD5JrTihrZbojm0D2jIdA.png 1048w\"},\"\"),height:\"100%\",id:\"qBffrXPz5\",layoutId:\"qBffrXPz5\",name:\"Card 1\",style:{height:\"100%\",width:\"100%\"},TrNYXZEHu:\"Beyond Type 1\",uKGjwOAyu:\"https://beyondtype1.org\",width:\"100%\",Xwxp9VaZd:\"Beyond Type 1 is a nonprofit dedicated to uniting and empowering people impacted by diabetes.\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({RMRlcZoXA:{height:651,width:`calc(${componentViewport?.width||\"100vw\"} - 69px)`,y:(componentViewport?.y||0)+60+257.6+0+691}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8q034t-container\",\"data-framer-name\":\"Card 2\",layoutDependency:layoutDependency,layoutId:\"CFC1oSdCj-container\",name:\"Card 2\",nodeId:\"CFC1oSdCj\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ResourcesCard,{AKXd_AIWM:addImageAlt({src:\"https://framerusercontent.com/images/kSgBlKPU6wPUP7Af0PIreKa0Ag.png\",srcSet:\"https://framerusercontent.com/images/kSgBlKPU6wPUP7Af0PIreKa0Ag.png?scale-down-to=512 512w,https://framerusercontent.com/images/kSgBlKPU6wPUP7Af0PIreKa0Ag.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kSgBlKPU6wPUP7Af0PIreKa0Ag.png 1048w\"},\"\"),height:\"100%\",id:\"CFC1oSdCj\",layoutId:\"CFC1oSdCj\",name:\"Card 2\",style:{height:\"100%\",width:\"100%\"},TrNYXZEHu:\"Raising Teens with Diabetes: A Survival Guide for Parents\",uKGjwOAyu:\"https://www.amazon.com/Raising-Teens-Diabetes-Survival-Parents/dp/1938170202\",width:\"100%\",Xwxp9VaZd:\"A concise, practical resource offering guidance, empathy, and real-life strategies for parenting teens with diabetes.\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({RMRlcZoXA:{height:651,width:`calc(${componentViewport?.width||\"100vw\"} - 69px)`,y:(componentViewport?.y||0)+60+257.6+0+1382}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q6w9t9-container\",\"data-framer-name\":\"Card 3\",layoutDependency:layoutDependency,layoutId:\"UyGHNNPAr-container\",name:\"Card 3\",nodeId:\"UyGHNNPAr\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ResourcesCard,{AKXd_AIWM:addImageAlt({src:\"https://framerusercontent.com/images/2r6WOmnXRZ0BxbQq52Pdbjy05I.png\",srcSet:\"https://framerusercontent.com/images/2r6WOmnXRZ0BxbQq52Pdbjy05I.png?scale-down-to=512 512w,https://framerusercontent.com/images/2r6WOmnXRZ0BxbQq52Pdbjy05I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2r6WOmnXRZ0BxbQq52Pdbjy05I.png 1048w\"},\"\"),height:\"100%\",id:\"UyGHNNPAr\",layoutId:\"UyGHNNPAr\",name:\"Card 3\",style:{height:\"100%\",width:\"100%\"},TrNYXZEHu:\"American Diabetes Association Safe at School\",uKGjwOAyu:\"https://diabetes.org/advocacy/safe-at-school-state-laws\",width:\"100%\",Xwxp9VaZd:\"This initiative ensures students with diabetes receive the care and support they need in school, backed by strong state laws.\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({RMRlcZoXA:{height:651,width:`calc(${componentViewport?.width||\"100vw\"} - 69px)`,y:(componentViewport?.y||0)+60+257.6+0+2073}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-147938m-container\",\"data-framer-name\":\"Card 4\",layoutDependency:layoutDependency,layoutId:\"H_n2vJ15P-container\",name:\"Card 4\",nodeId:\"H_n2vJ15P\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ResourcesCard,{AKXd_AIWM:addImageAlt({src:\"https://framerusercontent.com/images/unKoUzepb8ZH84FtWm7GZo5mFc.png\",srcSet:\"https://framerusercontent.com/images/unKoUzepb8ZH84FtWm7GZo5mFc.png?scale-down-to=512 512w,https://framerusercontent.com/images/unKoUzepb8ZH84FtWm7GZo5mFc.png 948w\"},\"\"),height:\"100%\",id:\"H_n2vJ15P\",layoutId:\"H_n2vJ15P\",name:\"Card 4\",style:{height:\"100%\",width:\"100%\"},TrNYXZEHu:\"Podcast Diabetes Connections\",uKGjwOAyu:\"https://diabetes-connections.com\",width:\"100%\",Xwxp9VaZd:\"An engaging podcast sharing personal stories, expert insights, and practical tips for living with diabetes.\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({RMRlcZoXA:{height:651,width:`calc(${componentViewport?.width||\"100vw\"} - 69px)`,y:(componentViewport?.y||0)+60+257.6+0+2764}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jt88bj-container\",\"data-framer-name\":\"Card 5\",layoutDependency:layoutDependency,layoutId:\"jAC08eTDy-container\",name:\"Card 5\",nodeId:\"jAC08eTDy\",rendersWithMotion:true,scopeId:\"tjxCMrYEr\",children:/*#__PURE__*/_jsx(ResourcesCard,{AKXd_AIWM:addImageAlt({src:\"https://framerusercontent.com/images/GCniEQBsAgfmCfV4nZ1ysuw7iRw.webp\",srcSet:\"https://framerusercontent.com/images/GCniEQBsAgfmCfV4nZ1ysuw7iRw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/GCniEQBsAgfmCfV4nZ1ysuw7iRw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/GCniEQBsAgfmCfV4nZ1ysuw7iRw.webp 1380w\"},\"\"),height:\"100%\",id:\"jAC08eTDy\",layoutId:\"jAC08eTDy\",name:\"Card 5\",style:{height:\"100%\",width:\"100%\"},TrNYXZEHu:\"Steven the Insulin Pump\u201D by Amy Christie (for younger kids)\",uKGjwOAyu:\"https://www.amazon.com/Steven-Insulin-Pump-Amy-Christie/dp/B0DMP6FDLR\",width:\"100%\",Xwxp9VaZd:\"A cheerful children\u2019s book that introduces young readers to insulin pump therapy through Steven\u2019s fun adventures.\"})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wf0RV.framer-gvjr55, .framer-wf0RV .framer-gvjr55 { display: block; }\",\".framer-wf0RV.framer-o40tlw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 0px 0px 0px; position: relative; width: 1280px; }\",\".framer-wf0RV .framer-19kn9ve { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wf0RV .framer-jriqe5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wf0RV .framer-2w5nxm, .framer-wf0RV .framer-dm19v5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wf0RV .framer-13x6yr9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wf0RV .framer-joqn47-container, .framer-wf0RV .framer-11eehnf-container { flex: none; height: 64px; position: relative; width: 64px; }\",\".framer-wf0RV .framer-1cfgqw4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wf0RV .framer-fipqo8-container, .framer-wf0RV .framer-1uakle9-container, .framer-wf0RV .framer-1n4qn15-container, .framer-wf0RV .framer-lef795-container, .framer-wf0RV .framer-1ju801p-container, .framer-wf0RV .framer-vh5rgd-container, .framer-wf0RV .framer-8q034t-container, .framer-wf0RV .framer-q6w9t9-container, .framer-wf0RV .framer-147938m-container, .framer-wf0RV .framer-1jt88bj-container { flex: 1 0 0px; height: 651px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wf0RV.framer-o40tlw, .framer-wf0RV .framer-19kn9ve, .framer-wf0RV .framer-jriqe5, .framer-wf0RV .framer-13x6yr9, .framer-wf0RV .framer-1cfgqw4 { gap: 0px; } .framer-wf0RV.framer-o40tlw > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-wf0RV.framer-o40tlw > :first-child, .framer-wf0RV .framer-jriqe5 > :first-child { margin-top: 0px; } .framer-wf0RV.framer-o40tlw > :last-child, .framer-wf0RV .framer-jriqe5 > :last-child { margin-bottom: 0px; } .framer-wf0RV .framer-19kn9ve > *, .framer-wf0RV .framer-13x6yr9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wf0RV .framer-19kn9ve > :first-child, .framer-wf0RV .framer-13x6yr9 > :first-child, .framer-wf0RV .framer-1cfgqw4 > :first-child { margin-left: 0px; } .framer-wf0RV .framer-19kn9ve > :last-child, .framer-wf0RV .framer-13x6yr9 > :last-child, .framer-wf0RV .framer-1cfgqw4 > :last-child { margin-right: 0px; } .framer-wf0RV .framer-jriqe5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wf0RV .framer-1cfgqw4 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",\".framer-wf0RV.framer-v-1uvg3fp.framer-o40tlw, .framer-wf0RV.framer-v-1buzwf8.framer-o40tlw, .framer-wf0RV.framer-v-4lolrz.framer-o40tlw, .framer-wf0RV.framer-v-qtueqe.framer-o40tlw, .framer-wf0RV.framer-v-frxru0.framer-o40tlw, .framer-wf0RV.framer-v-kksq59.framer-o40tlw, .framer-wf0RV.framer-v-1fc49at.framer-o40tlw, .framer-wf0RV.framer-v-1i26d6.framer-o40tlw, .framer-wf0RV.framer-v-189la5g.framer-o40tlw, .framer-wf0RV.framer-v-an2dmx.framer-o40tlw, .framer-wf0RV.framer-v-in8wnj.framer-o40tlw { padding: 60px 30px 0px 30px; }\",\".framer-wf0RV.framer-v-qtueqe .framer-fipqo8-container, .framer-wf0RV.framer-v-frxru0 .framer-1uakle9-container, .framer-wf0RV.framer-v-an2dmx .framer-fipqo8-container, .framer-wf0RV.framer-v-in8wnj .framer-1uakle9-container { order: 4; }\",\".framer-wf0RV.framer-v-qtueqe .framer-lef795-container, .framer-wf0RV.framer-v-frxru0 .framer-1ju801p-container, .framer-wf0RV.framer-v-an2dmx .framer-lef795-container, .framer-wf0RV.framer-v-in8wnj .framer-1ju801p-container { order: 2; }\",\".framer-wf0RV.framer-v-qtueqe .framer-1ju801p-container, .framer-wf0RV.framer-v-frxru0 .framer-fipqo8-container, .framer-wf0RV.framer-v-an2dmx .framer-1ju801p-container, .framer-wf0RV.framer-v-in8wnj .framer-fipqo8-container { order: 3; }\",\".framer-wf0RV.framer-v-1fc49at .framer-19kn9ve, .framer-wf0RV.framer-v-1i26d6 .framer-19kn9ve, .framer-wf0RV.framer-v-189la5g .framer-19kn9ve, .framer-wf0RV.framer-v-an2dmx .framer-19kn9ve, .framer-wf0RV.framer-v-in8wnj .framer-19kn9ve, .framer-wf0RV.framer-v-idadl8 .framer-19kn9ve { max-width: 1200px; }\",\".framer-wf0RV.framer-v-idadl8.framer-o40tlw { padding: 60px 30px 0px 39px; }\",\".framer-wf0RV.framer-v-idadl8 .framer-1cfgqw4, .framer-wf0RV.framer-v-132l0vy .framer-1cfgqw4 { flex-direction: column; }\",\".framer-wf0RV.framer-v-idadl8 .framer-vh5rgd-container, .framer-wf0RV.framer-v-idadl8 .framer-8q034t-container, .framer-wf0RV.framer-v-idadl8 .framer-q6w9t9-container, .framer-wf0RV.framer-v-idadl8 .framer-147938m-container, .framer-wf0RV.framer-v-idadl8 .framer-1jt88bj-container { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wf0RV.framer-v-idadl8 .framer-1cfgqw4 { gap: 0px; } .framer-wf0RV.framer-v-idadl8 .framer-1cfgqw4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wf0RV.framer-v-idadl8 .framer-1cfgqw4 > :first-child { margin-top: 0px; } .framer-wf0RV.framer-v-idadl8 .framer-1cfgqw4 > :last-child { margin-bottom: 0px; } }\",\".framer-wf0RV.framer-v-132l0vy.framer-o40tlw { padding: 60px 20px 0px 20px; width: 390px; }\",\".framer-wf0RV.framer-v-132l0vy .framer-fipqo8-container, .framer-wf0RV.framer-v-132l0vy .framer-lef795-container { flex: none; height: 600px; width: 100%; }\",\".framer-wf0RV.framer-v-132l0vy .framer-1uakle9-container, .framer-wf0RV.framer-v-132l0vy .framer-1n4qn15-container, .framer-wf0RV.framer-v-132l0vy .framer-1ju801p-container { flex: none; height: 630px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wf0RV.framer-v-132l0vy .framer-1cfgqw4 { gap: 0px; } .framer-wf0RV.framer-v-132l0vy .framer-1cfgqw4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wf0RV.framer-v-132l0vy .framer-1cfgqw4 > :first-child { margin-top: 0px; } .framer-wf0RV.framer-v-132l0vy .framer-1cfgqw4 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 890.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"L8OD6KoSD\":{\"layout\":[\"fixed\",\"auto\"]},\"OEVMBvA49\":{\"layout\":[\"fixed\",\"auto\"]},\"XowYPB5mg\":{\"layout\":[\"fixed\",\"auto\"]},\"HdDApCpni\":{\"layout\":[\"fixed\",\"auto\"]},\"VNTyxedZ8\":{\"layout\":[\"fixed\",\"auto\"]},\"Tcb7YiFRk\":{\"layout\":[\"fixed\",\"auto\"]},\"kUiFa627O\":{\"layout\":[\"fixed\",\"auto\"]},\"XOmxmfaIE\":{\"layout\":[\"fixed\",\"auto\"]},\"WR1FLhXWp\":{\"layout\":[\"fixed\",\"auto\"]},\"cjhsaFjPy\":{\"layout\":[\"fixed\",\"auto\"]},\"f6PXf42yu\":{\"layout\":[\"fixed\",\"auto\"]},\"RMRlcZoXA\":{\"layout\":[\"fixed\",\"auto\"]},\"DBpDCcntP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertjxCMrYEr=withCSS(Component,css,\"framer-wf0RV\");export default FramertjxCMrYEr;FramertjxCMrYEr.displayName=\"Resources\";FramertjxCMrYEr.defaultProps={height:890.5,width:1280};addPropertyControls(FramertjxCMrYEr,{variant:{options:[\"KfLN9rlDz\",\"L8OD6KoSD\",\"OEVMBvA49\",\"XowYPB5mg\",\"HdDApCpni\",\"VNTyxedZ8\",\"Tcb7YiFRk\",\"kUiFa627O\",\"XOmxmfaIE\",\"WR1FLhXWp\",\"cjhsaFjPy\",\"f6PXf42yu\",\"RMRlcZoXA\",\"DBpDCcntP\"],optionTitles:[\"Big Desktop All. Dont Edit\",\"Big Desktop 1\",\"Big Desktop 2\",\"Big Desktop 3\",\"Big Desktop 4\",\"Big Desktop 5\",\"Desktop All\",\"Desktop 1\",\"Desktop 2\",\"Desktop 3\",\"Desktop 4\",\"Desktop 5\",\"Tablet 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramertjxCMrYEr,[{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\"}]},...ComponentsButtonArrowFonts,...ComponentsButtonArrow2Fonts,...ResourcesCardFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertjxCMrYEr\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L8OD6KoSD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OEVMBvA49\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XowYPB5mg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HdDApCpni\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VNTyxedZ8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Tcb7YiFRk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kUiFa627O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XOmxmfaIE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WR1FLhXWp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cjhsaFjPy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f6PXf42yu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RMRlcZoXA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DBpDCcntP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"890.5\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1280\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tjxCMrYEr.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Pill from\"#framer/local/canvasComponent/A4XcfP5RJ/A4XcfP5RJ.js\";import PageComponentsSliderTestimonialsV2 from\"#framer/local/canvasComponent/CcUTg73IJ/CcUTg73IJ.js\";import NewsletterNative from\"#framer/local/canvasComponent/jAgd8v5w7/jAgd8v5w7.js\";import HoverGrantCard from\"#framer/local/canvasComponent/jZqF_RvJu/jZqF_RvJu.js\";import MenuHeader from\"#framer/local/canvasComponent/n08ZlQ8uK/n08ZlQ8uK.js\";import FloatingFooter from\"#framer/local/canvasComponent/NTsoqnbIp/NTsoqnbIp.js\";import ByTheNumbers from\"#framer/local/canvasComponent/oHTCWBsnf/oHTCWBsnf.js\";import BottomTicker from\"#framer/local/canvasComponent/p7HYBqyZv/p7HYBqyZv.js\";import CTAContainer from\"#framer/local/canvasComponent/PawUqqDk8/PawUqqDk8.js\";import Resources from\"#framer/local/canvasComponent/tjxCMrYEr/tjxCMrYEr.js\";import BoardMemberHover from\"#framer/local/canvasComponent/wAJK54f_s/wAJK54f_s.js\";import ButtonsButton from\"#framer/local/canvasComponent/yNOMrNmIV/yNOMrNmIV.js\";import BoardMembers from\"#framer/local/collection/W5gs2YXRZ/W5gs2YXRZ.js\";import*as sharedStyle from\"#framer/local/css/NqDJjPXGK/NqDJjPXGK.js\";import*as sharedStyle1 from\"#framer/local/css/V_Ix614EL/V_Ix614EL.js\";import*as sharedStyle2 from\"#framer/local/css/VydSPZ8Pu/VydSPZ8Pu.js\";import metadataProvider from\"#framer/local/webPageMetadata/tQSnISZ0J/tQSnISZ0J.js\";const MenuHeaderFonts=getFonts(MenuHeader);const MenuHeaderWithVariantAppearEffect=withVariantAppearEffect(MenuHeader);const MotionDivWithFX=withFX(motion.div);const HoverGrantCardFonts=getFonts(HoverGrantCard);const PillFonts=getFonts(Pill);const TickerFonts=getFonts(Ticker);const PageComponentsSliderTestimonialsV2Fonts=getFonts(PageComponentsSliderTestimonialsV2);const ByTheNumbersFonts=getFonts(ByTheNumbers);const ButtonsButtonFonts=getFonts(ButtonsButton);const BoardMemberHoverFonts=getFonts(BoardMemberHover);const CTAContainerFonts=getFonts(CTAContainer);const ResourcesFonts=getFonts(Resources);const BottomTickerFonts=getFonts(BottomTicker);const NewsletterNativeFonts=getFonts(NewsletterNative);const ContainerWithFX=withFX(Container);const FloatingFooterFonts=getFonts(FloatingFooter);const breakpoints={fcP0x_FVP:\"(max-width: 767px)\",LQcacJKE_:\"(min-width: 1200px) and (max-width: 1439px)\",qR0KXyKKb:\"(min-width: 768px) and (max-width: 1199px)\",zgtaRrFrp:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hoMaA\";const variantClassNames={fcP0x_FVP:\"framer-v-21kdfs\",LQcacJKE_:\"framer-v-dllb2r\",qR0KXyKKb:\"framer-v-s7ed13\",zgtaRrFrp:\"framer-v-8c4m9b\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"zgtaRrFrp\",Laptop:\"LQcacJKE_\",Phone:\"fcP0x_FVP\",Tablet:\"qR0KXyKKb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"zgtaRrFrp\"};};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,FHtnQkANBvBV1lm1lc,xa6iMRt41vBV1lm1lc,TTd8V3cp4vBV1lm1lc,JVFFO5rmhvBV1lm1lc,idvBV1lm1lc,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"jGHZ3N7Mx\");const elementId1=useRouteElementId(\"kqIwv6OGw\");const ref2=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zgtaRrFrp\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-31918e0b-f62b-419f-989f-48a6ef2ed204, rgb(255, 248, 240)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-8c4m9b\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13krpz6\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:113,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jbfr3-container\",nodeId:\"iJSNu3BWp\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"xjZsz571o\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,variant:\"vKw2R0BdW\"},qR0KXyKKb:{variant:\"pt7VFyWXv\"}},children:/*#__PURE__*/_jsx(MenuHeaderWithVariantAppearEffect,{height:\"100%\",id:\"iJSNu3BWp\",layoutId:\"iJSNu3BWp\",style:{width:\"100%\"},ul3RxEkJg:\"CBK2_6gN0\",variant:\"CjiOA7OPK\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{background:{alt:\"Hero Image \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:3240,pixelWidth:5760,positionX:\"71.4%\",positionY:\"43.3%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp\",srcSet:\"https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp 5760w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Hero Image \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:3240,pixelWidth:5760,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp\",srcSet:\"https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/dZv2ddEZndNRTuM5RFTxSa6eQHU.webp 5760w\"},className:\"framer-1lq7gqb\",\"data-framer-name\":\"Hero Section \",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-83pj2z\",\"data-framer-name\":\"Container \",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ikn81q\",\"data-framer-name\":\"Sections Title & Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o4pzii\",\"data-framer-name\":\"Sections Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:\"Bridging the Gap in Type 1 Diabetes Coverage\"})})},LQcacJKE_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-2.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:\"Bridging the Gap in Type 1 Diabetes Coverage\"})})},qR0KXyKKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:\"Bridging the Gap in Type 1 Diabetes Coverage\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"70px\",\"--framer-letter-spacing\":\"-2.5px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:\"Bridging the Gap in Type 1 Diabetes Coverage\"})}),className:\"framer-1opggic\",\"data-framer-name\":\"The Future of Freight\",fonts:[\"GF;Source Serif 4-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8uem6x\",\"data-styles-preset\":\"NqDJjPXGK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:\"When insurance isn\u2019t enough, we step in \u2014 helping families access the insulin, pumps, and supplies they need.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8uem6x\",\"data-styles-preset\":\"NqDJjPXGK\",style:{\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:\"When insurance isn\u2019t enough, we step in \u2014 helping families access the insulin, pumps, and supplies they need.\"})}),className:\"framer-16zg0h5\",\"data-framer-name\":\"Discover the power of self-driven technology. Safer, faster, and more efficient\u2014transforming the trucking industry one mile at a time.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lem3tw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ngnott\",\"data-framer-name\":\"Check Mark\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+257.2+0+0+0+213.6+0+0+3),pixelHeight:59,pixelWidth:59,src:\"https://framerusercontent.com/images/pqJs8JF4lB0f00SV1p0G2wVkHc.png\"}},LQcacJKE_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+250+167.8+0+0+242.4+0+0+3),pixelHeight:59,pixelWidth:59,src:\"https://framerusercontent.com/images/pqJs8JF4lB0f00SV1p0G2wVkHc.png\"}},qR0KXyKKb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+237.6+0+0+232.8+0+0+3),pixelHeight:59,pixelWidth:59,src:\"https://framerusercontent.com/images/pqJs8JF4lB0f00SV1p0G2wVkHc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+250+160.5+0+0+257+0+0+3),pixelHeight:59,pixelWidth:59,src:\"https://framerusercontent.com/images/pqJs8JF4lB0f00SV1p0G2wVkHc.png\"},className:\"framer-ic2dtc\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8uem6x\",\"data-styles-preset\":\"NqDJjPXGK\",style:{\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:\"Direct Financial Assistance\"})}),className:\"framer-1o5qqkf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c486o3\",\"data-framer-name\":\"Check Mark\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+257.2+0+0+0+213.6+0+36+3),pixelHeight:59,pixelWidth:59,src:\"https://framerusercontent.com/images/pqJs8JF4lB0f00SV1p0G2wVkHc.png\"}},LQcacJKE_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+250+167.8+0+0+242.4+0+36+3),pixelHeight:59,pixelWidth:59,src:\"https://framerusercontent.com/images/pqJs8JF4lB0f00SV1p0G2wVkHc.png\"}},qR0KXyKKb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+237.6+0+0+232.8+0+36+3),pixelHeight:59,pixelWidth:59,src:\"https://framerusercontent.com/images/pqJs8JF4lB0f00SV1p0G2wVkHc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+250+160.5+0+0+257+0+36+3),pixelHeight:59,pixelWidth:59,src:\"https://framerusercontent.com/images/pqJs8JF4lB0f00SV1p0G2wVkHc.png\"},className:\"framer-okflsj\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8uem6x\",\"data-styles-preset\":\"NqDJjPXGK\",style:{\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:\"Active Support\"})}),className:\"framer-1s4ydi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yong4w\",\"data-framer-name\":\"Counter Section \",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0),pixelHeight:155,pixelWidth:151,src:\"https://framerusercontent.com/images/iKwpYyfjOCZdvnUYJnKNJBiU9do.svg\"},className:\"framer-17kppo0\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+1e3-200),pixelHeight:328,pixelWidth:330,src:\"https://framerusercontent.com/images/9n3uejUyrXH73zmdw8qMCCfCDZM.svg\"}},LQcacJKE_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+1e3-349.5),pixelHeight:328,pixelWidth:330,src:\"https://framerusercontent.com/images/9n3uejUyrXH73zmdw8qMCCfCDZM.svg\"}},qR0KXyKKb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+1e3-365),pixelHeight:328,pixelWidth:330,src:\"https://framerusercontent.com/images/9n3uejUyrXH73zmdw8qMCCfCDZM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+521.6-235.5),pixelHeight:328,pixelWidth:330,src:\"https://framerusercontent.com/images/9n3uejUyrXH73zmdw8qMCCfCDZM.svg\"},className:\"framer-11oakdq\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+9),pixelHeight:473,pixelWidth:390,src:\"https://framerusercontent.com/images/FbfioeTLDA6uMdSM8uV2gy1wVQ.svg\"}},LQcacJKE_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+42.3796),pixelHeight:473,pixelWidth:390,src:\"https://framerusercontent.com/images/FbfioeTLDA6uMdSM8uV2gy1wVQ.svg\"}},qR0KXyKKb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+32),pixelHeight:473,pixelWidth:390,src:\"https://framerusercontent.com/images/FbfioeTLDA6uMdSM8uV2gy1wVQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+-14.252),pixelHeight:473,pixelWidth:390,src:\"https://framerusercontent.com/images/FbfioeTLDA6uMdSM8uV2gy1wVQ.svg\"},className:\"framer-l33se3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+1e3-306),pixelHeight:473,pixelWidth:381,src:\"https://framerusercontent.com/images/c8ZrYyYysb8flUYuJdi7vf0yUM.svg\"}},LQcacJKE_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+180.6111),pixelHeight:473,pixelWidth:381,src:\"https://framerusercontent.com/images/c8ZrYyYysb8flUYuJdi7vf0yUM.svg\"}},qR0KXyKKb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+109),pixelHeight:473,pixelWidth:381,src:\"https://framerusercontent.com/images/c8ZrYyYysb8flUYuJdi7vf0yUM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+41.056),pixelHeight:473,pixelWidth:381,src:\"https://framerusercontent.com/images/c8ZrYyYysb8flUYuJdi7vf0yUM.svg\"},className:\"framer-297xxd\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7d33c1\",\"data-framer-name\":\"Container \",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j6invz\",\"data-framer-name\":\"Sections Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-12218f0\",\"data-styles-preset\":\"V_Ix614EL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\"},children:[\"Bridging the \",/*#__PURE__*/_jsx(\"em\",{children:\"Gap\"})]})}),className:\"framer-hbittj\",\"data-framer-name\":\"Revolutionizing Transport with Autonomous Technology\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-8uem6x\",\"data-styles-preset\":\"NqDJjPXGK\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\"},children:\"The late-night low blood sugars. \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\"},children:\"The endless battles with insurance.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\"},children:\"The frustration of feeling like no one understands.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\"},children:\"We know the weight you\u2019re carrying \u2013 because we\u2019ve been there too.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\"},children:\"We\u2019re here to help lift some of that burden by providing direct financial relief and emotional support to families like yours navigating the high costs of diabetes care.\"})]})}),className:\"framer-1y3tnfs\",\"data-framer-name\":\"We\u2019re pioneering the next generation of trucking with self-driven technology. Our mission is to redefine efficiency, safety, and reliability in freight transport.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19978uo\",\"data-framer-name\":\"Counter Section \",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1epbuts\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ggpxr4\",\"data-framer-name\":\"Title Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-vbzi6t\",\"data-styles-preset\":\"VydSPZ8Pu\",style:{\"--framer-text-color\":\"var(--token-d4aaa77c-f393-47e8-9c44-3f59d487f6d9, rgb(31, 31, 31))\"},children:[\"Get Direct \",/*#__PURE__*/_jsx(\"em\",{children:\"Financial\"}),\" Support\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-vbzi6t\",\"data-styles-preset\":\"VydSPZ8Pu\",children:[\"Get Direct \",/*#__PURE__*/_jsx(\"em\",{children:\"Financial\"}),\" Support\"]})}),className:\"framer-1a9ia28\",\"data-framer-name\":\"Types of therapy\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8uem6x\",\"data-styles-preset\":\"NqDJjPXGK\",children:\"Let Us Help Reduce the Financial Burden of Managing Type 1 Diabetes.\"})}),className:\"framer-sqx1du\",\"data-framer-name\":\"Sensa provides a range of counseling and support services to individuals and organizations. Our licensed therapists and counselors are available to help with various mental health issues, including anxiety, depression, stress, and trauma. We also offer personalized counseling plans tailored to the unique needs of each individual or organization.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l2flv6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+2e3+60+0+0+229.6+0+0},LQcacJKE_:{y:(componentViewport?.y||0)+0+2e3+50+0+0+245.6+31851.25},qR0KXyKKb:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1280px)`,y:(componentViewport?.y||0)+0+2e3+40+0+0+245.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:683,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1280px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1521.6+100+0+0+245.6+31851.25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fimrvg-container\",nodeId:\"MmyyDmL_I\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{variant:\"wWbwc67MV\"}},children:/*#__PURE__*/_jsx(HoverGrantCard,{height:\"100%\",id:\"MmyyDmL_I\",layoutId:\"MmyyDmL_I\",style:{height:\"100%\",width:\"100%\"},variant:\"QQxREPxWG\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+2e3+60+0+0+229.6+0+723},LQcacJKE_:{y:(componentViewport?.y||0)+0+2e3+50+0+0+245.6+0},qR0KXyKKb:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1280px)`,y:(componentViewport?.y||0)+0+2e3+40+0+0+245.6+0+703}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64385.5,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1280px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1521.6+100+0+0+245.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t5jdl9-container\",nodeId:\"pQjOL4eEH\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{variant:\"eoXfIJWpa\"}},children:/*#__PURE__*/_jsx(HoverGrantCard,{height:\"100%\",id:\"pQjOL4eEH\",layoutId:\"pQjOL4eEH\",style:{height:\"100%\",width:\"100%\"},variant:\"p7rhL4q0O\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18fu9au\",\"data-framer-name\":\"How It Work  Section \",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y8413k\",\"data-framer-name\":\"Container \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:[\"Helping families access \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d947480c-1042-4a72-b84e-6993be462f97, rgb(26, 116, 205))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"life-saving supplies\"})})]})})},LQcacJKE_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-2.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:[\"Helping families access \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d947480c-1042-4a72-b84e-6993be462f97, rgb(26, 116, 205))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"life-saving supplies\"})})]})})},qR0KXyKKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"55px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:[\"Helping families access \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d947480c-1042-4a72-b84e-6993be462f97, rgb(26, 116, 205))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"life-saving supplies\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"65px\",\"--framer-letter-spacing\":\"-2.5px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-86714643-fdc0-4a61-a09c-339a06de08da, rgb(255, 255, 255))\"},children:[\"Helping families access \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d947480c-1042-4a72-b84e-6993be462f97, rgb(26, 116, 205))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"life-saving supplies\"})})]})}),className:\"framer-4stgvj\",\"data-framer-name\":\"How It Works\",fonts:[\"GF;Source Serif 4-regular\",\"GF;Source Serif 4-italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qchqqe\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bwqib7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AvxHHLVFS\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:30,height:\"100%\",hoverFactor:1,id:\"AvxHHLVFS\",layoutId:\"AvxHHLVFS\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cb1fy9-container\",\"data-framer-name\":\"insulin\",inComponentSlot:true,name:\"insulin\",nodeId:\"kX4K1i9WN\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"kX4K1i9WN\",jbD4_zMby:\"Insulin\",layoutId:\"kX4K1i9WN\",name:\"insulin\",variant:\"TRAyx1RTM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mhueei-container\",\"data-framer-name\":\"glucagon\",inComponentSlot:true,name:\"glucagon\",nodeId:\"zWzTc_rpn\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"zWzTc_rpn\",jbD4_zMby:\"Glucagon\",layoutId:\"zWzTc_rpn\",name:\"glucagon\",variant:\"TRAyx1RTM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18j7gil-container\",\"data-framer-name\":\"meters\",inComponentSlot:true,name:\"meters\",nodeId:\"lSxhM3IKl\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"lSxhM3IKl\",jbD4_zMby:\"Meters\",layoutId:\"lSxhM3IKl\",name:\"meters\",variant:\"TRAyx1RTM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,children:/*#__PURE__*/_jsx(Container,{className:\"framer-be19h6-container\",\"data-framer-name\":\"person1\",inComponentSlot:true,name:\"person1\",nodeId:\"T468j_nvd\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"T468j_nvd\",jbD4_zMby:\"Get Started Now\",layoutId:\"T468j_nvd\",name:\"person1\",style:{height:\"100%\"},tdBmuUbA2:addImageAlt({src:\"https://framerusercontent.com/images/5y8YbxhBhYgPWBSZhSaLgN3wk.svg\"},\"\"),variant:\"jfODZ0glS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-698mew-container\",\"data-framer-name\":\"syringes\",inComponentSlot:true,name:\"syringes\",nodeId:\"IB8saAh_H\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"IB8saAh_H\",jbD4_zMby:\"Syringes\",layoutId:\"IB8saAh_H\",name:\"syringes\",variant:\"TRAyx1RTM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-26cg93-container\",\"data-framer-name\":\"pods\",inComponentSlot:true,name:\"pods\",nodeId:\"FExR888c8\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"FExR888c8\",jbD4_zMby:\"Pods\",layoutId:\"FExR888c8\",name:\"pods\",variant:\"TRAyx1RTM\",width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e9nzlx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nXZjwkPwD\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:30,height:\"100%\",hoverFactor:1,id:\"nXZjwkPwD\",layoutId:\"nXZjwkPwD\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xb7vgj-container\",\"data-framer-name\":\"sensors\",inComponentSlot:true,name:\"sensors\",nodeId:\"Zew9iDi_o\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"Zew9iDi_o\",jbD4_zMby:\"Sensors\",layoutId:\"Zew9iDi_o\",name:\"sensors\",variant:\"TRAyx1RTM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a0458i-container\",\"data-framer-name\":\"cgms\",inComponentSlot:true,name:\"cgms\",nodeId:\"I328IQOKS\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"I328IQOKS\",jbD4_zMby:\"CGM's\",layoutId:\"I328IQOKS\",name:\"cgms\",variant:\"TRAyx1RTM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-117p6nh-container\",\"data-framer-name\":\"person4\",inComponentSlot:true,name:\"person4\",nodeId:\"U6j8iBK75\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"U6j8iBK75\",jbD4_zMby:\"Get Started Now\",layoutId:\"U6j8iBK75\",name:\"person4\",style:{height:\"100%\",width:\"100%\"},tdBmuUbA2:addImageAlt({positionX:\"47.3%\",positionY:\"45.3%\",src:\"https://framerusercontent.com/images/gzWxVIyEGNmAMaW2qK7O0k5ag.png\",srcSet:\"https://framerusercontent.com/images/gzWxVIyEGNmAMaW2qK7O0k5ag.png 432w\"},\"\"),variant:\"jfODZ0glS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cxl9wf-container\",\"data-framer-name\":\"insulin pumps\",inComponentSlot:true,name:\"insulin pumps\",nodeId:\"RxunXvLvW\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"RxunXvLvW\",jbD4_zMby:\"Insulin Pumps\",layoutId:\"RxunXvLvW\",name:\"insulin pumps\",variant:\"TRAyx1RTM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-173mxgp-container\",\"data-framer-name\":\"cartridges\",inComponentSlot:true,name:\"cartridges\",nodeId:\"bGj53fmZ9\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"bGj53fmZ9\",jbD4_zMby:\"Cartridges\",layoutId:\"bGj53fmZ9\",name:\"cartridges\",variant:\"TRAyx1RTM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ozny5-container\",\"data-framer-name\":\"insertion sets\",inComponentSlot:true,name:\"insertion sets\",nodeId:\"W1LFPlwfw\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"W1LFPlwfw\",jbD4_zMby:\"Insertion Sets\",layoutId:\"W1LFPlwfw\",name:\"insertion sets\",variant:\"TRAyx1RTM\",width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18aow3j-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VCSKcKJIU\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:30,height:\"100%\",hoverFactor:1,id:\"VCSKcKJIU\",layoutId:\"VCSKcKJIU\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nn8xwd-container\",\"data-framer-name\":\"person 3\",inComponentSlot:true,name:\"person 3\",nodeId:\"ZgFiIA_8H\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"ZgFiIA_8H\",jbD4_zMby:\"Get Started Now\",layoutId:\"ZgFiIA_8H\",name:\"person 3\",style:{height:\"100%\"},tdBmuUbA2:addImageAlt({positionX:\"41.9%\",positionY:\"20%\",src:\"https://framerusercontent.com/images/nWzeWwCDNSwF9NOScaIl3rWyUE.png\",srcSet:\"https://framerusercontent.com/images/nWzeWwCDNSwF9NOScaIl3rWyUE.png 590w\"},\"\"),variant:\"jfODZ0glS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nrhd33-container\",\"data-framer-name\":\"adhesive\",inComponentSlot:true,name:\"adhesive\",nodeId:\"D8Xfnt5Iq\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"D8Xfnt5Iq\",jbD4_zMby:\"Adhesive\",layoutId:\"D8Xfnt5Iq\",name:\"adhesive\",variant:\"TRAyx1RTM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11sps53-container\",\"data-framer-name\":\"glucose tablets\",inComponentSlot:true,name:\"glucose tablets\",nodeId:\"uC2A71kP7\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"uC2A71kP7\",jbD4_zMby:\"Glucose Tablets\",layoutId:\"uC2A71kP7\",name:\"glucose tablets\",variant:\"TRAyx1RTM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2o2pqf-container\",\"data-framer-name\":\"person 2\",inComponentSlot:true,name:\"person 2\",nodeId:\"wS4nPJvSm\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"wS4nPJvSm\",jbD4_zMby:\"Get Started Now\",layoutId:\"wS4nPJvSm\",name:\"person 2\",style:{height:\"100%\"},tdBmuUbA2:addImageAlt({positionX:\"37.1%\",positionY:\"21.4%\",src:\"https://framerusercontent.com/images/P687PqDfkX6JnySXRpx7JHARt7o.png\",srcSet:\"https://framerusercontent.com/images/P687PqDfkX6JnySXRpx7JHARt7o.png 432w\"},\"\"),variant:\"jfODZ0glS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ys52c1-container\",\"data-framer-name\":\"ketone strips\",inComponentSlot:true,name:\"ketone strips\",nodeId:\"I6xCuE7Si\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"I6xCuE7Si\",jbD4_zMby:\"Ketone Strips\",layoutId:\"I6xCuE7Si\",name:\"ketone strips\",variant:\"TRAyx1RTM\",width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1ika04p\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+68328.1+60+157},LQcacJKE_:{y:(componentViewport?.y||0)+0+67731.1+89+135},qR0KXyKKb:{y:(componentViewport?.y||0)+0+68164.1+80+27}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:576,width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1280px)`,y:(componentViewport?.y||0)+0+67352.7+0+187,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16736ny-container\",nodeId:\"ziYSaNuQN\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{variant:\"aQIGD9p6W\"},qR0KXyKKb:{variant:\"krZRNPb8n\"}},children:/*#__PURE__*/_jsx(PageComponentsSliderTestimonialsV2,{height:\"100%\",id:\"ziYSaNuQN\",layoutId:\"ziYSaNuQN\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"AhF1v8ksX\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{y:(componentViewport?.y||0)+0+69328.1},LQcacJKE_:{y:(componentViewport?.y||0)+0+68731.1},qR0KXyKKb:{y:(componentViewport?.y||0)+0+68914.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:610,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+68352.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gf5jlf-container\",nodeId:\"q6pd1FAYd\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{variant:\"h_anETnv0\"},LQcacJKE_:{variant:\"Qk0GYpRyu\"},qR0KXyKKb:{variant:\"BMjxSnXAn\"}},children:/*#__PURE__*/_jsx(ByTheNumbers,{height:\"100%\",id:\"q6pd1FAYd\",layoutId:\"q6pd1FAYd\",style:{width:\"100%\"},variant:\"sqOQ7Wfw3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-19k84vq\",\"data-framer-name\":\"Board Members\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9b2x4z\",\"data-border\":true,\"data-framer-name\":\"Section Facts\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cndowx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11jz5p0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-vbzi6t\",\"data-styles-preset\":\"VydSPZ8Pu\",children:\"The People Behind the Mission\"})}),className:\"framer-1ehpukg\",\"data-framer-name\":\"By the numbers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-8uem6x\",\"data-styles-preset\":\"NqDJjPXGK\",style:{\"--framer-text-color\":\"var(--token-565d61c5-02f3-4749-8297-a3018aca0322, rgb(31, 31, 31))\"},children:[\"Our team \",/*#__PURE__*/_jsx(\"em\",{children:\"get\u2019s it\"}),\" because we\u2019ve lived it. Many of us have Type 1 Diabetes ourselves or care for someone who does.\"]})}),className:\"framer-p2vs62\",\"data-framer-name\":\"By the numbers\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":MFeWHLv2f\",webPageId:\"C1ru2H0Of\"},implicitPathVariables:undefined},{href:{hash:\":MFeWHLv2f\",webPageId:\"C1ru2H0Of\"},implicitPathVariables:undefined},{href:{hash:\":MFeWHLv2f\",webPageId:\"C1ru2H0Of\"},implicitPathVariables:undefined},{href:{hash:\":MFeWHLv2f\",webPageId:\"C1ru2H0Of\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{y:(componentViewport?.y||0)+0+69938.1+60+0+100+0+0+235.6},LQcacJKE_:{y:(componentViewport?.y||0)+0+69341.1+0+0+100+0+0+154.6},qR0KXyKKb:{y:(componentViewport?.y||0)+0+69524.1+80+0+100+0+0+235.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+68962.7+0+0+100+0+0+154.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pq8qe-container\",nodeId:\"pGjxjGPix\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{rImk10kr9:resolvedLinks[3]},LQcacJKE_:{rImk10kr9:resolvedLinks[1]},qR0KXyKKb:{rImk10kr9:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonsButton,{height:\"100%\",id:\"pGjxjGPix\",jbD4_zMby:\"Meet the Rest of Our Board\",layoutId:\"pGjxjGPix\",rImk10kr9:resolvedLinks[0],variant:\"AT206aTmt\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7bfc5k\",\"data-framer-name\":\"Team\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vBV1lm1lc\",data:BoardMembers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"vBV1lm1lc\",name:\"FHtnQkANB\",type:\"Identifier\"},{collection:\"vBV1lm1lc\",name:\"xa6iMRt41\",type:\"Identifier\"},{collection:\"vBV1lm1lc\",name:\"TTd8V3cp4\",type:\"Identifier\"},{collection:\"vBV1lm1lc\",name:\"JVFFO5rmh\",type:\"Identifier\"},{collection:\"vBV1lm1lc\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{arguments:[{collection:\"vBV1lm1lc\",name:\"xa6iMRt41\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"Will\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},operator:\"or\",right:{arguments:[{collection:\"vBV1lm1lc\",name:\"xa6iMRt41\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"Lisa O\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"or\",right:{arguments:[{collection:\"vBV1lm1lc\",name:\"xa6iMRt41\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"Drew\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({FHtnQkANB:FHtnQkANBvBV1lm1lc,id:idvBV1lm1lc,JVFFO5rmh:JVFFO5rmhvBV1lm1lc,TTd8V3cp4:TTd8V3cp4vBV1lm1lc,xa6iMRt41:xa6iMRt41vBV1lm1lc},index)=>{xa6iMRt41vBV1lm1lc??=\"\";TTd8V3cp4vBV1lm1lc??=\"\";JVFFO5rmhvBV1lm1lc??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vBV1lm1lc-${idvBV1lm1lc}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TTd8V3cp4:TTd8V3cp4vBV1lm1lc},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2sg2v0\",\"data-framer-name\":\"Team\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{TTd8V3cp4:TTd8V3cp4vBV1lm1lc},webPageId:\"VMsDmTBk_\"},implicitPathVariables:undefined},{href:{pathVariables:{TTd8V3cp4:TTd8V3cp4vBV1lm1lc},webPageId:\"VMsDmTBk_\"},implicitPathVariables:undefined},{href:{pathVariables:{TTd8V3cp4:TTd8V3cp4vBV1lm1lc},webPageId:\"VMsDmTBk_\"},implicitPathVariables:undefined},{href:{pathVariables:{TTd8V3cp4:TTd8V3cp4vBV1lm1lc},webPageId:\"VMsDmTBk_\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{width:`max(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px), 50px), 1px)`,y:(componentViewport?.y||0)+0+69938.1+60+0+100+316.6+0+0+0},LQcacJKE_:{y:(componentViewport?.y||0)+0+69341.1+0+0+100+267.6+0+0+0},qR0KXyKKb:{width:`max(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1280px), 50px), 1px)`,y:(componentViewport?.y||0)+0+69524.1+80+0+100+348.6+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1280px) - 60px) / 3, 50px), 1px)`,y:(componentViewport?.y||0)+0+68962.7+0+0+100+267.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gy8rag-container\",nodeId:\"yJr0en4jb\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{vIWzzpl5Q:resolvedLinks1[3]},LQcacJKE_:{vIWzzpl5Q:resolvedLinks1[1]},qR0KXyKKb:{vIWzzpl5Q:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(BoardMemberHover,{bJ0spY9NP:JVFFO5rmhvBV1lm1lc,height:\"100%\",id:\"yJr0en4jb\",layoutId:\"yJr0en4jb\",style:{width:\"100%\"},vIWzzpl5Q:resolvedLinks1[0],w2HvULNei:xa6iMRt41vBV1lm1lc,width:\"100%\",YfShtjES2:toResponsiveImage(FHtnQkANBvBV1lm1lc)})})})})})})})})},idvBV1lm1lc);})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{y:(componentViewport?.y||0)+0+71096.7},LQcacJKE_:{y:(componentViewport?.y||0)+0+70338.7},qR0KXyKKb:{y:(componentViewport?.y||0)+0+70722.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:785,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+69960.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1893kti-container\",nodeId:\"p4wCv7Jvc\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{variant:\"i4c0Aq2j0\"},LQcacJKE_:{variant:\"Ra6d7FlN4\"},qR0KXyKKb:{variant:\"bgqMb8rpm\"}},children:/*#__PURE__*/_jsx(CTAContainer,{height:\"100%\",id:\"p4wCv7Jvc\",layoutId:\"p4wCv7Jvc\",style:{width:\"100%\"},variant:\"qkdyZMOq6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{y:(componentViewport?.y||0)+0+71881.7},LQcacJKE_:{y:(componentViewport?.y||0)+0+71123.7},qR0KXyKKb:{y:(componentViewport?.y||0)+0+71507.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:890,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+70745.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vz16jq-container\",nodeId:\"NpDU4YULm\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{variant:\"DBpDCcntP\"},qR0KXyKKb:{variant:\"RMRlcZoXA\"}},children:/*#__PURE__*/_jsx(Resources,{height:\"100%\",id:\"NpDU4YULm\",layoutId:\"NpDU4YULm\",style:{width:\"100%\"},variant:\"L8OD6KoSD\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1azi9r4\",\"data-framer-name\":\"Ticker + Newsletter\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{y:(componentViewport?.y||0)+0+72771.7+200+0},LQcacJKE_:{y:(componentViewport?.y||0)+0+72013.7+200+0},qR0KXyKKb:{y:(componentViewport?.y||0)+0+72397.7+200+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+71635.3+200+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xgsegh-container\",nodeId:\"sWNWszZZX\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(BottomTicker,{height:\"100%\",id:\"sWNWszZZX\",layoutId:\"sWNWszZZX\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{y:(componentViewport?.y||0)+0+72771.7+200+290},LQcacJKE_:{y:(componentViewport?.y||0)+0+72013.7+200+290},qR0KXyKKb:{y:(componentViewport?.y||0)+0+72397.7+200+290}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:245,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+71635.3+200+290,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u3tn2-container\",\"data-framer-name\":\"Newsletter (Native)\",name:\"Newsletter (Native)\",nodeId:\"Hhj6Aa2Yi\",rendersWithMotion:true,scopeId:\"tQSnISZ0J\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{variant:\"rza1IGDSg\"}},children:/*#__PURE__*/_jsx(NewsletterNative,{height:\"100%\",id:\"Hhj6Aa2Yi\",layoutId:\"Hhj6Aa2Yi\",name:\"Newsletter (Native)\",style:{width:\"100%\"},variant:\"TbtaF4CCW\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-od7f7e\",\"data-framer-name\":\"Floating Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+73506.7+150+0},LQcacJKE_:{y:(componentViewport?.y||0)+0+72748.7+150+0},qR0KXyKKb:{y:(componentViewport?.y||0)+0+73132.7+150+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+72370.3+150+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xb4j3n-container\",\"data-framer-name\":\"Floating Footer\",name:\"Floating Footer\",nodeId:\"jLb686WJ7\",scopeId:\"tQSnISZ0J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcP0x_FVP:{style:{width:\"100%\"},variant:\"BVb0su1FM\"},qR0KXyKKb:{style:{width:\"100%\"},variant:\"QsLkLFy0N\"}},children:/*#__PURE__*/_jsx(FloatingFooter,{height:\"100%\",id:\"jLb686WJ7\",layoutId:\"jLb686WJ7\",name:\"Floating Footer\",style:{height:\"100%\",width:\"100%\"},variant:\"Qia8tBfoU\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hoMaA.framer-1ckhzxi, .framer-hoMaA .framer-1ckhzxi { display: block; }\",\".framer-hoMaA.framer-8c4m9b { align-content: center; align-items: center; background-color: var(--token-31918e0b-f62b-419f-989f-48a6ef2ed204, #fff8f0); 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-hoMaA .framer-13krpz6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-hoMaA .framer-jbfr3-container, .framer-hoMaA .framer-gf5jlf-container, .framer-hoMaA .framer-1893kti-container, .framer-hoMaA .framer-vz16jq-container, .framer-hoMaA .framer-xgsegh-container, .framer-hoMaA .framer-1u3tn2-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-hoMaA .framer-1lq7gqb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 97px; height: 100vh; justify-content: center; overflow: hidden; padding: 250px 30px 110px 30px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-83pj2z { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-hoMaA .framer-1ikn81q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-hoMaA .framer-o4pzii { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-1opggic, .framer-hoMaA .framer-hbittj, .framer-hoMaA .framer-4stgvj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hoMaA .framer-16zg0h5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 83%; word-break: break-word; word-wrap: break-word; }\",\".framer-hoMaA .framer-lem3tw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-ngnott, .framer-hoMaA .framer-c486o3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-ic2dtc, .framer-hoMaA .framer-okflsj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-hoMaA .framer-1o5qqkf, .framer-hoMaA .framer-1s4ydi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hoMaA .framer-1yong4w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 100px 30px 200px 30px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-17kppo0 { flex: none; height: 109px; left: 0px; position: absolute; top: 0px; width: 145px; z-index: 1; }\",\".framer-hoMaA .framer-11oakdq { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: -38px; flex: none; height: 274px; position: absolute; right: 129px; width: 274px; z-index: 1; }\",\".framer-hoMaA .framer-l33se3 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 288px; position: absolute; right: 30px; top: calc(24.87500000000002% - 288px / 2); width: 235px; z-index: 1; }\",\".framer-hoMaA .framer-297xxd { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 313px; left: 27px; position: absolute; top: calc(37.87500000000002% - 313px / 2); width: 255px; z-index: 1; }\",\".framer-hoMaA .framer-7d33c1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1281px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-j6invz { 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-hoMaA .framer-1y3tnfs { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 45%; word-break: break-word; word-wrap: break-word; }\",\".framer-hoMaA .framer-19978uo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-1epbuts { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-ggpxr4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-1a9ia28, .framer-hoMaA .framer-sqx1du { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hoMaA .framer-1l2flv6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-fimrvg-container, .framer-hoMaA .framer-1t5jdl9-container { aspect-ratio: 0.9324009324009324 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 665px); position: relative; width: 1px; }\",\".framer-hoMaA .framer-18fu9au { align-content: center; align-items: center; background-color: var(--token-4dc44ca4-6856-4373-986a-1ddde7a053b6, #1a4359); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100vh; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-1y8413k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-qchqqe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-1bwqib7-container { flex: none; height: 127px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-1cb1fy9-container, .framer-hoMaA .framer-mhueei-container, .framer-hoMaA .framer-18j7gil-container, .framer-hoMaA .framer-698mew-container, .framer-hoMaA .framer-26cg93-container, .framer-hoMaA .framer-xb7vgj-container, .framer-hoMaA .framer-1a0458i-container, .framer-hoMaA .framer-cxl9wf-container, .framer-hoMaA .framer-173mxgp-container, .framer-hoMaA .framer-3ozny5-container, .framer-hoMaA .framer-1nrhd33-container, .framer-hoMaA .framer-11sps53-container, .framer-hoMaA .framer-1ys52c1-container { height: auto; position: relative; width: auto; }\",\".framer-hoMaA .framer-be19h6-container, .framer-hoMaA .framer-1nn8xwd-container, .framer-hoMaA .framer-2o2pqf-container { height: 105px; position: relative; width: auto; }\",\".framer-hoMaA .framer-1e9nzlx-container { flex: none; height: 124px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-117p6nh-container { height: 105px; position: relative; width: 400px; }\",\".framer-hoMaA .framer-18aow3j-container { flex: none; height: 128px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-1ika04p { align-content: center; align-items: center; background-color: var(--token-31918e0b-f62b-419f-989f-48a6ef2ed204, #f8f8f8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px 30px 50px 30px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-16736ny-container { flex: none; height: auto; max-width: 1280px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-19k84vq { align-content: center; align-items: center; background-color: var(--token-31918e0b-f62b-419f-989f-48a6ef2ed204, #f8f8f8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-9b2x4z { --border-bottom-width: 0px; --border-color: var(--token-565d61c5-02f3-4749-8297-a3018aca0322, #1f1f1f); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-cndowx { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-11jz5p0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hoMaA .framer-1ehpukg, .framer-hoMaA .framer-p2vs62 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hoMaA .framer-1pq8qe-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hoMaA .framer-7bfc5k { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-2sg2v0 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-gy8rag-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-hoMaA .framer-1azi9r4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: center; overflow: hidden; padding: 200px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-od7f7e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 32px 32px 32px; position: relative; width: 100%; }\",\".framer-hoMaA .framer-1xb4j3n-container { aspect-ratio: 4.115942028985507 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 335px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hoMaA.framer-8c4m9b, .framer-hoMaA .framer-13krpz6, .framer-hoMaA .framer-1lq7gqb, .framer-hoMaA .framer-1ikn81q, .framer-hoMaA .framer-o4pzii, .framer-hoMaA .framer-lem3tw, .framer-hoMaA .framer-ngnott, .framer-hoMaA .framer-c486o3, .framer-hoMaA .framer-1yong4w, .framer-hoMaA .framer-7d33c1, .framer-hoMaA .framer-j6invz, .framer-hoMaA .framer-19978uo, .framer-hoMaA .framer-1epbuts, .framer-hoMaA .framer-ggpxr4, .framer-hoMaA .framer-1l2flv6, .framer-hoMaA .framer-18fu9au, .framer-hoMaA .framer-1y8413k, .framer-hoMaA .framer-qchqqe, .framer-hoMaA .framer-1ika04p, .framer-hoMaA .framer-19k84vq, .framer-hoMaA .framer-9b2x4z, .framer-hoMaA .framer-11jz5p0, .framer-hoMaA .framer-2sg2v0, .framer-hoMaA .framer-1azi9r4, .framer-hoMaA .framer-od7f7e { gap: 0px; } .framer-hoMaA.framer-8c4m9b > *, .framer-hoMaA .framer-13krpz6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hoMaA.framer-8c4m9b > :first-child, .framer-hoMaA .framer-13krpz6 > :first-child, .framer-hoMaA .framer-1lq7gqb > :first-child, .framer-hoMaA .framer-1ikn81q > :first-child, .framer-hoMaA .framer-o4pzii > :first-child, .framer-hoMaA .framer-lem3tw > :first-child, .framer-hoMaA .framer-1yong4w > :first-child, .framer-hoMaA .framer-7d33c1 > :first-child, .framer-hoMaA .framer-j6invz > :first-child, .framer-hoMaA .framer-19978uo > :first-child, .framer-hoMaA .framer-1epbuts > :first-child, .framer-hoMaA .framer-ggpxr4 > :first-child, .framer-hoMaA .framer-18fu9au > :first-child, .framer-hoMaA .framer-1y8413k > :first-child, .framer-hoMaA .framer-qchqqe > :first-child, .framer-hoMaA .framer-1ika04p > :first-child, .framer-hoMaA .framer-19k84vq > :first-child, .framer-hoMaA .framer-9b2x4z > :first-child, .framer-hoMaA .framer-11jz5p0 > :first-child, .framer-hoMaA .framer-1azi9r4 > :first-child, .framer-hoMaA .framer-od7f7e > :first-child { margin-top: 0px; } .framer-hoMaA.framer-8c4m9b > :last-child, .framer-hoMaA .framer-13krpz6 > :last-child, .framer-hoMaA .framer-1lq7gqb > :last-child, .framer-hoMaA .framer-1ikn81q > :last-child, .framer-hoMaA .framer-o4pzii > :last-child, .framer-hoMaA .framer-lem3tw > :last-child, .framer-hoMaA .framer-1yong4w > :last-child, .framer-hoMaA .framer-7d33c1 > :last-child, .framer-hoMaA .framer-j6invz > :last-child, .framer-hoMaA .framer-19978uo > :last-child, .framer-hoMaA .framer-1epbuts > :last-child, .framer-hoMaA .framer-ggpxr4 > :last-child, .framer-hoMaA .framer-18fu9au > :last-child, .framer-hoMaA .framer-1y8413k > :last-child, .framer-hoMaA .framer-qchqqe > :last-child, .framer-hoMaA .framer-1ika04p > :last-child, .framer-hoMaA .framer-19k84vq > :last-child, .framer-hoMaA .framer-9b2x4z > :last-child, .framer-hoMaA .framer-11jz5p0 > :last-child, .framer-hoMaA .framer-1azi9r4 > :last-child, .framer-hoMaA .framer-od7f7e > :last-child { margin-bottom: 0px; } .framer-hoMaA .framer-1lq7gqb > * { margin: 0px; margin-bottom: calc(97px / 2); margin-top: calc(97px / 2); } .framer-hoMaA .framer-1ikn81q > *, .framer-hoMaA .framer-j6invz > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-hoMaA .framer-o4pzii > *, .framer-hoMaA .framer-1yong4w > *, .framer-hoMaA .framer-19978uo > *, .framer-hoMaA .framer-18fu9au > *, .framer-hoMaA .framer-qchqqe > *, .framer-hoMaA .framer-19k84vq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hoMaA .framer-lem3tw > *, .framer-hoMaA .framer-ggpxr4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hoMaA .framer-ngnott > *, .framer-hoMaA .framer-c486o3 > *, .framer-hoMaA .framer-2sg2v0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hoMaA .framer-ngnott > :first-child, .framer-hoMaA .framer-c486o3 > :first-child, .framer-hoMaA .framer-1l2flv6 > :first-child, .framer-hoMaA .framer-2sg2v0 > :first-child { margin-left: 0px; } .framer-hoMaA .framer-ngnott > :last-child, .framer-hoMaA .framer-c486o3 > :last-child, .framer-hoMaA .framer-1l2flv6 > :last-child, .framer-hoMaA .framer-2sg2v0 > :last-child { margin-right: 0px; } .framer-hoMaA .framer-7d33c1 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-hoMaA .framer-1epbuts > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-hoMaA .framer-1l2flv6 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-hoMaA .framer-1y8413k > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-hoMaA .framer-1ika04p > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-hoMaA .framer-9b2x4z > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-hoMaA .framer-11jz5p0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-hoMaA .framer-1azi9r4 > *, .framer-hoMaA .framer-od7f7e > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-hoMaA[data-border=\"true\"]::after, .framer-hoMaA [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: 1200px) and (max-width: 1439px) { .framer-hoMaA.framer-8c4m9b { width: 1200px; } .framer-hoMaA .framer-83pj2z, .framer-hoMaA .framer-7d33c1 { max-width: 1140px; } .framer-hoMaA .framer-1yong4w { height: 100vh; } .framer-hoMaA .framer-11oakdq { bottom: 117px; height: 233px; right: 98px; width: 232px; } .framer-hoMaA .framer-l33se3 { height: 225px; right: 56px; top: calc(15.462962962962983% - 224.5px / 2); width: 183px; } .framer-hoMaA .framer-297xxd { height: 211px; left: 45px; top: calc(28.611111111111132% - 211px / 2); width: 172px; } .framer-hoMaA .framer-1y3tnfs { width: 60%; } .framer-hoMaA .framer-19978uo { padding: 50px 30px 50px 30px; } .framer-hoMaA .framer-fimrvg-container, .framer-hoMaA .framer-1t5jdl9-container { height: var(--framer-aspect-ratio-supported, 590px); } .framer-hoMaA .framer-18fu9au { padding: 50px 0px 50px 0px; } .framer-hoMaA .framer-1y8413k { flex: 1 0 0px; gap: unset; height: 1px; justify-content: space-evenly; } .framer-hoMaA .framer-1ika04p { padding: 89px 30px 65px 30px; } .framer-hoMaA .framer-1azi9r4, .framer-hoMaA .framer-od7f7e { overflow: visible; } .framer-hoMaA .framer-1xb4j3n-container { height: var(--framer-aspect-ratio-supported, 276px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hoMaA .framer-1y8413k { gap: 0px; } .framer-hoMaA .framer-1y8413k > *, .framer-hoMaA .framer-1y8413k > :first-child, .framer-hoMaA .framer-1y8413k > :last-child { margin: 0px; } }}\",\"@media (min-width: 768px) and (max-width: 1199px) { .framer-hoMaA.framer-8c4m9b { width: 768px; } .framer-hoMaA .framer-jbfr3-container { order: 1; } .framer-hoMaA .framer-1lq7gqb { padding: 150px 30px 80px 30px; } .framer-hoMaA .framer-83pj2z { max-width: 768px; } .framer-hoMaA .framer-1ikn81q { width: 70%; } .framer-hoMaA .framer-16zg0h5 { width: 100%; } .framer-hoMaA .framer-1yong4w { height: 100vh; } .framer-hoMaA .framer-11oakdq { bottom: 160px; height: 205px; right: 37px; width: 205px; } .framer-hoMaA .framer-l33se3 { height: 197px; top: 32px; width: 160px; } .framer-hoMaA .framer-297xxd { height: 211px; left: 30px; top: 109px; width: 172px; } .framer-hoMaA .framer-7d33c1 { gap: 50px; max-width: 768px; } .framer-hoMaA .framer-hbittj { order: 0; } .framer-hoMaA .framer-1y3tnfs { order: 1; width: 60%; } .framer-hoMaA .framer-19978uo { padding: 40px 30px 40px 30px; } .framer-hoMaA .framer-1l2flv6 { flex-direction: column; gap: 20px; } .framer-hoMaA .framer-fimrvg-container { flex: none; height: var(--framer-aspect-ratio-supported, 759px); width: 100%; } .framer-hoMaA .framer-1t5jdl9-container { flex: none; height: var(--framer-aspect-ratio-supported, 760px); width: 100%; } .framer-hoMaA .framer-18fu9au { height: 75vh; padding: 40px 0px 40px 0px; } .framer-hoMaA .framer-1y8413k { flex: 1 0 0px; gap: 50px; height: 1px; justify-content: center; } .framer-hoMaA .framer-1ika04p { height: 75vh; padding: 80px 30px 40px 30px; } .framer-hoMaA .framer-19k84vq { padding: 80px 30px 40px 30px; } .framer-hoMaA .framer-cndowx { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-hoMaA .framer-11jz5p0 { flex: none; width: 100%; } .framer-hoMaA .framer-7bfc5k { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-hoMaA .framer-1xb4j3n-container { aspect-ratio: unset; height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hoMaA .framer-7d33c1, .framer-hoMaA .framer-1l2flv6, .framer-hoMaA .framer-1y8413k, .framer-hoMaA .framer-cndowx { gap: 0px; } .framer-hoMaA .framer-7d33c1 > *, .framer-hoMaA .framer-1y8413k > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-hoMaA .framer-7d33c1 > :first-child, .framer-hoMaA .framer-1l2flv6 > :first-child, .framer-hoMaA .framer-1y8413k > :first-child, .framer-hoMaA .framer-cndowx > :first-child { margin-top: 0px; } .framer-hoMaA .framer-7d33c1 > :last-child, .framer-hoMaA .framer-1l2flv6 > :last-child, .framer-hoMaA .framer-1y8413k > :last-child, .framer-hoMaA .framer-cndowx > :last-child { margin-bottom: 0px; } .framer-hoMaA .framer-1l2flv6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hoMaA .framer-cndowx > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\",\"@media (max-width: 767px) { .framer-hoMaA.framer-8c4m9b { width: 390px; } .framer-hoMaA .framer-13krpz6 { position: fixed; } .framer-hoMaA .framer-jbfr3-container { z-index: 1; } .framer-hoMaA .framer-1lq7gqb { padding: 150px 20px 60px 20px; } .framer-hoMaA .framer-83pj2z { flex-direction: column; gap: 30px; justify-content: center; max-width: 390px; } .framer-hoMaA .framer-1ikn81q { align-content: center; align-items: center; gap: 24px; justify-content: center; width: 100%; } .framer-hoMaA .framer-o4pzii { align-content: center; align-items: center; justify-content: center; } .framer-hoMaA .framer-16zg0h5, .framer-hoMaA .framer-1y3tnfs { width: 100%; } .framer-hoMaA .framer-lem3tw { justify-content: center; } .framer-hoMaA .framer-1yong4w { height: 100vh; padding: 100px 20px 250px 20px; } .framer-hoMaA .framer-11oakdq { bottom: 73px; height: 127px; right: 20px; width: 127px; } .framer-hoMaA .framer-l33se3 { height: 139px; right: 20px; top: 9px; width: 114px; } .framer-hoMaA .framer-297xxd { bottom: 148px; height: 158px; left: 5px; top: unset; width: 129px; } .framer-hoMaA .framer-7d33c1 { gap: 30px; max-width: 390px; } .framer-hoMaA .framer-19978uo { padding: 60px 20px 30px 20px; } .framer-hoMaA .framer-1epbuts, .framer-hoMaA .framer-9b2x4z { gap: 32px; } .framer-hoMaA .framer-1l2flv6 { flex-direction: column; } .framer-hoMaA .framer-fimrvg-container, .framer-hoMaA .framer-1t5jdl9-container { flex: none; height: var(--framer-aspect-ratio-supported, 376px); width: 100%; } .framer-hoMaA .framer-18fu9au { height: 90vh; padding: 60px 0px 60px 0px; } .framer-hoMaA .framer-1y8413k { flex: 1 0 0px; gap: 40px; height: 1px; justify-content: center; } .framer-hoMaA .framer-4stgvj { width: 90%; } .framer-hoMaA .framer-1ika04p { padding: 60px 20px 50px 20px; } .framer-hoMaA .framer-19k84vq { background-color: var(--token-31918e0b-f62b-419f-989f-48a6ef2ed204, #fff8f0); padding: 60px 20px 50px 20px; } .framer-hoMaA .framer-cndowx { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-hoMaA .framer-11jz5p0 { flex: none; width: 100%; } .framer-hoMaA .framer-7bfc5k { gap: 32px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-hoMaA .framer-od7f7e { padding: 150px 20px 20px 20px; } .framer-hoMaA .framer-1xb4j3n-container { aspect-ratio: unset; height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hoMaA .framer-83pj2z, .framer-hoMaA .framer-1ikn81q, .framer-hoMaA .framer-7d33c1, .framer-hoMaA .framer-1epbuts, .framer-hoMaA .framer-1l2flv6, .framer-hoMaA .framer-1y8413k, .framer-hoMaA .framer-9b2x4z, .framer-hoMaA .framer-cndowx, .framer-hoMaA .framer-7bfc5k { gap: 0px; } .framer-hoMaA .framer-83pj2z > *, .framer-hoMaA .framer-7d33c1 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-hoMaA .framer-83pj2z > :first-child, .framer-hoMaA .framer-1ikn81q > :first-child, .framer-hoMaA .framer-7d33c1 > :first-child, .framer-hoMaA .framer-1epbuts > :first-child, .framer-hoMaA .framer-1l2flv6 > :first-child, .framer-hoMaA .framer-1y8413k > :first-child, .framer-hoMaA .framer-9b2x4z > :first-child, .framer-hoMaA .framer-cndowx > :first-child { margin-top: 0px; } .framer-hoMaA .framer-83pj2z > :last-child, .framer-hoMaA .framer-1ikn81q > :last-child, .framer-hoMaA .framer-7d33c1 > :last-child, .framer-hoMaA .framer-1epbuts > :last-child, .framer-hoMaA .framer-1l2flv6 > :last-child, .framer-hoMaA .framer-1y8413k > :last-child, .framer-hoMaA .framer-9b2x4z > :last-child, .framer-hoMaA .framer-cndowx > :last-child { margin-bottom: 0px; } .framer-hoMaA .framer-1ikn81q > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hoMaA .framer-1epbuts > *, .framer-hoMaA .framer-9b2x4z > *, .framer-hoMaA .framer-cndowx > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hoMaA .framer-1l2flv6 > *, .framer-hoMaA .framer-1y8413k > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hoMaA .framer-7bfc5k > *, .framer-hoMaA .framer-7bfc5k > :first-child, .framer-hoMaA .framer-7bfc5k > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8411.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LQcacJKE_\":{\"layout\":[\"fixed\",\"auto\"]},\"qR0KXyKKb\":{\"layout\":[\"fixed\",\"auto\"]},\"fcP0x_FVP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"jGHZ3N7Mx\":{\"pattern\":\":jGHZ3N7Mx\",\"name\":\"hero \"},\"kqIwv6OGw\":{\"pattern\":\":kqIwv6OGw\",\"name\":\"grants\"}}\n * @framerResponsiveScreen\n */const FramertQSnISZ0J=withCSS(Component,css,\"framer-hoMaA\");export default FramertQSnISZ0J;FramertQSnISZ0J.displayName=\"Home 03\";FramertQSnISZ0J.defaultProps={height:8411.5,width:1440};addFonts(FramertQSnISZ0J,[{explicitInter:true,fonts:[{family:\"Source Serif 4\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourceserif4/v13/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhlXD-wGvjU.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Source Serif 4\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourceserif4/v13/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dDs4DrjXEXw.woff2\",weight:\"400\"}]},...MenuHeaderFonts,...HoverGrantCardFonts,...PillFonts,...TickerFonts,...PageComponentsSliderTestimonialsV2Fonts,...ByTheNumbersFonts,...ButtonsButtonFonts,...BoardMemberHoverFonts,...CTAContainerFonts,...ResourcesFonts,...BottomTickerFonts,...NewsletterNativeFonts,...FloatingFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertQSnISZ0J\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"8411.5\",\"framerScrollSections\":\"{\\\"jGHZ3N7Mx\\\":{\\\"pattern\\\":\\\":jGHZ3N7Mx\\\",\\\"name\\\":\\\"hero \\\"},\\\"kqIwv6OGw\\\":{\\\"pattern\\\":\\\":kqIwv6OGw\\\",\\\"name\\\":\\\"grants\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LQcacJKE_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qR0KXyKKb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fcP0x_FVP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "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", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "jbD4_zMby", "tdBmuUbA2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerA4XcfP5RJ", "withCSS", "A4XcfP5RJ_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Jh_gzM42k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1c133ht", "args", "scopingClassNames", "cx", "LayoutGroup", "SVG", "css", "FramerFMigKw_lD", "withCSS", "FMigKw_lD_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Jh_gzM42k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1c133ht", "args", "scopingClassNames", "cx", "LayoutGroup", "SVG", "css", "FramerKCq4xg4O8", "withCSS", "KCq4xg4O8_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Jh_gzM42k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1c133ht", "args", "scopingClassNames", "cx", "LayoutGroup", "SVG", "css", "FramerKpe75vavS", "withCSS", "Kpe75vavS_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "nameYear", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "i1MCaDK9o", "R_CIJ3P8p", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapipjzao", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "css", "FramermvRYPnMRg", "withCSS", "mvRYPnMRg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Jh_gzM42k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1c133ht", "args", "scopingClassNames", "cx", "LayoutGroup", "SVG", "css", "FramerU6ehA4SeH", "withCSS", "U6ehA4SeH_default", "addPropertyControls", "ControlType", "addFonts", "PageComponentsTestimonialsCardV2Fonts", "getFonts", "mvRYPnMRg_default", "ComponentsButtonArrowFonts", "FMigKw_lD_default", "ComponentsButtonArrow2Fonts", "Kpe75vavS_default", "ComponentsButtonArrow3Fonts", "U6ehA4SeH_default", "ComponentsButtonArrow4Fonts", "KCq4xg4O8_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "Jh_gzM42k1ko71s4", "args", "Jh_gzM42k1xc7s4r", "Jh_gzM42kmxmzxt", "Jh_gzM42keg7x66", "Jh_gzM42kt5y0t1", "Jh_gzM42k11uli68", "Jh_gzM42k1e6hpgu", "Jh_gzM42kr2rgsk", "Jh_gzM42k10nbrxl", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerCcUTg73IJ", "withCSS", "CcUTg73IJ_default", "addPropertyControls", "ControlType", "addFonts", "ButtonsButtonFonts", "getFonts", "yNOMrNmIV_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1garwa0", "args", "CycleVariantState", "onMouseLeave1ru0l42", "onMouseLeave1enrsfw", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerjZqF_RvJu", "withCSS", "jZqF_RvJu_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Jh_gzM42k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1c133ht", "args", "scopingClassNames", "cx", "LayoutGroup", "SVG", "css", "FramerFMigKw_lD", "withCSS", "FMigKw_lD_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Jh_gzM42k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1c133ht", "args", "scopingClassNames", "cx", "LayoutGroup", "SVG", "css", "FramerKpe75vavS", "withCSS", "Kpe75vavS_default", "addPropertyControls", "ControlType", "addFonts", "FooterLink3Fonts", "getFonts", "LBFEZXvrO_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "picture", "resourceDescription", "resourceLink", "resourceName", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "AKXd_AIWM", "TrNYXZEHu", "Xwxp9VaZd", "uKGjwOAyu", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "LBFEZXvrO_default", "css", "FramerM1JIXDsBo", "withCSS", "M1JIXDsBo_default", "addPropertyControls", "ControlType", "addFonts", "FooterLink3Fonts", "getFontsFromSharedStyle", "fonts", "ComponentsButtonArrowFonts", "getFonts", "FMigKw_lD_default", "ComponentsButtonArrow2Fonts", "Kpe75vavS_default", "ResourcesCardFonts", "M1JIXDsBo_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "addImageAlt", "image", "alt", "Variants", "motion", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "Jh_gzM42k19a2gpz", "args", "Jh_gzM42k3xrp6v", "Jh_gzM42k1pn9k52", "Jh_gzM42k129tucc", "Jh_gzM42k23eqov", "Jh_gzM42k18q4i3p", "Jh_gzM42k1wlmh7a", "Jh_gzM42k10z5k98", "Jh_gzM42k1e4fzcf", "Jh_gzM42k12woeze", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramertjxCMrYEr", "withCSS", "tjxCMrYEr_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MenuHeaderFonts", "getFonts", "n08ZlQ8uK_default", "MenuHeaderWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "HoverGrantCardFonts", "jZqF_RvJu_default", "PillFonts", "A4XcfP5RJ_default", "TickerFonts", "Ticker", "PageComponentsSliderTestimonialsV2Fonts", "CcUTg73IJ_default", "ByTheNumbersFonts", "oHTCWBsnf_default", "ButtonsButtonFonts", "yNOMrNmIV_default", "BoardMemberHoverFonts", "wAJK54f_s_default", "CTAContainerFonts", "PawUqqDk8_default", "ResourcesFonts", "tjxCMrYEr_default", "BottomTickerFonts", "p7HYBqyZv_default", "NewsletterNativeFonts", "jAgd8v5w7_default", "ContainerWithFX", "Container", "FloatingFooterFonts", "NTsoqnbIp_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "addImageAlt", "image", "alt", "animation1", "transition2", "animation2", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "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", "FHtnQkANBvBV1lm1lc", "xa6iMRt41vBV1lm1lc", "TTd8V3cp4vBV1lm1lc", "JVFFO5rmhvBV1lm1lc", "idvBV1lm1lc", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "elementId1", "ref2", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "MenuHeaderWithVariantAppearEffect", "getLoadingLazyAtYPosition", "Image2", "MotionDivWithFX", "x", "RichText2", "jZqF_RvJu_default", "Ticker", "A4XcfP5RJ_default", "CcUTg73IJ_default", "oHTCWBsnf_default", "ResolveLinks", "resolvedLinks", "yNOMrNmIV_default", "ChildrenCanSuspend", "W5gs2YXRZ_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks1", "wAJK54f_s_default", "PawUqqDk8_default", "tjxCMrYEr_default", "p7HYBqyZv_default", "ContainerWithFX", "jAgd8v5w7_default", "NTsoqnbIp_default", "css", "FramertQSnISZ0J", "withCSS", "tQSnISZ0J_default", "addFonts", "MenuHeaderFonts", "HoverGrantCardFonts", "PillFonts", "TickerFonts", "PageComponentsSliderTestimonialsV2Fonts", "ByTheNumbersFonts", "ButtonsButtonFonts", "BoardMemberHoverFonts", "CTAContainerFonts", "ResourcesFonts", "BottomTickerFonts", "NewsletterNativeFonts", "FloatingFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
