{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/2WcXvfHLR2RFlBGFCpo6/udcnPS1LC5v4pUt1pgus/o668PLrT8.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (13d9867)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-ceimF\";const variantClassNames={jgYydd6PC:\"framer-v-ku944n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"jgYydd6PC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ku944n\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jgYydd6PC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d3slpj-container\",layoutDependency:layoutDependency,layoutId:\"C7TblNQsN-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",hoverFactor:1,id:\"C7TblNQsN\",layoutId:\"C7TblNQsN\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:72.59259772071822,intrinsicWidth:192.59260619782387,pixelHeight:98,pixelWidth:260,src:\"https://framerusercontent.com/images/5IN6qFE7ozyOnS5VwSfhRKnzHGA.png\"},className:\"framer-6hauq9\",\"data-framer-name\":\"Thoughtline_partner_van_Boflora_removebg_preview_260x98\",layoutDependency:layoutDependency,layoutId:\"meI8xpw9p\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41.481484411838984,intrinsicWidth:192.59260619782387,pixelHeight:56,pixelWidth:260,src:\"https://framerusercontent.com/images/XjFHbN0snXxGeEYhQm0rIwNutLs.png\"},className:\"framer-cy5sr3\",\"data-framer-name\":\"Thoughtline_partner_van_Mastermatch_removebg_preview_260x56\",layoutDependency:layoutDependency,layoutId:\"MXYK_OGQt\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108.14815578800878,intrinsicWidth:108.14815578800878,pixelHeight:146,pixelWidth:146,src:\"https://framerusercontent.com/images/o1eSvWgfeqfgsi80fIosFhKVvd0.png\"},className:\"framer-15zleoq\",\"data-framer-name\":\"Thoughtline_partner_van_InspirationConcepts_146x146\",layoutDependency:layoutDependency,layoutId:\"IO_FZPVyD\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:1519,pixelHeight:306,pixelWidth:1519,sizes:\"162px\",src:\"https://framerusercontent.com/images/DtJ4pAjTwrafvSKibxX4V0FDvdA.png\",srcSet:\"https://framerusercontent.com/images/DtJ4pAjTwrafvSKibxX4V0FDvdA.png?scale-down-to=512 512w,https://framerusercontent.com/images/DtJ4pAjTwrafvSKibxX4V0FDvdA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DtJ4pAjTwrafvSKibxX4V0FDvdA.png 1519w\"},className:\"framer-yi835x\",\"data-framer-name\":\"AYV.PA BIG\",layoutDependency:layoutDependency,layoutId:\"nPB5x4XVQ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:330,intrinsicWidth:1348,pixelHeight:330,pixelWidth:1348,sizes:\"162px\",src:\"https://framerusercontent.com/images/CAULgRkEc4pXfzkWAE6TvUUX4.png\",srcSet:\"https://framerusercontent.com/images/CAULgRkEc4pXfzkWAE6TvUUX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/CAULgRkEc4pXfzkWAE6TvUUX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CAULgRkEc4pXfzkWAE6TvUUX4.png 1348w\"},className:\"framer-1wke54t\",\"data-framer-name\":\"Wheels\",layoutDependency:layoutDependency,layoutId:\"msp_Z95qL\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.59259489501635,intrinsicWidth:180.00001271565844,pixelHeight:44,pixelWidth:243,src:\"https://framerusercontent.com/images/OXqVveWUtPyOThwU1FNWNbRU.png\"},className:\"framer-1pz9a35\",\"data-framer-name\":\"Thoughtline_partner_van_Pearl_IT_removebg_preview\",layoutDependency:layoutDependency,layoutId:\"VTYpKobkn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108.14815578800878,intrinsicWidth:108.14815578800878,pixelHeight:146,pixelWidth:146,src:\"https://framerusercontent.com/images/klOGLK2G6OimFTMDnYkmKbwCP18.jpg\"},className:\"framer-vnq8bz\",\"data-framer-name\":\"eline\",layoutDependency:layoutDependency,layoutId:\"zk_soPQwH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55.5555594801415,intrinsicWidth:115.55556371869432,pixelHeight:75,pixelWidth:156,src:\"https://framerusercontent.com/images/mT8KGtAzz4fk8bSApJD6VVa7A0w.png\"},className:\"framer-1ip10lj\",\"data-framer-name\":\"steptogo\",layoutDependency:layoutDependency,layoutId:\"NEzbFPmHr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108.14815578800878,intrinsicWidth:162.22223368201318,pixelHeight:146,pixelWidth:219,src:\"https://framerusercontent.com/images/ewkfHlJRujcHtoOY4cVWaXyVXU.png\"},className:\"framer-jic91l\",\"data-framer-name\":\"Thoughtline_partner_van_FrontlineSolutions\",layoutDependency:layoutDependency,layoutId:\"QVpg0vKZ4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:98.51852547811758,intrinsicWidth:80.00000565140375,pixelHeight:133,pixelWidth:108,src:\"https://framerusercontent.com/images/x3CxAbJn7NeMnZL3H1GMs0NhqE.png\"},className:\"framer-95ayws\",\"data-framer-name\":\"Thoughtline_partner_van_BrainportIndustryCampus\",layoutDependency:layoutDependency,layoutId:\"eXjtexyyQ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:37.777780446496216,intrinsicWidth:192.59260619782387,pixelHeight:51,pixelWidth:260,src:\"https://framerusercontent.com/images/F2oSvsJNdRu2bxOocKU9zYrwDc.png\"},className:\"framer-1a6q2l3\",\"data-framer-name\":\"Thoughtline_partner_van_thuisbasisbrabant\",layoutDependency:layoutDependency,layoutId:\"f6XgGfB2S\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108.14815578800878,intrinsicWidth:192.59260619782387,pixelHeight:146,pixelWidth:260,src:\"https://framerusercontent.com/images/uKddExbdRX5XHwrcJtcE69VEOvo.png\"},className:\"framer-1m7lu6o\",\"data-framer-name\":\"Thoughtline_partner_van_Station88\",layoutDependency:layoutDependency,layoutId:\"n3TAd00Lr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:46.66666996331886,intrinsicWidth:192.59260619782387,pixelHeight:63,pixelWidth:260,src:\"https://framerusercontent.com/images/qfj9cbpUjCS4b2ZvH4aHCetVc.png\"},className:\"framer-1c5m86p\",\"data-framer-name\":\"dutchgiraffe_260x63\",layoutDependency:layoutDependency,layoutId:\"YxP4igAlQ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:67.40741216923836,intrinsicWidth:192.59260619782387,pixelHeight:91,pixelWidth:260,src:\"https://framerusercontent.com/images/TTWZ3VMAxLGP1CS7lZul4mllKo.png\"},className:\"framer-1xhsyqc\",\"data-framer-name\":\"Thoughtline_partner_van_Secutree\",layoutDependency:layoutDependency,layoutId:\"dxLJ78huZ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:444.444475841132,intrinsicWidth:444.444475841132,pixelHeight:600,pixelWidth:600,sizes:\"229px\",src:\"https://framerusercontent.com/images/4jh8rKmTq4Yy3UVTk4G4vqcQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4jh8rKmTq4Yy3UVTk4G4vqcQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/4jh8rKmTq4Yy3UVTk4G4vqcQ.png 600w\"},className:\"framer-9d51ij\",\"data-framer-name\":\"vdl\",layoutDependency:layoutDependency,layoutId:\"aHv9kF2zU\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108.14815578800878,intrinsicWidth:152.59260337212197,pixelHeight:146,pixelWidth:206,src:\"https://framerusercontent.com/images/eqgy7YgEHH936jNJPHgWtVCs2x4.png\"},className:\"framer-133dc8x\",\"data-framer-name\":\"Thoughtline_partner_van_Mindlabs\",layoutDependency:layoutDependency,layoutId:\"xqTtN1nKJ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:45.18518837718175,intrinsicWidth:192.59260619782387,pixelHeight:61,pixelWidth:260,src:\"https://framerusercontent.com/images/EzVnBNhYuntmnjIstXHkZsOnMM.png\"},className:\"framer-1xbb3oh\",\"data-framer-name\":\"Thoughtline_partner_van_Eondemand\",layoutDependency:layoutDependency,layoutId:\"PM9k2zMSY\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108.14815578800878,intrinsicWidth:192.59260619782387,pixelHeight:146,pixelWidth:260,src:\"https://framerusercontent.com/images/MuCVc45Um9YdrCeEui6PHkwJMc.png\"},className:\"framer-e5kmuo\",\"data-framer-name\":\"Thoughtline_partner_van_AcesDirect\",layoutDependency:layoutDependency,layoutId:\"UUWb4UhxL\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:39.25926203263332,intrinsicWidth:192.59260619782387,pixelHeight:53,pixelWidth:260,src:\"https://framerusercontent.com/images/1VJmvroqwGaDXqy3s78T0Nuqk.png\"},className:\"framer-1v39r57\",\"data-framer-name\":\"Thoughtline_partner_van_AllTapeSupplies\",layoutDependency:layoutDependency,layoutId:\"beyqra9zU\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42.96296599797609,intrinsicWidth:151.11112178598486,pixelHeight:58,pixelWidth:204,src:\"https://framerusercontent.com/images/4ZRKcflf0CiEzRgZ9YUGHW0YM.png\"},className:\"framer-1mlm0bd\",\"data-framer-name\":\"Thoughtline_partner_van_DekkersTransportHolland\",layoutDependency:layoutDependency,layoutId:\"FyZ1ZmEmo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:39.25926203263332,intrinsicWidth:192.59260619782387,pixelHeight:53,pixelWidth:260,src:\"https://framerusercontent.com/images/E7nDFpBY4vqMkhaS7KgcX7tBk.png\"},className:\"framer-lfwfyv\",\"data-framer-name\":\"Thoughtline_partner_van_DigitalSignage\",layoutDependency:layoutDependency,layoutId:\"VGCmgDpNp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40.00000282570188,intrinsicWidth:148.88889940677922,pixelHeight:54,pixelWidth:201,src:\"https://framerusercontent.com/images/SaljqIL7e8UrfFgXTwQ34N8Qo.png\"},className:\"framer-z635go\",\"data-framer-name\":\"kuijpers\",layoutDependency:layoutDependency,layoutId:\"c2LPsOnte\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:89.62963596129495,intrinsicWidth:192.59260619782387,pixelHeight:121,pixelWidth:260,src:\"https://framerusercontent.com/images/D5Cz5JCrEA994siaKVHgeRNb4as.png\"},className:\"framer-1fxzr9l\",\"data-framer-name\":\"Thoughtline_partner_van_StichtingOpen\",layoutDependency:layoutDependency,layoutId:\"ITl5RbMeV\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:67.40741216923836,intrinsicWidth:192.59260619782387,pixelHeight:91,pixelWidth:260,src:\"https://framerusercontent.com/images/evUZfDCvKLdjuVMlgfzun8Mbq8.png\"},className:\"framer-6t5y4y\",\"data-framer-name\":\"Thoughtline_partner_van_Teleperformance\",layoutDependency:layoutDependency,layoutId:\"v45C5QmjG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96.29630309891193,intrinsicWidth:182.96297588793266,pixelHeight:130,pixelWidth:247,src:\"https://framerusercontent.com/images/U8HJdDRmTx96O9JXC9i6Wrkj9r8.png\"},className:\"framer-u8oi06\",\"data-framer-name\":\"Thoughtline_partner_van_BusinessOpen_removebg_preview\",layoutDependency:layoutDependency,layoutId:\"VMZ4Lh8Ta\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:43.703706791044645,intrinsicWidth:192.59260619782387,pixelHeight:59,pixelWidth:260,src:\"https://framerusercontent.com/images/laSMbi0zBOVTaGK0BbWc0Ot2U1Y.png\"},className:\"framer-z9pou7\",\"data-framer-name\":\"Thoughtline_partner_van_Versinox_removebg_preview_260x59\",layoutDependency:layoutDependency,layoutId:\"GXR9bm3T0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108.14815578800878,intrinsicWidth:108.14815578800878,pixelHeight:146,pixelWidth:146,src:\"https://framerusercontent.com/images/XOeKpLnAgp4lXbZHobYZxgIqNgM.png\"},className:\"framer-1t6cjuq\",\"data-framer-name\":\"Thoughtline_partner_van_Indicia_removebg_preview_146x146\",layoutDependency:layoutDependency,layoutId:\"QnRaPRIBz\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:86.66667278902074,intrinsicWidth:192.59260619782387,pixelHeight:117,pixelWidth:260,src:\"https://framerusercontent.com/images/3useDPxlK7lro0fywLztuQ5oG8k.png\"},className:\"framer-2desj9\",\"data-framer-name\":\"Thoughtline_partner_van_RouteICR_removebg_preview_260x117\",layoutDependency:layoutDependency,layoutId:\"pZxNuW9CF\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:81.48148723754086,intrinsicWidth:192.59260619782387,pixelHeight:110,pixelWidth:260,src:\"https://framerusercontent.com/images/8DhNZkx1akh9DIikVN7YwVveM.png\"},className:\"framer-13i1jcv\",\"data-framer-name\":\"Thoughtline_partner_van_ToonbankApp_removebg_preview_260x110\",layoutDependency:layoutDependency,layoutId:\"l1Rc64122\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:43.703706791044645,intrinsicWidth:192.59260619782387,pixelHeight:59,pixelWidth:260,src:\"https://framerusercontent.com/images/irDYrnDTNl59zp0TdP40wea5Ka0.png\"},className:\"framer-1so1v40\",\"data-framer-name\":\"Thoughtline_partner_van_StichtingRTA_removebg_preview_260x59\",layoutDependency:layoutDependency,layoutId:\"qnccRwFxA\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:39.25926203263332,intrinsicWidth:192.59260619782387,pixelHeight:53,pixelWidth:260,src:\"https://framerusercontent.com/images/E7nDFpBY4vqMkhaS7KgcX7tBk.png\"},className:\"framer-lfwfyv\",\"data-framer-name\":\"Thoughtline_partner_van_DigitalSignage\",layoutDependency:layoutDependency,layoutId:\"VGCmgDpNp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96.29630309891193,intrinsicWidth:192.59260619782387,pixelHeight:130,pixelWidth:260,src:\"https://framerusercontent.com/images/R9Lxasqb0tFkDik3lzNRJLY50.png\"},className:\"framer-14ib991\",\"data-framer-name\":\"Thoughtline_partner_van_DigitalPixelMarketing_removebg_preview_260x130\",layoutDependency:layoutDependency,layoutId:\"DCS4m_CsH\"})],speed:60,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ceimF.framer-wru4st, .framer-ceimF .framer-wru4st { display: block; }\",\".framer-ceimF.framer-ku944n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-ceimF .framer-d3slpj-container { flex: 1 0 0px; height: 93px; max-width: 1200px; position: relative; width: 1px; }\",\".framer-ceimF .framer-6hauq9 { aspect-ratio: 2.653061224489796 / 1; height: var(--framer-aspect-ratio-supported, 54px); overflow: visible; position: relative; width: 142px; }\",\".framer-ceimF .framer-cy5sr3 { aspect-ratio: 4.642857142857143 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 193px; }\",\".framer-ceimF .framer-15zleoq { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 80px); overflow: visible; position: relative; width: 80px; }\",\".framer-ceimF .framer-yi835x { aspect-ratio: 4.9640522875816995 / 1; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 162px; }\",\".framer-ceimF .framer-1wke54t { aspect-ratio: 4.084848484848485 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 162px; }\",\".framer-ceimF .framer-1pz9a35 { aspect-ratio: 5.5227272727272725 / 1; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 180px; }\",\".framer-ceimF .framer-vnq8bz { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 78px); overflow: visible; position: relative; width: 78px; }\",\".framer-ceimF .framer-1ip10lj { aspect-ratio: 2.08 / 1; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 116px; }\",\".framer-ceimF .framer-jic91l { aspect-ratio: 1.5000000000000002 / 1; height: var(--framer-aspect-ratio-supported, 108px); overflow: visible; position: relative; width: 162px; }\",\".framer-ceimF .framer-95ayws { aspect-ratio: 0.81203007518797 / 1; height: var(--framer-aspect-ratio-supported, 99px); overflow: visible; position: relative; width: 80px; }\",\".framer-ceimF .framer-1a6q2l3 { aspect-ratio: 5.098039215686275 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 193px; }\",\".framer-ceimF .framer-1m7lu6o { aspect-ratio: 1.7808219178082194 / 1; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; width: 108px; }\",\".framer-ceimF .framer-1c5m86p { aspect-ratio: 4.126984126984127 / 1; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 193px; }\",\".framer-ceimF .framer-1xhsyqc, .framer-ceimF .framer-6t5y4y { aspect-ratio: 2.857142857142857 / 1; height: var(--framer-aspect-ratio-supported, 68px); overflow: visible; position: relative; width: 193px; }\",\".framer-ceimF .framer-9d51ij { height: 59px; overflow: visible; position: relative; width: 229px; }\",\".framer-ceimF .framer-133dc8x { aspect-ratio: 1.410958904109589 / 1; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 99px; }\",\".framer-ceimF .framer-1xbb3oh { aspect-ratio: 4.262295081967213 / 1; height: var(--framer-aspect-ratio-supported, 45px); overflow: visible; position: relative; width: 193px; }\",\".framer-ceimF .framer-e5kmuo { aspect-ratio: 1.7808219178082194 / 1; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 114px; }\",\".framer-ceimF .framer-1v39r57, .framer-ceimF .framer-lfwfyv { aspect-ratio: 4.905660377358491 / 1; height: var(--framer-aspect-ratio-supported, 39px); overflow: visible; position: relative; width: 193px; }\",\".framer-ceimF .framer-1mlm0bd { aspect-ratio: 3.5172413793103448 / 1; height: var(--framer-aspect-ratio-supported, 43px); overflow: visible; position: relative; width: 151px; }\",\".framer-ceimF .framer-z635go { aspect-ratio: 3.7222222222222223 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 149px; }\",\".framer-ceimF .framer-1fxzr9l { aspect-ratio: 2.1487603305785123 / 1; height: var(--framer-aspect-ratio-supported, 58px); overflow: visible; position: relative; width: 124px; }\",\".framer-ceimF .framer-u8oi06 { aspect-ratio: 1.9 / 1; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 133px; }\",\".framer-ceimF .framer-z9pou7 { aspect-ratio: 4.406779661016949 / 1; height: var(--framer-aspect-ratio-supported, 34px); overflow: visible; position: relative; width: 149px; }\",\".framer-ceimF .framer-1t6cjuq { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 108px); overflow: visible; position: relative; width: 108px; }\",\".framer-ceimF .framer-2desj9 { aspect-ratio: 2.2222222222222223 / 1; height: var(--framer-aspect-ratio-supported, 73px); overflow: visible; position: relative; width: 162px; }\",\".framer-ceimF .framer-13i1jcv { aspect-ratio: 2.3636363636363638 / 1; height: var(--framer-aspect-ratio-supported, 55px); overflow: visible; position: relative; width: 129px; }\",\".framer-ceimF .framer-1so1v40 { aspect-ratio: 4.406779661016949 / 1; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 193px; }\",\".framer-ceimF .framer-14ib991 { aspect-ratio: 2 / 1; height: var(--framer-aspect-ratio-supported, 76px); overflow: visible; position: relative; width: 151px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceimF.framer-ku944n { gap: 0px; } .framer-ceimF.framer-ku944n > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ceimF.framer-ku944n > :first-child { margin-left: 0px; } .framer-ceimF.framer-ku944n > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 93\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framero668PLrT8=withCSS(Component,css,\"framer-ceimF\");export default Framero668PLrT8;Framero668PLrT8.displayName=\"Client Logos\";Framero668PLrT8.defaultProps={height:93,width:1200};addFonts(Framero668PLrT8,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero668PLrT8\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"93\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./o668PLrT8.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", "ue", "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", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "Image2", "css", "Framero668PLrT8", "withCSS", "o668PLrT8_default", "addFonts", "TickerFonts"]
}
