{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/aNGvk6jPVOn9tzJ0Sbwn/oiObCcIe3BVTvUwo7sf2/g3tmYArhc.js", "ssg:https://framerusercontent.com/modules/k7g9FwNvC6iqOER3ZzJd/tjVDR9DqNmJqSKkif7UV/g8rjc6L8V.js", "ssg:https://framerusercontent.com/modules/stk7d5a9qHXD2k5Hjnzp/ziw0ILs502DMpDGaveJE/z6jt8uwZx.js", "ssg:https://framerusercontent.com/modules/trloFs3eNfL726FpLAjj/z7Uh5fPhY3eAGAQA1jzC/jY8PSKHmT.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", "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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__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\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ae47b7e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={b0YUaB2xQ:{hover:true},I4xgvG9rI:{hover:true},OZY8RnIa3:{hover:true},PgBWd7oSJ:{hover:true},UVTJMqiUT:{hover:true},XfHiqscWp:{hover:true},ycQ2ATDnk:{hover:true}};const cycleOrder=[\"XfHiqscWp\",\"ycQ2ATDnk\",\"OZY8RnIa3\",\"UVTJMqiUT\",\"b0YUaB2xQ\",\"I4xgvG9rI\",\"PgBWd7oSJ\"];const serializationHash=\"framer-hMD3S\";const variantClassNames={b0YUaB2xQ:\"framer-v-1qcls4j\",I4xgvG9rI:\"framer-v-1v3hjis\",OZY8RnIa3:\"framer-v-cm1c8w\",PgBWd7oSJ:\"framer-v-ds8edu\",UVTJMqiUT:\"framer-v-1k1yzkt\",XfHiqscWp:\"framer-v-1xc7r7o\",ycQ2ATDnk:\"framer-v-q42rt6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Customer 1\":\"OZY8RnIa3\",\"Customer 2\":\"UVTJMqiUT\",\"Variant 1\":\"XfHiqscWp\",\"Variant 2\":\"ycQ2ATDnk\",\"Variant 6\":\"I4xgvG9rI\",\"Variant 7\":\"PgBWd7oSJ\",axicha:\"b0YUaB2xQ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XfHiqscWp\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XfHiqscWp\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:499,pixelWidth:499,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/InyZOGIBVeaIz5sw738Ez9EXEU.png\"},className:cx(scopingClassNames,\"framer-1xc7r7o\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"XfHiqscWp\",ref:ref??ref1,style:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\",...style},variants:{\"b0YUaB2xQ-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"I4xgvG9rI-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"OZY8RnIa3-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"PgBWd7oSJ-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"UVTJMqiUT-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"XfHiqscWp-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"ycQ2ATDnk-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"}},...addPropertyOverrides({\"b0YUaB2xQ-hover\":{\"data-framer-name\":undefined},\"I4xgvG9rI-hover\":{\"data-framer-name\":undefined},\"OZY8RnIa3-hover\":{\"data-framer-name\":undefined},\"PgBWd7oSJ-hover\":{\"data-framer-name\":undefined},\"UVTJMqiUT-hover\":{\"data-framer-name\":undefined},\"XfHiqscWp-hover\":{\"data-framer-name\":undefined},\"ycQ2ATDnk-hover\":{\"data-framer-name\":undefined},b0YUaB2xQ:{\"data-framer-name\":\"axicha\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:320,pixelWidth:864,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/vUPNwB7IaMiREJ8wCvwX2T7BnI.svg\",srcSet:\"https://framerusercontent.com/images/vUPNwB7IaMiREJ8wCvwX2T7BnI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vUPNwB7IaMiREJ8wCvwX2T7BnI.svg 864w\"}},I4xgvG9rI:{\"data-framer-name\":\"Variant 6\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:229,pixelWidth:1088,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RRvgq8rCrXWZoaRxgB4Ycr4RYw.png\",srcSet:\"https://framerusercontent.com/images/RRvgq8rCrXWZoaRxgB4Ycr4RYw.png?scale-down-to=512 512w,https://framerusercontent.com/images/RRvgq8rCrXWZoaRxgB4Ycr4RYw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RRvgq8rCrXWZoaRxgB4Ycr4RYw.png 1088w\"}},OZY8RnIa3:{\"data-framer-name\":\"Customer 1\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:136,pixelWidth:510,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iYpGSOTLwdxFHi0SJ3jWsJr4u4.svg\"}},PgBWd7oSJ:{\"data-framer-name\":\"Variant 7\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:170,pixelWidth:656,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Es7EYfrKzEGtdxHRweVYallNQ.svg\",srcSet:\"https://framerusercontent.com/images/Es7EYfrKzEGtdxHRweVYallNQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Es7EYfrKzEGtdxHRweVYallNQ.svg 656w\"}},UVTJMqiUT:{\"data-framer-name\":\"Customer 2\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:362,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7nMsKSgDKwekStJSw1129tXeukY.svg\",srcSet:\"https://framerusercontent.com/images/7nMsKSgDKwekStJSw1129tXeukY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/7nMsKSgDKwekStJSw1129tXeukY.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7nMsKSgDKwekStJSw1129tXeukY.svg 1280w\"}},ycQ2ATDnk:{\"data-framer-name\":\"Variant 2\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:408,pixelWidth:612,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/a0B6ORZ04yrJkN4t6ELoiVa4JE.png\",srcSet:\"https://framerusercontent.com/images/a0B6ORZ04yrJkN4t6ELoiVa4JE.png?scale-down-to=512 512w,https://framerusercontent.com/images/a0B6ORZ04yrJkN4t6ELoiVa4JE.png 612w\"}}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hMD3S.framer-nnjltd, .framer-hMD3S .framer-nnjltd { display: block; }\",\".framer-hMD3S.framer-1xc7r7o { cursor: pointer; height: 200px; position: relative; width: 200px; }\",\".framer-hMD3S.framer-v-q42rt6.framer-1xc7r7o, .framer-hMD3S.framer-v-cm1c8w.framer-1xc7r7o, .framer-hMD3S.framer-v-1k1yzkt.framer-1xc7r7o, .framer-hMD3S.framer-v-1qcls4j.framer-1xc7r7o, .framer-hMD3S.framer-v-1v3hjis.framer-1xc7r7o, .framer-hMD3S.framer-v-ds8edu.framer-1xc7r7o, .framer-hMD3S.framer-v-1xc7r7o.hover.framer-1xc7r7o { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ycQ2ATDnk\":{\"layout\":[\"fixed\",\"fixed\"]},\"OZY8RnIa3\":{\"layout\":[\"fixed\",\"fixed\"]},\"UVTJMqiUT\":{\"layout\":[\"fixed\",\"fixed\"]},\"b0YUaB2xQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"I4xgvG9rI\":{\"layout\":[\"fixed\",\"fixed\"]},\"PgBWd7oSJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"SRWgCLR95\":{\"layout\":[\"fixed\",\"fixed\"]},\"OBMhwEOhs\":{\"layout\":[\"fixed\",\"fixed\"]},\"NCq0RHtYz\":{\"layout\":[\"fixed\",\"fixed\"]},\"je_PzSNy5\":{\"layout\":[\"fixed\",\"fixed\"]},\"EWhUv1XHo\":{\"layout\":[\"fixed\",\"fixed\"]},\"AgwJGbzX3\":{\"layout\":[\"fixed\",\"fixed\"]},\"l6WwvYIfo\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg3tmYArhc=withCSS(Component,css,\"framer-hMD3S\");export default Framerg3tmYArhc;Framerg3tmYArhc.displayName=\"logo3\";Framerg3tmYArhc.defaultProps={height:200,width:200};addPropertyControls(Framerg3tmYArhc,{variant:{options:[\"XfHiqscWp\",\"ycQ2ATDnk\",\"OZY8RnIa3\",\"UVTJMqiUT\",\"b0YUaB2xQ\",\"I4xgvG9rI\",\"PgBWd7oSJ\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Customer 1\",\"Customer 2\",\"axicha\",\"Variant 6\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerg3tmYArhc,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg3tmYArhc\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ycQ2ATDnk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OZY8RnIa3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UVTJMqiUT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"b0YUaB2xQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I4xgvG9rI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PgBWd7oSJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SRWgCLR95\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OBMhwEOhs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NCq0RHtYz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"je_PzSNy5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EWhUv1XHo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AgwJGbzX3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l6WwvYIfo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g3tmYArhc.map", "// Generated by Framer (ae47b7e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={DGhnh3zr7:{hover:true},e9NuW7J0C:{hover:true},fNwu1Xeia:{hover:true},GiHtgvCMB:{hover:true},k9mq3kzHx:{hover:true},MlOvakOFe:{hover:true},q_i0x39GY:{hover:true},Uhf_bOnbY:{hover:true},Zk2MUURgF:{hover:true}};const cycleOrder=[\"fNwu1Xeia\",\"e9NuW7J0C\",\"q_i0x39GY\",\"MlOvakOFe\",\"GiHtgvCMB\",\"Zk2MUURgF\",\"Uhf_bOnbY\",\"DGhnh3zr7\",\"k9mq3kzHx\"];const serializationHash=\"framer-ALJkQ\";const variantClassNames={DGhnh3zr7:\"framer-v-1ii3ox3\",e9NuW7J0C:\"framer-v-57rnbf\",fNwu1Xeia:\"framer-v-1y01xf2\",GiHtgvCMB:\"framer-v-zfgjo6\",k9mq3kzHx:\"framer-v-hqdw4q\",MlOvakOFe:\"framer-v-kziwqe\",q_i0x39GY:\"framer-v-1jptxml\",Uhf_bOnbY:\"framer-v-1ts3wbw\",Zk2MUURgF:\"framer-v-76ztp0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"alliance 4\":\"Zk2MUURgF\",\"alliance 5\":\"Uhf_bOnbY\",\"alliance 6\":\"DGhnh3zr7\",\"alliance 7\":\"k9mq3kzHx\",\"Variant 1\":\"fNwu1Xeia\",\"Variant 2\":\"e9NuW7J0C\",alliance1:\"q_i0x39GY\",alliance2:\"MlOvakOFe\",alliance3:\"GiHtgvCMB\"};const getProps=({click,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"fNwu1Xeia\",Xk4ppgSo7:click??props.Xk4ppgSo7};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Xk4ppgSo7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fNwu1Xeia\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapsynoz3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Xk4ppgSo7){const res=await Xk4ppgSo7(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1042,pixelWidth:2604,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rl1lwdwsZniwZjcpzoBlqldqV0.png\",srcSet:\"https://framerusercontent.com/images/rl1lwdwsZniwZjcpzoBlqldqV0.png?scale-down-to=512 512w,https://framerusercontent.com/images/rl1lwdwsZniwZjcpzoBlqldqV0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rl1lwdwsZniwZjcpzoBlqldqV0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rl1lwdwsZniwZjcpzoBlqldqV0.png 2604w\"},className:cx(scopingClassNames,\"framer-1y01xf2\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fNwu1Xeia\",onTap:onTapsynoz3,ref:ref??ref1,style:{filter:\"none\",WebkitFilter:\"none\",...style},variants:{\"DGhnh3zr7-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"e9NuW7J0C-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"fNwu1Xeia-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"GiHtgvCMB-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"k9mq3kzHx-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"MlOvakOFe-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"q_i0x39GY-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"Uhf_bOnbY-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"Zk2MUURgF-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},DGhnh3zr7:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},e9NuW7J0C:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},GiHtgvCMB:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},k9mq3kzHx:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},MlOvakOFe:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},q_i0x39GY:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},Uhf_bOnbY:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},Zk2MUURgF:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"}},...addPropertyOverrides({\"DGhnh3zr7-hover\":{\"data-framer-name\":undefined},\"e9NuW7J0C-hover\":{\"data-framer-name\":undefined},\"fNwu1Xeia-hover\":{\"data-framer-name\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1042,pixelWidth:2604,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GulSXIADdyTVWw2GswIQHKx4I.png\",srcSet:\"https://framerusercontent.com/images/GulSXIADdyTVWw2GswIQHKx4I.png?scale-down-to=512 512w,https://framerusercontent.com/images/GulSXIADdyTVWw2GswIQHKx4I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GulSXIADdyTVWw2GswIQHKx4I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GulSXIADdyTVWw2GswIQHKx4I.png 2604w\"}},\"GiHtgvCMB-hover\":{\"data-framer-name\":undefined},\"k9mq3kzHx-hover\":{\"data-framer-name\":undefined},\"MlOvakOFe-hover\":{\"data-framer-name\":undefined},\"q_i0x39GY-hover\":{\"data-framer-name\":undefined},\"Uhf_bOnbY-hover\":{\"data-framer-name\":undefined},\"Zk2MUURgF-hover\":{\"data-framer-name\":undefined},DGhnh3zr7:{\"data-framer-name\":\"alliance 6\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:362,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7nMsKSgDKwekStJSw1129tXeukY.svg\",srcSet:\"https://framerusercontent.com/images/7nMsKSgDKwekStJSw1129tXeukY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/7nMsKSgDKwekStJSw1129tXeukY.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7nMsKSgDKwekStJSw1129tXeukY.svg 1280w\"}},e9NuW7J0C:{\"data-framer-name\":\"Variant 2\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:122,pixelWidth:374,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mqY1GYloZQQORiBamrjcYZOwJ0.svg\"}},GiHtgvCMB:{\"data-framer-name\":\"alliance3\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:904,pixelWidth:2229,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rpeZrBEWGeqjRPNqcEljICg.svg\",srcSet:\"https://framerusercontent.com/images/rpeZrBEWGeqjRPNqcEljICg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rpeZrBEWGeqjRPNqcEljICg.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rpeZrBEWGeqjRPNqcEljICg.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rpeZrBEWGeqjRPNqcEljICg.svg 2229w\"}},k9mq3kzHx:{\"data-framer-name\":\"alliance 7\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:278,pixelWidth:897,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wOUf3EtNCDWQMYrFGiTf7MgjAmY.png\",srcSet:\"https://framerusercontent.com/images/wOUf3EtNCDWQMYrFGiTf7MgjAmY.png?scale-down-to=512 512w,https://framerusercontent.com/images/wOUf3EtNCDWQMYrFGiTf7MgjAmY.png 897w\"}},MlOvakOFe:{\"data-framer-name\":\"alliance2\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:160,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/70uxc9jommknj7fM6TtcnSu7Bo.svg\",srcSet:\"https://framerusercontent.com/images/70uxc9jommknj7fM6TtcnSu7Bo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/70uxc9jommknj7fM6TtcnSu7Bo.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/70uxc9jommknj7fM6TtcnSu7Bo.svg 1280w\"}},q_i0x39GY:{\"data-framer-name\":\"alliance1\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:899,pixelWidth:3884,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/74KKPvttU1efpe2gMD4EhFQOlE.svg\",srcSet:\"https://framerusercontent.com/images/74KKPvttU1efpe2gMD4EhFQOlE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/74KKPvttU1efpe2gMD4EhFQOlE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/74KKPvttU1efpe2gMD4EhFQOlE.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/74KKPvttU1efpe2gMD4EhFQOlE.svg 3884w\"}},Uhf_bOnbY:{\"data-framer-name\":\"alliance 5\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:153,pixelWidth:518,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/9YqY4qmnFwuCO1SRP48ppynS9I.svg\",srcSet:\"https://framerusercontent.com/images/9YqY4qmnFwuCO1SRP48ppynS9I.svg?scale-down-to=512 512w,https://framerusercontent.com/images/9YqY4qmnFwuCO1SRP48ppynS9I.svg 518w\"}},Zk2MUURgF:{\"data-framer-name\":\"alliance 4\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:170,pixelWidth:656,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Es7EYfrKzEGtdxHRweVYallNQ.svg\",srcSet:\"https://framerusercontent.com/images/Es7EYfrKzEGtdxHRweVYallNQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Es7EYfrKzEGtdxHRweVYallNQ.svg 656w\"}}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ALJkQ.framer-16yray6, .framer-ALJkQ .framer-16yray6 { display: block; }\",\".framer-ALJkQ.framer-1y01xf2 { cursor: pointer; height: 200px; position: relative; width: 200px; }\",\".framer-ALJkQ.framer-v-57rnbf.framer-1y01xf2, .framer-ALJkQ.framer-v-1jptxml.framer-1y01xf2, .framer-ALJkQ.framer-v-kziwqe.framer-1y01xf2, .framer-ALJkQ.framer-v-zfgjo6.framer-1y01xf2, .framer-ALJkQ.framer-v-76ztp0.framer-1y01xf2, .framer-ALJkQ.framer-v-1ts3wbw.framer-1y01xf2, .framer-ALJkQ.framer-v-1ii3ox3.framer-1y01xf2, .framer-ALJkQ.framer-v-hqdw4q.framer-1y01xf2, .framer-ALJkQ.framer-v-1y01xf2.hover.framer-1y01xf2 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"e9NuW7J0C\":{\"layout\":[\"fixed\",\"fixed\"]},\"q_i0x39GY\":{\"layout\":[\"fixed\",\"fixed\"]},\"MlOvakOFe\":{\"layout\":[\"fixed\",\"fixed\"]},\"GiHtgvCMB\":{\"layout\":[\"fixed\",\"fixed\"]},\"Zk2MUURgF\":{\"layout\":[\"fixed\",\"fixed\"]},\"Uhf_bOnbY\":{\"layout\":[\"fixed\",\"fixed\"]},\"DGhnh3zr7\":{\"layout\":[\"fixed\",\"fixed\"]},\"k9mq3kzHx\":{\"layout\":[\"fixed\",\"fixed\"]},\"IIfJB4RZV\":{\"layout\":[\"fixed\",\"fixed\"]},\"WqspCZl_R\":{\"layout\":[\"fixed\",\"fixed\"]},\"HpX4ftMHx\":{\"layout\":[\"fixed\",\"fixed\"]},\"ga3ERd18h\":{\"layout\":[\"fixed\",\"fixed\"]},\"Fc1EzrY9G\":{\"layout\":[\"fixed\",\"fixed\"]},\"XUQKLx_YA\":{\"layout\":[\"fixed\",\"fixed\"]},\"RIRZvSZyz\":{\"layout\":[\"fixed\",\"fixed\"]},\"YKUKBdTkH\":{\"layout\":[\"fixed\",\"fixed\"]},\"VtmXXr67Z\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Xk4ppgSo7\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg8rjc6L8V=withCSS(Component,css,\"framer-ALJkQ\");export default Framerg8rjc6L8V;Framerg8rjc6L8V.displayName=\"logo1\";Framerg8rjc6L8V.defaultProps={height:200,width:200};addPropertyControls(Framerg8rjc6L8V,{variant:{options:[\"fNwu1Xeia\",\"e9NuW7J0C\",\"q_i0x39GY\",\"MlOvakOFe\",\"GiHtgvCMB\",\"Zk2MUURgF\",\"Uhf_bOnbY\",\"DGhnh3zr7\",\"k9mq3kzHx\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"alliance1\",\"alliance2\",\"alliance3\",\"alliance 4\",\"alliance 5\",\"alliance 6\",\"alliance 7\"],title:\"Variant\",type:ControlType.Enum},Xk4ppgSo7:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerg8rjc6L8V,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg8rjc6L8V\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e9NuW7J0C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q_i0x39GY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MlOvakOFe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GiHtgvCMB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Zk2MUURgF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Uhf_bOnbY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DGhnh3zr7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k9mq3kzHx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IIfJB4RZV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WqspCZl_R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HpX4ftMHx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ga3ERd18h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Fc1EzrY9G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XUQKLx_YA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RIRZvSZyz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YKUKBdTkH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VtmXXr67Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"200\",\"framerVariables\":\"{\\\"Xk4ppgSo7\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g8rjc6L8V.map", "// Generated by Framer (ae47b7e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={BiSSr3kG5:{hover:true},c8k_RizX1:{hover:true},cD0wPwhih:{hover:true},Exaf3SUWt:{hover:true},GdMraliTY:{hover:true},HtPSV1Wbn:{hover:true},ma3HeRlGY:{hover:true},NiDTWGQcP:{hover:true},oES3A909W:{hover:true},oUW6vjPuq:{hover:true},phKNY_MCz:{hover:true},rYmsMOQjO:{hover:true},SxOLBPISY:{hover:true},tF_uXFbwZ:{hover:true},UOyRvuFwg:{hover:true},V0mA53s9E:{hover:true},W5SpkQZVU:{hover:true},zOnfgP72l:{hover:true}};const cycleOrder=[\"V0mA53s9E\",\"SxOLBPISY\",\"NiDTWGQcP\",\"rYmsMOQjO\",\"GdMraliTY\",\"zOnfgP72l\",\"Exaf3SUWt\",\"HtPSV1Wbn\",\"ma3HeRlGY\",\"phKNY_MCz\",\"BiSSr3kG5\",\"tF_uXFbwZ\",\"oES3A909W\",\"W5SpkQZVU\",\"oUW6vjPuq\",\"c8k_RizX1\",\"cD0wPwhih\",\"UOyRvuFwg\"];const serializationHash=\"framer-aR2dS\";const variantClassNames={BiSSr3kG5:\"framer-v-1txq4uu\",c8k_RizX1:\"framer-v-1n6bfv0\",cD0wPwhih:\"framer-v-14l66n6\",Exaf3SUWt:\"framer-v-vl7kbu\",GdMraliTY:\"framer-v-aob7fy\",HtPSV1Wbn:\"framer-v-o565rj\",ma3HeRlGY:\"framer-v-44bhpb\",NiDTWGQcP:\"framer-v-5xg00t\",oES3A909W:\"framer-v-opxesf\",oUW6vjPuq:\"framer-v-88zrd6\",phKNY_MCz:\"framer-v-xfiiad\",rYmsMOQjO:\"framer-v-1huuljj\",SxOLBPISY:\"framer-v-1w0ipfo\",tF_uXFbwZ:\"framer-v-dpxey5\",UOyRvuFwg:\"framer-v-1idgu91\",V0mA53s9E:\"framer-v-6isubo\",W5SpkQZVU:\"framer-v-eom5cv\",zOnfgP72l:\"framer-v-1w1sm70\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"V0mA53s9E\",\"Variant 10\":\"phKNY_MCz\",\"Variant 11\":\"BiSSr3kG5\",\"Variant 12\":\"tF_uXFbwZ\",\"Variant 13\":\"oES3A909W\",\"Variant 14\":\"W5SpkQZVU\",\"Variant 15\":\"oUW6vjPuq\",\"Variant 16\":\"c8k_RizX1\",\"Variant 17\":\"cD0wPwhih\",\"Variant 18\":\"UOyRvuFwg\",\"Variant 2\":\"SxOLBPISY\",\"Variant 3\":\"NiDTWGQcP\",\"Variant 4\":\"rYmsMOQjO\",\"Variant 5\":\"GdMraliTY\",\"Variant 6\":\"zOnfgP72l\",\"Variant 7\":\"Exaf3SUWt\",\"Variant 8\":\"HtPSV1Wbn\",\"Variant 9\":\"ma3HeRlGY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"V0mA53s9E\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"V0mA53s9E\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:3828,pixelWidth:4791,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ceXWX1k3a6TtoqxEgvbe1QCzymc.png\",srcSet:\"https://framerusercontent.com/images/ceXWX1k3a6TtoqxEgvbe1QCzymc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ceXWX1k3a6TtoqxEgvbe1QCzymc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ceXWX1k3a6TtoqxEgvbe1QCzymc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ceXWX1k3a6TtoqxEgvbe1QCzymc.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ceXWX1k3a6TtoqxEgvbe1QCzymc.png 4791w\"},className:cx(scopingClassNames,\"framer-6isubo\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"V0mA53s9E\",ref:ref??ref1,style:{filter:\"none\",WebkitFilter:\"none\",...style},variants:{\"BiSSr3kG5-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"c8k_RizX1-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"cD0wPwhih-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"Exaf3SUWt-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"GdMraliTY-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"HtPSV1Wbn-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"ma3HeRlGY-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"NiDTWGQcP-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"oES3A909W-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"oUW6vjPuq-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"phKNY_MCz-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"rYmsMOQjO-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"SxOLBPISY-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"tF_uXFbwZ-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"UOyRvuFwg-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"V0mA53s9E-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"W5SpkQZVU-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},\"zOnfgP72l-hover\":{filter:\"contrast(1)\",WebkitFilter:\"contrast(1)\"},BiSSr3kG5:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},c8k_RizX1:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},cD0wPwhih:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},Exaf3SUWt:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},GdMraliTY:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},HtPSV1Wbn:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},ma3HeRlGY:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},NiDTWGQcP:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},oES3A909W:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},oUW6vjPuq:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},phKNY_MCz:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},rYmsMOQjO:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},SxOLBPISY:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},tF_uXFbwZ:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},UOyRvuFwg:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},W5SpkQZVU:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},zOnfgP72l:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"}},...addPropertyOverrides({\"BiSSr3kG5-hover\":{\"data-framer-name\":undefined},\"c8k_RizX1-hover\":{\"data-framer-name\":undefined},\"cD0wPwhih-hover\":{\"data-framer-name\":undefined},\"Exaf3SUWt-hover\":{\"data-framer-name\":undefined},\"GdMraliTY-hover\":{\"data-framer-name\":undefined},\"HtPSV1Wbn-hover\":{\"data-framer-name\":undefined},\"ma3HeRlGY-hover\":{\"data-framer-name\":undefined},\"NiDTWGQcP-hover\":{\"data-framer-name\":undefined},\"oES3A909W-hover\":{\"data-framer-name\":undefined},\"oUW6vjPuq-hover\":{\"data-framer-name\":undefined},\"phKNY_MCz-hover\":{\"data-framer-name\":undefined},\"rYmsMOQjO-hover\":{\"data-framer-name\":undefined},\"SxOLBPISY-hover\":{\"data-framer-name\":undefined},\"tF_uXFbwZ-hover\":{\"data-framer-name\":undefined},\"UOyRvuFwg-hover\":{\"data-framer-name\":undefined},\"V0mA53s9E-hover\":{\"data-framer-name\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:3828,pixelWidth:4791,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/gOdVbcLiPrJsoQKK34IqNbiHOQk.png\",srcSet:\"https://framerusercontent.com/images/gOdVbcLiPrJsoQKK34IqNbiHOQk.png?scale-down-to=512 512w,https://framerusercontent.com/images/gOdVbcLiPrJsoQKK34IqNbiHOQk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gOdVbcLiPrJsoQKK34IqNbiHOQk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gOdVbcLiPrJsoQKK34IqNbiHOQk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/gOdVbcLiPrJsoQKK34IqNbiHOQk.png 4791w\"}},\"W5SpkQZVU-hover\":{\"data-framer-name\":undefined},\"zOnfgP72l-hover\":{\"data-framer-name\":undefined},BiSSr3kG5:{\"data-framer-name\":\"Variant 11\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:136,pixelWidth:510,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iYpGSOTLwdxFHi0SJ3jWsJr4u4.svg\"}},c8k_RizX1:{\"data-framer-name\":\"Variant 16\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kPYw9E9bZdt58GbZ1LNJeM8rZk.png\"}},cD0wPwhih:{\"data-framer-name\":\"Variant 17\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6eJLdgvnn89MZwPk4NIj4zMA7PE.png\"}},Exaf3SUWt:{\"data-framer-name\":\"Variant 7\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:372,pixelWidth:670,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hstAoZ96C9EvpZcljb30nUfBw.png\",srcSet:\"https://framerusercontent.com/images/hstAoZ96C9EvpZcljb30nUfBw.png?scale-down-to=512 512w,https://framerusercontent.com/images/hstAoZ96C9EvpZcljb30nUfBw.png 670w\"}},GdMraliTY:{\"data-framer-name\":\"Variant 5\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:220,pixelWidth:645,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/A52rJIYhnDqWOqZItBzmpvV8.png\",srcSet:\"https://framerusercontent.com/images/A52rJIYhnDqWOqZItBzmpvV8.png?scale-down-to=512 512w,https://framerusercontent.com/images/A52rJIYhnDqWOqZItBzmpvV8.png 645w\"}},HtPSV1Wbn:{\"data-framer-name\":\"Variant 8\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:323,pixelWidth:772,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/lN48weQ3yOpTfBz6K7fMw60wcU.png\",srcSet:\"https://framerusercontent.com/images/lN48weQ3yOpTfBz6K7fMw60wcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/lN48weQ3yOpTfBz6K7fMw60wcU.png 772w\"}},ma3HeRlGY:{\"data-framer-name\":\"Variant 9\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:375,pixelWidth:666,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/3WB0qmXvnfCChDMHu50oSCSqea4.png\",srcSet:\"https://framerusercontent.com/images/3WB0qmXvnfCChDMHu50oSCSqea4.png?scale-down-to=512 512w,https://framerusercontent.com/images/3WB0qmXvnfCChDMHu50oSCSqea4.png 666w\"}},NiDTWGQcP:{\"data-framer-name\":\"Variant 3\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:230,pixelWidth:582,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/EzcDkd9FL0o8bkArNftQiDAcg0U.svg\",srcSet:\"https://framerusercontent.com/images/EzcDkd9FL0o8bkArNftQiDAcg0U.svg?scale-down-to=512 512w,https://framerusercontent.com/images/EzcDkd9FL0o8bkArNftQiDAcg0U.svg 582w\"}},oES3A909W:{\"data-framer-name\":\"Variant 13\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:433,pixelWidth:562,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/nA3CQDAWCADdH9fFszruWnU4.png\",srcSet:\"https://framerusercontent.com/images/nA3CQDAWCADdH9fFszruWnU4.png?scale-down-to=512 512w,https://framerusercontent.com/images/nA3CQDAWCADdH9fFszruWnU4.png 562w\"}},oUW6vjPuq:{\"data-framer-name\":\"Variant 15\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:297,pixelWidth:839,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/X24iKuXKELquZUKztVSRCnxWc.png\",srcSet:\"https://framerusercontent.com/images/X24iKuXKELquZUKztVSRCnxWc.png?scale-down-to=512 512w,https://framerusercontent.com/images/X24iKuXKELquZUKztVSRCnxWc.png 839w\"}},phKNY_MCz:{\"data-framer-name\":\"Variant 10\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vjKpTOyz0PVa3rqFSL7ebWLdg.png\"}},rYmsMOQjO:{\"data-framer-name\":\"Variant 4\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:281,pixelWidth:228,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DXdHVAnw4P8Oiwkm48c724VdmAE.svg\"}},SxOLBPISY:{\"data-framer-name\":\"Variant 2\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:540,pixelWidth:571,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/39pQdkc4AL7iOq2aXESN6FpQiI.svg\",srcSet:\"https://framerusercontent.com/images/39pQdkc4AL7iOq2aXESN6FpQiI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/39pQdkc4AL7iOq2aXESN6FpQiI.svg 571w\"}},tF_uXFbwZ:{\"data-framer-name\":\"Variant 12\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:225,pixelWidth:225,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RPE4d7F0ruh8y5KnZyBPUVQFY.png\"}},UOyRvuFwg:{\"data-framer-name\":\"Variant 18\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:522,pixelWidth:478,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/LHOacDmKKjkW14bJgyat6eWRms.png\",srcSet:\"https://framerusercontent.com/images/LHOacDmKKjkW14bJgyat6eWRms.png 478w\"}},W5SpkQZVU:{\"data-framer-name\":\"Variant 14\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:225,pixelWidth:225,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YAswzsoQBtTIp8OnSkvmKFU27WI.png\"}},zOnfgP72l:{\"data-framer-name\":\"Variant 6\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:408,pixelWidth:612,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/w5XQbqKl6wA5qoDKXVygf2HmGiA.png\",srcSet:\"https://framerusercontent.com/images/w5XQbqKl6wA5qoDKXVygf2HmGiA.png?scale-down-to=512 512w,https://framerusercontent.com/images/w5XQbqKl6wA5qoDKXVygf2HmGiA.png 612w\"}}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aR2dS.framer-ns0ldx, .framer-aR2dS .framer-ns0ldx { display: block; }\",\".framer-aR2dS.framer-6isubo { cursor: pointer; height: 200px; position: relative; width: 200px; }\",\".framer-aR2dS.framer-v-1w0ipfo.framer-6isubo, .framer-aR2dS.framer-v-5xg00t.framer-6isubo, .framer-aR2dS.framer-v-1huuljj.framer-6isubo, .framer-aR2dS.framer-v-aob7fy.framer-6isubo, .framer-aR2dS.framer-v-1w1sm70.framer-6isubo, .framer-aR2dS.framer-v-vl7kbu.framer-6isubo, .framer-aR2dS.framer-v-o565rj.framer-6isubo, .framer-aR2dS.framer-v-44bhpb.framer-6isubo, .framer-aR2dS.framer-v-xfiiad.framer-6isubo, .framer-aR2dS.framer-v-1txq4uu.framer-6isubo, .framer-aR2dS.framer-v-dpxey5.framer-6isubo, .framer-aR2dS.framer-v-opxesf.framer-6isubo, .framer-aR2dS.framer-v-eom5cv.framer-6isubo, .framer-aR2dS.framer-v-88zrd6.framer-6isubo, .framer-aR2dS.framer-v-1n6bfv0.framer-6isubo, .framer-aR2dS.framer-v-14l66n6.framer-6isubo, .framer-aR2dS.framer-v-1idgu91.framer-6isubo, .framer-aR2dS.framer-v-6isubo.hover.framer-6isubo { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SxOLBPISY\":{\"layout\":[\"fixed\",\"fixed\"]},\"NiDTWGQcP\":{\"layout\":[\"fixed\",\"fixed\"]},\"rYmsMOQjO\":{\"layout\":[\"fixed\",\"fixed\"]},\"GdMraliTY\":{\"layout\":[\"fixed\",\"fixed\"]},\"zOnfgP72l\":{\"layout\":[\"fixed\",\"fixed\"]},\"Exaf3SUWt\":{\"layout\":[\"fixed\",\"fixed\"]},\"HtPSV1Wbn\":{\"layout\":[\"fixed\",\"fixed\"]},\"ma3HeRlGY\":{\"layout\":[\"fixed\",\"fixed\"]},\"phKNY_MCz\":{\"layout\":[\"fixed\",\"fixed\"]},\"BiSSr3kG5\":{\"layout\":[\"fixed\",\"fixed\"]},\"tF_uXFbwZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"oES3A909W\":{\"layout\":[\"fixed\",\"fixed\"]},\"W5SpkQZVU\":{\"layout\":[\"fixed\",\"fixed\"]},\"oUW6vjPuq\":{\"layout\":[\"fixed\",\"fixed\"]},\"c8k_RizX1\":{\"layout\":[\"fixed\",\"fixed\"]},\"cD0wPwhih\":{\"layout\":[\"fixed\",\"fixed\"]},\"UOyRvuFwg\":{\"layout\":[\"fixed\",\"fixed\"]},\"opWfOJ0ap\":{\"layout\":[\"fixed\",\"fixed\"]},\"RoWNzaHeO\":{\"layout\":[\"fixed\",\"fixed\"]},\"r28jtagjl\":{\"layout\":[\"fixed\",\"fixed\"]},\"n12JFiUcf\":{\"layout\":[\"fixed\",\"fixed\"]},\"nNlrpa9_l\":{\"layout\":[\"fixed\",\"fixed\"]},\"fefnGLQPP\":{\"layout\":[\"fixed\",\"fixed\"]},\"MY79fRj4o\":{\"layout\":[\"fixed\",\"fixed\"]},\"Hszmzco7C\":{\"layout\":[\"fixed\",\"fixed\"]},\"ApQpeLpB6\":{\"layout\":[\"fixed\",\"fixed\"]},\"QeV420VTU\":{\"layout\":[\"fixed\",\"fixed\"]},\"VtVExhCSz\":{\"layout\":[\"fixed\",\"fixed\"]},\"n9DR5599d\":{\"layout\":[\"fixed\",\"fixed\"]},\"FPqxfFfx0\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y1qQBs3id\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ntxh2xXox\":{\"layout\":[\"fixed\",\"fixed\"]},\"VsC8kOnGl\":{\"layout\":[\"fixed\",\"fixed\"]},\"pImAzwh7v\":{\"layout\":[\"fixed\",\"fixed\"]},\"GkZwqbtTl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerz6jt8uwZx=withCSS(Component,css,\"framer-aR2dS\");export default Framerz6jt8uwZx;Framerz6jt8uwZx.displayName=\"logo2\";Framerz6jt8uwZx.defaultProps={height:200,width:200};addPropertyControls(Framerz6jt8uwZx,{variant:{options:[\"V0mA53s9E\",\"SxOLBPISY\",\"NiDTWGQcP\",\"rYmsMOQjO\",\"GdMraliTY\",\"zOnfgP72l\",\"Exaf3SUWt\",\"HtPSV1Wbn\",\"ma3HeRlGY\",\"phKNY_MCz\",\"BiSSr3kG5\",\"tF_uXFbwZ\",\"oES3A909W\",\"W5SpkQZVU\",\"oUW6vjPuq\",\"c8k_RizX1\",\"cD0wPwhih\",\"UOyRvuFwg\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\",\"Variant 11\",\"Variant 12\",\"Variant 13\",\"Variant 14\",\"Variant 15\",\"Variant 16\",\"Variant 17\",\"Variant 18\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerz6jt8uwZx,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerz6jt8uwZx\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SxOLBPISY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NiDTWGQcP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rYmsMOQjO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GdMraliTY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zOnfgP72l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Exaf3SUWt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HtPSV1Wbn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ma3HeRlGY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"phKNY_MCz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BiSSr3kG5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tF_uXFbwZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oES3A909W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W5SpkQZVU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oUW6vjPuq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c8k_RizX1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cD0wPwhih\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UOyRvuFwg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"opWfOJ0ap\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RoWNzaHeO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r28jtagjl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n12JFiUcf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nNlrpa9_l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fefnGLQPP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MY79fRj4o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Hszmzco7C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ApQpeLpB6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QeV420VTU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VtVExhCSz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n9DR5599d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FPqxfFfx0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y1qQBs3id\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ntxh2xXox\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VsC8kOnGl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pImAzwh7v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GkZwqbtTl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./z6jt8uwZx.map", "// Generated by Framer (ae47b7e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Logo3 from\"https://framerusercontent.com/modules/aNGvk6jPVOn9tzJ0Sbwn/oiObCcIe3BVTvUwo7sf2/g3tmYArhc.js\";import Logo1 from\"https://framerusercontent.com/modules/k7g9FwNvC6iqOER3ZzJd/tjVDR9DqNmJqSKkif7UV/g8rjc6L8V.js\";import Logo2 from\"https://framerusercontent.com/modules/stk7d5a9qHXD2k5Hjnzp/ziw0ILs502DMpDGaveJE/z6jt8uwZx.js\";const Logo3Fonts=getFonts(Logo3);const TickerFonts=getFonts(Ticker);const Logo2Fonts=getFonts(Logo2);const Logo1Fonts=getFonts(Logo1);const Ticker1Fonts=getFonts(Ticker1);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"nDuoSaKwx\",\"D8xdV_pDs\",\"WTs_dvHXj\",\"MW0rYZ68i\",\"g22ddliDh\",\"ghA1oL7EB\"];const serializationHash=\"framer-bWgfa\";const variantClassNames={D8xdV_pDs:\"framer-v-16h63oc\",g22ddliDh:\"framer-v-1ym23j9\",ghA1oL7EB:\"framer-v-1o89at0\",MW0rYZ68i:\"framer-v-1wm5r0l\",nDuoSaKwx:\"framer-v-2xnnfd\",WTs_dvHXj:\"framer-v-pq483r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:60,delay:.8,mass:1,stiffness:100,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"partner 1\":\"D8xdV_pDs\",\"partner 2\":\"g22ddliDh\",\"partner 3\":\"ghA1oL7EB\",\"Variant 3\":\"WTs_dvHXj\",\"Variant 4\":\"MW0rYZ68i\",customers:\"nDuoSaKwx\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nDuoSaKwx\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nDuoSaKwx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"g22ddliDh\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"D8xdV_pDs\")return true;return false;};const isDisplayed2=()=>{if([\"D8xdV_pDs\",\"WTs_dvHXj\",\"MW0rYZ68i\",\"g22ddliDh\",\"ghA1oL7EB\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"ghA1oL7EB\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"WTs_dvHXj\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-2xnnfd\",className,classNames),\"data-framer-name\":\"customers\",layoutDependency:layoutDependency,layoutId:\"nDuoSaKwx\",ref:ref??ref1,style:{...style},...addPropertyOverrides({D8xdV_pDs:{\"data-framer-name\":\"partner 1\"},g22ddliDh:{\"data-framer-name\":\"partner 2\"},ghA1oL7EB:{\"data-framer-name\":\"partner 3\"},MW0rYZ68i:{\"data-framer-name\":\"Variant 4\"},WTs_dvHXj:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11yvgmr-container\",layoutDependency:layoutDependency,layoutId:\"oSJMfWeeZ-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"oSJMfWeeZ\",layoutId:\"oSJMfWeeZ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-145a00b-container\",\"data-framer-name\":\"logo 4\",layoutDependency:layoutDependency,layoutId:\"ivM4YnrXD-container\",name:\"logo 4\",children:/*#__PURE__*/_jsx(Logo3,{height:\"100%\",id:\"ivM4YnrXD\",layoutId:\"ivM4YnrXD\",name:\"logo 4\",style:{height:\"100%\",width:\"100%\"},variant:\"b0YUaB2xQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mfjgg-container\",\"data-framer-name\":\"logo 4\",layoutDependency:layoutDependency,layoutId:\"P9WVKPRlm-container\",name:\"logo 4\",children:/*#__PURE__*/_jsx(Logo3,{height:\"100%\",id:\"P9WVKPRlm\",layoutId:\"P9WVKPRlm\",name:\"logo 4\",style:{height:\"100%\",width:\"100%\"},variant:\"ycQ2ATDnk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-145a00b-container\",\"data-framer-name\":\"logo 4\",layoutDependency:layoutDependency,layoutId:\"ivM4YnrXD-container\",name:\"logo 4\",children:/*#__PURE__*/_jsx(Logo3,{height:\"100%\",id:\"ivM4YnrXD\",layoutId:\"ivM4YnrXD\",name:\"logo 4\",style:{height:\"100%\",width:\"100%\"},variant:\"b0YUaB2xQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mfjgg-container\",\"data-framer-name\":\"logo 4\",layoutDependency:layoutDependency,layoutId:\"P9WVKPRlm-container\",name:\"logo 4\",children:/*#__PURE__*/_jsx(Logo3,{height:\"100%\",id:\"P9WVKPRlm\",layoutId:\"P9WVKPRlm\",name:\"logo 4\",style:{height:\"100%\",width:\"100%\"},variant:\"ycQ2ATDnk\",width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fgbzv6-container\",layoutDependency:layoutDependency,layoutId:\"cK3pQ9X0v-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:43,height:\"100%\",hoverFactor:1,id:\"cK3pQ9X0v\",layoutId:\"cK3pQ9X0v\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t8ugjw-container\",layoutDependency:layoutDependency,layoutId:\"xb3xpr01R-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"xb3xpr01R\",layoutId:\"xb3xpr01R\",style:{height:\"100%\",width:\"100%\"},variant:\"SxOLBPISY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16r6lki-container\",layoutDependency:layoutDependency,layoutId:\"c8ulB0dEZ-container\",children:/*#__PURE__*/_jsx(Logo3,{height:\"100%\",id:\"c8ulB0dEZ\",layoutId:\"c8ulB0dEZ\",style:{height:\"100%\",width:\"100%\"},variant:\"XfHiqscWp\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1emq52x-container\",layoutDependency:layoutDependency,layoutId:\"j2CaoXQ6i-container\",children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"j2CaoXQ6i\",layoutId:\"j2CaoXQ6i\",style:{height:\"100%\",width:\"100%\"},variant:\"e9NuW7J0C\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h0sl1v-container\",layoutDependency:layoutDependency,layoutId:\"CRT_ycAq7-container\",children:/*#__PURE__*/_jsx(Logo3,{height:\"100%\",id:\"CRT_ycAq7\",layoutId:\"CRT_ycAq7\",style:{height:\"100%\",width:\"100%\"},variant:\"PgBWd7oSJ\",width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16y65mp-container\",layoutDependency:layoutDependency,layoutId:\"MPZyG9DD4-container\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:88,height:\"100%\",hoverFactor:1,id:\"MPZyG9DD4\",layoutId:\"MPZyG9DD4\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wgioo2-container\",layoutDependency:layoutDependency,layoutId:\"GGi2lmJtt-container\",children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"GGi2lmJtt\",layoutId:\"GGi2lmJtt\",style:{height:\"100%\",width:\"100%\"},variant:\"fNwu1Xeia\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gor9s0-container\",layoutDependency:layoutDependency,layoutId:\"AF_6GEPMM-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"AF_6GEPMM\",layoutId:\"AF_6GEPMM\",style:{height:\"100%\",width:\"100%\"},variant:\"V0mA53s9E\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-al7ct1-container\",layoutDependency:layoutDependency,layoutId:\"qpLmocrmx-container\",children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"qpLmocrmx\",layoutId:\"qpLmocrmx\",style:{height:\"100%\",width:\"100%\"},variant:\"DGhnh3zr7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pr71cy-container\",layoutDependency:layoutDependency,layoutId:\"poKXKTbgt-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"poKXKTbgt\",layoutId:\"poKXKTbgt\",style:{height:\"100%\",width:\"100%\"},variant:\"rYmsMOQjO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dq38fb-container\",layoutDependency:layoutDependency,layoutId:\"tbsbpV1F9-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"tbsbpV1F9\",layoutId:\"tbsbpV1F9\",style:{height:\"100%\",width:\"100%\"},variant:\"GdMraliTY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-on5sbq-container\",layoutDependency:layoutDependency,layoutId:\"AFfqMzpta-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"AFfqMzpta\",layoutId:\"AFfqMzpta\",style:{height:\"100%\",width:\"100%\"},variant:\"zOnfgP72l\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iz8avz-container\",layoutDependency:layoutDependency,layoutId:\"qHWRbWiLd-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"qHWRbWiLd\",layoutId:\"qHWRbWiLd\",style:{height:\"100%\",width:\"100%\"},variant:\"Exaf3SUWt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lll5s6-container\",layoutDependency:layoutDependency,layoutId:\"xfX5dwOun-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"xfX5dwOun\",layoutId:\"xfX5dwOun\",style:{height:\"100%\",width:\"100%\"},variant:\"HtPSV1Wbn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wz2y7r-container\",layoutDependency:layoutDependency,layoutId:\"rSIni7wj7-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"rSIni7wj7\",layoutId:\"rSIni7wj7\",style:{height:\"100%\",width:\"100%\"},variant:\"ma3HeRlGY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14uqo5x-container\",layoutDependency:layoutDependency,layoutId:\"f9lx7nrmw-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"f9lx7nrmw\",layoutId:\"f9lx7nrmw\",style:{height:\"100%\",width:\"100%\"},variant:\"BiSSr3kG5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wdxx6i-container\",layoutDependency:layoutDependency,layoutId:\"zpg3Q7EC6-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"zpg3Q7EC6\",layoutId:\"zpg3Q7EC6\",style:{height:\"100%\",width:\"100%\"},variant:\"tF_uXFbwZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dyqkjb-container\",layoutDependency:layoutDependency,layoutId:\"DWdAMT9sg-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"DWdAMT9sg\",layoutId:\"DWdAMT9sg\",style:{height:\"100%\",width:\"100%\"},variant:\"oES3A909W\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s19k8p-container\",layoutDependency:layoutDependency,layoutId:\"xSHnY7rBo-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"xSHnY7rBo\",layoutId:\"xSHnY7rBo\",style:{height:\"100%\",width:\"100%\"},variant:\"W5SpkQZVU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-svwb4e-container\",layoutDependency:layoutDependency,layoutId:\"vD7UK0Ij5-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"vD7UK0Ij5\",layoutId:\"vD7UK0Ij5\",style:{height:\"100%\",width:\"100%\"},variant:\"oUW6vjPuq\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h83lui-container\",layoutDependency:layoutDependency,layoutId:\"Kt1e0CKFh-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"Kt1e0CKFh\",layoutId:\"Kt1e0CKFh\",style:{height:\"100%\",width:\"100%\"},variant:\"c8k_RizX1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p9slpi-container\",layoutDependency:layoutDependency,layoutId:\"HmWgSucxw-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"HmWgSucxw\",layoutId:\"HmWgSucxw\",style:{height:\"100%\",width:\"100%\"},variant:\"cD0wPwhih\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wtf5pj-container\",layoutDependency:layoutDependency,layoutId:\"TqLZZyliX-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"TqLZZyliX\",layoutId:\"TqLZZyliX\",style:{height:\"100%\",width:\"100%\"},variant:\"UOyRvuFwg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-den5zt-container\",layoutDependency:layoutDependency,layoutId:\"WWiH10Ipk-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"WWiH10Ipk\",layoutId:\"WWiH10Ipk\",style:{height:\"100%\",width:\"100%\"},variant:\"phKNY_MCz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mllnpw-container\",layoutDependency:layoutDependency,layoutId:\"NuxddZuKY-container\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"NuxddZuKY\",layoutId:\"NuxddZuKY\",style:{height:\"100%\",width:\"100%\"},variant:\"NiDTWGQcP\",width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1msghkm-container\",layoutDependency:layoutDependency,layoutId:\"lbCbpEtDy-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:55,height:\"100%\",hoverFactor:1,id:\"lbCbpEtDy\",layoutId:\"lbCbpEtDy\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7e5cdj-container\",\"data-framer-name\":\"logo 4\",layoutDependency:layoutDependency,layoutId:\"k7mKmT2SY-container\",name:\"logo 4\",children:/*#__PURE__*/_jsx(Logo3,{height:\"100%\",id:\"k7mKmT2SY\",layoutId:\"k7mKmT2SY\",name:\"logo 4\",style:{height:\"100%\",width:\"100%\"},variant:\"I4xgvG9rI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7e5cdj-container\",\"data-framer-name\":\"logo 4\",layoutDependency:layoutDependency,layoutId:\"k7mKmT2SY-container\",name:\"logo 4\",children:/*#__PURE__*/_jsx(Logo3,{height:\"100%\",id:\"k7mKmT2SY\",layoutId:\"k7mKmT2SY\",name:\"logo 4\",style:{height:\"100%\",width:\"100%\"},variant:\"I4xgvG9rI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7e5cdj-container\",\"data-framer-name\":\"logo 4\",layoutDependency:layoutDependency,layoutId:\"k7mKmT2SY-container\",name:\"logo 4\",children:/*#__PURE__*/_jsx(Logo3,{height:\"100%\",id:\"k7mKmT2SY\",layoutId:\"k7mKmT2SY\",name:\"logo 4\",style:{height:\"100%\",width:\"100%\"},variant:\"I4xgvG9rI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7e5cdj-container\",\"data-framer-name\":\"logo 4\",layoutDependency:layoutDependency,layoutId:\"k7mKmT2SY-container\",name:\"logo 4\",children:/*#__PURE__*/_jsx(Logo3,{height:\"100%\",id:\"k7mKmT2SY\",layoutId:\"k7mKmT2SY\",name:\"logo 4\",style:{height:\"100%\",width:\"100%\"},variant:\"I4xgvG9rI\",width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13jjmg8-container\",layoutDependency:layoutDependency,layoutId:\"GK7AF4fAg-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"GK7AF4fAg\",layoutId:\"GK7AF4fAg\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ayk19s-container\",layoutDependency:layoutDependency,layoutId:\"nj464UTzu-container\",children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"nj464UTzu\",layoutId:\"nj464UTzu\",style:{height:\"100%\",width:\"100%\"},variant:\"MlOvakOFe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ys21bv-container\",layoutDependency:layoutDependency,layoutId:\"gyJwDtMIe-container\",children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"gyJwDtMIe\",layoutId:\"gyJwDtMIe\",style:{height:\"100%\",width:\"100%\"},variant:\"q_i0x39GY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hujcpr-container\",layoutDependency:layoutDependency,layoutId:\"abcA36QSV-container\",children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"abcA36QSV\",layoutId:\"abcA36QSV\",style:{height:\"100%\",width:\"100%\"},variant:\"GiHtgvCMB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1omwsms-container\",layoutDependency:layoutDependency,layoutId:\"ZCTwiUu2u-container\",children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"ZCTwiUu2u\",layoutId:\"ZCTwiUu2u\",style:{height:\"100%\",width:\"100%\"},variant:\"Uhf_bOnbY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-schwgc-container\",layoutDependency:layoutDependency,layoutId:\"VjinwZeOE-container\",children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"VjinwZeOE\",layoutId:\"VjinwZeOE\",style:{height:\"100%\",width:\"100%\"},variant:\"DGhnh3zr7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pywvtf-container\",layoutDependency:layoutDependency,layoutId:\"gLk0EoN1Y-container\",children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"gLk0EoN1Y\",layoutId:\"gLk0EoN1Y\",style:{height:\"100%\",width:\"100%\"},variant:\"k9mq3kzHx\",width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bWgfa.framer-1ctze6f, .framer-bWgfa .framer-1ctze6f { display: block; }\",\".framer-bWgfa.framer-2xnnfd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 360px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-bWgfa .framer-11yvgmr-container, .framer-bWgfa .framer-1fgbzv6-container, .framer-bWgfa .framer-1msghkm-container, .framer-bWgfa .framer-13jjmg8-container { flex: none; height: 200px; position: relative; width: 829px; }\",\".framer-bWgfa .framer-145a00b-container, .framer-bWgfa .framer-1mfjgg-container, .framer-bWgfa .framer-t8ugjw-container, .framer-bWgfa .framer-16r6lki-container, .framer-bWgfa .framer-1emq52x-container, .framer-bWgfa .framer-h0sl1v-container, .framer-bWgfa .framer-1wgioo2-container, .framer-bWgfa .framer-1gor9s0-container, .framer-bWgfa .framer-al7ct1-container, .framer-bWgfa .framer-1pr71cy-container, .framer-bWgfa .framer-dq38fb-container, .framer-bWgfa .framer-on5sbq-container, .framer-bWgfa .framer-iz8avz-container, .framer-bWgfa .framer-1lll5s6-container, .framer-bWgfa .framer-1wz2y7r-container, .framer-bWgfa .framer-14uqo5x-container, .framer-bWgfa .framer-1wdxx6i-container, .framer-bWgfa .framer-dyqkjb-container, .framer-bWgfa .framer-1s19k8p-container, .framer-bWgfa .framer-svwb4e-container, .framer-bWgfa .framer-1h83lui-container, .framer-bWgfa .framer-p9slpi-container, .framer-bWgfa .framer-wtf5pj-container, .framer-bWgfa .framer-den5zt-container, .framer-bWgfa .framer-1mllnpw-container, .framer-bWgfa .framer-7e5cdj-container, .framer-bWgfa .framer-1ayk19s-container, .framer-bWgfa .framer-1ys21bv-container, .framer-bWgfa .framer-hujcpr-container, .framer-bWgfa .framer-1omwsms-container, .framer-bWgfa .framer-schwgc-container, .framer-bWgfa .framer-1pywvtf-container { height: 200px; position: relative; width: 200px; }\",\".framer-bWgfa .framer-16y65mp-container { flex: none; height: 200px; position: relative; width: 828px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bWgfa.framer-2xnnfd { gap: 0px; } .framer-bWgfa.framer-2xnnfd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bWgfa.framer-2xnnfd > :first-child { margin-left: 0px; } .framer-bWgfa.framer-2xnnfd > :last-child { margin-right: 0px; } }\",\".framer-bWgfa.framer-v-16h63oc .framer-1fgbzv6-container { order: 1; }\",\".framer-bWgfa.framer-v-pq483r .framer-13jjmg8-container { order: 4; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 360\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"D8xdV_pDs\":{\"layout\":[\"fixed\",\"fixed\"]},\"WTs_dvHXj\":{\"layout\":[\"fixed\",\"fixed\"]},\"MW0rYZ68i\":{\"layout\":[\"fixed\",\"fixed\"]},\"g22ddliDh\":{\"layout\":[\"fixed\",\"fixed\"]},\"ghA1oL7EB\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjY8PSKHmT=withCSS(Component,css,\"framer-bWgfa\");export default FramerjY8PSKHmT;FramerjY8PSKHmT.displayName=\"logo\";FramerjY8PSKHmT.defaultProps={height:360,width:1200};addPropertyControls(FramerjY8PSKHmT,{variant:{options:[\"nDuoSaKwx\",\"D8xdV_pDs\",\"WTs_dvHXj\",\"MW0rYZ68i\",\"g22ddliDh\",\"ghA1oL7EB\"],optionTitles:[\"customers\",\"partner 1\",\"Variant 3\",\"Variant 4\",\"partner 2\",\"partner 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjY8PSKHmT,[{explicitInter:true,fonts:[]},...Logo3Fonts,...TickerFonts,...Logo2Fonts,...Logo1Fonts,...Ticker1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjY8PSKHmT\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"360\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D8xdV_pDs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WTs_dvHXj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MW0rYZ68i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g22ddliDh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ghA1oL7EB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jY8PSKHmT.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", "j", "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", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "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", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "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", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "Framerg3tmYArhc", "withCSS", "g3tmYArhc_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Xk4ppgSo7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapsynoz3", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "Framerg8rjc6L8V", "withCSS", "g8rjc6L8V_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "Framerz6jt8uwZx", "withCSS", "z6jt8uwZx_default", "addPropertyControls", "ControlType", "addFonts", "Logo3Fonts", "getFonts", "g3tmYArhc_default", "TickerFonts", "Ticker", "Logo2Fonts", "z6jt8uwZx_default", "Logo1Fonts", "g8rjc6L8V_default", "Ticker1Fonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerjY8PSKHmT", "withCSS", "jY8PSKHmT_default", "addPropertyControls", "ControlType", "addFonts"]
}
