{"version":3,"file":"we0AAmavX.ChiXkozV.mjs","names":["size","css","Phosphor","className","Image"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js","https:/framerusercontent.com/modules/lDjO6fiBEBd25zKZWATJ/z15gWPNAa3O6zxlJtvYl/HHGh9YX4F.js","https:/framerusercontent.com/modules/xG1kkwFLZbYmnYBnHWvL/NzUDd2nxe8eKzJc3Otub/we0AAmavX.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:\"✨\"}),/*#__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 (5351ffe)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-9dZUP .framer-styles-preset-11o3aig:not(.rich-text-wrapper), .framer-9dZUP .framer-styles-preset-11o3aig.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-9dZUP\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (5012657)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lDjO6fiBEBd25zKZWATJ/z15gWPNAa3O6zxlJtvYl/HHGh9YX4F.js\";const TickerFonts=getFonts(Ticker);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"pqDaJ1DpU\",\"nZn5EkuK_\",\"Efil49FqE\",\"BTyN2ud5C\"];const serializationHash=\"framer-X0p18\";const variantClassNames={BTyN2ud5C:\"framer-v-19v2s8p\",Efil49FqE:\"framer-v-7wgsxt\",nZn5EkuK_:\"framer-v-15pej4m\",pqDaJ1DpU:\"framer-v-3h7wgc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};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 humanReadableEnumMap={Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"320px\":\"BTyN2ud5C\",Desktop:\"pqDaJ1DpU\",Phone:\"Efil49FqE\",Tablet:\"nZn5EkuK_\"};const getProps=({align,height,id,width,...props})=>{return{...props,h_NrU5W_S:humanReadableEnumMap[align]??align??props.h_NrU5W_S??\"flex-start\",variant:humanReadableVariantMap[props.variant]??props.variant??\"pqDaJ1DpU\"};};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,h_NrU5W_S,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pqDaJ1DpU\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3h7wgc\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pqDaJ1DpU\",ref:refBinding,style:{...style},...addPropertyOverrides({BTyN2ud5C:{\"data-framer-name\":\"320px\"},Efil49FqE:{\"data-framer-name\":\"Phone\"},nZn5EkuK_:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ncvl6b-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OVmstJKOH-container\",nodeId:\"OVmstJKOH\",rendersWithMotion:true,scopeId:\"we0AAmavX\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:22,height:\"100%\",hoverFactor:1,id:\"OVmstJKOH\",layoutId:\"OVmstJKOH\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:221,pixelWidth:986,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/pn0MqIxGmSwpY1j1ApKNFw6w.png\",srcSet:\"https://framerusercontent.com/images/pn0MqIxGmSwpY1j1ApKNFw6w.png?scale-down-to=512 512w,https://framerusercontent.com/images/pn0MqIxGmSwpY1j1ApKNFw6w.png 986w\"},className:\"framer-1vc5gsi\",\"data-framer-name\":\"ARNET\",layoutDependency:layoutDependency,layoutId:\"EqQGECu2K\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:716,pixelWidth:2035,positionX:\"center\",positionY:\"center\",sizes:\"78px\",src:\"https://framerusercontent.com/images/LZQTpFymNsyhDDKe0AnrPy4MOoE.png\",srcSet:\"https://framerusercontent.com/images/LZQTpFymNsyhDDKe0AnrPy4MOoE.png?scale-down-to=512 512w,https://framerusercontent.com/images/LZQTpFymNsyhDDKe0AnrPy4MOoE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LZQTpFymNsyhDDKe0AnrPy4MOoE.png 2035w\"},className:\"framer-1hm59zg\",\"data-framer-name\":\"asics\",layoutDependency:layoutDependency,layoutId:\"ZwW8UFmg2\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2333.3333951455593,intrinsicWidth:1547.2222632096148,pixelHeight:809,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/Zjj9CFUrsyacNeOeKA25W8Kzs4.png\",srcSet:\"https://framerusercontent.com/images/Zjj9CFUrsyacNeOeKA25W8Kzs4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Zjj9CFUrsyacNeOeKA25W8Kzs4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zjj9CFUrsyacNeOeKA25W8Kzs4.png 2000w\"},className:\"framer-11xc6nl\",\"data-framer-name\":\"vans\",layoutDependency:layoutDependency,layoutId:\"h8555oGMW\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1109.444473834686,intrinsicWidth:1592.2222644017077,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/gqxiQkXkOfAgtKYkVxK7wcc6k.png\",srcSet:\"https://framerusercontent.com/images/gqxiQkXkOfAgtKYkVxK7wcc6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/gqxiQkXkOfAgtKYkVxK7wcc6k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gqxiQkXkOfAgtKYkVxK7wcc6k.png 1920w\"},className:\"framer-1uu27aa\",\"data-framer-name\":\"becks\",layoutDependency:layoutDependency,layoutId:\"oYuBJoaMg\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/EuK0ybpY6VDBJDOlO3nhr15kmGY.png\",srcSet:\"https://framerusercontent.com/images/EuK0ybpY6VDBJDOlO3nhr15kmGY.png?scale-down-to=512 512w,https://framerusercontent.com/images/EuK0ybpY6VDBJDOlO3nhr15kmGY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EuK0ybpY6VDBJDOlO3nhr15kmGY.png 1920w\"},className:\"framer-1wtijqg\",\"data-framer-name\":\"umbro\",layoutDependency:layoutDependency,layoutId:\"h4vI5tYMK\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1201.6666984999629,intrinsicWidth:1594.4444866827987,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/FCXgzi3UxApS28eFD7n78fG29Qk.png\",srcSet:\"https://framerusercontent.com/images/FCXgzi3UxApS28eFD7n78fG29Qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCXgzi3UxApS28eFD7n78fG29Qk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCXgzi3UxApS28eFD7n78fG29Qk.png 1920w\"},className:\"framer-1fzohtx\",\"data-framer-name\":\"sephora\",layoutDependency:layoutDependency,layoutId:\"B5smzwu6Y\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/j2NIMn0f646y7CKJ8D9uVAEsAo.png\",srcSet:\"https://framerusercontent.com/images/j2NIMn0f646y7CKJ8D9uVAEsAo.png?scale-down-to=512 512w,https://framerusercontent.com/images/j2NIMn0f646y7CKJ8D9uVAEsAo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j2NIMn0f646y7CKJ8D9uVAEsAo.png 1920w\"},className:\"framer-vz67sr\",\"data-framer-name\":\"realme\",layoutDependency:layoutDependency,layoutId:\"gGg0Z7cSB\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/LdVIZI2bdacfo0oHobff9jrosyU.png\",srcSet:\"https://framerusercontent.com/images/LdVIZI2bdacfo0oHobff9jrosyU.png?scale-down-to=512 512w,https://framerusercontent.com/images/LdVIZI2bdacfo0oHobff9jrosyU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LdVIZI2bdacfo0oHobff9jrosyU.png 1920w\"},className:\"framer-3hjgz9\",\"data-framer-name\":\"puma\",layoutDependency:layoutDependency,layoutId:\"HOusLVnfQ\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/179nZAbklUQlL6uYD6BzAuaaJ0.png\",srcSet:\"https://framerusercontent.com/images/179nZAbklUQlL6uYD6BzAuaaJ0.png?scale-down-to=512 512w,https://framerusercontent.com/images/179nZAbklUQlL6uYD6BzAuaaJ0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/179nZAbklUQlL6uYD6BzAuaaJ0.png 1920w\"},className:\"framer-1hkbrnj\",\"data-framer-name\":\"ous\",layoutDependency:layoutDependency,layoutId:\"y3Str9MPy\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/SSkx4jiToYcL0h4tI6KsETf8Es.png\",srcSet:\"https://framerusercontent.com/images/SSkx4jiToYcL0h4tI6KsETf8Es.png?scale-down-to=512 512w,https://framerusercontent.com/images/SSkx4jiToYcL0h4tI6KsETf8Es.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SSkx4jiToYcL0h4tI6KsETf8Es.png 1920w\"},className:\"framer-78rpzf\",\"data-framer-name\":\"piet\",layoutDependency:layoutDependency,layoutId:\"e7XLYKCJN\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/f3UqhunWfLkgD9DeIGqnQ0EZ06U.png\",srcSet:\"https://framerusercontent.com/images/f3UqhunWfLkgD9DeIGqnQ0EZ06U.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3UqhunWfLkgD9DeIGqnQ0EZ06U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3UqhunWfLkgD9DeIGqnQ0EZ06U.png 1920w\"},className:\"framer-v56hjt\",\"data-framer-name\":\"mizuno\",layoutDependency:layoutDependency,layoutId:\"UhszTPS1Y\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/3odHionxF9ApYJz3PLAzWLdr8dE.png\",srcSet:\"https://framerusercontent.com/images/3odHionxF9ApYJz3PLAzWLdr8dE.png?scale-down-to=512 512w,https://framerusercontent.com/images/3odHionxF9ApYJz3PLAzWLdr8dE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3odHionxF9ApYJz3PLAzWLdr8dE.png 1920w\"},className:\"framer-3lt5t9\",\"data-framer-name\":\"missoni\",layoutDependency:layoutDependency,layoutId:\"UMFchcXZ8\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/ebFil2kcQaNW1KVLD4q3yErjW94.png\",srcSet:\"https://framerusercontent.com/images/ebFil2kcQaNW1KVLD4q3yErjW94.png?scale-down-to=512 512w,https://framerusercontent.com/images/ebFil2kcQaNW1KVLD4q3yErjW94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ebFil2kcQaNW1KVLD4q3yErjW94.png 1920w\"},className:\"framer-g0notw\",\"data-framer-name\":\"rider\",layoutDependency:layoutDependency,layoutId:\"djyEu1epU\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/vkPkz6lOlXX3YV1RiSSUkbt8LA.png\",srcSet:\"https://framerusercontent.com/images/vkPkz6lOlXX3YV1RiSSUkbt8LA.png?scale-down-to=512 512w,https://framerusercontent.com/images/vkPkz6lOlXX3YV1RiSSUkbt8LA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vkPkz6lOlXX3YV1RiSSUkbt8LA.png 1920w\"},className:\"framer-1prq6u4\",\"data-framer-name\":\"lacoste\",layoutDependency:layoutDependency,layoutId:\"VwlfsGASt\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/Z0gBWY9CDCd6lmZEx6ID0IyzVo.png\",srcSet:\"https://framerusercontent.com/images/Z0gBWY9CDCd6lmZEx6ID0IyzVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z0gBWY9CDCd6lmZEx6ID0IyzVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z0gBWY9CDCd6lmZEx6ID0IyzVo.png 1920w\"},className:\"framer-1x4f0su\",\"data-framer-name\":\"ifood\",layoutDependency:layoutDependency,layoutId:\"GZiFBKx8B\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/JVFb9ProDPbhQmeS0gReEwfjqX0.png\",srcSet:\"https://framerusercontent.com/images/JVFb9ProDPbhQmeS0gReEwfjqX0.png?scale-down-to=512 512w,https://framerusercontent.com/images/JVFb9ProDPbhQmeS0gReEwfjqX0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JVFb9ProDPbhQmeS0gReEwfjqX0.png 1920w\"},className:\"framer-bn9c35\",\"data-framer-name\":\"magalu\",layoutDependency:layoutDependency,layoutId:\"x1PIJ6gvO\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/RWB8WtoWxutfT89h0PVT8sXbs.png\",srcSet:\"https://framerusercontent.com/images/RWB8WtoWxutfT89h0PVT8sXbs.png?scale-down-to=512 512w,https://framerusercontent.com/images/RWB8WtoWxutfT89h0PVT8sXbs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RWB8WtoWxutfT89h0PVT8sXbs.png 1920w\"},className:\"framer-1tsgt4l\",\"data-framer-name\":\"hering\",layoutDependency:layoutDependency,layoutId:\"RwIMQqtmV\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/JFygAcRKVuQUAe6t6WwLXI6cVt0.png\",srcSet:\"https://framerusercontent.com/images/JFygAcRKVuQUAe6t6WwLXI6cVt0.png?scale-down-to=512 512w,https://framerusercontent.com/images/JFygAcRKVuQUAe6t6WwLXI6cVt0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JFygAcRKVuQUAe6t6WwLXI6cVt0.png 1920w\"},className:\"framer-a7ci7f\",\"data-framer-name\":\"hbomax\",layoutDependency:layoutDependency,layoutId:\"kkO0aweI0\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/iUKoyvzMJaEVWvUsfJfx51JQvkk.png\",srcSet:\"https://framerusercontent.com/images/iUKoyvzMJaEVWvUsfJfx51JQvkk.png?scale-down-to=512 512w,https://framerusercontent.com/images/iUKoyvzMJaEVWvUsfJfx51JQvkk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iUKoyvzMJaEVWvUsfJfx51JQvkk.png 1920w\"},className:\"framer-150t03l\",\"data-framer-name\":\"fila\",layoutDependency:layoutDependency,layoutId:\"lAuilATBv\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/T44UG1XInBE1Bvm0axfnloJNFDQ.png\",srcSet:\"https://framerusercontent.com/images/T44UG1XInBE1Bvm0axfnloJNFDQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/T44UG1XInBE1Bvm0axfnloJNFDQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T44UG1XInBE1Bvm0axfnloJNFDQ.png 1920w\"},className:\"framer-1bmgumr\",\"data-framer-name\":\"dod\",layoutDependency:layoutDependency,layoutId:\"V2YdUCSjy\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/YQCBkcIDYKzmkb3FA15ikrCmOs.png\",srcSet:\"https://framerusercontent.com/images/YQCBkcIDYKzmkb3FA15ikrCmOs.png?scale-down-to=512 512w,https://framerusercontent.com/images/YQCBkcIDYKzmkb3FA15ikrCmOs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YQCBkcIDYKzmkb3FA15ikrCmOs.png 1920w\"},className:\"framer-lx54zk\",\"data-framer-name\":\"crocs\",layoutDependency:layoutDependency,layoutId:\"udJ2Sr3KM\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/kmRRrAE7LUZckGAV3g7jVFbXsC4.png\",srcSet:\"https://framerusercontent.com/images/kmRRrAE7LUZckGAV3g7jVFbXsC4.png?scale-down-to=512 512w,https://framerusercontent.com/images/kmRRrAE7LUZckGAV3g7jVFbXsC4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kmRRrAE7LUZckGAV3g7jVFbXsC4.png 1920w\"},className:\"framer-3xdlij\",\"data-framer-name\":\"dewarts\",layoutDependency:layoutDependency,layoutId:\"lEOo2UNvn\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/MOuFbc3tU1UAXLz3RcO9IiXI87k.png\",srcSet:\"https://framerusercontent.com/images/MOuFbc3tU1UAXLz3RcO9IiXI87k.png?scale-down-to=512 512w,https://framerusercontent.com/images/MOuFbc3tU1UAXLz3RcO9IiXI87k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MOuFbc3tU1UAXLz3RcO9IiXI87k.png 1920w\"},className:\"framer-1cukad4\",\"data-framer-name\":\"converse\",layoutDependency:layoutDependency,layoutId:\"DHulRMWSI\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/m9bcFAx2JYmgX5puBkkEVhd4i9E.png\",srcSet:\"https://framerusercontent.com/images/m9bcFAx2JYmgX5puBkkEVhd4i9E.png?scale-down-to=512 512w,https://framerusercontent.com/images/m9bcFAx2JYmgX5puBkkEVhd4i9E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/m9bcFAx2JYmgX5puBkkEVhd4i9E.png 1920w\"},className:\"framer-17gsqq3\",\"data-framer-name\":\"chevrolet\",layoutDependency:layoutDependency,layoutId:\"bgupwrvcH\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/T7rCNtqHtgSgncOK2tUsVS3rus.png\",srcSet:\"https://framerusercontent.com/images/T7rCNtqHtgSgncOK2tUsVS3rus.png?scale-down-to=512 512w,https://framerusercontent.com/images/T7rCNtqHtgSgncOK2tUsVS3rus.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T7rCNtqHtgSgncOK2tUsVS3rus.png 1920w\"},className:\"framer-1wum05b\",\"data-framer-name\":\"calvin klein\",layoutDependency:layoutDependency,layoutId:\"O0Z1PWkMX\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/fcvO1agTztTxrV7rEn0bfIcqEDc.png\",srcSet:\"https://framerusercontent.com/images/fcvO1agTztTxrV7rEn0bfIcqEDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/fcvO1agTztTxrV7rEn0bfIcqEDc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fcvO1agTztTxrV7rEn0bfIcqEDc.png 1920w\"},className:\"framer-3kwgzp\",\"data-framer-name\":\"nike\",layoutDependency:layoutDependency,layoutId:\"VW84Fedmr\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/EQ2llcD6lummJIqTaDlHoculnZI.png\",srcSet:\"https://framerusercontent.com/images/EQ2llcD6lummJIqTaDlHoculnZI.png?scale-down-to=512 512w,https://framerusercontent.com/images/EQ2llcD6lummJIqTaDlHoculnZI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EQ2llcD6lummJIqTaDlHoculnZI.png 1920w\"},className:\"framer-gi3bwn\",\"data-framer-name\":\"newbalance\",layoutDependency:layoutDependency,layoutId:\"VlCyhXP5V\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/8kBqHiN16atBHgZFUUlPoedSlEI.png\",srcSet:\"https://framerusercontent.com/images/8kBqHiN16atBHgZFUUlPoedSlEI.png?scale-down-to=512 512w,https://framerusercontent.com/images/8kBqHiN16atBHgZFUUlPoedSlEI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8kBqHiN16atBHgZFUUlPoedSlEI.png 1920w\"},className:\"framer-11j043k\",\"data-framer-name\":\"volvo\",layoutDependency:layoutDependency,layoutId:\"Z0Azg16up\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/l4ZOkFAjNK3uDbvN0KotKdQO54.png\",srcSet:\"https://framerusercontent.com/images/l4ZOkFAjNK3uDbvN0KotKdQO54.png?scale-down-to=512 512w,https://framerusercontent.com/images/l4ZOkFAjNK3uDbvN0KotKdQO54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l4ZOkFAjNK3uDbvN0KotKdQO54.png 1920w\"},className:\"framer-1j1rko3\",\"data-framer-name\":\"melissa\",layoutDependency:layoutDependency,layoutId:\"RdR9GBkde\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/QWs7Rjk8C1PejrHiX26upAAuKoA.png\",srcSet:\"https://framerusercontent.com/images/QWs7Rjk8C1PejrHiX26upAAuKoA.png?scale-down-to=512 512w,https://framerusercontent.com/images/QWs7Rjk8C1PejrHiX26upAAuKoA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWs7Rjk8C1PejrHiX26upAAuKoA.png 1920w\"},className:\"framer-1w0vfrc\",\"data-framer-name\":\"mac\",layoutDependency:layoutDependency,layoutId:\"PKF07XFzm\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/hMfJsk385QRTQ2Eud55gnE0RXKI.png\",srcSet:\"https://framerusercontent.com/images/hMfJsk385QRTQ2Eud55gnE0RXKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hMfJsk385QRTQ2Eud55gnE0RXKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hMfJsk385QRTQ2Eud55gnE0RXKI.png 1920w\"},className:\"framer-1lbqfgk\",\"data-framer-name\":\"iguatemi\",layoutDependency:layoutDependency,layoutId:\"zY4x_26Gm\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/4EAmThtVdyUBpvxZzpCwlmrXVc.png\",srcSet:\"https://framerusercontent.com/images/4EAmThtVdyUBpvxZzpCwlmrXVc.png?scale-down-to=512 512w,https://framerusercontent.com/images/4EAmThtVdyUBpvxZzpCwlmrXVc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4EAmThtVdyUBpvxZzpCwlmrXVc.png 1920w\"},className:\"framer-ovl7h7\",\"data-framer-name\":\"havaianas\",layoutDependency:layoutDependency,layoutId:\"zCJ171uqg\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/1yCm8xTWiP0n2wQRzjYOdR26mM4.png\",srcSet:\"https://framerusercontent.com/images/1yCm8xTWiP0n2wQRzjYOdR26mM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/1yCm8xTWiP0n2wQRzjYOdR26mM4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1yCm8xTWiP0n2wQRzjYOdR26mM4.png 1920w\"},className:\"framer-1s7eum5\",\"data-framer-name\":\"adidas\",layoutDependency:layoutDependency,layoutId:\"HlXwGaHRv\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/urjKDwjpJvDMtqJS0dcL3ayEbI4.png\",srcSet:\"https://framerusercontent.com/images/urjKDwjpJvDMtqJS0dcL3ayEbI4.png?scale-down-to=512 512w,https://framerusercontent.com/images/urjKDwjpJvDMtqJS0dcL3ayEbI4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/urjKDwjpJvDMtqJS0dcL3ayEbI4.png 1920w\"},className:\"framer-c8zfj8\",\"data-framer-name\":\"budweiser\",layoutDependency:layoutDependency,layoutId:\"ImJjS2efi\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2322.7778393103767,intrinsicWidth:1548.3333743501603,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"76px\",src:\"https://framerusercontent.com/images/HGZeiUIl66oV4UUfM6MSTqAUIY.png\",srcSet:\"https://framerusercontent.com/images/HGZeiUIl66oV4UUfM6MSTqAUIY.png?scale-down-to=512 512w,https://framerusercontent.com/images/HGZeiUIl66oV4UUfM6MSTqAUIY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HGZeiUIl66oV4UUfM6MSTqAUIY.png 1920w\"},className:\"framer-1dr5dud\",\"data-framer-name\":\"hering\",layoutDependency:layoutDependency,layoutId:\"xO0ad3Ejk\",whileHover:animation})],speed:65,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m4kwap\",\"data-framer-name\":\"Social Media\",layoutDependency:layoutDependency,layoutId:\"wbaX1vlbL\",style:{\"--40k2d5\":h_NrU5W_S},children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/notthesamo/\",motionChild:true,nodeId:\"SnKcCfU7o\",scopeId:\"we0AAmavX\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-szwie1 framer-1e3ik4k\",layoutDependency:layoutDependency,layoutId:\"SnKcCfU7o\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s26o9x-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VJbpRfl0A-container\",nodeId:\"VJbpRfl0A\",rendersWithMotion:true,scopeId:\"we0AAmavX\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ab2eba28-181e-4912-946f-7408b0746961, rgb(250, 250, 250))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"InstagramLogo\",id:\"VJbpRfl0A\",layoutId:\"VJbpRfl0A\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/notthesamo\",motionChild:true,nodeId:\"TqPaOTGQW\",scopeId:\"we0AAmavX\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1yf3ho6 framer-1e3ik4k\",layoutDependency:layoutDependency,layoutId:\"TqPaOTGQW\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1twfb5-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"C20KmvY1_-container\",nodeId:\"C20KmvY1_\",rendersWithMotion:true,scopeId:\"we0AAmavX\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ab2eba28-181e-4912-946f-7408b0746961, rgb(250, 250, 250))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"XLogo\",id:\"C20KmvY1_\",layoutId:\"C20KmvY1_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.threads.com/@notthesamo?hl=pt\",motionChild:true,nodeId:\"LQxDDzZPs\",scopeId:\"we0AAmavX\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1rzasjj framer-1e3ik4k\",layoutDependency:layoutDependency,layoutId:\"LQxDDzZPs\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9hcn9m-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DCKGpQI4q-container\",nodeId:\"DCKGpQI4q\",rendersWithMotion:true,scopeId:\"we0AAmavX\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ab2eba28-181e-4912-946f-7408b0746961, rgb(250, 250, 250))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ThreadsLogo\",id:\"DCKGpQI4q\",layoutId:\"DCKGpQI4q\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@NOTTHESAMO\",motionChild:true,nodeId:\"p7O6BVfxh\",scopeId:\"we0AAmavX\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gn1w14 framer-1e3ik4k\",layoutDependency:layoutDependency,layoutId:\"p7O6BVfxh\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3isfdd-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"S_eOjA2pT-container\",nodeId:\"S_eOjA2pT\",rendersWithMotion:true,scopeId:\"we0AAmavX\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ab2eba28-181e-4912-946f-7408b0746961, rgb(250, 250, 250))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"YoutubeLogo\",id:\"S_eOjA2pT\",layoutId:\"S_eOjA2pT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Roboto Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"HTTPS://T0FU.COM.BR\",motionChild:true,nodeId:\"Q9_JpCs9b\",openInNewTab:true,scopeId:\"we0AAmavX\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-11o3aig\",\"data-styles-preset\":\"HHGh9YX4F\",children:[\"BUILT BY\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"19px\"},children:\"✴︎\"})]})})})}),className:\"framer-1cvo53a\",\"data-framer-name\":\"WRLD@WIDE.COM\",fonts:[\"GF;Roboto Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"Q9_JpCs9b\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X0p18.framer-1e3ik4k, .framer-X0p18 .framer-1e3ik4k { display: block; }\",\".framer-X0p18.framer-3h7wgc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-X0p18 .framer-ncvl6b-container { flex: none; height: 146px; position: relative; width: 100%; }\",\".framer-X0p18 .framer-1vc5gsi, .framer-X0p18 .framer-11xc6nl, .framer-X0p18 .framer-1uu27aa, .framer-X0p18 .framer-1wtijqg, .framer-X0p18 .framer-1fzohtx, .framer-X0p18 .framer-vz67sr, .framer-X0p18 .framer-3hjgz9, .framer-X0p18 .framer-1hkbrnj, .framer-X0p18 .framer-78rpzf, .framer-X0p18 .framer-v56hjt, .framer-X0p18 .framer-3lt5t9, .framer-X0p18 .framer-g0notw, .framer-X0p18 .framer-1prq6u4, .framer-X0p18 .framer-1x4f0su, .framer-X0p18 .framer-bn9c35, .framer-X0p18 .framer-1tsgt4l, .framer-X0p18 .framer-a7ci7f, .framer-X0p18 .framer-150t03l, .framer-X0p18 .framer-1bmgumr, .framer-X0p18 .framer-lx54zk, .framer-X0p18 .framer-3xdlij, .framer-X0p18 .framer-1cukad4, .framer-X0p18 .framer-17gsqq3, .framer-X0p18 .framer-1wum05b, .framer-X0p18 .framer-3kwgzp, .framer-X0p18 .framer-gi3bwn, .framer-X0p18 .framer-11j043k, .framer-X0p18 .framer-1j1rko3, .framer-X0p18 .framer-1w0vfrc, .framer-X0p18 .framer-1lbqfgk, .framer-X0p18 .framer-ovl7h7, .framer-X0p18 .framer-1s7eum5, .framer-X0p18 .framer-c8zfj8, .framer-X0p18 .framer-1dr5dud { height: 70px; overflow: visible; position: relative; width: 76px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-X0p18 .framer-1hm59zg { gap: 10px; height: 70px; overflow: visible; position: relative; width: 78px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-X0p18 .framer-1m4kwap { align-content: var(--40k2d5); align-items: var(--40k2d5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 34px; justify-content: space-between; overflow: hidden; padding: 10px; position: relative; width: 58%; }\",\".framer-X0p18 .framer-szwie1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; text-decoration: none; top: 0px; width: 218px; z-index: 1; }\",\".framer-X0p18 .framer-s26o9x-container, .framer-X0p18 .framer-1twfb5-container, .framer-X0p18 .framer-9hcn9m-container, .framer-X0p18 .framer-3isfdd-container { flex: none; height: 26px; position: relative; width: 28px; }\",\".framer-X0p18 .framer-1yf3ho6, .framer-X0p18 .framer-1rzasjj, .framer-X0p18 .framer-1gn1w14 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-X0p18 .framer-1cvo53a { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-X0p18.framer-v-15pej4m.framer-3h7wgc { padding: 270px 0px 0px 0px; width: 810px; }\",\".framer-X0p18.framer-v-7wgsxt.framer-3h7wgc { padding: 198px 0px 0px 0px; width: 320px; }\",\".framer-X0p18.framer-v-7wgsxt .framer-s26o9x-container { order: 0; }\",\".framer-X0p18.framer-v-19v2s8p.framer-3h7wgc { padding: 225px 0px 0px 0px; width: 320px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 243\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nZn5EkuK_\":{\"layout\":[\"fixed\",\"auto\"]},\"Efil49FqE\":{\"layout\":[\"fixed\",\"auto\"]},\"BTyN2ud5C\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"h_NrU5W_S\":\"align\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerwe0AAmavX=withCSS(Component,css,\"framer-X0p18\");export default Framerwe0AAmavX;Framerwe0AAmavX.displayName=\"Footer 4\";Framerwe0AAmavX.defaultProps={height:243,width:1440};addPropertyControls(Framerwe0AAmavX,{variant:{options:[\"pqDaJ1DpU\",\"nZn5EkuK_\",\"Efil49FqE\",\"BTyN2ud5C\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"320px\"],title:\"Variant\",type:ControlType.Enum},h_NrU5W_S:{defaultValue:\"flex-start\",options:[\"flex-start\",\"center\",\"flex-end\"],optionTitles:[\"Start\",\"Center\",\"End\"],title:\"Align\",type:ControlType.Enum}});addFonts(Framerwe0AAmavX,[{explicitInter:true,fonts:[{family:\"Roboto Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotomono/v30/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPRu-5Ip2sSQ.woff2\",weight:\"400\"}]},...TickerFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerwe0AAmavX\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nZn5EkuK_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Efil49FqE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BTyN2ud5C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"243\",\"framerVariables\":\"{\\\"h_NrU5W_S\\\":\\\"align\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./we0AAmavX.map"],"mappings":"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"}