{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/5hwSRFxV0XH7mOeR3v4n/Ticker.js", "ssg:https://framerusercontent.com/modules/r8jexRwSNkOmdAcpp4Sv/4qd3h6HflcJWh4hDhHcY/PJ3v680w_.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/5hwSRFxV0XH7mOeR3v4n/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-2tXuu\";const variantClassNames={mugVwqm7G:\"framer-v-kvqq48\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"mugVwqm7G\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-kvqq48\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mugVwqm7G\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sap19c-container\",layoutDependency:layoutDependency,layoutId:\"q7Kfidmga-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:66,height:\"100%\",hoverFactor:1,id:\"q7Kfidmga\",layoutId:\"q7Kfidmga\",padding:32,paddingBottom:32,paddingLeft:32,paddingPerSide:false,paddingRight:32,paddingTop:32,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jfcq6f\",layoutDependency:layoutDependency,layoutId:\"an8USRX5F\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-134pjet\",\"data-framer-name\":\"Amazon Web_Services_Logo 1\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:47,layoutDependency:layoutDependency,layoutId:\"Gmuu8WYtI\",svg:'<svg width=\"47\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#7D95A1\"><path d=\"M13.293 10.718c0 .57.062 1.03.17 1.37.122.338.276.707.492 1.107a.668.668 0 0 1 .107.354c0 .154-.092.308-.292.461l-.97.646a.738.738 0 0 1-.4.139c-.153 0-.307-.077-.46-.215a4.823 4.823 0 0 1-.555-.723 11.917 11.917 0 0 1-.477-.908c-1.2 1.415-2.707 2.123-4.523 2.123-1.292 0-2.323-.37-3.077-1.108-.753-.738-1.138-1.723-1.138-2.954 0-1.307.461-2.369 1.4-3.169.938-.8 2.185-1.2 3.77-1.2.522 0 1.06.046 1.63.123.57.077 1.154.2 1.77.339V5.98c0-1.17-.247-1.985-.724-2.462-.492-.477-1.323-.708-2.508-.708a7 7 0 0 0-1.661.2c-.57.139-1.123.308-1.662.523a4.21 4.21 0 0 1-.538.2.944.944 0 0 1-.246.047c-.216 0-.323-.154-.323-.477v-.754c0-.246.03-.431.107-.539.077-.107.216-.215.431-.323.539-.277 1.185-.507 1.939-.692a9.327 9.327 0 0 1 2.4-.292c1.83 0 3.169.415 4.03 1.246.847.83 1.277 2.092 1.277 3.784v4.985h.031Zm-6.246 2.338c.508 0 1.03-.092 1.584-.276a3.428 3.428 0 0 0 1.462-.985c.246-.292.43-.615.523-.985.092-.369.154-.815.154-1.338v-.646c-.446-.108-.923-.2-1.415-.262-.493-.061-.97-.092-1.447-.092-1.03 0-1.784.2-2.292.615-.508.416-.754 1-.754 1.77 0 .723.185 1.261.57 1.63.369.385.907.57 1.615.57ZM19.4 14.718c-.277 0-.462-.046-.585-.154-.123-.092-.23-.307-.323-.6L14.878 2.072c-.093-.308-.139-.508-.139-.616 0-.246.123-.384.37-.384h1.507c.292 0 .492.046.6.154.123.092.215.307.308.6l2.584 10.184 2.4-10.184c.077-.308.17-.508.293-.6.123-.093.338-.154.615-.154h1.23c.293 0 .493.046.616.154.123.092.231.307.293.6l2.43 10.307 2.662-10.307c.092-.308.2-.508.308-.6.123-.093.323-.154.6-.154h1.43c.246 0 .385.123.385.384 0 .077-.015.154-.03.247a2.194 2.194 0 0 1-.109.384L29.524 13.98c-.093.307-.2.507-.323.6-.123.092-.323.153-.585.153h-1.323c-.292 0-.492-.046-.615-.153-.123-.108-.231-.308-.293-.616l-2.384-9.923-2.37 9.908c-.076.308-.169.508-.292.615-.123.108-.338.154-.615.154H19.4Zm19.769.415c-.8 0-1.6-.092-2.37-.276-.768-.185-1.368-.385-1.768-.616-.247-.138-.416-.292-.477-.43a1.086 1.086 0 0 1-.093-.431v-.785c0-.323.123-.477.354-.477a.87.87 0 0 1 .277.046c.092.031.23.093.385.154.523.23 1.092.415 1.692.539a9.238 9.238 0 0 0 1.83.184c.97 0 1.724-.17 2.247-.508.523-.338.8-.83.8-1.461 0-.43-.139-.785-.415-1.077-.277-.292-.8-.554-1.554-.8l-2.231-.692c-1.123-.354-1.954-.877-2.462-1.57-.507-.677-.769-1.43-.769-2.23 0-.647.139-1.216.416-1.708a3.955 3.955 0 0 1 1.107-1.262 4.883 4.883 0 0 1 1.6-.8 6.705 6.705 0 0 1 1.939-.261c.338 0 .692.015 1.03.061.354.047.677.108 1 .17.308.077.6.153.877.246.277.092.493.184.646.277.216.123.37.246.462.384.092.123.139.293.139.508v.723c0 .323-.124.492-.354.492-.123 0-.324-.061-.585-.184-.877-.4-1.861-.6-2.954-.6-.877 0-1.57.138-2.046.43-.477.293-.723.739-.723 1.37 0 .43.154.8.462 1.092.307.292.876.585 1.692.846l2.184.693c1.108.353 1.908.846 2.385 1.476.477.631.708 1.354.708 2.154 0 .662-.139 1.262-.4 1.785a4.138 4.138 0 0 1-1.123 1.354c-.477.384-1.047.661-1.708.861a7.315 7.315 0 0 1-2.2.323Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M42.077 22.61c-5.061 3.739-12.415 5.724-18.738 5.724-8.862 0-16.846-3.277-22.877-8.724-.477-.43-.046-1.015.523-.676 6.523 3.784 14.57 6.076 22.892 6.076 5.616 0 11.785-1.169 17.462-3.569.846-.384 1.569.554.738 1.17Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M44.185 20.21c-.646-.83-4.277-.4-5.923-.2-.492.062-.57-.369-.123-.692 2.892-2.03 7.646-1.446 8.2-.769.554.692-.154 5.446-2.861 7.723-.416.354-.816.17-.631-.292.615-1.523 1.984-4.954 1.338-5.77Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .502)\" d=\"M0 0h46.769v28H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vncgbz\",layoutDependency:layoutDependency,layoutId:\"p56KgJXcs\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-el5iki\",\"data-framer-name\":\"Frame 427318999\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:86,layoutDependency:layoutDependency,layoutId:\"mn2IataOw\",svg:'<svg width=\"86\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M37.17 15.238c0 4.028-3.152 6.996-7.02 6.996-3.867 0-7.018-2.968-7.018-6.996 0-4.057 3.151-6.997 7.019-6.997 3.867 0 7.019 2.94 7.019 6.997Zm-3.073 0c0-2.518-1.826-4.24-3.946-4.24s-3.947 1.722-3.947 4.24c0 2.492 1.827 4.24 3.947 4.24s3.946-1.752 3.946-4.24Zm18.215 0c0 4.028-3.151 6.996-7.019 6.996-3.867 0-7.019-2.968-7.019-6.996 0-4.054 3.152-6.997 7.02-6.997 3.867 0 7.018 2.94 7.018 6.997Zm-3.072 0c0-2.518-1.827-4.24-3.947-4.24s-3.946 1.722-3.946 4.24c0 2.492 1.826 4.24 3.946 4.24s3.947-1.752 3.947-4.24Zm17.583-6.575v12.562c0 5.167-3.047 7.277-6.65 7.277-3.39 0-5.432-2.268-6.201-4.122l2.675-1.114c.476 1.139 1.643 2.483 3.523 2.483 2.306 0 3.735-1.423 3.735-4.101V20.64h-.107c-.688.849-2.013 1.59-3.684 1.59-3.499 0-6.704-3.047-6.704-6.968 0-3.95 3.205-7.022 6.704-7.022 1.668 0 2.993.741 3.684 1.564h.107V8.667h2.918v-.004Zm-2.7 6.6c0-2.464-1.643-4.265-3.735-4.265-2.12 0-3.896 1.801-3.896 4.265 0 2.438 1.776 4.214 3.896 4.214 2.092 0 3.735-1.776 3.735-4.214ZM71.634 1.3v20.505h-2.997V1.3h2.997Zm11.678 16.24 2.385 1.59c-.77 1.139-2.625 3.101-5.83 3.101-3.975 0-6.943-3.073-6.943-6.997 0-4.16 2.993-6.997 6.6-6.997 3.63 0 5.406 2.89 5.987 4.451l.318.795-9.353 3.874c.716 1.404 1.83 2.12 3.391 2.12 1.565 0 2.65-.77 3.445-1.937Zm-7.34-2.517 6.252-2.596c-.344-.874-1.379-1.483-2.597-1.483-1.561 0-3.735 1.378-3.656 4.079Zm-64.183-1.606V10.45h10.003c.097.517.148 1.13.148 1.792 0 2.227-.609 4.98-2.571 6.943-1.909 1.987-4.347 3.047-7.577 3.047C5.804 22.231.77 17.354.77 11.367.77 5.379 5.804.502 11.792.502c3.312 0 5.671 1.3 7.444 2.994l-2.094 2.095c-1.271-1.193-2.994-2.12-5.353-2.12-4.373 0-7.792 3.524-7.792 7.896s3.42 7.896 7.792 7.896c2.835 0 4.45-1.14 5.485-2.174.84-.839 1.391-2.038 1.61-3.675l-7.095.003Z\" fill=\"#7D95A1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rpor0g\",layoutDependency:layoutDependency,layoutId:\"FiRlnUHoR\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ox9waz\",\"data-framer-name\":\"66a893033aa9637362378088 Walmart_logo\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:118,layoutDependency:layoutDependency,layoutId:\"rjnmCgQQn\",svg:'<svg width=\"118\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#7D95A1\"><path d=\"M68.56 15.403c0-2.766-1.184-5.209-5.187-5.209-2.054 0-3.686.586-4.57 1.098l.648 2.219c.815-.511 2.114-.932 3.34-.932 2.027-.003 2.36 1.143 2.36 1.88v.178c-4.425-.007-7.221 1.521-7.221 4.634 0 1.902 1.42 3.686 3.901 3.686 1.514 0 2.794-.611 3.558-1.576h.075s.504 2.108 3.29 1.302c-.142-.883-.195-1.813-.195-2.944v-4.336Zm-3.3 2.92c0 .223-.02.454-.085.653-.255.852-1.134 1.565-2.227 1.565-.923 0-1.648-.523-1.648-1.618 0-1.674 1.85-2.135 3.96-2.123M.83 6.432S3.718 18.254 4.177 20.17c.541 2.239 1.51 3.066 4.307 2.515l1.806-7.331c.457-1.816.767-3.119 1.062-4.97h.05c.205 1.87.5 3.154.873 4.976 0 0 .737 3.33 1.12 5.075.371 1.745 1.42 2.845 4.163 2.25l4.3-16.252h-3.472l-1.475 7.03c-.39 2.037-.746 3.641-1.022 5.508h-.05c-.25-1.846-.565-3.385-.972-5.38L13.34 6.432H9.72l-1.632 6.974c-.465 2.13-.9 3.838-1.174 5.645h-.047a205.902 205.902 0 0 0-1.07-5.905s-.968-4.994-1.31-6.714m27.044 8.971c0-2.766-1.186-5.209-5.19-5.209-2.048 0-3.682.586-4.567 1.098l.649 2.219c.811-.511 2.11-.932 3.34-.932 2.027-.003 2.359 1.143 2.359 1.88v.178c-4.424-.007-7.224 1.521-7.224 4.634 0 1.902 1.426 3.686 3.896 3.686 1.529 0 2.797-.611 3.561-1.576h.077s.507 2.108 3.29 1.302c-.142-.883-.19-1.813-.19-2.944v-4.336Zm-3.303 2.92c0 .223-.019.454-.082.653-.258.852-1.136 1.565-2.233 1.565-.917 0-1.644-.523-1.644-1.618 0-1.674 1.85-2.135 3.959-2.123m5.104-10.368v16.246h3.303V6.433h-3.303Zm45.365 0V18.42c0 1.654.31 2.808.98 3.515.586.62 1.546 1.023 2.69 1.023.982 0 1.942-.189 2.396-.353l-.04-2.58c-.34.078-.727.145-1.26.145-1.127 0-1.5-.714-1.5-2.2v-4.588h2.877v-3.105h-2.877V6.432M70.16 10.476v12.207h3.415v-6.251c0-.336.022-.627.075-.896.254-1.318 1.255-2.153 2.696-2.153.402 0 .675.045.979.092v-3.2a3.616 3.616 0 0 0-.742-.07c-1.278 0-2.726.811-3.337 2.579h-.085v-2.308m-34.607 0v12.207h3.327V15.52c0-.337.038-.68.156-.99.27-.726.942-1.566 2.02-1.566 1.34 0 1.972 1.13 1.972 2.762v6.958h3.32v-7.25c0-.316.044-.704.136-.985.267-.823.994-1.485 1.998-1.485 1.354 0 2.01 1.106 2.01 3.03v6.69h3.316v-7.197c0-3.782-1.923-5.281-4.108-5.281-.96 0-1.724.236-2.411.66-.581.356-1.09.858-1.547 1.515h-.05c-.526-1.314-1.76-2.175-3.371-2.175-2.067 0-3.006 1.043-3.558 1.925h-.05v-1.654m60.998-.548c.652 0 1.202-.341 1.274-.779l.646-7.328c0-.726-.854-1.32-1.92-1.32-1.072 0-1.921.594-1.921 1.32l.653 7.328c.068.438.615.779 1.268.779Zm-3.969 2.292c.323-.572.304-1.208-.045-1.491l-6.04-4.224c-.628-.366-1.568.07-2.106.995-.537.923-.428 1.96.187 2.319l6.687 3.1c.428.16.987-.138 1.317-.704m7.937-.001c.342.567.902.865 1.319.713l6.686-3.109c.621-.366.714-1.392.189-2.315-.537-.925-1.483-1.358-2.109-1l-6.042 4.22c-.335.288-.359.926-.036 1.497m-3.975 6.861c.652 0 1.202.34 1.274.779l.646 7.328c0 .725-.854 1.313-1.92 1.313-1.072 0-1.921-.588-1.921-1.313l.653-7.328c.068-.438.615-.779 1.268-.779Zm3.968-2.286c.342-.569.902-.872 1.319-.707l6.686 3.103c.621.359.714 1.393.189 2.318-.537.917-1.483 1.354-2.109.995l-6.042-4.225c-.335-.285-.359-.92-.036-1.484m-7.944-.007c.323.571.304 1.205-.045 1.491l-6.04 4.218c-.628.367-1.568-.071-2.106-.989-.537-.923-.428-1.96.187-2.318l6.687-3.103c.428-.164.987.137 1.317.701Zm17.899 5.073h.083c.113 0 .159.036.172.126.024.1.037.167.061.196h.215c-.019-.022-.043-.076-.056-.202-.024-.109-.08-.17-.159-.192v-.02c.109-.024.172-.097.172-.187a.244.244 0 0 0-.075-.178.578.578 0 0 0-.291-.061c-.135 0-.234.011-.312.03v.81h.19v-.322Zm.006-.37.097-.012c.114 0 .176.052.176.127 0 .083-.083.122-.189.122h-.084v-.236Zm.121-.55a.827.827 0 0 0-.841.817c0 .46.372.827.841.827a.82.82 0 1 0 0-1.643Zm0 .166c.361 0 .629.291.629.65 0 .363-.268.663-.629.658a.64.64 0 0 1-.634-.657c0-.36.274-.651.629-.651\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.83 .502)\" d=\"M0 0h116.776v28H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x292rh\",layoutDependency:layoutDependency,layoutId:\"DbV5_av4x\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qaujwl\",\"data-framer-name\":\"66a893023aa9637362378001 SAP_2011_logo\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:58,layoutDependency:layoutDependency,layoutId:\"aGhbuXCJU\",svg:'<svg width=\"58\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M57.228.502H.605v28h28.623\" fill=\"#7D95A1\"/><path d=\"M28.606 6.102v13.191l-4.854-13.19H18.9l-4.107 10.95c-.497-2.737-3.36-3.733-5.6-4.48-1.493-.497-3.11-1.12-3.11-1.99 0-.623.87-1.245 2.488-1.12 1.12.124 2.116.124 4.107 1.12l1.991-3.36c-1.867-.996-4.355-1.494-6.347-1.494-2.364 0-4.355.747-5.6 1.991-.87.871-1.244 1.991-1.368 3.236 0 1.742.622 2.986 1.99 3.982 1.12.747 2.49 1.244 3.734 1.618 1.618.497 2.862.995 2.862 1.866-.124 1.12-1.369 1.37-2.24 1.37-1.493.124-2.738-.125-4.604-1.245l-1.742 3.36c1.866 1.12 3.857 1.618 6.222 1.618 1.618 0 4.106-.498 5.475-1.743l-.249 1.12h4.73l.87-2.115c1.867.498 3.983.622 5.85 0l.621 2.115h8.463v-4.977h1.742c4.355 0 6.969-2.116 6.969-5.85 0-4.23-2.489-5.973-7.84-5.973h-5.6ZM19.52 17.053l1.743-5.6h.124l1.742 5.6c-1.244.374-2.489.374-3.609 0Zm13.814-2.862v-4.48h1.244c1.618 0 2.862.498 2.862 2.116 0 1.742-1.244 2.364-2.862 2.364h-1.244Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.605 .502)\" d=\"M0 0h56.622v28H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2wwn0g\",layoutDependency:layoutDependency,layoutId:\"iyM7fkcJZ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sqq3n3\",\"data-framer-name\":\"66a893023aa9637362377fe5 tata-1 1\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:92,layoutDependency:layoutDependency,layoutId:\"YjGUJv609\",svg:'<svg width=\"92\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.677 7.525H44.181v3.749h3.842v8.021h3.748v-8.021h3.906v-3.75Zm11.234 11.74-3.623-11.74h-4.563l-3.622 11.74h3.748l2.156-8.348 2.156 8.347h3.748Zm11.477-11.74H66.892v3.749h3.842v8.021h3.748v-8.021h3.906v-3.75Zm11.107 11.74-3.624-11.74h-4.56l-3.625 11.74h3.75l2.156-8.348 2.154 8.347h3.75Zm-73.266.848c.817-3.469 1.423-6.854 1.423-6.854s.304-1.117-.305-1.879c-.609-.761-2.487-.507-2.487-.507s-2.918.034-5.892.393c-2.648.32-5.35.845-6.346 1.046a7.877 7.877 0 0 0-.317 2.191c0 5.227 5.223 9.661 12.474 11.245.38-1.383.953-3.522 1.45-5.635Z\" fill=\"#7D95A1\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.619 17.93c-.035-4.204.082-8.124.082-8.124s-.134-.59.242-.879c.386-.295 1.282-.288 1.282-.288s3.475.097 7.37.597c2.844.366 5.919.952 7.308 1.23-2.553-4.569-9.314-7.833-17.255-7.833-7.971 0-14.752 3.29-17.282 7.885 1.218-.245 4.527-.89 7.575-1.281 3.895-.5 7.37-.598 7.37-.598s.896-.007 1.282.288c.376.29.241.88.241.88s.118 3.92.083 8.123a363.636 363.636 0 0 1-.188 8.427 26.058 26.058 0 0 0 2.076-.011c-.06-1.83-.159-5.2-.186-8.416Z\" fill=\"#7D95A1\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M32.57 11.265c-2.974-.358-5.892-.392-5.892-.392s-1.878-.254-2.488.507c-.61.762-.304 1.878-.304 1.878s.605 3.386 1.422 6.855a160.14 160.14 0 0 0 1.437 5.585c7.134-1.625 12.248-6.024 12.248-11.195 0-.767-.116-1.515-.33-2.241-1.15-.23-3.646-.701-6.093-.997Z\" fill=\"#7D95A1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5wfa5i\",layoutDependency:layoutDependency,layoutId:\"rj7rA3RS8\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mjruf6\",\"data-framer-name\":\"66e96319761edf9aeb076b97 zoho\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"XzdGl3jH4\",svg:'<svg width=\"64\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M28.804 22.522c-.463 0-.933-.097-1.384-.295l-9.629-4.29a3.424 3.424 0 0 1-1.733-4.514l4.29-9.629a3.425 3.425 0 0 1 4.514-1.733l9.629 4.29a3.425 3.425 0 0 1 1.733 4.514l-4.29 9.629a3.428 3.428 0 0 1-3.13 2.028Zm-.584-2.1a1.45 1.45 0 0 0 1.908-.728l4.29-9.629a1.45 1.45 0 0 0-.727-1.907l-9.635-4.29a1.45 1.45 0 0 0-1.908.727l-4.29 9.629a1.45 1.45 0 0 0 .727 1.907l9.635 4.291Zm30.789 2.106H48.465a3.424 3.424 0 0 1-3.418-3.418V8.567a3.424 3.424 0 0 1 3.418-3.419h10.544a3.424 3.424 0 0 1 3.418 3.419V19.11a3.424 3.424 0 0 1-3.418 3.418ZM48.465 7.122c-.794 0-1.444.65-1.444 1.444v10.543c0 .795.65 1.444 1.444 1.444h10.544c.794 0 1.444-.65 1.444-1.444V8.566c0-.795-.65-1.444-1.444-1.444H48.465Z\" fill=\"#7D95A1\"/><path d=\"m19.524 10.499-1.42 3.177a1.416 1.416 0 0 1-.054.096l.554 3.418a1.444 1.444 0 0 1-1.192 1.655l-10.41 1.686a1.46 1.46 0 0 1-1.078-.253 1.416 1.416 0 0 1-.578-.939L3.661 8.928c-.06-.38.03-.765.252-1.078.223-.313.56-.518.94-.578l10.41-1.685a1.45 1.45 0 0 1 1.655 1.197l.56 3.443 1.468-3.292-.078-.464a3.42 3.42 0 0 0-3.918-2.828L4.54 5.328a3.35 3.35 0 0 0-2.221 1.366 3.391 3.391 0 0 0-.602 2.546l1.685 10.41a3.397 3.397 0 0 0 1.372 2.227 3.352 3.352 0 0 0 1.992.644c.18 0 .367-.011.553-.042l10.41-1.685a3.42 3.42 0 0 0 2.829-3.918L19.524 10.5ZM32.01 15.47l1.53-3.425-.434-3.183a1.418 1.418 0 0 1 .282-1.066 1.42 1.42 0 0 1 .957-.553l10.448-1.42a1.45 1.45 0 0 1 1.071.283c.048.036.09.079.132.115a3.44 3.44 0 0 1 1.751-.987 3.327 3.327 0 0 0-.692-.704 3.404 3.404 0 0 0-2.527-.668l-10.46 1.42c-.902.12-1.708.59-2.256 1.318a3.403 3.403 0 0 0-.668 2.527l.867 6.342Zm17.778 1.763-1.372-10.11a1.44 1.44 0 0 0-1.39 1.438v2.967l.813 5.97c.054.378-.048.758-.283 1.065a1.417 1.417 0 0 1-.957.553l-10.447 1.42a1.418 1.418 0 0 1-1.065-.283 1.417 1.417 0 0 1-.554-.957l-.48-3.544-1.53 3.424.054.385c.12.903.59 1.71 1.318 2.257a3.391 3.391 0 0 0 2.064.698c.156 0 .313-.012.47-.03l10.434-1.408a3.368 3.368 0 0 0 2.257-1.318 3.4 3.4 0 0 0 .668-2.527ZM20.312 27.53l1.492-2.203h-1.227a.12.12 0 0 1-.121-.12v-.296a.12.12 0 0 1 .12-.12h2.016a.12.12 0 0 1 .12.12v.115a.12.12 0 0 1-.018.067l-1.462 2.202h1.312a.12.12 0 0 1 .12.12v.296a.12.12 0 0 1-.12.12h-2.13a.12.12 0 0 1-.12-.12v-.108a.096.096 0 0 1 .018-.074Zm6.283-1.24c0-.903.662-1.553 1.564-1.553.933 0 1.565.638 1.565 1.559 0 .933-.644 1.576-1.577 1.576-.938 0-1.552-.644-1.552-1.582Zm2.413.011c0-.547-.265-1.017-.86-1.017-.602 0-.831.488-.831 1.041 0 .524.282 1.006.86 1.006.596-.007.831-.518.831-1.03Zm4.996-1.516h.445a.12.12 0 0 1 .12.12v1.12h1.264v-1.12a.12.12 0 0 1 .12-.12h.446a.12.12 0 0 1 .12.12v2.799a.12.12 0 0 1-.12.12h-.44a.12.12 0 0 1-.12-.12v-1.132h-1.264v1.132a.12.12 0 0 1-.12.12h-.445a.12.12 0 0 1-.12-.12v-2.798a.112.112 0 0 1 .114-.12Zm6.673 1.505c0-.903.662-1.553 1.564-1.553.933 0 1.565.638 1.565 1.559 0 .933-.644 1.576-1.577 1.576-.938 0-1.552-.644-1.552-1.582Zm2.407.011c0-.547-.265-1.017-.861-1.017-.602 0-.83.488-.83 1.041 0 .524.282 1.006.86 1.006.596-.007.83-.518.83-1.03Z\" fill=\"#7D95A1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c5dnzu\",layoutDependency:layoutDependency,layoutId:\"tfBdPkBw_\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5g0vdv\",\"data-framer-name\":\"66a893033aa963736237806c Nokia_2023\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:120,layoutDependency:layoutDependency,layoutId:\"JENJZ4pnq\",svg:'<svg width=\"120\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M82.645 1.354v26.297h3.944V1.354h-3.944ZM40.511.904c-7.683 0-13.644 5.593-13.644 13.598 0 8.367 5.961 13.598 13.644 13.598s13.657-5.231 13.645-13.598C54.144 6.917 48.194.905 40.51.905Zm9.708 13.598c0 5.927-4.346 9.855-9.708 9.855-5.361 0-9.707-3.928-9.707-9.855 0-5.819 4.346-9.854 9.707-9.854 5.362 0 9.708 4.035 9.708 9.854ZM.386.502v27.149H4.41V9.71l20.916 18.792v-5.628L.386.502Zm56.736 14 14.636 13.149h5.87l-14.66-13.149 14.66-13.148h-5.87L57.122 14.502Zm62.264 13.149h-4.339l-3.172-5.823h-14.37l-3.173 5.823h-4.339l5.255-9.706h14.563l-7.262-13.489L104.69.502l14.696 27.149Z\" fill=\"#7D95A1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.386 .502)\" d=\"M0 0h119v28H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-myv3yy\",layoutDependency:layoutDependency,layoutId:\"mvuI3snKn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17m3qqf\",\"data-framer-name\":\"66a893033aa96373623780a1 Ikea_logo\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:71,layoutDependency:layoutDependency,layoutId:\"bPX2mJQuW\",svg:'<svg width=\"71\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M70.376 28.502H.386v-28h70v28h-.01Z\" fill=\"#7D95A1\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.786 14.502c0 6.883 14.082 12.6 33.605 12.6 19.524 0 33.595-5.717 33.595-12.6 0-6.882-14.081-12.6-33.595-12.6-19.513 0-33.605 5.718-33.605 12.6Z\" fill=\"#fff\"/><path d=\"M32.9 18.706c.22.313.46.607.742.871h-7.575c0-.294-.291-.891-.612-1.361s-2.057-3.046-2.057-3.046v3.536c0 .293 0 .577.15.871h-6.31c.15-.294.15-.578.15-.871v-8.403c0-.294 0-.578-.15-.872h6.31c-.15.294-.15.578-.15.872v3.672s2.017-2.565 2.478-3.163c.351-.45.783-1.087.783-1.38h6.581c-.451.293-.953.822-1.364 1.312l-2.408 2.869s3.03 4.515 3.431 5.093Zm1.986-8.403v8.403c0 .293 0 .577-.15.871h12.18v-2.82c-.302.147-.593.147-.894.147h-5.127v-1.332h4.927v-2.135h-4.927v-1.342h5.127c.301 0 .592 0 .893.137v-2.81h-12.18c.15.303.15.587.15.88Zm28.904 8.403c.1.323.271.617.492.871h-6.601c.03-.294-.08-.578-.201-.871 0 0-.1-.235-.241-.578l-.06-.147h-3.803l-.06.157s-.11.284-.21.577c-.1.294-.211.578-.171.872h-5.207a2.55 2.55 0 0 0 .471-.872l3.12-8.402c.111-.294.221-.578.181-.872h8.8c-.08.294.08.578.19.872.262.636 3.08 7.825 3.302 8.393Zm-7.444-2.87-.923-2.35c-.08-.216-.15-.44-.2-.666-.04.227-.101.45-.181.666-.03.098-.422 1.126-.873 2.35h2.177ZM14.248 9.431H7.386c.15.294.15.578.15.872v8.403c0 .293 0 .577-.15.871h6.862c-.15-.294-.15-.578-.15-.871v-8.403c0-.294 0-.578.15-.872Zm47.436.803c-.03-.715.541-1.312 1.274-1.332h.09c.742-.01 1.355.559 1.364 1.283v.05c.02.734-.571 1.35-1.334 1.37-.752.02-1.384-.558-1.405-1.302.01-.02.01-.049.01-.069Zm.27 0c0 .588.492 1.068 1.094 1.068.602 0 1.094-.48 1.094-1.068 0-.587-.492-1.067-1.094-1.067-.582-.02-1.074.421-1.093.989v.078Zm.823.794h-.24V9.422h.611c.291.01.512.235.512.519 0 .195-.11.372-.29.47l.35.617h-.27l-.322-.568h-.35v.568Zm0-.794h.331c.16.01.301-.107.301-.264 0-.157-.11-.294-.27-.294h-.362v.558Z\" fill=\"#7D95A1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.386 .502)\" d=\"M0 0h70v28H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d0m8ld\",layoutDependency:layoutDependency,layoutId:\"AbB0bZmAV\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12su24c\",\"data-framer-name\":\"HubSpot Logo\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:97,layoutDependency:layoutDependency,layoutId:\"iHVUjqP5f\",svg:'<svg width=\"97\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#7D95A1\"><path d=\"M10.505 4.493v7.655H3.38V4.493H0v18.273h3.381v-7.407h7.123v7.407h3.383V4.493h-3.382ZM24.71 16.86c0 .732-.294 1.434-.82 1.952a2.817 2.817 0 0 1-1.977.81 2.817 2.817 0 0 1-1.979-.81 2.744 2.744 0 0 1-.82-1.952V9.032h-3.207v7.828c0 1.57.632 3.076 1.757 4.187a6.04 6.04 0 0 0 4.242 1.734 6.04 6.04 0 0 0 4.243-1.734 5.883 5.883 0 0 0 1.757-4.187V9.032H24.71v7.828Zm23.766-7.021c0-1.605 1.075-2.114 2.253-2.114.95 0 2.204.714 3.025 1.58l2.1-2.445c-1.049-1.4-3.176-2.367-4.917-2.367-3.48 0-5.997 2.011-5.997 5.346 0 6.187 7.661 4.223 7.661 7.686 0 1.068-1.05 2.01-2.252 2.01-1.897 0-2.512-.914-3.383-1.882l-2.332 2.392c1.491 1.807 3.33 2.724 5.533 2.724 3.307 0 5.966-2.035 5.966-5.218 0-6.868-7.662-4.734-7.662-7.712m47.402 10.008c-1.895 0-2.434-.81-2.434-2.049v-5.487h2.946v-2.78h-2.947V5.863l-3.252 1.44V18.48c0 2.859 1.999 4.3 4.739 4.3.43.007.86-.028 1.283-.102L97 19.795a17.39 17.39 0 0 1-1.128.049M36.919 9.124c-1.589 0-2.698.455-3.77 1.492V4.603h-3.213v11.149c0 4.172 3.057 7.032 6.492 7.032 3.81 0 7.163-2.91 7.163-6.828 0-3.87-3.085-6.829-6.672-6.829m-.02 10.466c-.48 0-.953-.093-1.396-.274a3.65 3.65 0 0 1-1.182-.78 3.596 3.596 0 0 1-.79-1.167 3.557 3.557 0 0 1 .79-3.921c.338-.334.74-.6 1.182-.78a3.687 3.687 0 0 1 3.973.78 3.574 3.574 0 0 1 1.068 2.544c0 .954-.384 1.87-1.068 2.544a3.67 3.67 0 0 1-2.578 1.054Zm34.903-3.804c0-3.925-3.345-6.828-7.163-6.828-3.434 0-6.491 2.859-6.491 7.032v11.155h3.212v-6.022c1.07 1.036 2.181 1.493 3.768 1.493 3.587 0 6.674-2.96 6.674-6.83Zm-3.042-.04c0 .955-.384 1.87-1.068 2.545a3.67 3.67 0 0 1-2.577 1.054 3.67 3.67 0 0 1-2.578-1.054 3.574 3.574 0 0 1-1.067-2.544c0-.955.384-1.87 1.067-2.545a3.67 3.67 0 0 1 2.578-1.053 3.67 3.67 0 0 1 2.578 1.053 3.575 3.575 0 0 1 1.067 2.545Z\"/><path d=\"M82.181 8.806V5.621a2.476 2.476 0 0 0 1.042-.9 2.43 2.43 0 0 0 .391-1.311v-.074c0-1.354-1.112-2.453-2.485-2.453h-.074c-.66 0-1.291.259-1.758.719a2.437 2.437 0 0 0-.727 1.734v.074c.002.464.138.919.391 1.31.254.392.615.704 1.042.9v3.186a7.084 7.084 0 0 0-3.347 1.455l-8.852-6.805c.064-.225.096-.457.1-.689a2.738 2.738 0 0 0-.469-1.536A2.793 2.793 0 0 0 66.18.21a2.834 2.834 0 0 0-3.053.593c-.392.386-.66.878-.769 1.415a2.73 2.73 0 0 0 .157 1.597c.212.505.57.937 1.03 1.242a2.83 2.83 0 0 0 1.555.468c.485-.002.96-.13 1.38-.37l8.716 6.694a6.902 6.902 0 0 0-1.173 3.941c.02 1.4.466 2.762 1.28 3.908l-2.65 2.618a2.302 2.302 0 0 0-.663-.107 2.32 2.32 0 0 0-1.277.383 2.28 2.28 0 0 0-.846 1.02 2.242 2.242 0 0 0 .499 2.472 2.329 2.329 0 0 0 2.505.492c.42-.171.78-.462 1.032-.835.253-.373.388-.811.388-1.26a2.212 2.212 0 0 0-.108-.654l2.623-2.59a7.116 7.116 0 0 0 2.908 1.31 7.162 7.162 0 0 0 3.195-.087 7.103 7.103 0 0 0 2.83-1.467 6.987 6.987 0 0 0 1.885-2.547 6.9 6.9 0 0 0-.326-6.137 7.014 7.014 0 0 0-2.147-2.338 7.125 7.125 0 0 0-2.97-1.166Zm-1.087 10.478a3.67 3.67 0 0 1-2.63-1.013 3.58 3.58 0 0 1-.812-1.174 3.542 3.542 0 0 1 .812-3.96c.348-.334.76-.596 1.211-.77a3.67 3.67 0 0 1 1.42-.243 3.65 3.65 0 0 1 2.482 1.09 3.557 3.557 0 0 1 1.019 2.487c0 .928-.364 1.82-1.017 2.488a3.65 3.65 0 0 1-2.481 1.093\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h97v28H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wkubdq\",layoutDependency:layoutDependency,layoutId:\"smzZtBG1S\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11az08z\",\"data-framer-name\":\"Vector\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:151,layoutDependency:layoutDependency,layoutId:\"s7ueGMHCA\",svg:'<svg width=\"151\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M149.052 22.458v-.425h.257c.136 0 .347.015.347.182 0 .182-.106.227-.272.227h-.332m0 .304h.181l.423.73h.453l-.468-.76c.226-.015.438-.122.438-.456 0-.41-.272-.531-.74-.531h-.664v1.746h.392l-.015-.729ZM151 22.61c0-1.033-.785-1.625-1.676-1.625-.876 0-1.676.592-1.676 1.625 0 1.032.785 1.624 1.676 1.624.891 0 1.676-.592 1.676-1.625Zm-.483 0c0 .744-.544 1.245-1.193 1.245-.665 0-1.193-.501-1.193-1.245 0-.744.544-1.246 1.193-1.246.649.016 1.193.517 1.193 1.245ZM89.573 5.3v18.388h5.164V5.299h-5.164Zm-40.589-.031v18.403h5.21V9.384l4.062.015c1.329 0 2.265.334 2.899 1.018.815.865 1.148 2.292 1.148 4.858v8.397h5.043V13.514c0-7.258-4.606-8.245-9.09-8.245h-9.272Zm48.91.03v18.389h8.365c4.454 0 5.919-.744 7.489-2.415 1.118-1.169 1.827-3.75 1.827-6.575 0-2.58-.604-4.889-1.676-6.331-1.887-2.567-4.651-3.068-8.773-3.068h-7.233Zm5.118 3.994h2.22c3.216 0 5.3 1.442 5.3 5.223 0 3.766-2.069 5.224-5.3 5.224h-2.22V9.293ZM82.144 5.299l-4.303 14.562L73.718 5.3h-5.572l5.89 18.389h7.428L87.4 5.299h-5.255Zm35.847 18.373h5.165V5.3h-5.165v18.373ZM132.457 5.3l-7.203 18.373h5.089l1.148-3.234h8.531l1.087 3.234h5.527L139.358 5.3h-6.901Zm3.352 3.356 3.126 8.595h-6.357l3.231-8.595Zm-120.12-.304v-2.52c.242-.015.498-.03.74-.03 6.885-.213 11.385 5.937 11.385 5.937s-4.862 6.802-10.087 6.802a6.003 6.003 0 0 1-2.023-.334v-7.668c2.673.334 3.216 1.518 4.832 4.206l3.579-3.037S21.502 8.26 17.093 8.26a20.47 20.47 0 0 0-1.404.091Zm0-8.351v3.766l.74-.046c9.558-.334 15.794 7.88 15.794 7.88s-7.157 8.762-14.601 8.762c-.68 0-1.314-.06-1.918-.167v2.339c.513.06 1.057.106 1.6.106 6.947 0 11.96-3.568 16.822-7.774.8.652 4.107 2.232 4.787 2.915-4.62 3.887-15.387 7.03-21.488 7.03-.588 0-1.147-.03-1.706-.09V28H42.1V0H15.69Zm0 18.221v1.99c-6.418-1.155-8.2-7.866-8.2-7.866s3.081-3.432 8.2-3.994v2.187h-.015c-2.673-.334-4.787 2.202-4.787 2.202s1.193 4.236 4.802 5.481Zm-11.4-6.165s3.805-5.633 11.4-6.225V3.78C7.279 4.464 0 11.63 0 11.63s4.122 11.996 15.689 13.104V22.55c-8.486-1.078-11.4-10.493-11.4-10.493Z\" fill=\"#7D95A1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12s2kp9\",layoutDependency:layoutDependency,layoutId:\"XgSSwZ89H\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dcvzip\",\"data-framer-name\":\"Hitachi logo\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:179,layoutDependency:layoutDependency,layoutId:\"xDl_umMPj\",svg:'<svg width=\"179\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M118.203 0c-7.426-.048-16.478 2.97-16.526 13.93-.048 10.851 9.195 14.276 16.526 14.06 6.813-.198 14.337-2.054 14.68-10.222l-7.531.016c-.213 5.133-4.392 6.151-7.149 6.16-2.83.01-8.588-.574-8.679-9.903-.086-8.806 5.2-10.051 8.679-10.014 3.479.038 6.93 1.628 6.969 5.638l7.482-.007c-.076-4.908-4.406-9.591-14.451-9.657ZM0 .499v26.96h7.283V15.56h14.739v11.9h7.317V.497h-7.317v10.791H7.282V.498H0Zm35.38 0v26.959h7.333V.498H35.38Zm10.047 0v4.46h10.68v22.495h7.255V4.957h10.683V.497L45.427.498Zm91.028 0v26.96h7.282V15.56h14.739v11.9h7.283V.497h-7.283v10.791h-14.738V.498h-7.283Zm35.204 0v26.959H179V.498h-7.341Zm-90.84.04-13.041 26.92h8.182l2.544-6.049 13.78-.005 2.536 6.054h8.203L90.041.538H80.82Zm4.587 4.552 5.04 12.029-10.122.006L85.406 5.09Z\" fill=\"#7D95A1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ah676d\",layoutDependency:layoutDependency,layoutId:\"Ts9sQS26D\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fuv29i\",\"data-framer-name\":\"Frame 1321317843\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:217,layoutDependency:layoutDependency,layoutId:\"BwZohMFuz\",svg:'<svg width=\"217\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"7\" width=\"217\" height=\"15\"><path d=\"M216.429 7H0v15h216.429V7Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path d=\"M24.144 18.05c2.313 0 3.559-1.295 3.559-3.7V10.7c0-2.405-1.246-3.7-3.56-3.7H0v15h3.27v-3.95h20.874Zm.288-7.15v3.25c0 .39-.202.6-.577.6H3.27V10.3h20.585c.375 0 .577.21.577.6ZM35.398 22c-2.313 0-3.559-1.295-3.559-3.7v-7.6c0-2.405 1.246-3.7 3.56-3.7h20.055c2.313 0 3.559 1.295 3.559 3.7v7.6c0 2.405-1.246 3.7-3.56 3.7H35.399Zm19.767-3.3c.375 0 .577-.21.577-.6v-7.2c0-.39-.202-.6-.577-.6H35.687c-.375 0-.578.21-.578.6v7.2c0 .39.203.6.578.6h19.478Zm32.464-1.8c1.917.838 3.264 2.805 3.271 5.1h-3.27c0-2.7-1.203-3.95-3.8-3.95H66.468V22h-3.27V7H87.34c2.313 0 3.559 1.295 3.559 3.7v2.507c0 2.303-1.142 3.588-3.27 3.693Zm-.577-2.15c.375 0 .577-.21.577-.6V10.9c0-.39-.202-.6-.577-.6H66.468v4.45h20.584Zm7.791-4.05c0-2.405 1.247-3.7 3.56-3.7h23.663v2.8H98.691c-.375 0-.577.21-.577.6v2.1c0 .39.202.6.577.6h20.297c2.313 0 3.558 1.295 3.558 3.7v1.5c0 2.405-1.245 3.7-3.558 3.7H95.325v-2.8H118.7c.375 0 .577-.21.577-.6v-2.1c0-.39-.202-.6-.577-.6H98.403c-2.313 0-3.56-1.295-3.56-3.7v-1.5Zm31.792 0c0-2.405 1.245-3.7 3.559-3.7h23.085v3.3h-22.797c-.375 0-.577.21-.577.6v7.2c0 .39.202.6.577.6h22.797V22h-23.085c-2.314 0-3.559-1.295-3.559-3.7v-7.6ZM183.579 7v15h-3.27v-5.85h-19.575V22h-3.27V7h3.27v5.85h19.575V7h3.27Zm7.503 2.8v3.3h25.347v2.8h-25.347v3.3h25.347V22h-28.617V7h28.617v2.8h-25.347Z\" fill=\"#7D95A1\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 7)\" d=\"M0 0h216.429v15H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f6zi50\",layoutDependency:layoutDependency,layoutId:\"utto983hd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d8q1ll\",\"data-framer-name\":\"Pepsico logo_(2)\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:196,layoutDependency:layoutDependency,layoutId:\"cGsyZGfGL\",svg:'<svg width=\"196\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M101.479.2c-7.375 0-13.13 1.803-13.13 8.477 0 3.606 1.811 6.49 6.198 7.25l10.239 1.732c1.206.215 1.62.973 1.62 1.73 0 1.227-.764 2.093-3.561 2.093-1.399 0-2.385-.18-3.05-.542-.638-.397-.925-.975-.955-1.84H88.03c.031 7.576 7.567 8.658 14.466 8.658 10.079 0 14.594-2.958 14.594-9.236 0-4.364-2.798-6.744-7.314-7.501L99.062 9.218c-.89-.144-1.175-.615-1.175-1.335 0-1.083.921-1.84 3.592-1.84.987 0 2.003.144 2.798.54.825.36 1.366 1.011 1.366 2.057h10.429C115.754 3.193 111.588.2 101.479.2Zm45.815 0c-5.436 0-15.515.433-15.515 13.78 0 13.344 10.079 13.778 15.515 13.778 5.468 0 8.903-1.046 11.096-2.922 2.225-1.875 3.243-4.617 3.816-8.008h-10.11c-.732 3.101-2.417 4.436-5.248 4.436-3.274 0-5.532-2.055-5.532-7.285 0-5.232 2.32-7.287 5.978-7.287 3.464 0 4.547 2.668 4.802 4.51h10.11C161.028.991 152.698.2 147.294.2Zm32.622 0c-5.439 0-15.517.433-15.517 13.78 0 13.344 10.078 13.778 15.517 13.778 5.437 0 15.515-.434 15.515-13.778C195.431.633 185.353.2 179.916.2ZM.596 1.102v25.754H9.56v-8.009h9.604c6.358 0 8.647-3.822 8.647-8.763 0-5.736-2.354-8.982-8.713-8.982H.596Zm30.173 0v25.754h24.13V20.58H39.735v-3.462H53.82V10.84H39.735V7.377h15.164V1.102h-24.13Zm27.883 0v25.754h8.966v-8.009h9.6c6.36 0 8.65-3.822 8.65-8.763 0-5.736-2.353-8.982-8.713-8.982H58.652Zm61.362 0v25.754h8.965V1.102h-8.965Zm59.902 5.59c3.655 0 5.977 2.056 5.977 7.288 0 5.23-2.322 7.285-5.977 7.285-3.657 0-5.979-2.055-5.979-7.285 0-5.232 2.322-7.287 5.979-7.287ZM9.561 7.16h5.787c2.257 0 3.116.795 3.116 2.742 0 1.875-.859 2.67-3.116 2.67H9.56V7.16Zm58.057 0h5.786c2.258 0 3.117.795 3.117 2.742 0 1.875-.86 2.67-3.117 2.67h-5.786V7.16Z\" fill=\"#7D95A1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h196v28H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})],speed:65,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2tXuu.framer-1xtcqds, .framer-2tXuu .framer-1xtcqds { display: block; }\",\".framer-2tXuu.framer-kvqq48 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1216px; }\",\".framer-2tXuu .framer-1sap19c-container { flex: 1 0 0px; height: 200px; position: relative; width: 1px; }\",\".framer-2tXuu .framer-jfcq6f { height: 29px; overflow: hidden; position: relative; width: 47px; }\",\".framer-2tXuu .framer-134pjet { aspect-ratio: 1.6206896551724137 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-vncgbz { height: 29px; overflow: hidden; position: relative; width: 86px; }\",\".framer-2tXuu .framer-el5iki { aspect-ratio: 2.9655172413793105 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-1rpor0g { height: 29px; overflow: hidden; position: relative; width: 118px; }\",\".framer-2tXuu .framer-1ox9waz { aspect-ratio: 4.068965517241379 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-1x292rh { height: 29px; overflow: hidden; position: relative; width: 58px; }\",\".framer-2tXuu .framer-qaujwl { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-2wwn0g { height: 29px; overflow: hidden; position: relative; width: 92px; }\",\".framer-2tXuu .framer-1sqq3n3 { aspect-ratio: 3.1724137931034484 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-5wfa5i { height: 29px; overflow: hidden; position: relative; width: 64px; }\",\".framer-2tXuu .framer-mjruf6 { aspect-ratio: 2.206896551724138 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-c5dnzu { height: 29px; overflow: hidden; position: relative; width: 120px; }\",\".framer-2tXuu .framer-5g0vdv { aspect-ratio: 4.137931034482759 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-myv3yy { height: 29px; overflow: hidden; position: relative; width: 71px; }\",\".framer-2tXuu .framer-17m3qqf { aspect-ratio: 2.4482758620689653 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-d0m8ld { height: 28px; overflow: hidden; position: relative; width: 97px; }\",\".framer-2tXuu .framer-12su24c { aspect-ratio: 3.4642857142857144 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-1wkubdq { height: 28px; overflow: hidden; position: relative; width: 151px; }\",\".framer-2tXuu .framer-11az08z { aspect-ratio: 5.392857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-12s2kp9 { height: 28px; overflow: hidden; position: relative; width: 179px; }\",\".framer-2tXuu .framer-dcvzip { aspect-ratio: 6.392857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-ah676d { height: 28px; overflow: hidden; position: relative; width: 217px; }\",\".framer-2tXuu .framer-1fuv29i { aspect-ratio: 7.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2tXuu .framer-1f6zi50 { height: 28px; overflow: hidden; position: relative; width: 196px; }\",\".framer-2tXuu .framer-d8q1ll { aspect-ratio: 7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2tXuu.framer-kvqq48 { gap: 0px; } .framer-2tXuu.framer-kvqq48 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2tXuu.framer-kvqq48 > :first-child { margin-left: 0px; } .framer-2tXuu.framer-kvqq48 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 1216\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPJ3v680w_=withCSS(Component,css,\"framer-2tXuu\");export default FramerPJ3v680w_;FramerPJ3v680w_.displayName=\"leading teams\";FramerPJ3v680w_.defaultProps={height:88,width:1216};addFonts(FramerPJ3v680w_,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPJ3v680w_\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1216\",\"framerIntrinsicHeight\":\"88\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PJ3v680w_.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "Ticker", "SVG", "css", "FramerPJ3v680w_", "withCSS", "PJ3v680w_default", "addFonts", "TickerFonts"]
}
