{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/rncqmFCawjOuPPu48SSr/TJTHCW4m1Jc79upK6JPq/yhD3Jj7JK.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}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/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"S1FJhXn_B\",\"H_YfxbOr_\",\"JPJx4lmc3\"];const serializationHash=\"framer-2QOrS\";const variantClassNames={H_YfxbOr_:\"framer-v-xmns9x\",JPJx4lmc3:\"framer-v-51g49r\",S1FJhXn_B:\"framer-v-qntxpd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"S1FJhXn_B\",Mobile:\"JPJx4lmc3\",Tablet:\"H_YfxbOr_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"S1FJhXn_B\"};};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:\"S1FJhXn_B\",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:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qntxpd\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"S1FJhXn_B\",ref:refBinding,style:{...style},...addPropertyOverrides({H_YfxbOr_:{\"data-framer-name\":\"Tablet\"},JPJx4lmc3:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ro7e37\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"w3nsLux5g\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7fiafb-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"a6sLRRONj-container\",nodeId:\"a6sLRRONj\",rendersWithMotion:true,scopeId:\"yhD3Jj7JK\",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:\"a6sLRRONj\",layoutId:\"a6sLRRONj\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1600,pixelHeight:1200,pixelWidth:1600,sizes:\"200px\",src:\"https://framerusercontent.com/images/27o9KB3lpDXYt3f28qfHbo3vjY.png\",srcSet:\"https://framerusercontent.com/images/27o9KB3lpDXYt3f28qfHbo3vjY.png?scale-down-to=512 512w,https://framerusercontent.com/images/27o9KB3lpDXYt3f28qfHbo3vjY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/27o9KB3lpDXYt3f28qfHbo3vjY.png 1600w\"},className:\"framer-1wn4ert\",\"data-framer-name\":\"airbnb_logo_black_transparent\",layoutDependency:layoutDependency,layoutId:\"UYEtFeUBx\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:589,intrinsicWidth:1770,pixelHeight:589,pixelWidth:1770,sizes:\"150.2547px\",src:\"https://framerusercontent.com/images/qMD18I5Nbkc31WZ0bplky2zvDE.png\",srcSet:\"https://framerusercontent.com/images/qMD18I5Nbkc31WZ0bplky2zvDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qMD18I5Nbkc31WZ0bplky2zvDE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qMD18I5Nbkc31WZ0bplky2zvDE.png 1770w\"},className:\"framer-10qjcn9\",\"data-framer-name\":\"chime_logo\",layoutDependency:layoutDependency,layoutId:\"FaBpHlv4N\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:664,intrinsicWidth:1200,pixelHeight:664,pixelWidth:1200,sizes:\"150px\",src:\"https://framerusercontent.com/images/WJUBO0B9T9b2QA4SNkjmytH9b4E.png\",srcSet:\"https://framerusercontent.com/images/WJUBO0B9T9b2QA4SNkjmytH9b4E.png?scale-down-to=512 512w,https://framerusercontent.com/images/WJUBO0B9T9b2QA4SNkjmytH9b4E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WJUBO0B9T9b2QA4SNkjmytH9b4E.png 1200w\"},className:\"framer-1xeduk5\",\"data-framer-name\":\"Chan_Zuckerberg_Initiative_svg\",layoutDependency:layoutDependency,layoutId:\"dXuZqntDa\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259,intrinsicWidth:1280,pixelHeight:259,pixelWidth:1280,sizes:\"207.5676px\",src:\"https://framerusercontent.com/images/uKHDlQJzYx8OAzrj4QUVYDcuQMk.png\",srcSet:\"https://framerusercontent.com/images/uKHDlQJzYx8OAzrj4QUVYDcuQMk.png?scale-down-to=512 512w,https://framerusercontent.com/images/uKHDlQJzYx8OAzrj4QUVYDcuQMk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uKHDlQJzYx8OAzrj4QUVYDcuQMk.png 1280w\"},className:\"framer-780tht\",\"data-framer-name\":\"Bill_Melinda_Gates_Foundation_logo_svg\",layoutDependency:layoutDependency,layoutId:\"L0553beGx\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/jnU5vepJhqBQjXLzZvc4vURzHnk.png\"},className:\"framer-qtn2p0\",\"data-framer-name\":\"$5968579\",layoutDependency:layoutDependency,layoutId:\"AzO71PalH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1050,intrinsicWidth:2560,pixelHeight:1050,pixelWidth:2560,sizes:\"151.1619px\",src:\"https://framerusercontent.com/images/ve1ZNkbg5JpLlsnrBrg2LwCqnk.png\",srcSet:\"https://framerusercontent.com/images/ve1ZNkbg5JpLlsnrBrg2LwCqnk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ve1ZNkbg5JpLlsnrBrg2LwCqnk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ve1ZNkbg5JpLlsnrBrg2LwCqnk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ve1ZNkbg5JpLlsnrBrg2LwCqnk.png 2560w\"},className:\"framer-48q6ll\",\"data-framer-name\":\"$2560px_Audible_logo_svg\",layoutDependency:layoutDependency,layoutId:\"pV2S9RfKM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1950,intrinsicWidth:4944,pixelHeight:1950,pixelWidth:4944,sizes:\"119.1631px\",src:\"https://framerusercontent.com/images/HVC8GtSv3Qv1XKj3gikVAih0.png\",srcSet:\"https://framerusercontent.com/images/HVC8GtSv3Qv1XKj3gikVAih0.png?scale-down-to=512 512w,https://framerusercontent.com/images/HVC8GtSv3Qv1XKj3gikVAih0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HVC8GtSv3Qv1XKj3gikVAih0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HVC8GtSv3Qv1XKj3gikVAih0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/HVC8GtSv3Qv1XKj3gikVAih0.png 4944w\"},className:\"framer-hu5e0s\",\"data-framer-name\":\"$1323439fa9dfe25aa49addcf5e078e49\",layoutDependency:layoutDependency,layoutId:\"oO7OEgqXs\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133,intrinsicWidth:1024,pixelHeight:133,pixelWidth:1024,sizes:\"146.2857px\",src:\"https://framerusercontent.com/images/vVZ5YPx39AXuxp0591WKV1y2sJs.png\",srcSet:\"https://framerusercontent.com/images/vVZ5YPx39AXuxp0591WKV1y2sJs.png?scale-down-to=512 512w,https://framerusercontent.com/images/vVZ5YPx39AXuxp0591WKV1y2sJs.png 1024w\"},className:\"framer-q9q6yo\",\"data-framer-name\":\"$1024px_Sephora_logo_svg\",layoutDependency:layoutDependency,layoutId:\"PjrW9MrV3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162,intrinsicWidth:636,pixelHeight:162,pixelWidth:636,sizes:\"149.1852px\",src:\"https://framerusercontent.com/images/duySX91L0uKfvGGJSU5H8TXaeC0.png\",srcSet:\"https://framerusercontent.com/images/duySX91L0uKfvGGJSU5H8TXaeC0.png?scale-down-to=512 512w,https://framerusercontent.com/images/duySX91L0uKfvGGJSU5H8TXaeC0.png 636w\"},className:\"framer-am8mxm\",\"data-framer-name\":\"AARP_Logo_2020_Black\",layoutDependency:layoutDependency,layoutId:\"GXQK96I0K\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"213.3333px\",src:\"https://framerusercontent.com/images/7GgZaDGU5noTH4xf6ahPAixuw.png\",srcSet:\"https://framerusercontent.com/images/7GgZaDGU5noTH4xf6ahPAixuw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7GgZaDGU5noTH4xf6ahPAixuw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7GgZaDGU5noTH4xf6ahPAixuw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7GgZaDGU5noTH4xf6ahPAixuw.png 3840w\"},className:\"framer-iz3ce9\",\"data-framer-name\":\"NBCUniversal_logo\",layoutDependency:layoutDependency,layoutId:\"R3CDRJQKw\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"149.3333px\",src:\"https://framerusercontent.com/images/kzdteJhDxclv21xdb9xrnfm9bWo.png\",srcSet:\"https://framerusercontent.com/images/kzdteJhDxclv21xdb9xrnfm9bWo.png?scale-down-to=512 512w,https://framerusercontent.com/images/kzdteJhDxclv21xdb9xrnfm9bWo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kzdteJhDxclv21xdb9xrnfm9bWo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kzdteJhDxclv21xdb9xrnfm9bWo.png 3840w\"},className:\"framer-mu8hja\",\"data-framer-name\":\"Starz_Logo_2016\",layoutDependency:layoutDependency,layoutId:\"uKgHD3jx0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"149.3333px\",src:\"https://framerusercontent.com/images/WT5eTbGXRT5eLyjN3iDOXO51zY.png\",srcSet:\"https://framerusercontent.com/images/WT5eTbGXRT5eLyjN3iDOXO51zY.png?scale-down-to=512 512w,https://framerusercontent.com/images/WT5eTbGXRT5eLyjN3iDOXO51zY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WT5eTbGXRT5eLyjN3iDOXO51zY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WT5eTbGXRT5eLyjN3iDOXO51zY.png 3840w\"},className:\"framer-17wvoph\",\"data-framer-name\":\"ugz3h8uechzc1\",layoutDependency:layoutDependency,layoutId:\"Cu5EAqYqC\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1127,intrinsicWidth:2560,pixelHeight:1127,pixelWidth:2560,sizes:\"149.9201px\",src:\"https://framerusercontent.com/images/lTEsFwmsgDTGJqacmvR7DMxDCk.png\",srcSet:\"https://framerusercontent.com/images/lTEsFwmsgDTGJqacmvR7DMxDCk.png?scale-down-to=512 512w,https://framerusercontent.com/images/lTEsFwmsgDTGJqacmvR7DMxDCk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lTEsFwmsgDTGJqacmvR7DMxDCk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lTEsFwmsgDTGJqacmvR7DMxDCk.png 2560w\"},className:\"framer-lcak9l\",\"data-framer-name\":\"Goldman_Sachs_2022_Black_svg\",layoutDependency:layoutDependency,layoutId:\"kQDtrUQcq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:598,intrinsicWidth:2400,pixelHeight:598,pixelWidth:2400,sizes:\"261px\",src:\"https://framerusercontent.com/images/jh0aOpPF6rGRM0hwvo6UdEtVo.png\",srcSet:\"https://framerusercontent.com/images/jh0aOpPF6rGRM0hwvo6UdEtVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/jh0aOpPF6rGRM0hwvo6UdEtVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jh0aOpPF6rGRM0hwvo6UdEtVo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jh0aOpPF6rGRM0hwvo6UdEtVo.png 2400w\"},className:\"framer-jt8hbi\",\"data-framer-name\":\"walmart_logo_black_transparent\",layoutDependency:layoutDependency,layoutId:\"G_Fa4dTyW\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:848,intrinsicWidth:2400,pixelHeight:848,pixelWidth:2400,sizes:\"150px\",src:\"https://framerusercontent.com/images/bwZ8txIAMoxKcxvHsmykIMKs.png\",srcSet:\"https://framerusercontent.com/images/bwZ8txIAMoxKcxvHsmykIMKs.png?scale-down-to=512 512w,https://framerusercontent.com/images/bwZ8txIAMoxKcxvHsmykIMKs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bwZ8txIAMoxKcxvHsmykIMKs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bwZ8txIAMoxKcxvHsmykIMKs.png 2400w\"},className:\"framer-8bp6gc\",\"data-framer-name\":\"comcast_logo_black_transparent\",layoutDependency:layoutDependency,layoutId:\"FKDX61zJh\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:2400,pixelHeight:2400,pixelWidth:2400,sizes:\"110px\",src:\"https://framerusercontent.com/images/UtJhHZlwlScy5T1HwyhnIJiOq4.png\",srcSet:\"https://framerusercontent.com/images/UtJhHZlwlScy5T1HwyhnIJiOq4.png?scale-down-to=512 512w,https://framerusercontent.com/images/UtJhHZlwlScy5T1HwyhnIJiOq4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UtJhHZlwlScy5T1HwyhnIJiOq4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UtJhHZlwlScy5T1HwyhnIJiOq4.png 2400w\"},className:\"framer-1dxuo4q\",\"data-framer-name\":\"warner_bros_logo_png_transparent\",layoutDependency:layoutDependency,layoutId:\"x2jTS0SOJ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:580,intrinsicWidth:2400,pixelHeight:580,pixelWidth:2400,sizes:\"182.069px\",src:\"https://framerusercontent.com/images/NvapdGbyGJlO7VuXkYiiz5YnufI.png\",srcSet:\"https://framerusercontent.com/images/NvapdGbyGJlO7VuXkYiiz5YnufI.png?scale-down-to=512 512w,https://framerusercontent.com/images/NvapdGbyGJlO7VuXkYiiz5YnufI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NvapdGbyGJlO7VuXkYiiz5YnufI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NvapdGbyGJlO7VuXkYiiz5YnufI.png 2400w\"},className:\"framer-xpitmv\",\"data-framer-name\":\"nascar_logo_black_and_white\",layoutDependency:layoutDependency,layoutId:\"z2fJ7Em50\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"120px\",src:\"https://framerusercontent.com/images/QXnZmk3L4XFXFYRtAOf3aVbyFXQ.jpg\",srcSet:\"https://framerusercontent.com/images/QXnZmk3L4XFXFYRtAOf3aVbyFXQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QXnZmk3L4XFXFYRtAOf3aVbyFXQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QXnZmk3L4XFXFYRtAOf3aVbyFXQ.jpg 1080w\"},className:\"framer-1wl1njv\",\"data-framer-name\":\"Justice_For_Julius_Logo_Green\",layoutDependency:layoutDependency,layoutId:\"xRVVhHDPS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,sizes:\"150px\",src:\"https://framerusercontent.com/images/lRVqWzLTcVYkmgTJj5n7XlaXAM.png\",srcSet:\"https://framerusercontent.com/images/lRVqWzLTcVYkmgTJj5n7XlaXAM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lRVqWzLTcVYkmgTJj5n7XlaXAM.png 1000w\"},className:\"framer-1f5h4mz\",\"data-framer-name\":\"Doordash_Logo\",layoutDependency:layoutDependency,layoutId:\"xb_yZyeDe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322,intrinsicWidth:777,pixelHeight:322,pixelWidth:777,sizes:\"190px\",src:\"https://framerusercontent.com/images/LPTyagDqThfX1zTx4hiF1toq6c.png\",srcSet:\"https://framerusercontent.com/images/LPTyagDqThfX1zTx4hiF1toq6c.png?scale-down-to=512 512w,https://framerusercontent.com/images/LPTyagDqThfX1zTx4hiF1toq6c.png 777w\"},className:\"framer-eamb6r\",\"data-framer-name\":\"NURFC_logo_cmyk_2c_Dark_s2_MR\",layoutDependency:layoutDependency,layoutId:\"g38nUD7EL\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:175,intrinsicWidth:624,pixelHeight:175,pixelWidth:624,sizes:\"220px\",src:\"https://framerusercontent.com/images/POITFIZqVeC6x67yOks8ZJXCNvI.png\",srcSet:\"https://framerusercontent.com/images/POITFIZqVeC6x67yOks8ZJXCNvI.png?scale-down-to=512 512w,https://framerusercontent.com/images/POITFIZqVeC6x67yOks8ZJXCNvI.png 624w\"},className:\"framer-rnnav2\",\"data-framer-name\":\"monticello\",layoutDependency:layoutDependency,layoutId:\"N4hMIpWdu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/nnGpBIrqkBsaDTQdEe0qSw6S4.webp\"},className:\"framer-1ichkhr\",\"data-framer-name\":\"logo_sponsor_21st_century_fox_500x500\",layoutDependency:layoutDependency,layoutId:\"u6rlmvVIS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/ZN11EaXzOKDhK0pWzJRJnnmTs.png\"},className:\"framer-165mqkm\",\"data-framer-name\":\"Circular_Pinterest_icon_black\",layoutDependency:layoutDependency,layoutId:\"xak5oi6TM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:98,intrinsicWidth:300,pixelHeight:98,pixelWidth:300,src:\"https://framerusercontent.com/images/4WOzKGmDTm1tr76hix97vSif4Q.png\"},className:\"framer-x55i9i\",\"data-framer-name\":\"google_black_logo_CBC1330633_seeklogo_com\",layoutDependency:layoutDependency,layoutId:\"LMR6cfxqn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:300,pixelHeight:248,pixelWidth:300,src:\"https://framerusercontent.com/images/syFWczqhnD63BBhKJUknDtI7hA.png\"},className:\"framer-11qc4rz\",\"data-framer-name\":\"shark_tank_logo_DFC6B1B261_seeklogo_com\",layoutDependency:layoutDependency,layoutId:\"NbQ0vOeBA\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-csprhs\",layoutDependency:layoutDependency,layoutId:\"Uzk7rh76W\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10c15id\",\"data-framer-name\":\"Microsoft_Black\",fill:\"black\",intrinsicHeight:448,intrinsicWidth:595,layoutDependency:layoutDependency,layoutId:\"PJb8EO_tZ\",svg:'<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 595.3 447.8\" style=\"enable-background:new 0 0 595.3 447.8\" xml:space=\"preserve\"><path d=\"M571.5 4426.6v-243.9h487.8v487.8H571.5v-243.9zm539.1 241.3c-1.5-1.1-2.6-111.1-2.6-243.9v-241.2h487.8v487.8h-241.2c-132.9-.1-242.9-1.2-244-2.7zm3914.2-162.5c-39.4-8.6-81-37.9-98.7-70.2-15.4-28.5-21.4-57.8-21.4-103.2v-40l-36.4-1.1-36.8-1.1-1.1-42-1.1-42.4h75.4V3849h105v356.4h153.8V4092c.4-135.4 3-160.9 19.5-194.3 13.9-27 35.6-45 64.2-52.9 24-6.4 76.2-5.3 103.2 2.3l23.3 6.8v84l-21.4-7.1c-34.5-11.6-61.5-4.5-75 20.6-6 10.5-6.8 25.9-7.9 133.2l-1.1 120.8h105.4v86.2h-105V4420l-10.1-2.6c-6-1.1-29.6-8.3-52.5-15.4l-42.4-13.1v-99l-77.3 1.1-77.3 1.1 1.1 43.9c1.5 48 6.4 61.9 26.6 76.9 13.9 10.1 46.1 12.8 68.3 5.3l17.3-6v44.6c0 37.9-.8 44.6-6.4 46.5-11.3 4.4-74 5.5-91.2 2.1zM2689 4468.3c-19.5-12-28.9-28.5-28.9-51.4 0-36.8 27.8-60.4 67.9-57 34.1 3 55.2 24.8 55.2 57.4 0 22.5-7.5 35.6-28.1 49.9-16.2 10.8-49.3 11.6-66.1 1.1zm-785.7-311.8v-307.6h101.2l-.8 236.4c-.8 130.2 0 236.4 1.1 236.4s44.6-106.5 97.2-236.4l95.3-236.7 37.5 1.1 37.5 1.1 92.7 233.7c51 128.7 93.8 234.9 94.9 236 1.1 1.5 2.3-104.3 2.3-234.5v-237.1h105v615.2h-144.6l-85.9-210.8c-47.3-116.3-89.3-218.7-93-227.7l-7.5-16.9-32.6 82.5c-18 45-58.5 147.4-90 227.7l-57.4 145.2h-152.7v-307.6zm1114.3 137c-76.2-17.3-135.8-71.7-161.3-148.2-11.6-33.8-14.6-107.7-6-144.1 13.5-56.7 54.4-111.4 101.7-136.2 58.5-30.4 145.9-33.4 210.8-7.9l21.8 8.6 1.9 48c1.1 26.3 1.5 47.6 1.1 47.6-.4 0-11.6-6-25.1-13.1-62.7-34.9-132.8-28.9-173.7 14.3-30.8 32.3-42.8 78.8-34.9 133.6 7.5 52.1 37.5 92.7 81 108.8 40.9 15.4 99 8.3 136.6-17.3 7.1-4.5 13.9-8.6 15-8.6s1.5 22.5.8 50.3l-1.1 50.3-25.1 8.3c-32.8 10.8-106.7 13.8-143.5 5.6zm446.5 1.5c-36.8-5.3-65.7-26.6-84-62.3l-9.4-18-.4 38.6v38.6l-51.4-1.1-51.8-1.1-1.1-220.2-.8-220.6h104.6l1.1 136.2 1.1 135.8 10.5 22.5c16.5 34.9 35.6 52.5 64.2 57.8 19.1 3.4 50.3-.8 66.8-9.4l10.5-5.6v50.6c0 36.4-1.5 51.4-4.5 53.6-7.8 4.6-37.4 7.2-55.4 4.6zm232.9-1.5c-81.4-18.4-139.2-75.4-159.8-157.6-8.6-34.1-9-102.8-.4-138.4 17.6-74.7 73.9-131.3 149.3-151.2 32.3-8.3 97.9-8.3 132.4.8 67.2 16.9 121.6 64.2 144.8 124.9 13.5 37.1 19.5 77.3 16.9 118.9-3.8 67.9-21.8 111.8-60 150.4-24 23.6-41.3 34.5-77.3 47.3-27.7 10.1-111 12.7-145.9 4.9zm110.3-89.7c25.1-11.3 47.6-37.5 56.7-64.9 5.6-17.3 7.1-32.6 7.1-72.4-.4-43.9-1.5-53.6-9-72.4-10.9-27.8-26.6-45.4-50.6-57.8-16.5-8.6-24-9.8-52.9-9.8-37.1 0-57.4 6.4-79.9 25.1-35.3 30.4-51.4 102.8-36.4 166.6 10.5 43.5 30 69.8 63.8 85.5 26.6 12.8 74.6 12.8 101.2.1zm333.2 89.7c-44.3-12.4-83.7-43.5-99-78-12.4-28.1-12.4-79.2.4-105.8 15.4-31.5 32.6-45 99-76.9 33.4-16.1 63.8-33 67.5-37.1 9.8-10.9 12.4-39 4.5-51-21.4-32.6-100.9-29.3-160.6 7.1l-21.8 13.1V3864l13.5-5.6c41.6-17.3 121.9-22.9 165.8-11.6 48.4 12.4 84 38.6 102 75.4 7.5 15.8 9 24.4 9 54.4 0 29.3-1.1 38.3-7.9 51-18.8 35.6-42.8 53.6-110.3 84-49.5 21.8-63 33.4-66 55.9-7.1 51.4 70.5 66.4 146.3 28.1l18-9.4-1.1 48-1.1 47.6-22.5 7.1c-30.7 9.8-108.3 12.4-135.7 4.6zm390.9-1.5c-52.9-13.1-99-45-126.1-87-39-61.2-47.6-160.9-20.3-234.9 33.8-90.4 129.4-142.2 237.9-128.7 61.9 7.5 95.7 22.9 133.6 61.5 45.8 46.1 63.4 93.8 63.4 171.1 0 75.4-17.6 124.9-58.9 166.6-27.8 27.4-51.8 40.9-91.2 51-37.1 9.7-100.9 9.7-138.4.4zm120.5-89.3c21-11.3 40.5-33.8 50.6-59.7 7.1-18.8 8.6-29.3 8.6-70.9.4-76.9-15.4-112.9-59.3-135.1-19.9-9.8-26.3-10.9-54.4-10.9-40.5.4-65.7 10.1-86.7 34.1-24.4 28.1-31.5 51.4-31.9 106.2 0 75 16.9 111.8 62.7 135.1 22.5 11.3 25.1 11.6 59.3 10.5 27-1.1 39.4-3.3 51.1-9.3zm-1983.2-132.5v-221.4h105l-.8 220.6-1.1 220.2-51.4 1.1-51.8 1.1v-221.6zM571.5 3886.4v-243.9h487.8v487.8H571.5v-243.9zm537.2 1.1 1.1-243.1 243.1-1.1 242.7-.8v487.8H1108l.7-242.8z\" transform=\"matrix(.1 0 0 -.1 0 640)\" style=\"fill:#010202\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ihi1va\",layoutDependency:layoutDependency,layoutId:\"BhBfA72jc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jnpy5r\",\"data-framer-name\":\"logo_black_new\",fill:\"black\",intrinsicHeight:122,intrinsicWidth:390,layoutDependency:layoutDependency,layoutId:\"zR4UxazVv\",svg:'<svg width=\"390\" height=\"122\" xmlns=\"http://www.w3.org/2000/svg\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M378.694 87.247h10.814c.732 0 .732 1.919 0 1.919h-35.433c-.732 0-.732-1.92 0-1.92h10.814V1.92h-10.814c-.732 0-.732-1.919 0-1.919h23.647c.815 0 .972.208.972.996v86.25m-28.816-8.726c-1.556 5.58-3.03 7.647-5.509 7.647-1.987 0-3.111-1.077-3.111-3.53v-30.03c0-14.132-8.375-19.631-22.1-19.631-11.416 0-20.691 5.637-20.691 13.105 0 4.098 2.062 7.066 6.912 7.066 5.316 0 7.017-3.29 7.017-6.907 0-2.132-.833-4.205-.833-6.222 0-3.967 2.247-5.303 7.01-5.303 6.108 0 8.88 3.903 8.88 13.146V58.28a397.88 397.88 0 0 1-9.213 1.803 97.084 97.084 0 0 0-3.91.78c-13.611 3.069-18.995 7.412-18.995 15.598 0 8.853 5.613 13.913 18.45 13.913 6.334 0 10.738-2.926 13.234-6.78.365-.563.672-1.151.929-1.77.318 5.177 4.549 8.43 10.461 8.43 7.969 0 11.583-4.248 12.902-11.317.106-.567-1.285-.945-1.433-.416zm-23.827 3.911c-2.112 3.188-5.016 5.137-9.083 5.137-5.194 0-7.154-3.431-7.154-11.409 0-6.853.681-9.375 2.386-11.177 1.45-1.532 3.404-2.475 7.017-3.303 2.49-.571 5.602-1.174 8.236-1.654l-.007 15.969c-.084 2.89-.542 5.15-1.395 6.437zm-40.459-4.874c-1.757 5.628-4.59 9.545-8.55 9.545-1.456 0-2.453-.34-3.238-.843-1.362-.872-2.033-2.546-1.974-5.768V36.105h13.628c.858 0 .858-1.92 0-1.92H271.83V18.632c0-.785-.124-.968-.971-.968h-11.862c-.846 0-.971.183-.971.968v15.555h-9.462c-.733 0-.733 1.919 0 1.919h9.462V78.66c0 7.424 5.644 11.714 14.003 11.714 8.983 0 13.095-4.562 14.995-12.244.165-.66-1.252-1.15-1.432-.573\" fill=\"#000\"/><path fill=\"#EE411E\" d=\"M209.357 107.607h3.443V15.744h-3.443z\"/><path d=\"M180.707 61.676c0-8.389 3.588-15.475 8.49-20.213 5.454-5.271 12.943-8.486 21.83-8.486 8.885 0 16.375 3.215 21.828 8.486 4.903 4.738 8.49 11.824 8.49 20.213 0 8.389-3.587 15.475-8.49 20.212-5.453 5.271-12.943 8.487-21.829 8.487-8.886 0-16.375-3.216-21.829-8.487-4.902-4.737-8.49-11.823-8.49-20.212zm15.014 0c0 11.877 2.332 19.496 6.243 23.29 2.24 2.16 5.06 3.562 9.062 3.528 4.003.034 6.822-1.368 9.062-3.527 3.912-3.795 6.244-11.414 6.244-23.291s-2.332-19.497-6.244-23.29c-2.24-2.16-5.059-3.562-9.062-3.528-4.002-.034-6.821 1.368-9.062 3.527-3.911 3.794-6.243 11.414-6.243 23.29z\" fill=\"#000\"/><path fill=\"#EE411E\" d=\"M209.357 62.017h3.443V15.744h-3.443z\"/><path d=\"M177.613 34.186h-18.067c-.732 0-.732 1.919 0 1.919h8.107l-15.8 38.898-16.087-38.898h7.842c.733 0 .733-1.92 0-1.92h-29.159c-.858 0-.858 1.92 0 1.92h7.023l22.432 52.834c.403 1.034 3.704 1.027 4.103 0l22.038-52.834h7.568c.733 0 .733-1.92 0-1.92m-76.413.001c.816 0 .972.207.972.995v52.066h10.815c.731 0 .731 1.919 0 1.919H77.553c-.732 0-.732-1.92 0-1.92h10.814v-51.14H77.553c-.732 0-.732-1.92 0-1.92H101.2zM94.43 5.215c2.475 0 4.764.99 6.403 2.674 1.53 1.574 2.49 3.756 2.49 6.302s-.96 4.727-2.49 6.302c-1.639 1.684-3.928 2.674-6.403 2.674-2.474 0-4.764-.99-6.402-2.674-1.532-1.575-2.49-3.756-2.49-6.302s.958-4.728 2.49-6.302c1.638-1.685 3.928-2.674 6.402-2.674zM57.958 38.733c-5.216-3.968-10.577-5.756-17.13-5.756-5.23 0-10.413 2.003-15.62 6.792v-4.588c0-.788-.156-.995-.971-.995H.59c-.732 0-.732 1.919 0 1.919h10.814v84.09H.59c-.732 0-.732 1.92 0 1.92h35.912c.733 0 .733-1.92 0-1.92H25.208V83.407c5.207 4.79 10.39 6.792 15.62 6.792 6.553 0 11.914-1.789 17.13-5.756 6.968-5.3 10.539-13.435 10.539-22.854 0-9.42-3.57-17.554-10.54-22.855zm-8.896 45.59c-2.045 2.634-4.959 3.956-9.034 3.956-4.692 0-9.731-2.097-14.82-7.192V42.088c5.089-5.095 10.128-7.192 14.82-7.192 4.075 0 6.989 1.322 9.034 3.956 2.932 3.767 4.268 10.54 4.268 22.736 0 12.195-1.336 18.968-4.268 22.734z\" fill=\"#000\"/></g></svg>',withExternalLayout:true})})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2QOrS.framer-pnsr6o, .framer-2QOrS .framer-pnsr6o { display: block; }\",\".framer-2QOrS.framer-qntxpd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 24px 40px 24px; position: relative; width: 1200px; }\",\".framer-2QOrS .framer-ro7e37 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2QOrS .framer-7fiafb-container { flex: 1 0 0px; height: 200px; position: relative; width: 1px; }\",\".framer-2QOrS .framer-1wn4ert { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 150px); overflow: visible; position: relative; width: 200px; }\",\".framer-2QOrS .framer-10qjcn9 { aspect-ratio: 3.00509337860781 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 150px; }\",\".framer-2QOrS .framer-1xeduk5 { aspect-ratio: 1.8072289156626506 / 1; height: var(--framer-aspect-ratio-supported, 83px); overflow: visible; position: relative; width: 150px; }\",\".framer-2QOrS .framer-780tht { aspect-ratio: 4.942084942084942 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 210px; }\",\".framer-2QOrS .framer-qtn2p0, .framer-2QOrS .framer-1f5h4mz, .framer-2QOrS .framer-1ichkhr { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 150px); overflow: visible; position: relative; width: 150px; }\",\".framer-2QOrS .framer-48q6ll { aspect-ratio: 2.4380952380952383 / 1; height: var(--framer-aspect-ratio-supported, 62px); overflow: visible; position: relative; width: 150px; }\",\".framer-2QOrS .framer-hu5e0s { aspect-ratio: 2.5353846153846153 / 1; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 120px; }\",\".framer-2QOrS .framer-q9q6yo { aspect-ratio: 7.6992481203007515 / 1; height: var(--framer-aspect-ratio-supported, 19px); overflow: visible; position: relative; width: 150px; }\",\".framer-2QOrS .framer-am8mxm { aspect-ratio: 3.925925925925926 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 150px; }\",\".framer-2QOrS .framer-iz3ce9 { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 120px); overflow: visible; position: relative; width: 213px; }\",\".framer-2QOrS .framer-mu8hja, .framer-2QOrS .framer-17wvoph { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 84px); overflow: visible; position: relative; width: 150px; }\",\".framer-2QOrS .framer-lcak9l { aspect-ratio: 2.271517302573203 / 1; height: var(--framer-aspect-ratio-supported, 66px); overflow: visible; position: relative; width: 150px; }\",\".framer-2QOrS .framer-jt8hbi { aspect-ratio: 4.013377926421405 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 261px; }\",\".framer-2QOrS .framer-8bp6gc { aspect-ratio: 2.830188679245283 / 1; height: var(--framer-aspect-ratio-supported, 53px); overflow: visible; position: relative; width: 150px; }\",\".framer-2QOrS .framer-1dxuo4q { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 110px); overflow: visible; position: relative; width: 110px; }\",\".framer-2QOrS .framer-xpitmv { aspect-ratio: 4.137931034482759 / 1; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 180px; }\",\".framer-2QOrS .framer-1wl1njv { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 120px); overflow: visible; position: relative; width: 120px; }\",\".framer-2QOrS .framer-eamb6r { aspect-ratio: 2.4130434782608696 / 1; height: var(--framer-aspect-ratio-supported, 79px); overflow: visible; position: relative; width: 190px; }\",\".framer-2QOrS .framer-rnnav2 { aspect-ratio: 3.565714285714286 / 1; height: var(--framer-aspect-ratio-supported, 62px); overflow: visible; position: relative; width: 220px; }\",\".framer-2QOrS .framer-165mqkm { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 80px); overflow: visible; position: relative; width: 80px; }\",\".framer-2QOrS .framer-x55i9i { aspect-ratio: 3.061224489795918 / 1; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 150px; }\",\".framer-2QOrS .framer-11qc4rz { aspect-ratio: 1.2096774193548387 / 1; height: var(--framer-aspect-ratio-supported, 91px); overflow: visible; position: relative; width: 110px; }\",\".framer-2QOrS .framer-csprhs { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 113px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 150px; }\",\".framer-2QOrS .framer-10c15id { aspect-ratio: 1.328125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 150px; }\",\".framer-2QOrS .framer-ihi1va { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2QOrS .framer-1jnpy5r { aspect-ratio: 3.19672131147541 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); position: relative; width: 170px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2QOrS.framer-qntxpd, .framer-2QOrS .framer-ro7e37, .framer-2QOrS .framer-csprhs, .framer-2QOrS .framer-ihi1va { gap: 0px; } .framer-2QOrS.framer-qntxpd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2QOrS.framer-qntxpd > :first-child { margin-top: 0px; } .framer-2QOrS.framer-qntxpd > :last-child { margin-bottom: 0px; } .framer-2QOrS .framer-ro7e37 > *, .framer-2QOrS .framer-csprhs > *, .framer-2QOrS .framer-ihi1va > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2QOrS .framer-ro7e37 > :first-child, .framer-2QOrS .framer-csprhs > :first-child, .framer-2QOrS .framer-ihi1va > :first-child { margin-left: 0px; } .framer-2QOrS .framer-ro7e37 > :last-child, .framer-2QOrS .framer-csprhs > :last-child, .framer-2QOrS .framer-ihi1va > :last-child { margin-right: 0px; } }\",\".framer-2QOrS.framer-v-xmns9x.framer-qntxpd { width: 810px; }\",\".framer-2QOrS.framer-v-51g49r.framer-qntxpd { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 280\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"H_YfxbOr_\":{\"layout\":[\"fixed\",\"auto\"]},\"JPJx4lmc3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryhD3Jj7JK=withCSS(Component,css,\"framer-2QOrS\");export default FrameryhD3Jj7JK;FrameryhD3Jj7JK.displayName=\"Section/Brand\";FrameryhD3Jj7JK.defaultProps={height:280,width:1200};addPropertyControls(FrameryhD3Jj7JK,{variant:{options:[\"S1FJhXn_B\",\"H_YfxbOr_\",\"JPJx4lmc3\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameryhD3Jj7JK,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryhD3Jj7JK\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H_YfxbOr_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JPJx4lmc3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"280\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yhD3Jj7JK.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "SVG", "css", "FrameryhD3Jj7JK", "withCSS", "yhD3Jj7JK_default", "addPropertyControls", "ControlType", "addFonts"]
}
