{"version":3,"file":"bmOmz8iwh.CrclhNMA.mjs","names":["size"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js","https:/framerusercontent.com/modules/KJ9z7mntUjDrqHBd8w3v/AQpGub6aoDPls4mcjIjS/bmOmz8iwh.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}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;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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}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,hoverFactor,animateToValue,speed]);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:\"✨\"}),/*#__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\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (189896a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const TickerFonts=getFonts(Ticker);const MotionSectionWithFX=withFX(motion.section);const cycleOrder=[\"noBNBQZb2\",\"vdv_aSlJm\",\"Elu_hjZ4r\"];const serializationHash=\"framer-TAKFM\";const variantClassNames={Elu_hjZ4r:\"framer-v-1hu3vd9\",noBNBQZb2:\"framer-v-wkahqu\",vdv_aSlJm:\"framer-v-hzm8fp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:16};const transition1={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition3={damping:40,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:16};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:\"noBNBQZb2\",Phone:\"Elu_hjZ4r\",Tablet:\"vdv_aSlJm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"noBNBQZb2\"};};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:\"noBNBQZb2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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:transition2,children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-wkahqu\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"noBNBQZb2\",ref:refBinding,style:{...style},...addPropertyOverrides({Elu_hjZ4r:{\"data-framer-name\":\"Phone\"},vdv_aSlJm:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10ivt5g\",layoutDependency:layoutDependency,layoutId:\"S0TPy16Th\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmtlbiBNZWRpdW0=\",\"--framer-font-family\":'\"Larken Medium\", \"Larken Medium Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"Trusted by\"})}),className:\"framer-12nz1pg\",\"data-framer-appear-id\":\"12nz1pg\",\"data-framer-name\":\"Get your unstructured data Enterprise AI-ready\",fonts:[\"CUSTOM;Larken Medium\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"qZ4gz3P9F\",optimized:true,style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Elu_hjZ4r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmtlbiBNZWRpdW0=\",\"--framer-font-family\":'\"Larken Medium\", \"Larken Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"Trusted by\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmtlbiBNZWRpdW0=\",\"--framer-font-family\":'\"Larken Medium\", \"Larken Medium Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(112deg, rgb(90, 253, 165) -16%, rgb(38, 198, 255) 100%)\"},children:\"82%\"})})}),className:\"framer-cmmsv\",\"data-framer-appear-id\":\"cmmsv\",\"data-framer-name\":\"Get your unstructured data Enterprise AI-ready\",fonts:[\"CUSTOM;Larken Medium\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"iTPa_syOR\",optimized:true,style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Elu_hjZ4r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmtlbiBNZWRpdW0=\",\"--framer-font-family\":'\"Larken Medium\", \"Larken Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(112deg, rgb(90, 253, 165) -16%, rgb(38, 198, 255) 100%)\"},children:\"82%\"})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmtlbiBNZWRpdW0=\",\"--framer-font-family\":'\"Larken Medium\", \"Larken Medium Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"of\"})}),className:\"framer-baejb3\",\"data-framer-appear-id\":\"baejb3\",\"data-framer-name\":\"Get your unstructured data Enterprise AI-ready\",fonts:[\"CUSTOM;Larken Medium\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"Av9JbQ7RU\",optimized:true,style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Elu_hjZ4r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmtlbiBNZWRpdW0=\",\"--framer-font-family\":'\"Larken Medium\", \"Larken Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"of\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmtlbiBNZWRpdW0=\",\"--framer-font-family\":'\"Larken Medium\", \"Larken Medium Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"the Fortune 1000\"})}),className:\"framer-1kdfacn\",\"data-framer-appear-id\":\"1kdfacn\",\"data-framer-name\":\"Get your unstructured data Enterprise AI-ready\",fonts:[\"CUSTOM;Larken Medium\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"d0DAzGfjo\",optimized:true,style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Elu_hjZ4r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmtlbiBNZWRpdW0=\",\"--framer-font-family\":'\"Larken Medium\", \"Larken Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"the Fortune 1000\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ipkid5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kvbJNXxtZ-container\",nodeId:\"kvbJNXxtZ\",rendersWithMotion:true,scopeId:\"bmOmz8iwh\",style:{opacity:.7},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"kvbJNXxtZ\",layoutId:\"kvbJNXxtZ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w0eqnt\",\"data-framer-name\":\"Logo of_JPMorganChase_2024\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"PUv_0hnSH\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 28\"><path d=\"M 53.504 20.558 C 54.006 20.757 54.75 20.886 55.736 20.945 L 55.736 21.361 L 44.608 21.361 L 44.608 20.945 C 45.592 20.886 46.338 20.757 46.84 20.558 C 47.342 20.361 47.69 20.044 47.88 19.606 C 48.07 19.17 48.166 18.525 48.166 17.674 L 48.166 4.411 L 48.076 4.411 L 40.446 21.747 L 40.356 21.747 L 32.182 4.472 L 32.092 4.472 L 32.092 17.674 C 32.092 18.525 32.192 19.17 32.394 19.606 C 32.594 20.042 32.942 20.359 33.434 20.558 C 33.926 20.757 34.666 20.886 35.65 20.945 L 35.65 21.361 L 27.16 21.361 L 27.16 20.945 C 28.144 20.886 28.884 20.757 29.376 20.558 C 29.868 20.361 30.216 20.044 30.416 19.606 C 30.616 19.17 30.718 18.525 30.718 17.674 L 30.718 4.381 C 30.718 3.53 30.618 2.885 30.416 2.449 C 30.214 2.013 29.868 1.696 29.376 1.497 C 28.882 1.299 28.144 1.169 27.16 1.11 L 27.16 0.694 L 34.776 0.694 L 41.732 15.666 L 48.478 0.694 L 55.736 0.694 L 55.736 1.11 C 54.75 1.169 54.006 1.299 53.504 1.497 C 53.002 1.696 52.65 2.017 52.448 2.463 C 52.246 2.908 52.146 3.547 52.146 4.381 L 52.146 17.674 C 52.146 18.525 52.246 19.17 52.448 19.606 C 52.65 20.044 53.002 20.359 53.504 20.558 Z M 68.624 10.537 C 69.246 11.667 69.558 12.945 69.558 14.373 C 69.558 15.8 69.246 17.078 68.624 18.208 C 68 19.338 67.132 20.211 66.016 20.825 C 64.9 21.44 63.628 21.747 62.2 21.747 C 60.772 21.747 59.506 21.44 58.4 20.825 C 57.294 20.211 56.424 19.338 55.792 18.208 C 55.158 17.078 54.842 15.8 54.842 14.373 C 54.842 12.945 55.158 11.667 55.792 10.537 C 56.426 9.408 57.294 8.536 58.4 7.921 C 59.506 7.306 60.772 6.998 62.2 6.998 C 63.628 6.998 64.9 7.306 66.016 7.921 C 67.132 8.536 68 9.408 68.624 10.537 Z M 65.608 14.373 C 65.608 12.965 65.472 11.756 65.2 10.745 C 64.928 9.733 64.536 8.966 64.024 8.439 C 63.512 7.915 62.902 7.651 62.2 7.651 C 61.496 7.651 60.888 7.913 60.376 8.439 C 59.864 8.966 59.472 9.733 59.2 10.745 C 58.928 11.756 58.792 12.965 58.792 14.373 C 58.792 15.781 58.928 16.989 59.2 18.001 C 59.472 19.012 59.864 19.779 60.376 20.306 C 60.888 20.832 61.496 21.095 62.2 21.095 C 62.904 21.095 63.512 20.832 64.024 20.306 C 64.536 19.781 64.928 19.012 65.2 18.001 C 65.472 16.989 65.608 15.781 65.608 14.373 Z M 79.784 10.181 C 80.306 10.181 80.78 10.269 81.202 10.449 L 81.202 7.177 C 80.94 7.059 80.63 7 80.268 7 C 79.342 7 78.524 7.402 77.81 8.205 C 77.096 9.007 76.54 9.93 76.024 11.768 L 75.956 11.768 L 75.956 7.118 L 75.836 7.118 L 69.864 8.814 L 69.864 9.201 C 70.548 9.201 71.076 9.266 71.448 9.394 C 71.82 9.522 72.086 9.731 72.248 10.019 C 72.408 10.307 72.49 10.697 72.49 11.194 L 72.49 18.569 C 72.49 19.184 72.43 19.639 72.31 19.937 C 72.19 20.235 71.968 20.458 71.646 20.606 C 71.324 20.754 70.812 20.868 70.108 20.947 L 70.108 21.363 L 78.492 21.363 L 78.492 20.947 C 77.788 20.888 77.26 20.783 76.908 20.635 C 76.556 20.487 76.31 20.259 76.17 19.951 C 76.03 19.643 75.958 19.182 75.958 18.569 L 75.958 12.724 C 76.59 11.259 77.982 10.181 79.784 10.181 Z M 123.794 19.919 C 123.674 19.612 123.614 19.152 123.614 18.537 L 123.614 11.756 C 123.614 8.572 121.826 6.998 119.482 6.998 C 117.138 6.998 115.632 8.635 114.988 9.506 L 114.928 9.506 L 114.928 7.118 L 114.808 7.118 L 108.836 8.814 L 108.836 9.201 C 109.5 9.201 110.022 9.266 110.404 9.394 C 110.786 9.522 111.058 9.725 111.218 10.003 C 111.378 10.281 111.46 10.668 111.46 11.163 L 111.46 18.535 C 111.46 19.15 111.4 19.612 111.28 19.917 C 111.16 20.225 110.938 20.452 110.616 20.602 C 110.294 20.75 109.782 20.864 109.078 20.943 L 109.078 21.359 L 116.92 21.359 L 116.92 20.943 C 116.378 20.864 115.96 20.75 115.668 20.602 C 115.376 20.454 115.18 20.225 115.08 19.917 C 114.98 19.61 114.93 19.15 114.93 18.535 L 114.93 10.587 C 115.624 9.757 116.44 8.96 117.766 8.96 C 119.588 8.96 120.148 10.315 120.148 11.845 L 120.148 18.535 C 120.148 19.15 120.092 19.612 119.982 19.917 C 119.872 20.225 119.68 20.452 119.408 20.602 C 119.136 20.75 118.72 20.864 118.156 20.943 L 118.156 21.359 L 125.908 21.359 L 125.908 20.943 C 125.244 20.864 124.756 20.75 124.446 20.602 C 124.13 20.454 123.916 20.227 123.794 19.919 Z M 200 17.257 C 199.334 18.691 197.476 21.747 193.696 21.747 C 190.106 21.747 187.122 18.853 187.122 14.493 C 187.122 13.125 187.424 11.866 188.026 10.717 C 188.63 9.567 189.448 8.66 190.484 7.996 C 191.52 7.331 192.66 7 193.908 7 C 197.53 7 199.336 9.516 199.336 12.139 L 199.336 12.73 L 190.35 12.73 C 190.35 12.783 190.348 12.835 190.348 12.888 C 190.348 16.043 191.772 19.074 195.354 19.074 C 198.078 19.074 199.218 17.587 199.666 17.052 Z M 190.412 11.726 L 196.048 11.726 C 196.01 9.571 195.358 7.69 193.576 7.682 C 191.904 7.676 190.692 9.214 190.412 11.726 Z M 159.998 19.919 C 159.878 19.612 159.818 19.152 159.818 18.537 L 159.818 11.756 C 159.818 10.725 159.642 9.853 159.29 9.139 C 158.938 8.426 158.45 7.891 157.828 7.534 C 157.204 7.177 156.49 7 155.686 7 C 154.76 7 153.942 7.233 153.228 7.698 C 152.514 8.163 151.836 8.834 151.192 9.705 L 151.132 9.705 L 151.132 0 L 151.012 0 L 145.04 1.696 L 145.04 2.082 C 145.704 2.082 146.226 2.147 146.608 2.275 C 146.99 2.404 147.262 2.607 147.422 2.885 C 147.582 3.163 147.664 3.549 147.664 4.044 L 147.664 18.535 C 147.664 19.15 147.604 19.612 147.484 19.917 C 147.364 20.225 147.142 20.452 146.82 20.602 C 146.498 20.75 145.986 20.864 145.282 20.943 L 145.282 21.359 L 153.124 21.359 L 153.124 20.943 C 152.582 20.864 152.164 20.75 151.872 20.602 C 151.58 20.454 151.384 20.225 151.284 19.917 C 151.184 19.61 151.134 19.15 151.134 18.535 L 151.134 10.587 C 151.828 9.757 152.644 8.96 153.97 8.96 C 154.714 8.96 155.296 9.203 155.72 9.688 C 156.142 10.173 156.354 10.892 156.354 11.843 L 156.354 18.535 C 156.354 19.15 156.298 19.612 156.188 19.917 C 156.078 20.225 155.886 20.452 155.614 20.602 C 155.342 20.75 154.926 20.864 154.362 20.943 L 154.362 21.359 L 162.114 21.359 L 162.114 20.943 C 161.45 20.864 160.962 20.75 160.652 20.602 C 160.334 20.454 160.12 20.227 159.998 19.919 Z M 138.092 20.077 C 133.644 20.107 130.116 16.581 130.116 10.861 C 130.116 4.815 133.402 1.29 137.16 1.29 C 140.918 1.29 142.53 4.628 143.352 7.907 L 143.954 7.897 L 143.954 1.863 C 142.542 1.092 140.226 0.223 136.86 0.223 C 130.368 0.223 125.468 4.906 125.468 11.159 C 125.468 17.115 129.556 21.826 136.59 21.797 C 140.468 21.767 143.172 19.486 144.464 17.737 L 144.044 17.293 C 143.172 18.271 141.428 20.048 138.092 20.077 Z M 182.87 13.095 L 180.79 12.113 C 179.408 11.504 178.618 10.697 178.618 9.705 C 178.618 8.581 179.662 7.812 181.122 7.812 C 183.248 7.812 184.35 8.972 184.806 11.549 L 185.434 11.549 L 185.434 7.803 C 184.81 7.564 183.162 7 181.484 7 C 178.166 7 176.146 9.057 176.146 11.431 C 176.146 12.344 176.392 13.14 176.884 13.825 C 177.376 14.509 178.116 15.098 179.1 15.593 L 181.272 16.664 C 182.758 17.332 183.354 17.991 183.354 18.983 C 183.354 20.079 182.458 20.937 180.76 20.937 C 178.278 20.937 177.098 18.616 176.774 16.753 L 176.146 16.753 L 176.146 20.588 C 177.092 21.191 178.872 21.747 180.52 21.747 C 183.7 21.747 185.918 19.827 185.918 17.11 C 185.916 15.152 184.856 13.927 182.87 13.095 Z M 18.006 12.352 L 18.006 17.674 C 18.006 18.506 18.126 19.145 18.368 19.592 C 18.61 20.038 19.012 20.361 19.574 20.558 C 20.136 20.757 20.992 20.886 22.138 20.945 L 22.138 21.361 L 10.466 21.361 L 10.466 20.945 C 11.45 20.886 12.19 20.757 12.682 20.558 C 13.174 20.361 13.522 20.044 13.722 19.606 C 13.922 19.17 14.024 18.525 14.024 17.674 L 14.024 4.472 C 14.024 1.753 12.778 1.201 10.886 1.201 C 8.81 1.201 7.54 1.751 7.54 4.383 L 7.54 19.154 C 7.54 22.493 5.34 25.667 0.996 25.667 C 0.66 25.667 0.328 25.648 0 25.61 L 0 25.253 C 1.032 25.192 1.868 24.847 2.504 24.21 C 3.208 23.506 3.56 22.353 3.56 20.746 L 3.56 4.381 C 3.56 3.549 3.46 2.908 3.258 2.463 C 3.056 2.017 2.704 1.696 2.202 1.497 C 1.7 1.299 0.966 1.169 0 1.11 L 0 0.694 L 20.61 0.694 C 25.298 0.694 28.2 3.005 28.2 6.493 C 28.2 10.486 24.222 12.352 20.666 12.352 Z M 18.006 11.553 L 19.444 11.553 C 21.89 11.553 23.948 10.141 23.948 6.523 C 23.948 2.1 20.986 1.493 19.518 1.493 L 18.006 1.493 Z M 107.62 20.174 C 108.118 20.174 108.556 19.959 108.834 19.774 L 108.834 20.479 C 108.278 20.992 107.246 21.737 105.694 21.737 C 104.386 21.737 103.288 20.919 102.996 19.671 L 102.918 19.671 C 102.408 20.621 100.85 21.822 99.15 21.822 C 97.11 21.822 95.608 20.481 95.608 18.443 C 95.608 16.849 96.714 15.788 98.554 15.146 L 102.918 13.596 L 102.918 11.598 C 102.918 9.782 101.586 8.944 100.142 8.944 C 98.668 8.944 97.308 9.559 95.892 10.983 L 95.468 10.593 C 96.714 8.609 98.698 6.988 101.56 6.988 C 104.28 6.988 106.462 8.749 106.434 11.598 L 106.378 18.723 C 106.374 19.726 106.8 20.174 107.62 20.174 Z M 102.918 14.526 L 101.162 15.228 C 99.802 15.759 98.924 16.374 98.924 17.798 C 98.924 18.999 99.774 19.837 100.964 19.837 C 101.588 19.837 102.494 19.361 102.92 18.831 L 102.92 14.526 Z M 174.202 20.174 C 174.702 20.174 175.138 19.957 175.418 19.774 L 175.418 20.479 C 174.862 20.992 173.83 21.739 172.276 21.739 C 170.968 21.739 169.87 20.921 169.578 19.673 L 169.5 19.673 C 168.99 20.623 167.432 21.824 165.732 21.824 C 163.692 21.824 162.19 20.483 162.19 18.445 C 162.19 16.851 163.296 15.79 165.136 15.148 L 169.5 13.598 L 169.5 11.598 C 169.5 9.782 168.168 8.944 166.724 8.944 C 165.25 8.944 163.89 9.559 162.474 10.983 L 162.048 10.593 C 163.294 8.609 165.278 6.988 168.14 6.988 C 170.86 6.988 173.042 8.749 173.014 11.598 L 172.958 18.723 C 172.956 19.726 173.38 20.174 174.202 20.174 Z M 169.498 14.526 L 167.742 15.228 C 166.382 15.759 165.504 16.374 165.504 17.798 C 165.504 18.999 166.354 19.837 167.544 19.837 C 168.168 19.837 169.074 19.361 169.5 18.831 L 169.5 14.526 Z M 92.026 7.976 C 93.316 8.968 93.886 10.395 93.886 11.614 C 93.886 14.814 91.112 16.473 87.954 16.473 C 87.122 16.473 86.318 16.356 85.584 16.128 C 85.176 16.437 84.826 16.841 84.826 17.315 C 84.826 18.332 86.508 18.537 87.512 18.594 L 90.936 18.827 C 93.68 19.003 95.42 19.961 95.42 22.376 C 95.42 25.431 91.756 27.963 86.42 27.963 C 83.322 27.963 81.108 26.915 81.108 25.052 C 81.108 23.433 82.012 22.506 84.336 21.406 C 82.816 20.97 82.464 20.077 82.464 19.204 C 82.464 18.009 83.546 16.936 85.012 15.919 C 83.256 15.189 82.022 13.744 82.022 11.61 C 82.022 8.41 84.796 6.752 87.954 6.752 C 89.406 6.752 90.562 7.077 91.452 7.588 C 92.116 6.272 93.426 4.742 95.774 4.742 L 95.774 7.473 C 94.52 7.091 92.99 7.29 92.026 7.976 Z M 83.586 23.776 C 83.586 25.464 85.534 26.219 88.072 26.219 C 90.492 26.219 93.766 25.143 93.766 23.425 C 93.766 22.435 93.206 22.203 91.73 22.086 L 85.8 21.653 C 85.452 21.627 85.138 21.588 84.856 21.534 C 84.002 22.191 83.586 22.865 83.586 23.776 Z M 90.226 11.616 C 90.226 8.881 89.312 7.572 87.954 7.572 C 86.596 7.572 85.682 8.881 85.682 11.616 C 85.682 14.351 86.596 15.66 87.954 15.66 C 89.312 15.66 90.226 14.351 90.226 11.616 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9620354065,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l14j2l\",\"data-framer-name\":\"IBM\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"oeLd05Mbb\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 33\"><path d=\"M 0 0 L 0 2.258 L 16.156 2.258 L 16.156 0 Z M 18.445 0 L 18.445 2.258 L 41.468 2.258 C 41.468 2.258 39.116 0 36.001 0 Z M 45.984 0 L 45.984 2.258 L 59.912 2.258 L 59.086 0 Z M 69.898 0 L 69.072 2.258 L 82.873 2.258 L 82.873 0 Z M 0 4.391 L 0 6.649 L 16.156 6.649 L 16.156 4.391 Z M 18.445 4.394 L 18.445 6.649 L 44.139 6.649 C 44.139 6.649 43.839 4.911 43.316 4.394 Z M 45.984 4.394 L 45.984 6.649 L 61.439 6.649 L 60.674 4.394 Z M 68.245 4.394 L 67.479 6.649 L 82.873 6.649 L 82.873 4.394 Z M 4.643 8.782 L 4.643 11.043 L 11.639 11.043 L 11.639 8.782 Z M 23.088 8.782 L 23.088 11.043 L 30.084 11.043 L 30.084 8.782 Z M 36.89 8.782 L 36.89 11.043 L 43.886 11.043 C 43.886 11.043 44.33 9.849 44.33 8.782 Z M 50.627 8.782 L 50.627 11.043 L 63.031 11.043 L 62.204 8.782 Z M 66.721 8.782 L 65.891 11.043 L 78.357 11.043 L 78.357 8.782 Z M 4.643 13.176 L 4.643 15.434 L 11.639 15.434 L 11.639 13.176 Z M 23.088 13.176 L 23.088 15.434 L 40.959 15.434 C 40.959 15.434 42.454 14.275 42.93 13.176 Z M 50.627 13.176 L 50.627 15.434 L 57.623 15.434 L 57.623 14.177 L 58.068 15.434 L 70.884 15.434 L 71.361 14.177 L 71.361 15.434 L 78.357 15.434 L 78.357 13.176 L 65.223 13.176 L 64.526 15.088 L 63.826 13.176 Z M 4.643 17.567 L 4.643 19.824 L 11.639 19.824 L 11.639 17.567 Z M 23.088 17.567 L 23.088 19.824 L 42.93 19.824 C 42.453 18.729 40.959 17.567 40.959 17.567 Z M 50.627 17.567 L 50.627 19.824 L 57.623 19.824 L 57.623 17.567 Z M 58.894 17.567 L 59.741 19.824 L 69.351 19.824 L 70.154 17.567 Z M 71.361 17.567 L 71.361 19.824 L 78.357 19.824 L 78.357 17.567 Z M 4.643 21.957 L 4.643 24.215 L 11.639 24.215 L 11.639 21.957 Z M 23.088 21.957 L 23.088 24.215 L 30.084 24.215 L 30.084 21.957 Z M 36.89 21.957 L 36.89 24.215 L 44.33 24.215 C 44.33 23.15 43.886 21.957 43.886 21.957 Z M 50.627 21.957 L 50.627 24.215 L 57.623 24.215 L 57.623 21.957 Z M 60.483 21.957 L 61.303 24.215 L 67.746 24.215 L 68.572 21.957 Z M 71.361 21.957 L 71.361 24.215 L 78.357 24.215 L 78.357 21.957 Z M 0.126 26.348 L 0.126 28.609 L 16.282 28.609 L 16.282 26.348 Z M 18.445 26.348 L 18.445 28.609 L 43.316 28.609 C 43.839 28.092 44.139 26.348 44.139 26.348 Z M 46.11 26.348 L 46.11 28.609 L 57.623 28.609 L 57.623 26.348 Z M 62.075 26.348 L 62.918 28.609 L 66.196 28.609 L 66.987 26.348 Z M 71.361 26.348 L 71.361 28.609 L 83 28.609 L 83 26.348 Z M 0.126 30.742 L 0.126 33 L 16.282 33 L 16.282 30.742 Z M 18.445 30.742 L 18.445 32.997 L 36.001 32.997 C 39.116 32.997 41.468 30.742 41.468 30.742 Z M 46.11 30.742 L 46.11 33 L 57.623 33 L 57.623 30.742 Z M 63.673 30.742 L 64.484 32.994 L 64.623 32.997 L 65.447 30.742 Z M 71.361 30.742 L 71.361 33 L 83 33 L 83 30.742 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:8920084212,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xvtpg8\",\"data-framer-name\":\"Bank of_America_logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"efXsxeO3q\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 374 38\"><g><path d=\"M 339.353 37.532 C 350.261 28.162 365.585 19.052 374 15.773 C 372.701 14.94 370.676 13.742 368.39 12.441 C 357.534 16.033 344.859 23.997 333.535 33.003 C 335.457 34.46 337.483 35.97 339.353 37.532 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 334.366 12.077 C 332.756 11.296 330.99 10.567 329.639 9.942 C 325.536 11.973 320.186 15.044 313.433 19.885 C 314.887 20.666 316.446 21.603 318.108 22.54 C 323.302 18.688 328.549 15.044 334.366 12.077 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 344.08 7.6 C 342.106 6.507 335.249 3.956 330.523 2.863 C 329.12 3.384 327.146 4.164 325.796 4.737 C 327.51 5.205 333.899 6.923 339.353 9.682 C 340.756 9.005 342.729 8.173 344.08 7.6 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 320.861 6.923 C 314.783 9.734 308.394 13.586 304.914 15.825 C 306.161 16.397 307.407 16.866 309.121 17.699 C 316.809 12.493 322.835 9.318 325.224 8.277 C 323.51 7.652 321.9 7.236 320.861 6.923 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 348.651 5.986 C 350.054 5.518 351.664 5.101 353.066 4.685 C 349.015 2.967 343.924 1.145 339.353 0 C 338.626 0.208 336.444 0.781 334.938 1.249 C 336.496 1.718 341.639 2.915 348.651 5.986 Z M 323.043 25.559 C 324.705 26.548 326.471 27.901 328.185 29.047 C 339.561 20.197 350.781 13.378 363.092 9.526 C 361.378 8.641 359.871 7.86 357.949 6.923 C 350.573 8.797 337.951 13.847 323.043 25.559 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 0 34.825 L 8.311 34.825 C 12.519 34.825 14.493 32.638 14.493 29.567 C 14.493 27.068 13.194 25.403 10.493 24.882 C 12.882 24.31 13.973 22.852 13.973 20.718 C 13.973 18.011 11.999 15.825 7.792 15.825 L 0.052 15.825 L 0.052 34.825 Z M 7.22 26.756 C 8.779 26.756 9.869 27.537 9.869 29.099 C 9.869 30.764 8.831 31.441 7.22 31.441 L 4.519 31.441 L 4.519 26.704 L 7.22 26.704 Z M 6.701 19.156 C 8.259 19.156 9.35 19.833 9.35 21.395 C 9.35 22.956 8.311 23.633 6.701 23.633 L 4.519 23.633 L 4.519 19.156 Z M 31.271 15.773 L 26.596 15.773 L 19.479 34.825 L 24.206 34.825 L 25.505 30.868 L 32.361 30.868 L 33.66 34.825 L 38.439 34.825 Z M 28.933 20.353 L 31.167 27.381 L 26.596 27.381 Z M 62.126 15.773 L 57.814 15.773 L 57.814 28.526 L 49.711 15.773 L 44.88 15.773 L 44.88 34.825 L 49.191 34.825 L 49.191 22.123 L 57.295 34.825 L 62.126 34.825 Z M 82.02 34.825 L 75.787 25.142 L 75.787 34.825 L 71.164 34.825 L 71.164 15.773 L 75.787 15.773 L 75.787 24.934 L 81.709 15.773 L 86.851 15.773 L 80.618 24.934 L 87.422 34.825 Z M 103.785 25.299 C 103.785 29.099 106.071 31.441 109.031 31.441 C 111.992 31.441 114.278 29.099 114.278 25.299 C 114.278 21.499 111.992 19.156 109.031 19.156 C 106.071 19.156 103.785 21.499 103.785 25.299 Z M 98.902 25.299 C 98.954 19.729 102.85 15.356 109.031 15.356 C 115.213 15.356 119.109 19.729 119.161 25.299 C 119.109 30.868 115.213 35.241 109.031 35.241 C 102.85 35.241 98.954 30.868 98.902 25.299 Z M 125.498 34.825 L 130.121 34.825 L 130.121 27.329 L 136.146 27.329 L 136.146 23.685 L 130.121 23.685 L 130.121 19.416 L 137.393 19.416 L 138.224 15.773 L 125.498 15.773 Z M 159.781 15.773 L 155.106 15.773 L 147.99 34.825 L 152.717 34.825 L 154.015 30.868 L 160.872 30.868 L 162.171 34.825 L 166.949 34.825 Z M 157.444 20.353 L 159.677 27.381 L 155.106 27.381 Z M 194.376 15.773 L 188.974 15.773 L 184.039 26.079 L 179.104 15.773 L 173.702 15.773 L 173.702 34.825 L 177.858 34.825 L 177.858 22.071 L 183.987 34.825 L 190.117 22.071 L 190.117 34.825 L 194.428 34.825 Z M 203.363 34.825 L 216.349 34.825 L 216.349 31.181 L 207.986 31.181 L 207.986 26.912 L 214.583 26.912 L 214.583 23.373 L 207.986 23.373 L 207.986 19.416 L 215.621 19.416 L 216.453 15.773 L 203.363 15.773 Z M 233.958 34.825 L 238.996 34.825 L 234.269 26.756 C 236.867 26.027 238.113 24.205 238.113 21.551 C 238.113 18.115 236.036 15.825 231.361 15.825 L 224.036 15.825 L 224.036 34.877 L 228.556 34.877 L 228.556 27.381 L 229.802 27.381 Z M 230.478 19.312 C 232.399 19.312 233.386 20.145 233.386 21.759 C 233.386 23.373 232.399 24.205 230.478 24.205 L 228.504 24.205 L 228.504 19.312 Z M 245.905 34.825 L 250.528 34.825 L 250.528 15.825 L 245.905 15.825 Z M 273.28 29.723 C 271.514 30.973 269.955 31.389 268.345 31.389 C 264.813 31.389 262.319 28.942 262.319 25.299 C 262.319 21.655 264.761 19.208 268.189 19.208 C 269.748 19.208 271.306 19.625 273.02 20.874 L 273.02 16.553 C 271.462 15.668 269.644 15.304 267.618 15.304 C 261.333 15.304 257.385 19.677 257.333 25.247 C 257.385 30.868 261.229 35.189 267.618 35.189 C 269.748 35.189 271.566 34.825 273.228 33.94 L 273.228 29.723 Z M 290.214 15.773 L 285.539 15.773 L 278.422 34.825 L 283.149 34.825 L 284.448 30.868 L 291.304 30.868 L 292.603 34.825 L 297.382 34.825 Z M 287.876 20.353 L 290.11 27.381 L 285.539 27.381 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:12155358604,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k2pm6k\",\"data-framer-name\":\"State Farm_logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hKBnUqiwf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 28\"><path d=\"M 116.943 8.163 L 117 8.072 L 116.939 8.163 C 115.906 7.454 114.412 7.125 112.949 7.125 C 109.633 7.128 107.263 8.768 105.704 11.072 C 104.154 13.383 103.424 16.36 103.424 19.01 C 103.424 20.925 103.712 22.711 104.879 24.323 C 105.454 25.11 106.848 27.001 111.354 27.007 C 114.483 27.005 115.965 26.194 116.768 25.725 L 116.902 25.544 C 117.059 24.858 117.587 21.743 117.802 20.962 L 117.64 20.838 C 116.058 22.092 114.333 23.008 112.374 23.008 C 111.06 23.008 110.061 22.696 109.387 22.094 C 108.715 21.497 108.386 20.614 108.386 19.52 C 108.386 19.117 108.419 18.749 108.45 18.346 L 108.46 18.251 L 108.552 18.248 C 111.615 18.17 113.176 18.128 115.741 18.128 C 116.579 18.128 117.524 18.132 118.665 18.141 L 118.863 18.003 C 119.118 16.814 119.394 15.454 119.394 13.781 C 119.394 12.296 119.236 9.656 116.943 8.163 M 114.914 14.669 L 114.897 14.756 L 111.895 14.794 L 108.927 14.833 L 108.954 14.733 L 108.968 14.689 C 109.028 14.481 109.093 14.252 109.168 14.019 C 109.372 13.365 109.664 12.653 110.181 12 C 110.272 11.889 110.367 11.775 110.468 11.669 C 111.388 10.663 112.259 10.507 112.823 10.507 C 113.618 10.507 114.2 10.825 114.574 11.298 C 114.858 11.679 115.033 12.13 115.081 12.603 C 115.101 12.737 115.108 12.878 115.108 13.013 C 115.109 13.575 115.009 14.127 114.914 14.669 M 103.258 11.289 L 103.054 11.491 L 100.098 11.415 L 98.729 17.861 C 98.54 18.669 98.122 20.686 98.122 21.336 C 98.118 21.943 98.347 22.357 98.667 22.603 C 98.983 22.852 99.379 22.934 99.733 22.935 C 100.555 22.935 100.842 22.706 101.39 22.497 L 101.487 22.587 L 100.76 26.3 L 100.51 26.543 C 99.498 26.757 98.745 26.933 97.68 26.933 C 94.93 26.917 92.945 25.994 92.934 22.789 C 92.934 21.289 93.54 18.558 93.991 16.528 L 95.082 11.411 L 92.761 11.49 L 92.621 11.288 L 93.3 7.682 L 93.511 7.566 L 95.869 7.566 L 96.812 2.817 L 96.996 2.609 C 99.357 2.005 100.038 1.714 102.189 1.006 L 102.303 1.134 L 101.59 4.193 L 100.851 7.638 L 103.879 7.545 L 103.958 7.703 Z M 139.712 5.206 L 139.549 5.387 L 131.748 5.368 L 130.479 11.877 L 137.306 11.671 L 137.407 11.833 C 136.994 13.161 136.637 14.507 136.337 15.865 L 136.164 16.03 L 129.672 16.016 L 128.819 20.532 L 127.739 26.397 L 127.595 26.532 L 122.004 26.676 L 121.936 26.532 L 122.905 21.539 L 124.388 14.49 C 125.506 9.013 125.826 7.264 126.883 1.297 L 127.051 1.133 L 135.22 1.133 L 140.408 0.997 L 140.508 1.133 Z M 150.732 8.374 C 149.647 7.609 147.915 7.216 145.539 7.216 C 144.366 7.216 143.183 7.329 141.995 7.554 C 141.226 7.695 140.465 7.873 139.713 8.088 L 139.559 8.244 L 138.788 12.193 L 139.037 12.343 C 139.532 12.115 140.258 11.835 141.216 11.496 C 142.196 11.151 143.098 10.978 143.912 10.978 C 145.103 10.978 146.011 11.141 146.628 11.478 C 147.264 11.82 147.72 12.571 147.717 13.397 C 147.717 13.601 147.7 13.78 147.672 13.942 C 147.649 14.051 147.63 14.16 147.614 14.27 L 147.601 14.354 C 147.601 14.354 147.216 14.381 146.807 14.416 C 146.537 14.442 146.193 14.481 145.795 14.527 C 145.144 14.597 144.395 14.689 143.741 14.799 C 142.173 15.06 137.761 15.747 136.437 18.702 C 135.049 21.123 135.286 24.335 136.649 25.898 C 137.223 26.555 137.998 27.003 138.854 27.171 L 138.852 27.174 C 138.895 27.189 139.047 27.208 139.081 27.216 C 142.896 27.806 145.633 24.482 145.633 24.482 L 145.224 26.531 L 145.392 26.675 L 149.678 26.531 L 149.856 26.376 L 152.379 13.704 C 152.431 13.437 152.474 13.121 152.506 12.762 C 152.534 12.398 152.552 12.103 152.552 11.886 C 152.549 10.264 151.815 9.138 150.732 8.374 M 146.319 21.044 C 146.319 21.044 145.294 22.654 143.818 23.231 C 142.337 23.804 141.268 23.352 140.85 22.779 C 140.512 22.331 139.81 20.917 141.143 19.326 C 142.495 17.719 146.963 17.616 146.963 17.616 Z M 167.128 6.958 L 166.078 12.408 L 165.858 12.631 C 165.484 12.565 165.104 12.532 164.724 12.533 C 163.309 12.533 161.297 12.987 159.723 15.073 L 159.706 15.09 L 157.538 26.399 L 157.385 26.534 L 152.677 26.677 L 152.555 26.553 L 156.258 7.568 L 156.459 7.369 L 161.119 6.918 L 161.303 7.117 L 160.766 9.867 L 160.995 9.659 C 161.848 8.873 162.789 8.188 163.798 7.616 C 164.754 7.066 165.713 6.793 166.677 6.793 C 166.77 6.793 166.865 6.793 166.965 6.797 Z M 192.333 11.735 C 192.333 12.882 192.074 14.073 191.82 15.232 L 189.633 26.398 L 189.465 26.533 L 184.537 26.707 L 184.415 26.533 C 184.415 26.533 186.94 14.199 186.94 13.586 C 186.94 13.027 186.645 11.529 185.077 11.529 C 183.842 11.529 182.565 12.776 182.565 12.776 L 179.904 26.399 L 179.74 26.534 L 177.619 26.608 L 175.72 26.672 L 174.782 26.703 L 174.725 26.626 L 174.664 26.533 L 175.517 22.331 L 175.504 22.331 C 176.24 18.695 177.181 13.96 177.181 13.586 C 177.181 13.027 176.887 11.529 175.317 11.529 C 174.086 11.529 172.809 12.776 172.809 12.776 L 170.147 26.399 L 169.979 26.534 L 169.218 26.56 L 165.024 26.701 L 164.917 26.534 L 168.611 7.568 L 168.797 7.381 L 173.712 6.918 L 173.911 7.117 L 173.39 9.787 C 173.39 9.787 175.762 7.187 178.786 7.127 C 181.608 7.074 182.198 9.787 182.198 9.787 C 182.198 9.787 185.006 7.065 188.001 7.127 C 189.516 7.139 192.325 7.807 192.333 11.735 M 89.432 8.374 C 88.349 7.609 86.619 7.216 84.244 7.216 C 83.067 7.216 81.886 7.329 80.702 7.554 C 79.932 7.695 79.169 7.873 78.416 8.088 L 78.263 8.244 L 77.492 12.193 L 77.741 12.343 C 78.236 12.115 78.963 11.835 79.919 11.496 C 80.9 11.151 81.801 10.978 82.615 10.978 C 83.807 10.978 84.709 11.141 85.333 11.478 C 85.966 11.82 86.419 12.571 86.419 13.397 C 86.419 13.601 86.405 13.78 86.377 13.942 C 86.353 14.05 86.333 14.16 86.318 14.27 L 86.306 14.354 C 86.306 14.354 85.922 14.381 85.513 14.416 C 85.244 14.442 84.896 14.481 84.501 14.527 C 83.814 14.598 83.13 14.689 82.448 14.799 C 80.877 15.06 76.467 15.747 75.142 18.702 C 73.754 21.123 73.992 24.335 75.355 25.898 C 75.927 26.556 76.703 27.004 77.559 27.171 L 77.557 27.174 C 77.599 27.189 77.752 27.208 77.784 27.216 C 81.601 27.806 84.338 24.482 84.338 24.482 L 83.928 26.531 L 84.095 26.675 L 88.384 26.531 L 88.561 26.376 L 91.081 13.704 C 91.136 13.437 91.179 13.121 91.214 12.762 C 91.239 12.398 91.258 12.103 91.258 11.886 C 91.254 10.264 90.523 9.138 89.432 8.374 M 85.022 21.044 C 85.022 21.044 84 22.654 82.522 23.231 C 81.042 23.804 79.975 23.352 79.552 22.779 C 79.217 22.331 78.516 20.917 79.852 19.326 C 81.199 17.719 85.671 17.616 85.671 17.616 Z M 74.691 11.289 L 74.485 11.491 L 71.532 11.415 L 70.164 17.861 C 69.972 18.669 69.552 20.686 69.552 21.336 C 69.551 21.943 69.778 22.357 70.097 22.603 C 70.417 22.852 70.811 22.934 71.164 22.935 C 71.987 22.935 72.275 22.706 72.821 22.497 L 72.919 22.587 L 72.193 26.3 L 71.943 26.543 C 70.935 26.757 70.178 26.933 69.111 26.933 C 66.367 26.917 64.378 25.994 64.367 22.789 C 64.367 21.289 64.975 18.558 65.424 16.528 L 66.514 11.411 L 64.192 11.49 L 64.052 11.288 L 64.733 7.682 L 64.943 7.566 L 67.3 7.566 L 68.244 2.817 L 68.429 2.609 C 70.786 2.005 71.469 1.714 73.624 1.006 L 73.734 1.134 L 73.021 4.193 L 72.288 7.64 L 75.31 7.547 L 75.393 7.705 Z M 63.589 2.531 L 62.691 7.155 L 62.493 7.218 C 62.136 6.716 61.92 6.519 61.423 6.135 C 60.319 5.285 59.009 4.804 57.672 4.804 C 56.624 4.804 55.753 5.131 55.149 5.676 C 54.54 6.219 54.194 6.992 54.194 7.855 C 54.197 9.487 55.314 10.283 57.299 11.472 L 58.071 11.91 C 59.734 13 62.317 14.672 62.317 18.467 C 62.311 22.78 59.548 27.107 52.919 27.117 C 51.294 27.117 49.703 26.826 48.172 26.255 C 47.139 25.859 46.641 25.516 46.016 25.053 L 45.964 24.756 L 46.844 20.245 L 47.041 20.179 C 47.44 20.695 47.94 21.117 48.688 21.612 C 49.806 22.367 51.121 22.777 52.47 22.791 C 54.81 22.789 56.65 21.453 56.65 19.378 C 56.648 17.52 55.179 16.589 53.645 15.685 L 52.584 15.031 C 50.914 13.939 48.599 12.454 48.592 8.731 C 48.592 7.299 49.004 5.244 50.272 3.561 C 51.944 1.348 54.573 0.553 57.221 0.553 C 60.63 0.553 62.58 1.76 63.494 2.345 Z M 15.653 10.676 C 16.996 11.505 18.883 12.032 21.007 12.032 C 23.128 12.032 25.033 11.505 26.396 10.676 C 27.764 9.848 28.57 8.73 28.573 7.55 C 28.57 6.367 27.769 5.26 26.407 4.439 C 25.049 3.619 23.149 3.103 21.022 3.099 C 18.899 3.103 17.009 3.619 15.66 4.439 C 14.31 5.261 13.517 6.364 13.514 7.547 C 13.517 8.733 14.308 9.848 15.653 10.676 M 15.992 17.072 C 14.634 16.251 12.733 15.734 10.61 15.734 C 8.485 15.734 6.595 16.251 5.247 17.068 C 3.896 17.89 3.103 18.989 3.1 20.172 C 3.103 21.359 3.892 22.474 5.24 23.306 C 6.582 24.129 8.469 24.657 10.594 24.661 C 12.719 24.656 14.624 24.129 15.986 23.302 C 17.351 22.474 18.157 21.359 18.161 20.176 C 18.156 18.997 17.354 17.894 15.992 17.072 M 36.773 17.072 C 35.413 16.251 33.511 15.734 31.387 15.734 C 29.264 15.734 27.371 16.251 26.026 17.068 C 24.675 17.889 23.884 18.989 23.882 20.175 C 23.884 21.358 24.671 22.473 26.02 23.305 C 27.363 24.128 29.249 24.656 31.372 24.66 C 33.495 24.655 35.402 24.128 36.766 23.301 C 38.131 22.473 38.937 21.358 38.939 20.175 C 38.937 18.997 38.135 17.894 36.773 17.072 M 31.364 12.635 C 30.404 12.635 29.477 12.726 28.596 12.891 C 30.521 11.517 31.706 9.626 31.706 7.539 C 31.706 3.34 26.938 -0.001 21.018 -0.001 C 15.099 0 10.38 3.341 10.38 7.54 C 10.38 9.63 11.543 11.521 13.449 12.895 C 12.551 12.726 11.609 12.635 10.637 12.635 C 4.718 12.635 0 15.977 0 20.172 C 0 24.364 4.693 27.769 10.614 27.769 C 15.653 27.769 19.877 25.305 21.027 21.985 C 22.148 25.305 26.299 27.769 31.339 27.769 C 37.259 27.769 42.054 24.365 42.054 20.172 C 42.054 15.977 37.281 12.635 31.364 12.635 M 12.31 7.536 C 12.317 5.645 13.753 4.368 14.595 3.773 C 16.279 2.576 18.561 1.931 21.019 1.931 C 23.485 1.931 25.775 2.579 27.472 3.773 C 28.321 4.372 29.774 5.651 29.781 7.536 C 29.753 10.688 25.706 13.197 20.993 13.204 C 18.545 13.204 16.273 12.549 14.596 11.343 C 13.135 10.296 12.31 8.947 12.31 7.536 M 10.614 25.836 C 8.163 25.836 5.893 25.18 4.211 23.972 C 2.757 22.929 1.93 21.58 1.93 20.172 C 1.938 18.281 3.373 17.001 4.212 16.405 C 5.898 15.216 8.179 14.567 10.638 14.563 C 13.105 14.567 15.395 15.215 17.092 16.41 C 17.942 17.008 19.397 18.285 19.405 20.172 C 19.376 23.32 15.326 25.829 10.614 25.836 M 21.03 18.364 C 20.566 17.027 19.602 15.833 18.287 14.888 C 20.096 15.22 21.951 15.217 23.759 14.879 C 22.448 15.825 21.485 17.02 21.03 18.364 M 31.338 25.836 C 28.89 25.836 26.618 25.18 24.938 23.972 C 23.481 22.929 22.652 21.58 22.652 20.172 C 22.658 18.281 24.098 17.004 24.94 16.405 C 26.622 15.216 28.905 14.567 31.363 14.563 C 33.83 14.567 36.119 15.215 37.821 16.41 C 38.67 17.008 40.119 18.288 40.123 20.172 C 40.1 23.32 36.051 25.829 31.338 25.836 M 200 10.928 C 199.986 12.602 198.77 13.866 197.179 13.852 C 195.597 13.839 194.395 12.556 194.408 10.882 C 194.422 9.174 195.621 7.936 197.244 7.949 C 198.818 7.962 200.014 9.254 200 10.928 M 194.775 10.875 C 194.763 12.308 195.841 13.482 197.181 13.493 C 198.52 13.505 199.621 12.348 199.633 10.908 C 199.639 10.222 199.384 9.523 198.954 9.06 C 198.51 8.596 197.902 8.326 197.26 8.309 C 195.843 8.297 194.788 9.394 194.775 10.875 M 197.083 9.229 C 197.437 9.233 197.602 9.25 197.804 9.319 C 198.154 9.439 198.377 9.774 198.374 10.152 C 198.371 10.554 198.119 10.871 197.714 10.993 L 198.377 12.589 L 197.908 12.586 L 197.294 11.073 L 197.262 11.065 L 196.966 11.062 L 196.65 11.06 L 196.6 11.068 L 196.586 12.575 L 196.16 12.571 L 196.188 9.222 Z M 197.045 10.719 C 197.458 10.723 197.616 10.698 197.743 10.6 C 197.881 10.495 197.96 10.331 197.956 10.158 C 197.959 9.916 197.85 9.739 197.64 9.663 C 197.524 9.609 197.34 9.593 196.972 9.589 L 196.613 9.587 L 196.602 10.716 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12831683822,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ksqsyn\",\"data-framer-name\":\"Humana logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UfvYtFOui\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 123 26\"><path d=\"M 34.606 6.446 C 34.411 6.441 34.222 6.516 34.085 6.653 C 33.947 6.791 33.872 6.979 33.877 7.174 L 33.877 21.422 C 32.781 21.67 31.663 21.81 30.54 21.839 C 28.039 21.839 27.203 20.904 27.203 18.199 L 27.203 7.174 C 27.203 6.757 26.888 6.446 26.577 6.446 L 22.826 6.446 L 22.826 18.199 C 22.826 23.71 25.742 25.479 30.434 25.479 C 34.188 25.479 37.939 24.437 38.254 24.335 L 38.254 6.446 Z M 92.038 25.271 C 92.353 25.271 92.771 24.956 92.771 24.543 L 92.771 10.188 C 93.866 9.943 94.982 9.804 96.104 9.776 C 98.606 9.776 99.441 10.711 99.441 13.416 L 99.441 24.54 C 99.441 24.96 99.756 25.271 100.067 25.271 L 103.818 25.271 L 103.818 13.416 C 103.818 7.901 100.902 6.136 96.21 6.136 C 92.456 6.136 88.705 7.174 88.39 7.276 L 88.39 25.271 Z M 77.028 6.136 C 72.131 6.136 69.109 8.734 69.109 14.453 L 69.109 17.264 C 69.109 23.502 72.442 25.581 75.988 25.581 C 77.761 25.581 79.636 24.335 80.156 23.608 L 80.156 24.748 C 80.156 25.062 80.471 25.377 80.783 25.377 L 84.533 25.377 L 84.533 7.178 C 84.64 7.178 80.988 6.136 77.028 6.136 Z M 80.259 20.695 C 79.427 21.422 78.801 21.835 77.028 21.835 C 74.526 21.941 73.482 20.381 73.482 17.158 L 73.482 14.559 C 73.482 10.92 74.842 9.882 77.028 9.882 C 78.801 9.882 79.845 9.984 80.259 10.086 Z M 114.869 6.136 C 109.968 6.136 106.946 8.734 106.946 14.453 L 106.946 17.264 C 106.946 23.502 110.283 25.581 113.931 25.581 C 115.704 25.581 117.579 24.335 118.099 23.608 L 118.099 24.748 C 118.099 25.062 118.414 25.377 118.725 25.377 L 122.476 25.377 L 122.476 7.178 C 122.476 7.178 118.828 6.136 114.869 6.136 Z M 118.099 20.695 C 117.264 21.422 116.641 21.835 114.869 21.835 C 112.367 21.835 111.323 20.381 111.323 17.158 L 111.323 14.559 C 111.323 10.813 112.678 9.882 114.869 9.882 C 116.641 9.882 117.681 9.984 118.099 10.086 Z M 0.52 25.271 L 4.479 25.271 C 4.818 25.251 5.088 24.983 5.11 24.646 L 5.11 14.245 L 12.402 14.245 C 12.944 14.224 13.471 14.422 13.864 14.794 C 14.257 15.166 14.483 15.681 14.49 16.222 L 14.49 24.646 C 14.49 24.96 14.801 25.271 15.113 25.271 L 19.076 25.271 L 19.076 0.519 L 15.116 0.519 C 14.78 0.54 14.511 0.808 14.49 1.144 L 14.49 10.499 L 6.981 10.499 C 6.51 10.503 6.057 10.319 5.724 9.987 C 5.391 9.655 5.205 9.204 5.208 8.734 L 5.208 1.144 C 5.106 0.936 4.897 0.515 4.479 0.515 L 0.52 0.515 Z M 59.205 6.136 C 57.436 6.162 55.708 6.664 54.202 7.59 C 52.847 6.549 50.971 6.136 48.678 6.136 C 45.239 6.136 42.32 7.174 41.902 7.382 L 41.902 25.373 L 45.653 25.373 C 46.07 25.373 46.283 25.058 46.283 24.646 L 46.283 10.188 C 47.033 10.004 47.8 9.9 48.572 9.878 C 51.18 9.878 51.803 10.92 51.803 13.518 L 51.803 24.646 C 51.803 24.96 52.011 25.373 52.433 25.373 L 55.557 25.373 C 55.975 25.373 56.183 25.058 56.183 24.646 L 56.183 10.711 C 56.912 10.188 57.85 9.878 58.788 9.878 C 60.769 9.878 61.6 10.813 61.6 13.207 L 61.6 24.646 C 61.6 24.96 61.809 25.373 62.231 25.373 L 65.981 25.373 L 65.981 12.582 C 66.084 7.799 63.062 6.136 59.205 6.136 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9520102966,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ebryu8\",\"data-framer-name\":\"McKinsey Script_Mark_2019\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hmPDh2OFy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 148 46\"><path d=\"M 15.654 0 L 20.147 0 L 20.147 0.855 L 19.301 0.855 C 19.153 0.855 18.895 1.027 18.523 1.369 C 18.151 1.71 17.965 1.978 17.965 2.154 L 17.965 15.188 C 17.965 15.368 18.151 15.628 18.523 15.974 C 18.895 16.319 19.153 16.491 19.301 16.491 L 20.147 16.491 L 20.147 17.342 L 13.517 17.342 L 13.517 16.483 L 14.364 16.483 C 14.512 16.483 14.766 16.311 15.123 15.966 C 15.479 15.621 15.658 15.36 15.658 15.18 L 15.658 2.561 L 9.426 17.653 L 3.203 2.3 L 3.203 15.184 C 3.203 15.364 3.381 15.625 3.734 15.97 C 4.087 16.315 4.345 16.487 4.493 16.487 L 5.336 16.487 L 5.336 17.338 L 0 17.338 L 0 16.483 L 0.846 16.483 C 1.025 16.483 1.29 16.311 1.647 15.966 C 2.004 15.621 2.178 15.36 2.178 15.18 L 2.178 2.154 C 2.178 1.978 2 1.714 1.647 1.369 C 1.294 1.024 1.025 0.855 0.846 0.855 L 0 0.855 L 0 0 L 4.979 0 L 10.14 12.984 L 10.273 12.984 Z M 26.329 15.586 C 27.086 15.632 27.841 15.462 28.507 15.096 C 29.06 14.713 29.516 14.205 29.839 13.612 L 30.553 13.612 C 30.235 14.726 29.629 15.733 28.795 16.529 C 27.881 17.295 26.714 17.682 25.528 17.61 C 24.099 17.663 22.729 17.029 21.836 15.901 C 20.911 14.747 20.423 13.298 20.458 11.814 C 20.375 10.21 20.934 8.639 22.01 7.456 C 22.974 6.409 24.33 5.822 25.744 5.838 C 26.505 5.821 27.262 5.959 27.968 6.245 C 28.609 6.521 29.197 6.91 29.702 7.395 L 28.082 9.967 L 27.414 10.009 C 27.566 9.243 27.52 8.451 27.281 7.709 C 26.99 6.998 26.255 6.58 25.502 6.697 C 24.531 6.635 23.6 7.095 23.054 7.908 C 22.481 8.869 22.202 9.98 22.253 11.101 C 22.221 12.263 22.608 13.396 23.342 14.291 C 24.09 15.161 25.19 15.638 26.329 15.586 Z M 37.357 17.338 L 30.64 17.338 L 30.64 16.483 L 31.497 16.483 C 31.676 16.483 31.941 16.311 32.298 15.966 C 32.655 15.621 32.829 15.36 32.829 15.18 L 32.829 2.154 C 32.829 1.978 32.655 1.714 32.298 1.369 C 31.941 1.024 31.664 0.855 31.497 0.855 L 30.64 0.855 L 30.64 0 L 37.357 0 L 37.357 0.855 L 36.51 0.855 C 36.332 0.855 36.066 1.027 35.71 1.369 C 35.353 1.71 35.178 1.978 35.178 2.154 L 35.178 9.254 L 41.315 2.334 C 41.432 2.185 41.315 1.901 41.004 1.484 C 40.692 1.066 40.438 0.855 40.29 0.855 L 39.467 0.855 L 39.467 0 L 45.69 0 L 45.69 0.855 L 44.844 0.855 C 44.426 1 44.042 1.231 43.717 1.533 C 43.121 1.997 42.768 2.3 42.647 2.411 L 38.472 6.946 L 44.476 14.996 C 44.767 15.339 45.103 15.641 45.474 15.893 C 45.772 16.17 46.131 16.371 46.521 16.479 L 47.766 16.479 C 48.061 16.418 48.327 16.26 48.525 16.031 C 48.851 15.728 49.015 15.475 49.015 15.264 L 49.015 8.177 C 49.015 7.996 48.851 7.755 48.525 7.456 C 48.327 7.227 48.061 7.069 47.766 7.007 L 47.094 7.007 L 47.094 6.153 L 51.052 6.153 L 51.052 15.272 C 51.052 15.483 51.223 15.736 51.565 16.039 C 51.761 16.256 52.015 16.412 52.297 16.487 L 53.678 16.487 C 53.826 16.487 54.058 16.338 54.388 16.039 C 54.718 15.74 54.878 15.483 54.878 15.272 L 54.878 8.177 C 54.878 7.996 54.714 7.755 54.388 7.456 C 54.062 7.157 53.826 7.007 53.678 7.007 L 52.965 7.007 L 52.965 6.153 L 56.479 6.153 L 56.923 8.433 C 57.526 7.79 58.173 7.189 58.858 6.635 C 59.555 6.107 60.409 5.836 61.28 5.869 C 62.105 5.854 62.901 6.179 63.484 6.77 C 64.098 7.385 64.429 8.231 64.395 9.104 L 64.395 15.272 C 64.395 15.483 64.558 15.736 64.885 16.039 C 65.211 16.341 65.446 16.487 65.594 16.487 L 66.308 16.487 L 66.308 17.338 L 60.483 17.338 L 60.483 16.483 L 61.097 16.483 C 61.392 16.421 61.658 16.263 61.856 16.035 C 62.183 15.732 62.346 15.479 62.346 15.268 L 62.346 9.254 C 62.368 8.75 62.209 8.256 61.898 7.862 C 61.561 7.484 61.069 7.284 60.566 7.322 C 59.686 7.349 58.838 7.656 58.141 8.2 C 57.329 8.782 56.923 9.269 56.923 9.66 L 56.923 15.272 C 56.923 15.483 57.086 15.736 57.413 16.039 C 57.61 16.268 57.877 16.425 58.172 16.487 L 58.794 16.487 L 58.794 17.338 L 42.882 17.338 L 36.913 8.671 L 35.178 10.557 L 35.178 15.184 C 35.178 15.364 35.353 15.625 35.71 15.97 C 36.066 16.315 36.332 16.487 36.51 16.487 L 37.357 16.487 Z M 43.315 36.888 L 43.262 36.834 C 43.827 37.314 44.4 37.793 44.977 38.272 C 45.554 38.751 46.168 39.215 46.821 39.667 L 47.842 39.667 L 47.842 40.564 L 45.975 40.564 C 45.215 40.577 44.459 40.441 43.751 40.162 C 42.994 39.82 42.302 39.348 41.706 38.766 C 41.033 39.451 40.221 39.981 39.326 40.319 C 38.291 40.683 37.2 40.857 36.104 40.833 C 34.712 40.84 33.364 40.338 32.31 39.418 C 31.204 38.517 30.578 37.146 30.617 35.711 C 30.606 34.659 30.867 33.621 31.376 32.702 C 31.869 31.819 32.561 31.066 33.395 30.502 C 32.996 29.99 32.659 29.431 32.393 28.838 C 32.13 28.214 32.001 27.542 32.014 26.864 C 31.949 25.795 32.355 24.752 33.122 24.012 C 33.969 23.299 35.053 22.938 36.154 23 C 36.788 22.978 37.421 23.069 38.025 23.268 C 38.42 23.433 38.842 23.525 39.269 23.54 C 39.434 23.545 39.598 23.529 39.759 23.494 C 39.893 23.45 40.005 23.353 40.07 23.226 L 40.829 23.226 L 40.829 27.312 L 40.07 27.312 C 39.952 26.469 39.55 25.692 38.932 25.112 C 38.233 24.27 37.196 23.791 36.108 23.809 C 35.328 23.766 34.557 23.996 33.926 24.46 C 33.389 24.904 33.092 25.578 33.125 26.277 C 33.121 26.953 33.358 27.608 33.793 28.121 C 34.272 28.685 34.884 29.118 35.573 29.379 C 36.669 30.58 37.854 31.785 39.129 32.993 C 40.404 34.202 41.62 35.333 42.776 36.386 C 43.092 35.874 43.325 35.313 43.466 34.726 C 43.606 34.097 43.673 33.454 43.668 32.809 C 43.699 32.109 43.431 31.429 42.931 30.943 C 42.388 30.458 41.678 30.209 40.954 30.249 L 40.954 29.379 L 47.056 29.379 L 47.056 30.187 L 46.392 30.187 C 46.244 30.187 45.952 30.44 45.523 30.954 C 45.204 31.256 44.979 31.647 44.878 32.077 L 44.878 32.123 C 44.849 32.986 44.699 33.84 44.434 34.661 C 44.179 35.456 43.801 36.205 43.315 36.88 Z M 37.49 39.495 C 38.191 39.504 38.89 39.398 39.558 39.18 C 40.15 38.98 40.711 38.694 41.224 38.333 L 41.091 38.245 C 39.826 37.105 38.581 35.937 37.357 34.741 C 36.132 33.545 34.946 32.287 33.797 30.966 C 33.373 31.414 33.028 31.933 32.776 32.499 C 32.512 33.185 32.39 33.918 32.42 34.653 C 32.454 35.954 33.047 37.175 34.044 38 C 34.961 38.923 36.195 39.455 37.49 39.483 Z M 49.808 3.415 L 49.762 3.415 C 49.389 3.419 49.03 3.273 48.764 3.009 C 48.487 2.757 48.332 2.396 48.339 2.02 L 48.339 1.978 C 48.317 1.579 48.473 1.191 48.764 0.92 C 49.369 0.413 50.246 0.413 50.851 0.92 C 51.142 1.191 51.298 1.579 51.276 1.978 L 51.231 1.978 C 51.261 1.978 51.276 1.978 51.276 2.02 C 51.283 2.396 51.128 2.757 50.851 3.009 C 50.598 3.267 50.254 3.413 49.895 3.415 Z M 61.097 39.395 C 62.318 39.466 63.53 39.153 64.566 38.498 C 65.463 37.816 66.18 36.921 66.653 35.891 L 67.549 35.891 C 67.058 37.351 66.142 38.626 64.923 39.552 C 63.668 40.459 62.154 40.925 60.612 40.879 C 58.334 40.961 56.148 39.97 54.695 38.195 C 53.21 36.405 52.419 34.129 52.472 31.794 C 52.412 29.521 53.135 27.297 54.517 25.503 C 55.878 23.772 57.978 22.804 60.164 22.9 C 60.967 22.882 61.767 23.012 62.524 23.284 C 63.161 23.537 63.84 23.668 64.524 23.667 C 64.738 23.678 64.951 23.638 65.147 23.552 C 65.312 23.466 65.462 23.354 65.591 23.218 L 66.213 23.218 L 66.213 29.333 L 65.454 29.333 C 65.326 28.099 64.847 26.929 64.076 25.963 C 63.239 24.66 61.788 23.894 60.251 23.943 C 58.948 23.873 57.675 24.354 56.737 25.269 C 55.757 26.462 55.22 27.963 55.219 29.513 L 55.219 29.425 C 55.189 29.754 55.166 30.084 55.151 30.414 C 55.151 30.743 55.128 31.084 55.128 31.445 C 55.128 31.863 55.128 32.292 55.174 32.725 C 55.219 33.158 55.234 33.557 55.261 33.917 C 55.379 35.375 55.992 36.746 56.995 37.8 C 58.076 38.896 59.568 39.476 61.097 39.395 Z M 75.138 14.195 C 75.192 15.142 74.825 16.064 74.137 16.71 C 73.428 17.326 72.514 17.648 71.579 17.61 C 70.968 17.629 70.361 17.514 69.799 17.273 C 69.356 17.055 68.869 16.939 68.376 16.936 C 68.206 16.919 68.036 16.958 67.89 17.047 L 67.534 17.338 L 67.017 17.338 L 67.017 13.386 L 67.685 13.386 C 67.809 14.156 68.175 14.866 68.729 15.41 C 69.442 16.254 70.501 16.718 71.598 16.667 C 72.154 16.697 72.708 16.572 73.199 16.307 C 73.585 16.059 73.806 15.618 73.776 15.157 C 73.817 14.607 73.553 14.08 73.089 13.789 C 72.64 13.509 72.172 13.261 71.689 13.045 L 70.55 12.554 C 70.159 12.385 69.766 12.22 69.37 12.06 C 68.742 11.766 68.17 11.363 67.682 10.868 C 67.221 10.362 66.981 9.691 67.014 9.005 C 66.957 8.142 67.284 7.299 67.905 6.705 C 69.064 5.875 70.559 5.689 71.882 6.21 C 72.263 6.401 72.683 6.502 73.108 6.505 C 73.238 6.509 73.367 6.486 73.488 6.436 C 73.598 6.387 73.686 6.298 73.734 6.187 L 74.311 6.187 L 74.311 9.637 L 73.643 9.637 C 73.535 8.956 73.217 8.326 72.733 7.839 C 72.13 7.095 71.217 6.679 70.266 6.716 C 69.751 6.673 69.239 6.818 68.82 7.122 C 68.516 7.375 68.344 7.756 68.353 8.154 C 68.325 8.573 68.51 8.978 68.843 9.231 C 69.263 9.526 69.709 9.782 70.175 9.997 C 70.592 10.174 70.983 10.339 71.355 10.488 L 72.577 10.983 C 73.215 11.253 73.801 11.633 74.311 12.106 C 74.881 12.64 75.19 13.399 75.157 14.183 Z M 78.049 30.636 C 79.193 31.764 79.802 33.335 79.719 34.948 C 79.8 36.568 79.193 38.146 78.049 39.284 C 77.027 40.309 75.645 40.883 74.205 40.879 C 72.749 40.889 71.349 40.316 70.311 39.284 C 69.169 38.145 68.563 36.568 68.645 34.948 C 68.559 33.41 69.108 31.903 70.162 30.788 C 71.215 29.673 72.679 29.049 74.205 29.064 C 75.647 29.054 77.036 29.619 78.068 30.636 Z M 77.514 36.8 L 77.514 36.888 C 77.573 36.231 77.602 35.571 77.601 34.91 C 77.601 34.58 77.601 34.262 77.579 33.948 C 77.556 33.634 77.544 33.338 77.514 33.07 C 77.445 32.25 77.109 31.476 76.558 30.87 C 75.923 30.287 75.079 29.994 74.224 30.061 C 73.387 30.001 72.563 30.294 71.947 30.87 C 71.402 31.462 71.066 32.219 70.991 33.024 L 70.991 32.967 C 70.932 33.278 70.895 33.593 70.881 33.91 C 70.881 34.239 70.858 34.569 70.858 34.895 C 70.858 35.221 70.858 35.546 70.881 35.861 C 70.894 36.156 70.931 36.45 70.991 36.739 C 71.079 37.54 71.413 38.294 71.947 38.893 C 72.55 39.494 73.379 39.806 74.224 39.748 C 75.091 39.825 75.949 39.522 76.581 38.916 C 77.1 38.325 77.426 37.586 77.514 36.8 Z M 81.161 17.633 C 79.739 17.661 78.384 17.022 77.491 15.904 C 76.53 14.757 76.016 13.294 76.045 11.791 C 75.999 10.25 76.523 8.747 77.514 7.575 C 78.406 6.475 79.755 5.86 81.161 5.911 C 82.25 5.85 83.312 6.269 84.072 7.061 C 84.768 7.814 85.172 8.795 85.21 9.825 L 85.256 10.634 L 77.871 11.232 C 77.886 12.308 78.26 13.348 78.933 14.183 C 79.62 15.115 80.718 15.644 81.867 15.598 C 82.631 15.641 83.393 15.471 84.068 15.107 C 84.618 14.745 85.069 14.249 85.381 13.666 L 86.049 13.666 C 85.766 14.774 85.179 15.778 84.356 16.564 C 83.46 17.308 82.319 17.682 81.161 17.61 Z M 81.115 6.762 C 80.128 6.679 79.172 7.131 78.603 7.95 C 78.102 8.688 77.817 9.552 77.78 10.446 L 83.339 9.967 C 83.434 9.215 83.35 8.451 83.093 7.739 C 82.85 7.075 82.191 6.742 81.115 6.739 Z M 94.545 39.729 C 94.724 39.729 94.967 39.572 95.278 39.257 C 95.589 38.943 95.745 38.698 95.745 38.517 L 95.745 32.384 C 95.765 31.905 95.615 31.435 95.323 31.058 C 94.974 30.684 94.475 30.493 93.969 30.54 C 93.181 30.567 92.423 30.85 91.809 31.349 C 91.083 31.891 90.72 32.341 90.72 32.698 L 90.72 38.537 C 90.72 38.717 90.876 38.962 91.187 39.276 C 91.498 39.591 91.73 39.748 91.878 39.748 L 92.546 39.748 L 92.546 40.603 L 86.853 40.603 L 86.853 39.748 L 87.476 39.748 C 87.654 39.748 87.897 39.591 88.208 39.276 C 88.519 38.962 88.675 38.717 88.675 38.537 L 88.675 32.403 C 88.699 31.906 88.541 31.417 88.231 31.031 C 87.885 30.665 87.395 30.475 86.895 30.513 C 86.087 30.54 85.312 30.841 84.694 31.368 C 83.968 31.936 83.605 32.415 83.605 32.806 L 83.605 38.556 C 83.605 38.736 83.76 38.981 84.072 39.296 C 84.383 39.61 84.629 39.767 84.808 39.767 L 85.43 39.767 L 85.43 40.622 L 79.738 40.622 L 79.738 39.767 L 80.406 39.767 C 80.554 39.767 80.785 39.61 81.093 39.296 C 81.4 38.981 81.559 38.736 81.559 38.556 L 81.559 31.399 C 81.559 31.223 81.404 30.981 81.093 30.682 C 80.781 30.383 80.554 30.234 80.406 30.234 L 79.738 30.234 L 79.738 29.379 L 83.153 29.379 L 83.597 31.537 C 84.25 30.847 84.843 30.269 85.377 29.804 C 86.028 29.302 86.837 29.055 87.654 29.11 C 88.353 29.096 89.038 29.308 89.608 29.716 C 90.183 30.135 90.555 30.78 90.633 31.491 C 91.229 30.907 91.852 30.351 92.5 29.827 C 93.143 29.352 93.928 29.114 94.724 29.153 C 95.529 29.133 96.311 29.431 96.902 29.984 C 97.522 30.605 97.846 31.466 97.794 32.346 L 97.794 38.479 C 97.794 38.659 97.949 38.905 98.261 39.219 C 98.572 39.533 98.799 39.69 98.947 39.69 L 99.615 39.69 L 99.615 40.545 L 93.923 40.545 L 93.923 39.69 Z M 87.119 8.295 C 86.933 8.002 86.7 7.743 86.428 7.529 C 86.049 7.199 85.798 7.034 85.669 7.034 L 85.18 7.034 L 85.18 6.153 L 91.183 6.153 L 91.183 7.007 L 90.474 7.007 C 90.326 7.007 90.132 7.157 89.897 7.456 C 89.698 7.665 89.572 7.934 89.54 8.223 L 92.196 13.746 L 94.644 8.265 C 94.647 7.96 94.526 7.668 94.31 7.456 C 94.057 7.157 93.856 7.007 93.707 7.007 L 92.974 7.007 L 92.974 6.153 L 97.467 6.153 L 97.467 7.007 L 96.978 7.007 C 96.83 7.007 96.598 7.165 96.287 7.479 C 96.043 7.703 95.84 7.969 95.688 8.265 L 91.893 16.395 L 88.629 22.732 L 87.662 22.233 L 91.039 16.077 Z M 107.266 29.095 C 108.525 29.045 109.726 29.635 110.465 30.667 C 111.278 31.883 111.677 33.333 111.603 34.799 C 111.663 36.342 111.209 37.86 110.313 39.111 C 109.563 40.195 108.332 40.835 107.023 40.821 C 106.208 40.863 105.398 40.667 104.689 40.258 C 104.062 39.829 103.55 39.251 103.198 38.575 L 103.198 43.964 C 103.198 44.175 103.361 44.428 103.687 44.731 C 104.014 45.034 104.253 45.18 104.401 45.18 L 105.118 45.18 L 105.118 46 L 99.259 46 L 99.259 45.145 L 99.972 45.145 C 100.26 45.084 100.518 44.926 100.705 44.697 C 100.952 44.511 101.119 44.237 101.171 43.93 L 101.171 31.399 C 101.171 31.222 101.016 30.981 100.705 30.682 C 100.518 30.453 100.26 30.295 99.972 30.233 L 99.259 30.233 L 99.259 29.333 L 102.86 29.333 L 103.217 31.671 C 103.622 30.883 104.209 30.204 104.928 29.693 C 105.63 29.256 106.442 29.038 107.266 29.064 Z M 109.49 36.643 L 109.49 36.685 L 109.577 35.788 C 109.607 35.49 109.622 35.191 109.622 34.891 C 109.623 34.628 109.608 34.366 109.577 34.105 L 109.49 33.362 C 109.417 32.575 109.105 31.831 108.598 31.23 C 108.105 30.709 107.413 30.429 106.7 30.464 C 105.871 30.428 105.064 30.745 104.477 31.338 C 103.897 31.953 103.47 32.7 103.232 33.515 L 103.232 36.436 C 103.223 37.283 103.561 38.096 104.165 38.682 C 104.763 39.301 105.587 39.643 106.442 39.625 L 106.488 39.625 C 107.287 39.687 108.07 39.381 108.621 38.793 C 109.118 38.169 109.421 37.41 109.49 36.612 Z M 134.615 38.529 C 134.615 38.709 134.779 38.954 135.105 39.269 C 135.431 39.583 135.667 39.74 135.815 39.74 L 136.483 39.74 L 136.483 40.595 L 130.657 40.595 L 130.657 39.74 L 131.303 39.74 C 131.454 39.74 131.682 39.583 132.016 39.269 C 132.35 38.954 132.506 38.709 132.506 38.529 L 132.506 32.434 C 132.521 31.943 132.373 31.461 132.084 31.065 C 131.763 30.673 131.274 30.463 130.771 30.502 C 129.889 30.531 129.039 30.845 128.346 31.399 C 127.529 32.002 127.122 32.481 127.124 32.836 L 127.124 38.498 C 127.124 38.709 127.288 38.962 127.614 39.265 C 127.812 39.494 128.078 39.652 128.373 39.713 L 129.026 39.713 L 129.026 40.568 L 119.584 40.568 L 119.273 38.234 C 118.805 38.855 118.284 39.433 117.717 39.962 C 117.14 40.511 116.373 40.809 115.58 40.794 C 114.826 40.8 114.102 40.491 113.581 39.939 C 113.01 39.356 112.703 38.559 112.734 37.739 C 112.648 36.767 113.123 35.831 113.956 35.336 C 114.7 34.901 115.501 34.576 116.336 34.37 L 119.227 33.783 L 119.273 32.438 C 119.306 31.759 119.084 31.094 118.65 30.575 C 118.067 30.049 117.292 29.796 116.514 29.877 C 115.753 29.785 115.005 30.131 114.579 30.774 C 114.241 31.526 114.283 32.397 114.692 33.112 L 113.892 33.112 L 112.374 30.866 C 113.603 29.645 115.278 28.994 117 29.068 C 118.089 29.031 119.162 29.337 120.07 29.946 C 120.892 30.517 121.363 31.477 121.314 32.484 L 121.314 38.502 C 121.314 38.682 121.478 38.92 121.804 39.219 C 122.13 39.518 122.366 39.671 122.514 39.671 L 123.849 39.671 C 124.145 39.609 124.412 39.45 124.608 39.219 C 124.935 38.92 125.098 38.682 125.098 38.502 L 125.098 31.399 C 125.098 31.222 124.935 30.981 124.608 30.682 C 124.411 30.453 124.144 30.295 123.849 30.233 L 123.182 30.233 L 123.182 29.333 L 126.696 29.333 L 127.14 31.671 C 127.734 31.032 128.368 30.432 129.037 29.873 C 129.738 29.337 130.603 29.066 131.481 29.106 C 132.305 29.091 133.099 29.415 133.682 30.003 C 134.299 30.618 134.631 31.467 134.597 32.342 Z M 119.273 34.546 L 116.616 35.221 C 116.046 35.314 115.526 35.607 115.148 36.049 C 114.873 36.451 114.732 36.932 114.746 37.421 L 114.746 37.463 C 114.739 37.925 114.915 38.371 115.235 38.701 C 115.545 39.038 115.983 39.225 116.438 39.215 L 116.503 39.215 C 117.098 39.191 117.666 38.953 118.104 38.544 C 118.555 38.179 118.94 37.738 119.242 37.241 Z M 147.556 29.379 L 147.556 30.234 L 147.021 30.234 C 146.903 30.234 146.687 30.391 146.376 30.705 C 146.14 30.932 145.924 31.18 145.731 31.445 L 141.997 39.621 L 138.661 45.912 L 137.727 45.417 L 141.063 39.261 L 137.15 31.491 C 136.964 31.199 136.73 30.939 136.46 30.724 C 136.08 30.395 135.845 30.23 135.727 30.23 L 135.192 30.23 L 135.192 29.379 L 141.196 29.379 L 141.196 30.234 L 140.528 30.234 C 140.38 30.234 140.179 30.383 139.928 30.682 C 139.72 30.887 139.586 31.157 139.549 31.449 L 142.205 36.976 L 144.664 31.433 C 144.665 31.142 144.544 30.863 144.33 30.667 C 144.08 30.368 143.879 30.218 143.731 30.218 L 143.021 30.218 L 143.021 29.379 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10510851604,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1folrmo\",\"data-framer-name\":\"Company=Microsoft\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vkETGCXvd\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 159 47\"><path d=\"M 158.862 21.379 L 158.862 18.557 L 155.392 18.557 L 155.392 14.171 L 155.276 14.207 L 152.018 15.214 L 151.953 15.234 L 151.953 18.557 L 146.809 18.557 L 146.809 16.707 C 146.809 15.844 147 15.184 147.377 14.744 C 147.75 14.31 148.285 14.088 148.966 14.088 C 149.456 14.088 149.963 14.205 150.474 14.435 L 150.602 14.493 L 150.602 11.521 L 150.542 11.498 C 150.065 11.325 149.417 11.238 148.615 11.238 C 147.602 11.238 146.683 11.461 145.882 11.902 C 145.091 12.331 144.44 12.981 144.006 13.774 C 143.565 14.575 143.341 15.499 143.341 16.521 L 143.341 18.558 L 140.925 18.558 L 140.925 21.378 L 143.341 21.378 L 143.341 33.265 L 146.809 33.265 L 146.809 21.378 L 151.953 21.378 L 151.953 28.933 C 151.953 32.044 153.406 33.621 156.272 33.621 C 156.742 33.621 157.238 33.565 157.744 33.456 C 158.259 33.344 158.61 33.232 158.817 33.112 L 158.862 33.085 L 158.862 30.238 L 158.721 30.332 C 158.506 30.47 158.271 30.574 158.024 30.639 C 157.747 30.717 157.518 30.757 157.338 30.757 C 156.667 30.757 156.171 30.574 155.863 30.213 C 155.55 29.849 155.392 29.213 155.392 28.323 L 155.392 21.379 Z M 133.181 30.757 C 131.922 30.757 130.93 30.336 130.231 29.505 C 129.527 28.67 129.17 27.48 129.17 25.968 C 129.17 24.41 129.527 23.188 130.231 22.34 C 130.931 21.496 131.914 21.067 133.153 21.067 C 134.355 21.067 135.313 21.476 135.998 22.284 C 136.688 23.095 137.037 24.306 137.037 25.883 C 137.037 27.481 136.708 28.708 136.059 29.529 C 135.416 30.343 134.447 30.757 133.181 30.757 Z M 133.335 18.204 C 130.934 18.204 129.027 18.914 127.666 20.316 C 126.307 21.717 125.618 23.657 125.618 26.082 C 125.618 28.385 126.291 30.237 127.618 31.587 C 128.944 32.936 130.75 33.621 132.984 33.621 C 135.312 33.621 137.181 32.9 138.54 31.478 C 139.9 30.058 140.589 28.137 140.589 25.77 C 140.589 23.43 139.942 21.564 138.667 20.224 C 137.392 18.882 135.598 18.203 133.335 18.203 Z M 120.027 18.204 C 118.393 18.204 117.041 18.625 116.01 19.457 C 114.971 20.294 114.444 21.392 114.444 22.721 C 114.444 23.411 114.558 24.024 114.782 24.545 C 115.015 25.077 115.37 25.546 115.818 25.912 C 116.277 26.294 116.986 26.695 117.926 27.102 C 118.716 27.431 119.305 27.709 119.679 27.928 C 120.045 28.142 120.305 28.358 120.451 28.567 C 120.594 28.773 120.665 29.054 120.665 29.401 C 120.665 30.39 119.933 30.87 118.425 30.87 C 117.866 30.87 117.229 30.753 116.53 30.52 C 115.836 30.291 115.181 29.956 114.588 29.526 L 114.444 29.421 L 114.444 32.793 L 114.496 32.819 C 114.987 33.047 115.606 33.24 116.336 33.392 C 117.063 33.544 117.724 33.621 118.299 33.621 C 120.071 33.621 121.499 33.197 122.541 32.36 C 123.589 31.517 124.12 30.393 124.12 29.02 C 124.12 28.028 123.834 27.178 123.271 26.491 C 122.71 25.812 121.739 25.187 120.383 24.636 C 119.303 24.197 118.612 23.834 118.327 23.556 C 118.052 23.287 117.912 22.905 117.912 22.423 C 117.912 21.995 118.085 21.652 118.439 21.375 C 118.795 21.095 119.292 20.954 119.914 20.954 C 120.492 20.954 121.083 21.046 121.671 21.226 C 122.215 21.387 122.733 21.629 123.206 21.945 L 123.347 22.043 L 123.347 18.844 L 123.293 18.821 C 122.895 18.648 122.371 18.501 121.735 18.382 C 121.172 18.27 120.6 18.21 120.027 18.203 Z M 105.403 30.757 C 104.145 30.757 103.152 30.336 102.453 29.505 C 101.749 28.67 101.393 27.481 101.393 25.968 C 101.393 24.41 101.749 23.188 102.453 22.34 C 103.153 21.496 104.135 21.067 105.375 21.067 C 106.578 21.067 107.534 21.476 108.221 22.284 C 108.91 23.095 109.259 24.306 109.259 25.883 C 109.259 27.481 108.931 28.708 108.282 29.529 C 107.638 30.343 106.67 30.757 105.403 30.757 Z M 105.558 18.204 C 103.156 18.204 101.248 18.914 99.889 20.316 C 98.53 21.717 97.84 23.657 97.84 26.082 C 97.84 28.386 98.513 30.237 99.84 31.587 C 101.167 32.936 102.973 33.621 105.207 33.621 C 107.534 33.621 109.404 32.9 110.764 31.478 C 112.122 30.058 112.811 28.137 112.811 25.77 C 112.811 23.43 112.165 21.564 110.89 20.224 C 109.614 18.882 107.819 18.203 105.558 18.203 Z M 92.576 21.105 L 92.576 18.557 L 89.151 18.557 L 89.151 33.266 L 92.576 33.266 L 92.576 25.742 C 92.576 24.463 92.863 23.412 93.429 22.618 C 93.989 21.833 94.735 21.436 95.645 21.436 C 95.954 21.436 96.301 21.487 96.676 21.589 C 97.047 21.69 97.316 21.799 97.475 21.915 L 97.618 22.02 L 97.618 18.532 L 97.563 18.508 C 97.244 18.371 96.792 18.303 96.221 18.303 C 95.384 18.294 94.571 18.588 93.93 19.132 C 93.351 19.615 92.932 20.278 92.612 21.105 Z M 83.015 18.203 C 81.444 18.203 80.042 18.543 78.849 19.214 C 77.673 19.868 76.716 20.861 76.102 22.067 C 75.476 23.286 75.158 24.708 75.158 26.295 C 75.158 27.685 75.466 28.96 76.076 30.084 C 76.663 31.187 77.553 32.096 78.639 32.701 C 79.729 33.311 80.989 33.622 82.384 33.622 C 84.012 33.622 85.402 33.292 86.516 32.643 L 86.562 32.618 L 86.562 29.448 L 86.417 29.554 C 85.905 29.93 85.34 30.227 84.741 30.435 C 84.136 30.649 83.584 30.757 83.1 30.757 C 81.756 30.757 80.676 30.332 79.894 29.494 C 79.108 28.656 78.711 27.478 78.711 25.997 C 78.711 24.506 79.126 23.298 79.943 22.406 C 80.759 21.518 81.84 21.068 83.156 21.068 C 84.283 21.068 85.38 21.453 86.417 22.213 L 86.561 22.318 L 86.561 18.979 L 86.515 18.952 C 86.125 18.731 85.591 18.548 84.93 18.41 C 84.301 18.276 83.659 18.206 83.015 18.203 Z M 72.799 18.557 L 69.373 18.557 L 69.373 33.266 L 72.799 33.266 Z M 71.121 12.291 C 70.579 12.283 70.054 12.49 69.661 12.869 C 69.255 13.255 69.051 13.741 69.051 14.312 C 69.051 14.875 69.253 15.351 69.655 15.726 C 70.054 16.1 70.548 16.29 71.121 16.29 C 71.666 16.301 72.193 16.099 72.593 15.727 C 73 15.351 73.206 14.875 73.206 14.312 C 73.206 13.76 73.006 13.279 72.611 12.885 C 72.215 12.491 71.714 12.291 71.121 12.291 Z M 62.573 17.472 L 62.573 33.266 L 66.069 33.266 L 66.069 12.742 L 61.231 12.742 L 55.08 27.987 L 49.112 12.742 L 44.076 12.742 L 44.076 33.265 L 47.362 33.265 L 47.362 17.471 L 47.474 17.471 L 53.776 33.265 L 56.256 33.265 L 62.461 17.472 Z M 16.115 22.16 L 0 22.16 L 0 5.885 L 16.115 5.885 L 16.115 22.159 Z M 33.91 22.16 L 17.794 22.16 L 17.794 5.885 L 33.91 5.885 L 33.91 22.159 Z M 16.115 40.137 L 0 40.137 L 0 23.861 L 16.115 23.861 L 16.115 40.136 Z M 33.91 40.137 L 17.794 40.137 L 17.794 23.861 L 33.91 23.861 L 33.91 40.136 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:11228816445,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qcjbsr\",\"data-framer-name\":\"Company=Google\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RdN9GW0KY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 104 44\"><path d=\"M 44.395 23.512 C 44.395 28.392 40.563 31.988 35.859 31.988 C 31.156 31.988 27.323 28.392 27.323 23.512 C 27.323 18.599 31.156 15.037 35.859 15.037 C 40.563 15.037 44.395 18.598 44.395 23.512 Z M 40.658 23.512 C 40.658 20.464 38.438 18.377 35.859 18.377 C 33.282 18.377 31.06 20.464 31.06 23.512 C 31.06 26.531 33.281 28.649 35.86 28.649 C 38.437 28.649 40.658 26.527 40.658 23.512 Z M 62.811 23.512 C 62.811 28.392 58.978 31.988 54.275 31.988 C 49.572 31.988 45.739 28.392 45.739 23.512 C 45.739 18.603 49.571 15.037 54.275 15.037 C 58.978 15.037 62.811 18.598 62.811 23.512 Z M 59.075 23.512 C 59.075 20.464 56.853 18.377 54.275 18.377 C 51.696 18.377 49.475 20.464 49.475 23.512 C 49.475 26.531 51.696 28.649 54.275 28.649 C 56.853 28.649 59.075 26.527 59.075 23.512 Z M 80.459 15.549 L 80.459 30.765 C 80.459 37.024 76.754 39.581 72.372 39.581 C 68.248 39.581 65.766 36.833 64.83 34.587 L 68.083 33.237 C 68.663 34.617 70.082 36.244 72.368 36.244 C 75.173 36.244 76.911 34.521 76.911 31.278 L 76.911 30.058 L 76.781 30.058 C 75.944 31.086 74.332 31.983 72.298 31.983 C 68.045 31.983 64.147 28.293 64.147 23.544 C 64.147 18.759 68.045 15.037 72.299 15.037 C 74.329 15.037 75.94 15.935 76.781 16.933 L 76.911 16.933 L 76.911 15.553 L 80.459 15.553 Z M 77.175 23.543 C 77.175 20.559 75.176 18.377 72.633 18.377 C 70.055 18.377 67.895 20.559 67.895 23.544 C 67.895 26.497 70.055 28.649 72.633 28.649 C 75.176 28.649 77.175 26.497 77.175 23.543 Z M 86.31 6.631 L 86.31 31.468 L 82.665 31.468 L 82.665 6.631 Z M 100.513 26.302 L 103.414 28.228 C 102.478 29.607 100.222 31.984 96.323 31.984 C 91.49 31.984 87.879 28.263 87.879 23.509 C 87.879 18.469 91.52 15.033 95.905 15.033 C 100.321 15.033 102.481 18.534 103.187 20.425 L 103.575 21.388 L 92.199 26.081 C 93.07 27.78 94.425 28.648 96.323 28.648 C 98.227 28.648 99.546 27.716 100.513 26.302 Z M 91.585 23.253 L 99.189 20.108 C 98.771 19.049 97.513 18.311 96.032 18.311 C 94.133 18.311 91.49 19.981 91.585 23.252 Z M 13.526 21.308 L 13.526 17.712 L 25.693 17.712 C 25.819 18.428 25.88 19.155 25.873 19.882 C 25.873 22.58 25.132 25.916 22.747 28.293 C 20.424 30.7 17.459 31.984 13.531 31.984 C 6.249 31.984 0.126 26.076 0.126 18.824 C 0.126 11.571 6.249 5.665 13.531 5.665 C 17.559 5.665 20.429 7.239 22.585 9.291 L 20.037 11.829 C 18.491 10.384 16.396 9.26 13.526 9.26 C 8.21 9.26 4.05 13.529 4.05 18.825 C 4.05 24.121 8.21 28.389 13.526 28.389 C 16.976 28.389 18.94 27.01 20.199 25.756 C 21.219 24.74 21.891 23.288 22.156 21.305 L 13.526 21.309 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:11209345125,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1398gy4\",\"data-framer-name\":\"Citi\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pUqSWgEzn\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 72 47\"><path d=\"M 21.953 37.296 L 21.822 37.423 C 19.744 39.532 17.337 40.651 14.858 40.651 C 9.686 40.651 5.929 36.782 5.929 31.445 C 5.929 26.118 9.686 22.247 14.859 22.247 C 17.337 22.247 19.744 23.369 21.823 25.483 L 21.953 25.613 L 25.279 21.603 L 25.19 21.494 C 22.426 18.235 19.104 16.652 15.021 16.652 C 10.927 16.652 7.18 18.025 4.481 20.501 C 1.547 23.185 0 26.968 0 31.447 C 0 35.927 1.547 39.717 4.481 42.401 C 7.18 44.89 10.925 46.254 15.021 46.254 C 19.104 46.254 22.426 44.671 25.19 41.411 L 25.279 41.309 Z M 28.642 45.706 L 34.522 45.706 L 34.522 17.113 L 28.642 17.113 Z M 57.552 39.49 C 55.98 40.442 54.523 40.921 53.209 40.921 C 51.31 40.921 50.45 39.922 50.45 37.696 L 50.45 22.523 L 56.441 22.523 L 56.441 17.139 L 50.45 17.139 L 50.45 8.241 L 44.69 11.315 L 44.69 17.14 L 39.718 17.14 L 39.718 22.523 L 44.69 22.523 L 44.69 38.666 C 44.69 43.059 47.304 46.064 51.209 46.145 C 53.858 46.197 55.455 45.411 56.424 44.834 L 56.484 44.793 L 57.898 39.28 L 57.553 39.49 Z M 62.418 45.706 L 68.302 45.706 L 68.302 17.113 L 62.418 17.113 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 71.729 12.1 C 66.359 4.521 57.441 0 48.367 0 C 39.296 0 30.374 4.522 25.014 12.1 L 24.738 12.488 L 31.502 12.488 L 31.574 12.408 C 36.18 7.678 42.188 5.174 48.368 5.174 C 54.547 5.174 60.554 7.678 65.166 12.408 L 65.244 12.488 L 72 12.488 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:11088449069,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-141cksw\",\"data-framer-name\":\"Amazon logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XFaPm6A9U\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146 44\"><path d=\"M 90.555 34.374 C 82.081 40.611 69.798 43.938 59.223 43.938 C 44.395 43.938 31.046 38.462 20.947 29.354 C 20.153 28.638 20.864 27.662 21.816 28.22 C 32.715 34.552 46.191 38.361 60.112 38.361 C 69.5 38.361 79.828 36.421 89.324 32.397 C 90.758 31.788 91.958 33.335 90.555 34.374\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 94.078 30.349 C 92.999 28.968 86.918 29.697 84.189 30.02 C 83.357 30.121 83.23 29.399 83.979 28.879 C 88.822 25.476 96.77 26.458 97.697 27.599 C 98.623 28.746 97.455 36.7 92.904 40.497 C 92.206 41.08 91.539 40.769 91.85 39.996 C 92.872 37.448 95.164 31.738 94.078 30.349\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 84.379 4.851 L 84.379 1.543 C 84.379 1.042 84.76 0.706 85.217 0.706 L 100.052 0.706 C 100.528 0.706 100.909 1.048 100.909 1.543 L 100.909 4.376 C 100.902 4.851 100.502 5.472 99.791 6.455 L 92.104 17.413 C 94.961 17.343 97.976 17.768 100.566 19.226 C 101.15 19.556 101.308 20.037 101.353 20.513 L 101.353 24.043 C 101.353 24.524 100.82 25.088 100.261 24.797 C 95.697 22.408 89.635 22.147 84.588 24.822 C 84.074 25.101 83.535 24.544 83.535 24.062 L 83.535 20.709 C 83.535 20.17 83.541 19.251 84.081 18.434 L 92.986 5.681 L 85.236 5.681 C 84.76 5.681 84.379 5.345 84.379 4.851 M 30.265 25.494 L 25.752 25.494 C 25.32 25.463 24.977 25.139 24.946 24.728 L 24.946 1.6 C 24.946 1.137 25.333 0.769 25.815 0.769 L 30.024 0.769 C 30.462 0.788 30.811 1.124 30.843 1.543 L 30.843 4.566 L 30.925 4.566 C 32.023 1.644 34.086 0.281 36.867 0.281 C 39.691 0.281 41.456 1.644 42.726 4.566 C 43.817 1.644 46.299 0.281 48.959 0.281 C 50.851 0.281 52.92 1.061 54.183 2.81 C 55.611 4.756 55.319 7.583 55.319 10.061 L 55.313 24.658 C 55.313 25.12 54.926 25.494 54.443 25.494 L 49.937 25.494 C 49.486 25.463 49.124 25.102 49.124 24.658 L 49.124 12.4 C 49.124 11.424 49.213 8.99 48.997 8.065 C 48.661 6.512 47.651 6.074 46.344 6.074 C 45.252 6.074 44.109 6.803 43.646 7.97 C 43.183 9.136 43.227 11.088 43.227 12.4 L 43.227 24.658 C 43.227 25.12 42.84 25.494 42.357 25.494 L 37.851 25.494 C 37.393 25.463 37.038 25.102 37.038 24.658 L 37.032 12.4 C 37.032 9.82 37.457 6.024 34.251 6.024 C 31.008 6.024 31.135 9.725 31.135 12.4 L 31.135 24.658 C 31.135 25.12 30.747 25.494 30.265 25.494 M 113.68 0.281 C 120.377 0.281 124.001 6.024 124.001 13.325 C 124.001 20.38 119.996 25.976 113.68 25.976 C 107.104 25.976 103.524 20.234 103.524 13.078 C 103.524 5.878 107.148 0.281 113.68 0.281 M 113.718 5.003 C 110.392 5.003 110.183 9.529 110.183 12.349 C 110.183 15.176 110.138 21.21 113.68 21.21 C 117.178 21.21 117.343 16.342 117.343 13.376 C 117.343 11.424 117.26 9.091 116.67 7.241 C 116.162 5.631 115.153 5.003 113.718 5.003 M 132.685 25.494 L 128.191 25.494 C 127.74 25.463 127.378 25.102 127.378 24.658 L 127.372 1.524 C 127.41 1.099 127.785 0.769 128.242 0.769 L 132.425 0.769 C 132.818 0.788 133.142 1.055 133.231 1.416 L 133.231 4.953 L 133.313 4.953 C 134.577 1.79 136.348 0.281 139.464 0.281 C 141.489 0.281 143.464 1.01 144.733 3.007 C 145.914 4.857 145.914 7.97 145.914 10.207 L 145.914 24.765 C 145.863 25.171 145.488 25.494 145.044 25.494 L 140.518 25.494 C 140.106 25.463 139.763 25.158 139.718 24.765 L 139.718 12.203 C 139.718 9.674 140.01 5.973 136.894 5.973 C 135.795 5.973 134.786 6.708 134.285 7.824 C 133.65 9.237 133.567 10.644 133.567 12.203 L 133.567 24.658 C 133.561 25.12 133.167 25.494 132.685 25.494\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 13.386 14.447 L 13.386 13.471 C 10.124 13.471 6.677 14.168 6.677 18.009 C 6.677 19.955 7.686 21.273 9.419 21.273 C 10.689 21.273 11.825 20.494 12.542 19.226 C 13.431 17.667 13.386 16.203 13.386 14.447 M 17.938 25.431 C 17.64 25.697 17.208 25.716 16.871 25.539 C 15.373 24.296 15.107 23.72 14.282 22.535 C 11.806 25.057 10.054 25.811 6.842 25.811 C 3.046 25.811 0.088 23.473 0.088 18.789 C 0.088 15.132 2.075 12.641 4.9 11.424 C 7.35 10.346 10.771 10.156 13.386 9.858 L 13.386 9.275 C 13.386 8.204 13.469 6.936 12.841 6.011 C 12.288 5.181 11.235 4.839 10.308 4.839 C 8.588 4.839 7.052 5.72 6.677 7.545 C 6.601 7.95 6.302 8.35 5.896 8.369 L 1.516 7.9 C 1.148 7.817 0.742 7.519 0.844 6.955 C 1.853 1.657 6.645 0.059 10.936 0.059 C 13.132 0.059 16.002 0.643 17.735 2.303 C 19.931 4.35 19.722 7.082 19.722 10.055 L 19.722 17.077 C 19.722 19.188 20.598 20.113 21.423 21.254 C 21.715 21.66 21.778 22.148 21.41 22.452 C 20.49 23.219 18.852 24.645 17.95 25.444 L 17.938 25.431\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 72.376 14.388 L 72.376 13.412 C 69.114 13.412 65.667 14.109 65.667 17.95 C 65.667 19.895 66.676 21.214 68.409 21.214 C 69.679 21.214 70.815 20.434 71.532 19.167 C 72.421 17.607 72.376 16.143 72.376 14.388 M 76.928 25.372 C 76.629 25.638 76.198 25.657 75.861 25.479 C 74.363 24.237 74.097 23.66 73.271 22.475 C 70.796 24.998 69.044 25.752 65.832 25.752 C 62.036 25.752 59.078 23.413 59.078 18.729 C 59.078 15.072 61.065 12.581 63.889 11.364 C 66.34 10.287 69.761 10.097 72.376 9.799 L 72.376 9.216 C 72.376 8.145 72.459 6.877 71.831 5.952 C 71.278 5.121 70.225 4.779 69.298 4.779 C 67.577 4.779 66.041 5.66 65.667 7.485 C 65.591 7.891 65.292 8.29 64.886 8.309 L 60.506 7.84 C 60.138 7.758 59.732 7.46 59.833 6.896 C 60.843 1.597 65.635 0 69.926 0 C 72.122 0 74.991 0.583 76.725 2.244 C 78.921 4.291 78.711 7.023 78.711 9.995 L 78.711 17.018 C 78.711 19.128 79.587 20.054 80.413 21.195 C 80.705 21.6 80.768 22.088 80.4 22.393 C 79.479 23.159 77.842 24.586 76.94 25.384 L 76.928 25.372\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11470325096,withExternalLayout:true})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TAKFM.framer-8slytm, .framer-TAKFM .framer-8slytm { display: block; }\",\".framer-TAKFM.framer-wkahqu { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 56px 40px 56px; position: relative; width: 1200px; }\",\".framer-TAKFM .framer-10ivt5g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; max-width: 720px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TAKFM .framer-12nz1pg, .framer-TAKFM .framer-cmmsv, .framer-TAKFM .framer-baejb3, .framer-TAKFM .framer-1kdfacn { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TAKFM .framer-ipkid5-container { flex: none; height: 105px; position: relative; width: 100%; }\",\".framer-TAKFM .framer-1w0eqnt, .framer-TAKFM .framer-k2pm6k { height: 28px; position: relative; width: 200px; }\",\".framer-TAKFM .framer-1l14j2l { height: 33px; position: relative; width: 83px; }\",\".framer-TAKFM .framer-xvtpg8 { height: 38px; position: relative; width: 374px; }\",\".framer-TAKFM .framer-1ksqsyn { height: 26px; position: relative; width: 123px; }\",\".framer-TAKFM .framer-ebryu8 { height: 46px; position: relative; width: 148px; }\",\".framer-TAKFM .framer-1folrmo { height: 47px; position: relative; width: 159px; }\",\".framer-TAKFM .framer-1qcjbsr { height: 44px; position: relative; width: 104px; }\",\".framer-TAKFM .framer-1398gy4 { height: 47px; position: relative; width: 72px; }\",\".framer-TAKFM .framer-141cksw { height: 44px; position: relative; width: 146px; }\",\".framer-TAKFM.framer-v-hzm8fp.framer-wkahqu { width: 810px; }\",\".framer-TAKFM.framer-v-1hu3vd9.framer-wkahqu { padding: 40px 16px 40px 16px; width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 339\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vdv_aSlJm\":{\"layout\":[\"fixed\",\"auto\"]},\"Elu_hjZ4r\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerbmOmz8iwh=withCSS(Component,css,\"framer-TAKFM\");export default FramerbmOmz8iwh;FramerbmOmz8iwh.displayName=\"Logos\";FramerbmOmz8iwh.defaultProps={height:339,width:1200};addPropertyControls(FramerbmOmz8iwh,{variant:{options:[\"noBNBQZb2\",\"vdv_aSlJm\",\"Elu_hjZ4r\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerbmOmz8iwh,[{explicitInter:true,fonts:[{family:\"Larken Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/5pcci7HyjwATCHhKMzQ5PlgEmMA.otf\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbmOmz8iwh\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vdv_aSlJm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Elu_hjZ4r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"339\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bmOmz8iwh.map"],"mappings":"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"}