{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/R8kAOFHl5X6T8KxgeO5c/PEzKUHzYHHjhvgdfClfg/WMub326rb.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 (3fa6aa4)\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 cycleOrder=[\"rYU4AhzuU\"];const serializationHash=\"framer-jfQgM\";const variantClassNames={rYU4AhzuU:\"framer-v-momxpd\"};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(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,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rYU4AhzuU\",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-momxpd\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"rYU4AhzuU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-150ehpb-container\",layoutDependency:layoutDependency,layoutId:\"jl0h1LOpp-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:30,height:\"100%\",hoverFactor:0,id:\"jl0h1LOpp\",layoutId:\"jl0h1LOpp\",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:616,intrinsicWidth:1599.2,pixelHeight:770,pixelWidth:1999,sizes:\"162px\",src:\"https://framerusercontent.com/images/PxzC4XbkYs23qtV5hs4VmPedz0.png\",srcSet:\"https://framerusercontent.com/images/PxzC4XbkYs23qtV5hs4VmPedz0.png?scale-down-to=512 512w,https://framerusercontent.com/images/PxzC4XbkYs23qtV5hs4VmPedz0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PxzC4XbkYs23qtV5hs4VmPedz0.png 1999w\"},className:\"framer-ywpfuf\",\"data-framer-name\":\"grab\",layoutDependency:layoutDependency,layoutId:\"Y01NdGkez\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:456.8,intrinsicWidth:1599.2,pixelHeight:571,pixelWidth:1999,sizes:\"224.056px\",src:\"https://framerusercontent.com/images/JMkH1L8FzUS43syK1OclwEF5Zk.png\",srcSet:\"https://framerusercontent.com/images/JMkH1L8FzUS43syK1OclwEF5Zk.png?scale-down-to=512 512w,https://framerusercontent.com/images/JMkH1L8FzUS43syK1OclwEF5Zk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JMkH1L8FzUS43syK1OclwEF5Zk.png 1999w\"},className:\"framer-1cojer3\",\"data-framer-name\":\"dana\",layoutDependency:layoutDependency,layoutId:\"XAI9rlSgx\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:498.4,intrinsicWidth:1599.2,pixelHeight:623,pixelWidth:1999,sizes:\"169px\",src:\"https://framerusercontent.com/images/WmkAmjDFbVmdPgb2FyNizixAyaQ.png\",srcSet:\"https://framerusercontent.com/images/WmkAmjDFbVmdPgb2FyNizixAyaQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/WmkAmjDFbVmdPgb2FyNizixAyaQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WmkAmjDFbVmdPgb2FyNizixAyaQ.png 1999w\"},className:\"framer-1gmxr8c\",\"data-framer-name\":\"ovo\",layoutDependency:layoutDependency,layoutId:\"dEN8ceZaU\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:536,intrinsicWidth:1599.2,pixelHeight:670,pixelWidth:1999,sizes:\"149px\",src:\"https://framerusercontent.com/images/ZIvsFtXg3JZnvy9JcWLUBIA.png\",srcSet:\"https://framerusercontent.com/images/ZIvsFtXg3JZnvy9JcWLUBIA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZIvsFtXg3JZnvy9JcWLUBIA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZIvsFtXg3JZnvy9JcWLUBIA.png 1999w\"},className:\"framer-cen4i\",\"data-framer-name\":\"ralali\",layoutDependency:layoutDependency,layoutId:\"tQhKWeW32\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:272.8,intrinsicWidth:1431.2,pixelHeight:341,pixelWidth:1789,sizes:\"323px\",src:\"https://framerusercontent.com/images/nE7wcn14RdK5e8a6RZxJ62HEE7M.png\",srcSet:\"https://framerusercontent.com/images/nE7wcn14RdK5e8a6RZxJ62HEE7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/nE7wcn14RdK5e8a6RZxJ62HEE7M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nE7wcn14RdK5e8a6RZxJ62HEE7M.png 1789w\"},className:\"framer-pixcxn\",\"data-framer-name\":\"ayoconnect\",layoutDependency:layoutDependency,layoutId:\"vP36xsdu_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:330.4,intrinsicWidth:1248.8,pixelHeight:413,pixelWidth:1561,sizes:\"210px\",src:\"https://framerusercontent.com/images/UbOhl7TGZll8Q22R8h2UaAgsWA.png\",srcSet:\"https://framerusercontent.com/images/UbOhl7TGZll8Q22R8h2UaAgsWA.png?scale-down-to=512 512w,https://framerusercontent.com/images/UbOhl7TGZll8Q22R8h2UaAgsWA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UbOhl7TGZll8Q22R8h2UaAgsWA.png 1561w\"},className:\"framer-177p1xs\",\"data-framer-name\":\"privy\",layoutDependency:layoutDependency,layoutId:\"F2pNlJJa3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:264.8,intrinsicWidth:1011.2,pixelHeight:331,pixelWidth:1264,sizes:\"248.2175px\",src:\"https://framerusercontent.com/images/AuoSB9x6f069C7mQXRDnzMfZqo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AuoSB9x6f069C7mQXRDnzMfZqo.png?scale-down-to=512 512w,https://framerusercontent.com/images/AuoSB9x6f069C7mQXRDnzMfZqo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AuoSB9x6f069C7mQXRDnzMfZqo.png 1264w\"},className:\"framer-1ql0gcj\",\"data-framer-name\":\"traveloka\",layoutDependency:layoutDependency,layoutId:\"ATnIvL8g9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:284,intrinsicWidth:1305.6,pixelHeight:355,pixelWidth:1632,sizes:\"285.0254px\",src:\"https://framerusercontent.com/images/Ufrfa7cT92x7aZNlSZVClcv886I.png\",srcSet:\"https://framerusercontent.com/images/Ufrfa7cT92x7aZNlSZVClcv886I.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ufrfa7cT92x7aZNlSZVClcv886I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ufrfa7cT92x7aZNlSZVClcv886I.png 1632w\"},className:\"framer-1ekkxf\",\"data-framer-name\":\"tiket\",layoutDependency:layoutDependency,layoutId:\"G5gjIueLJ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:272,intrinsicWidth:859.2,pixelHeight:340,pixelWidth:1074,sizes:\"221.1176px\",src:\"https://framerusercontent.com/images/RrfAcZOV0Jdo1BfrVR9DI2S0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RrfAcZOV0Jdo1BfrVR9DI2S0.png?scale-down-to=512 512w,https://framerusercontent.com/images/RrfAcZOV0Jdo1BfrVR9DI2S0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RrfAcZOV0Jdo1BfrVR9DI2S0.png 1074w\"},className:\"framer-1uzf75i\",\"data-framer-name\":\"bluebird\",layoutDependency:layoutDependency,layoutId:\"eVdaEO4Sc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:430.4,intrinsicWidth:1024,pixelHeight:538,pixelWidth:1280,sizes:\"111.8216px\",src:\"https://framerusercontent.com/images/W4AA0cbad2wq4JqAKoOKVKO2Y4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/W4AA0cbad2wq4JqAKoOKVKO2Y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/W4AA0cbad2wq4JqAKoOKVKO2Y4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/W4AA0cbad2wq4JqAKoOKVKO2Y4.png 1280w\"},className:\"framer-1fciu5t\",\"data-framer-name\":\"kai\",layoutDependency:layoutDependency,layoutId:\"r3vK7kO_n\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:960,pixelHeight:630,pixelWidth:1200,sizes:\"133px\",src:\"https://framerusercontent.com/images/DZHQepAfhvQV4hZtUydiWAhfLI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DZHQepAfhvQV4hZtUydiWAhfLI.png?scale-down-to=512 512w,https://framerusercontent.com/images/DZHQepAfhvQV4hZtUydiWAhfLI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DZHQepAfhvQV4hZtUydiWAhfLI.png 1200w\"},className:\"framer-skm1md\",\"data-framer-name\":\"bank_bri\",layoutDependency:layoutDependency,layoutId:\"qA21g7Kot\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:465.6,intrinsicWidth:1599.2,pixelHeight:582,pixelWidth:1999,sizes:\"162px\",src:\"https://framerusercontent.com/images/SFuazvpd1qDrvLquuESh84UviFg.png\",srcSet:\"https://framerusercontent.com/images/SFuazvpd1qDrvLquuESh84UviFg.png?scale-down-to=512 512w,https://framerusercontent.com/images/SFuazvpd1qDrvLquuESh84UviFg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SFuazvpd1qDrvLquuESh84UviFg.png 1999w\"},className:\"framer-1uyvsl4\",\"data-framer-name\":\"bank_mandiri\",layoutDependency:layoutDependency,layoutId:\"Jg14WqdyM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:521.6,intrinsicWidth:1599.2,pixelHeight:652,pixelWidth:1999,sizes:\"148px\",src:\"https://framerusercontent.com/images/AaudSrgfpShfYBgmW5ea48TwbWU.png\",srcSet:\"https://framerusercontent.com/images/AaudSrgfpShfYBgmW5ea48TwbWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/AaudSrgfpShfYBgmW5ea48TwbWU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AaudSrgfpShfYBgmW5ea48TwbWU.png 1999w\"},className:\"framer-drdvhi\",\"data-framer-name\":\"bank_bni\",layoutDependency:layoutDependency,layoutId:\"Qi6hcr4MG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:444,intrinsicWidth:1599.2,pixelHeight:555,pixelWidth:1999,sizes:\"172px\",src:\"https://framerusercontent.com/images/zq2VttCDBan0Qhsdv8Ki9RP7N0.png\",srcSet:\"https://framerusercontent.com/images/zq2VttCDBan0Qhsdv8Ki9RP7N0.png?scale-down-to=512 512w,https://framerusercontent.com/images/zq2VttCDBan0Qhsdv8Ki9RP7N0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zq2VttCDBan0Qhsdv8Ki9RP7N0.png 1999w\"},className:\"framer-15pup3g\",\"data-framer-name\":\"bank_bsi\",layoutDependency:layoutDependency,layoutId:\"v3vZyiXoH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:134.4,intrinsicWidth:200,pixelHeight:168,pixelWidth:250,src:\"https://framerusercontent.com/images/bKuNCJPFccZ5XR2j3krICrL3cA.png\"},className:\"framer-htdg9g\",\"data-framer-name\":\"bank_btn\",layoutDependency:layoutDependency,layoutId:\"aNEFhgFYn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:255.2,intrinsicWidth:1599.2,pixelHeight:319,pixelWidth:1999,sizes:\"274px\",src:\"https://framerusercontent.com/images/06kuYBYdIV5G6jXikay0XUrmzg.png\",srcSet:\"https://framerusercontent.com/images/06kuYBYdIV5G6jXikay0XUrmzg.png?scale-down-to=512 512w,https://framerusercontent.com/images/06kuYBYdIV5G6jXikay0XUrmzg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/06kuYBYdIV5G6jXikay0XUrmzg.png 1999w\"},className:\"framer-rxp7dk\",\"data-framer-name\":\"bank_dki\",layoutDependency:layoutDependency,layoutId:\"KNlZDDyzq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.2,intrinsicWidth:176,pixelHeight:94,pixelWidth:220,src:\"https://framerusercontent.com/images/8TlpAdlWYzyQJkIpZ6DI1ohY0.png\"},className:\"framer-qrh1n2\",\"data-framer-name\":\"bank_raya\",layoutDependency:layoutDependency,layoutId:\"e2mHHUpyy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:956.8,intrinsicWidth:1599.2,pixelHeight:1196,pixelWidth:1999,sizes:\"113px\",src:\"https://framerusercontent.com/images/bQFJhTIJ0simKcr5Uq2lyc9g.png\",srcSet:\"https://framerusercontent.com/images/bQFJhTIJ0simKcr5Uq2lyc9g.png?scale-down-to=512 512w,https://framerusercontent.com/images/bQFJhTIJ0simKcr5Uq2lyc9g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bQFJhTIJ0simKcr5Uq2lyc9g.png 1999w\"},className:\"framer-y1sic4\",\"data-framer-name\":\"bank_btpn\",layoutDependency:layoutDependency,layoutId:\"rCO_jOOiv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96,intrinsicWidth:429.6,pixelHeight:120,pixelWidth:537,sizes:\"219.275px\",src:\"https://framerusercontent.com/images/Out0HTICvpoHeDCgTYUTJxtu2eg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Out0HTICvpoHeDCgTYUTJxtu2eg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Out0HTICvpoHeDCgTYUTJxtu2eg.png 537w\"},className:\"framer-hpc6uc\",\"data-framer-name\":\"credinex\",layoutDependency:layoutDependency,layoutId:\"DGXgdn04p\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:350.4,intrinsicWidth:1929.6,pixelHeight:438,pixelWidth:2412,sizes:\"330.411px\",src:\"https://framerusercontent.com/images/4Nw9wxTLAuvDeiWMptunMQ1jrk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4Nw9wxTLAuvDeiWMptunMQ1jrk.png?scale-down-to=512 512w,https://framerusercontent.com/images/4Nw9wxTLAuvDeiWMptunMQ1jrk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4Nw9wxTLAuvDeiWMptunMQ1jrk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4Nw9wxTLAuvDeiWMptunMQ1jrk.png 2412w\"},className:\"framer-1dw8fz5\",\"data-framer-name\":\"gcp\",layoutDependency:layoutDependency,layoutId:\"b070EuDFe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360.8,intrinsicWidth:960,pixelHeight:451,pixelWidth:1200,sizes:\"164.9667px\",src:\"https://framerusercontent.com/images/oFYLSmhFvMjoVMV5T9E3XmM28Q.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oFYLSmhFvMjoVMV5T9E3XmM28Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/oFYLSmhFvMjoVMV5T9E3XmM28Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oFYLSmhFvMjoVMV5T9E3XmM28Q.png 1200w\"},className:\"framer-ifrof0\",\"data-framer-name\":\"aws\",layoutDependency:layoutDependency,layoutId:\"IBx7m4s1w\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:82.4,intrinsicWidth:482.4,pixelHeight:103,pixelWidth:603,sizes:\"316.1359px\",src:\"https://framerusercontent.com/images/PbGVNrtSvh8xIPA5pfE4yZPOk0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PbGVNrtSvh8xIPA5pfE4yZPOk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/PbGVNrtSvh8xIPA5pfE4yZPOk0.png 603w\"},className:\"framer-1usiyst\",\"data-framer-name\":\"digitalocean\",layoutDependency:layoutDependency,layoutId:\"d8i0dXOA8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:689.6,intrinsicWidth:2048,pixelHeight:862,pixelWidth:2560,sizes:\"136.6125px\",src:\"https://framerusercontent.com/images/9YY552oeOKw0575HsY82Bfmo8rs.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/9YY552oeOKw0575HsY82Bfmo8rs.png?scale-down-to=512 512w,https://framerusercontent.com/images/9YY552oeOKw0575HsY82Bfmo8rs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9YY552oeOKw0575HsY82Bfmo8rs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9YY552oeOKw0575HsY82Bfmo8rs.png 2560w\"},className:\"framer-qclfuu\",\"data-framer-name\":\"cloudflare\",layoutDependency:layoutDependency,layoutId:\"IdZWwcvw2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:187.2,intrinsicWidth:736,pixelHeight:234,pixelWidth:920,sizes:\"243.7607px\",src:\"https://framerusercontent.com/images/Sup6x19mebNoXLmvM9JEtqE9eM.png\",srcSet:\"https://framerusercontent.com/images/Sup6x19mebNoXLmvM9JEtqE9eM.png?scale-down-to=512 512w,https://framerusercontent.com/images/Sup6x19mebNoXLmvM9JEtqE9eM.png 920w\"},className:\"framer-16j1ix0\",\"data-framer-name\":\"datadog\",layoutDependency:layoutDependency,layoutId:\"cetjKLZ4P\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156.8,intrinsicWidth:964.8,pixelHeight:196,pixelWidth:1206,sizes:\"295.3469px\",src:\"https://framerusercontent.com/images/cduGJUQynPFAedwwvjwmWxZI3MM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cduGJUQynPFAedwwvjwmWxZI3MM.png?scale-down-to=512 512w,https://framerusercontent.com/images/cduGJUQynPFAedwwvjwmWxZI3MM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cduGJUQynPFAedwwvjwmWxZI3MM.png 1206w\"},className:\"framer-1lq7y1b\",\"data-framer-name\":\"confluent\",layoutDependency:layoutDependency,layoutId:\"S3og4CUNk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:748,intrinsicWidth:1638.4,pixelHeight:935,pixelWidth:2048,sizes:\"153.3262px\",src:\"https://framerusercontent.com/images/s17OYw3qycZZpcmuJgLhOizz61E.png\",srcSet:\"https://framerusercontent.com/images/s17OYw3qycZZpcmuJgLhOizz61E.png?scale-down-to=512 512w,https://framerusercontent.com/images/s17OYw3qycZZpcmuJgLhOizz61E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s17OYw3qycZZpcmuJgLhOizz61E.png 2048w\"},className:\"framer-1ettfjq\",\"data-framer-name\":\"kafka\",layoutDependency:layoutDependency,layoutId:\"I7FztuA8J\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:175.2,intrinsicWidth:819.2,pixelHeight:219,pixelWidth:1024,sizes:\"210.411px\",src:\"https://framerusercontent.com/images/djMlFFjUPNNqBRMMluec96CegMc.png\",srcSet:\"https://framerusercontent.com/images/djMlFFjUPNNqBRMMluec96CegMc.png?scale-down-to=512 512w,https://framerusercontent.com/images/djMlFFjUPNNqBRMMluec96CegMc.png 1024w\"},className:\"framer-1hk53wm\",\"data-framer-name\":\"retool\",layoutDependency:layoutDependency,layoutId:\"WQpTm_qru\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1599.2,pixelHeight:1125,pixelWidth:1999,sizes:\"158.1431px\",src:\"https://framerusercontent.com/images/DMaNUAIKSHele4CxTzh9ZKCBV5U.png\",srcSet:\"https://framerusercontent.com/images/DMaNUAIKSHele4CxTzh9ZKCBV5U.png?scale-down-to=512 512w,https://framerusercontent.com/images/DMaNUAIKSHele4CxTzh9ZKCBV5U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DMaNUAIKSHele4CxTzh9ZKCBV5U.png 1999w\"},className:\"framer-qiz2w5\",\"data-framer-name\":\"alfamart\",layoutDependency:layoutDependency,layoutId:\"OdLc0JnmG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:313.6,intrinsicWidth:1271.2,pixelHeight:392,pixelWidth:1589,sizes:\"299.9643px\",src:\"https://framerusercontent.com/images/rJWePCGzMFuJeuo3ICvSKwFVBw.png\",srcSet:\"https://framerusercontent.com/images/rJWePCGzMFuJeuo3ICvSKwFVBw.png?scale-down-to=512 512w,https://framerusercontent.com/images/rJWePCGzMFuJeuo3ICvSKwFVBw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rJWePCGzMFuJeuo3ICvSKwFVBw.png 1589w\"},className:\"framer-9go0p\",\"data-framer-name\":\"indomog\",layoutDependency:layoutDependency,layoutId:\"SBNK_Iz4r\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:280,pixelHeight:100,pixelWidth:350,src:\"https://framerusercontent.com/images/mi28vln25Em6wuVX7idDydW1WMU.png\"},className:\"framer-e1d516\",\"data-framer-name\":\"neoclinic\",layoutDependency:layoutDependency,layoutId:\"vXeVQDYV2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:105.6,intrinsicWidth:240,pixelHeight:132,pixelWidth:300,src:\"https://framerusercontent.com/images/S4En0yTvnvRQzC9pkHNBWG1n38.png\"},className:\"framer-12ydq6w\",\"data-framer-name\":\"kudo\",layoutDependency:layoutDependency,layoutId:\"UN2FK7KEl\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:608,intrinsicWidth:1328,pixelHeight:760,pixelWidth:1660,sizes:\"155.0789px\",src:\"https://framerusercontent.com/images/C7PKByF53WSCOPmReZPGzl7B4.png\",srcSet:\"https://framerusercontent.com/images/C7PKByF53WSCOPmReZPGzl7B4.png?scale-down-to=512 512w,https://framerusercontent.com/images/C7PKByF53WSCOPmReZPGzl7B4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C7PKByF53WSCOPmReZPGzl7B4.png 1660w\"},className:\"framer-17dvqt8\",\"data-framer-name\":\"prudential\",layoutDependency:layoutDependency,layoutId:\"JRav4v1gP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:436,intrinsicWidth:817.6,pixelHeight:545,pixelWidth:1022,sizes:\"133.1413px\",src:\"https://framerusercontent.com/images/INKkUIC7AZ8pg4xBbRwDBDqc.png\",srcSet:\"https://framerusercontent.com/images/INKkUIC7AZ8pg4xBbRwDBDqc.png?scale-down-to=512 512w,https://framerusercontent.com/images/INKkUIC7AZ8pg4xBbRwDBDqc.png 1022w\"},className:\"framer-cxxauh\",\"data-framer-name\":\"telkom\",layoutDependency:layoutDependency,layoutId:\"I6CfVNwnX\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:223.2,intrinsicWidth:960,pixelHeight:279,pixelWidth:1200,sizes:\"296.7742px\",src:\"https://framerusercontent.com/images/5sA4OuJAcY2nOcRB2kaDuA9zrl8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5sA4OuJAcY2nOcRB2kaDuA9zrl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/5sA4OuJAcY2nOcRB2kaDuA9zrl8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5sA4OuJAcY2nOcRB2kaDuA9zrl8.png 1200w\"},className:\"framer-3cfzin\",\"data-framer-name\":\"pertamina\",layoutDependency:layoutDependency,layoutId:\"O7qQU4RM0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:345.6,intrinsicWidth:768,pixelHeight:432,pixelWidth:960,sizes:\"255.5556px\",src:\"https://framerusercontent.com/images/QSeWFBQqthxl9s9tM7DkFMopUK0.png\",srcSet:\"https://framerusercontent.com/images/QSeWFBQqthxl9s9tM7DkFMopUK0.png?scale-down-to=512 512w,https://framerusercontent.com/images/QSeWFBQqthxl9s9tM7DkFMopUK0.png 960w\"},className:\"framer-1xe3yk1\",\"data-framer-name\":\"tiptip\",layoutDependency:layoutDependency,layoutId:\"mXCAey35v\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162.4,intrinsicWidth:777.6,pixelHeight:203,pixelWidth:972,sizes:\"327px\",src:\"https://framerusercontent.com/images/4fZw4Z0FqgKFmPS6b6spTQmiv34.png\",srcSet:\"https://framerusercontent.com/images/4fZw4Z0FqgKFmPS6b6spTQmiv34.png?scale-down-to=512 512w,https://framerusercontent.com/images/4fZw4Z0FqgKFmPS6b6spTQmiv34.png 972w\"},className:\"framer-1q53aji\",\"data-framer-name\":\"kitabisa\",layoutDependency:layoutDependency,layoutId:\"i9KWtv1uF\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:376.8,intrinsicWidth:1024,pixelHeight:471,pixelWidth:1280,sizes:\"171.2102px\",src:\"https://framerusercontent.com/images/4hBFwXwBfxuOCPXJZA8fcgcIVo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4hBFwXwBfxuOCPXJZA8fcgcIVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/4hBFwXwBfxuOCPXJZA8fcgcIVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4hBFwXwBfxuOCPXJZA8fcgcIVo.png 1280w\"},className:\"framer-1xfmapv\",\"data-framer-name\":\"kredivo\",layoutDependency:layoutDependency,layoutId:\"i0mUOOpwR\"})],speed:150,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jfQgM.framer-1k191wg, .framer-jfQgM .framer-1k191wg { display: block; }\",\".framer-jfQgM.framer-momxpd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 158px; justify-content: center; padding: 0px; position: relative; width: 1309px; }\",\".framer-jfQgM .framer-150ehpb-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-jfQgM .framer-ywpfuf { aspect-ratio: 2.5961038961038962 / 1; height: var(--framer-aspect-ratio-supported, 62px); overflow: visible; position: relative; width: 162px; }\",\".framer-jfQgM .framer-1cojer3 { aspect-ratio: 3.500875656742557 / 1; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 224px; }\",\".framer-jfQgM .framer-1gmxr8c { aspect-ratio: 3.208667736757625 / 1; height: var(--framer-aspect-ratio-supported, 53px); overflow: visible; position: relative; width: 169px; }\",\".framer-jfQgM .framer-cen4i { aspect-ratio: 2.9835820895522387 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 149px; }\",\".framer-jfQgM .framer-pixcxn { aspect-ratio: 5.24633431085044 / 1; height: var(--framer-aspect-ratio-supported, 62px); overflow: visible; position: relative; width: 323px; }\",\".framer-jfQgM .framer-177p1xs { aspect-ratio: 3.7796610169491527 / 1; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 210px; }\",\".framer-jfQgM .framer-1ql0gcj { aspect-ratio: 3.8187311178247736 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 247px; }\",\".framer-jfQgM .framer-1ekkxf { aspect-ratio: 4.597183098591549 / 1; height: var(--framer-aspect-ratio-supported, 62px); overflow: visible; position: relative; width: 286px; }\",\".framer-jfQgM .framer-1uzf75i { aspect-ratio: 3.158823529411765 / 1; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 220px; }\",\".framer-jfQgM .framer-1fciu5t { aspect-ratio: 2.379182156133829 / 1; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 111px; }\",\".framer-jfQgM .framer-skm1md { aspect-ratio: 1.9047619047619047 / 1; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 133px; }\",\".framer-jfQgM .framer-1uyvsl4 { aspect-ratio: 3.4347079037800685 / 1; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 162px; }\",\".framer-jfQgM .framer-drdvhi { aspect-ratio: 3.065950920245399 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 148px; }\",\".framer-jfQgM .framer-15pup3g { aspect-ratio: 3.601801801801802 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 172px; }\",\".framer-jfQgM .framer-htdg9g { aspect-ratio: 1.4880952380952381 / 1; height: var(--framer-aspect-ratio-supported, 57px); overflow: visible; position: relative; width: 85px; }\",\".framer-jfQgM .framer-rxp7dk { aspect-ratio: 6.2664576802507845 / 1; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 274px; }\",\".framer-jfQgM .framer-qrh1n2 { aspect-ratio: 2.3404255319148937 / 1; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 111px; }\",\".framer-jfQgM .framer-y1sic4 { aspect-ratio: 1.6714046822742477 / 1; height: var(--framer-aspect-ratio-supported, 68px); overflow: visible; position: relative; width: 113px; }\",\".framer-jfQgM .framer-hpc6uc { aspect-ratio: 4.4750000000000005 / 1; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 219px; }\",\".framer-jfQgM .framer-1dw8fz5 { aspect-ratio: 5.506849315068493 / 1; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 328px; }\",\".framer-jfQgM .framer-ifrof0 { aspect-ratio: 2.6607538802660753 / 1; height: var(--framer-aspect-ratio-supported, 62px); overflow: visible; position: relative; width: 164px; }\",\".framer-jfQgM .framer-1usiyst { aspect-ratio: 5.854368932038835 / 1; height: var(--framer-aspect-ratio-supported, 54px); overflow: visible; position: relative; width: 320px; }\",\".framer-jfQgM .framer-qclfuu { aspect-ratio: 2.9698375870069604 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 135px; }\",\".framer-jfQgM .framer-16j1ix0 { aspect-ratio: 3.931623931623932 / 1; height: var(--framer-aspect-ratio-supported, 62px); overflow: visible; position: relative; width: 244px; }\",\".framer-jfQgM .framer-1lq7y1b { aspect-ratio: 6.153061224489795 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 295px; }\",\".framer-jfQgM .framer-1ettfjq { aspect-ratio: 2.190374331550802 / 1; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 153px; }\",\".framer-jfQgM .framer-1hk53wm { aspect-ratio: 4.6757990867579915 / 1; height: var(--framer-aspect-ratio-supported, 45px); overflow: visible; position: relative; width: 211px; }\",\".framer-jfQgM .framer-qiz2w5 { aspect-ratio: 1.776888888888889 / 1; height: var(--framer-aspect-ratio-supported, 89px); overflow: visible; position: relative; width: 158px; }\",\".framer-jfQgM .framer-9go0p { aspect-ratio: 4.053571428571429 / 1; height: var(--framer-aspect-ratio-supported, 74px); overflow: visible; position: relative; width: 297px; }\",\".framer-jfQgM .framer-e1d516 { aspect-ratio: 3.5 / 1; height: var(--framer-aspect-ratio-supported, 103px); overflow: visible; position: relative; width: 361px; }\",\".framer-jfQgM .framer-12ydq6w { aspect-ratio: 2.272727272727273 / 1; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 145px; }\",\".framer-jfQgM .framer-17dvqt8 { aspect-ratio: 2.1842105263157894 / 1; height: var(--framer-aspect-ratio-supported, 71px); overflow: visible; position: relative; width: 155px; }\",\".framer-jfQgM .framer-cxxauh { aspect-ratio: 1.8752293577981651 / 1; height: var(--framer-aspect-ratio-supported, 71px); overflow: visible; position: relative; width: 133px; }\",\".framer-jfQgM .framer-3cfzin { aspect-ratio: 4.301075268817205 / 1; height: var(--framer-aspect-ratio-supported, 69px); overflow: visible; position: relative; width: 295px; }\",\".framer-jfQgM .framer-1xe3yk1 { aspect-ratio: 2.222222222222222 / 1; height: var(--framer-aspect-ratio-supported, 115px); overflow: visible; position: relative; width: 255px; }\",\".framer-jfQgM .framer-1q53aji { aspect-ratio: 4.788177339901478 / 1; height: var(--framer-aspect-ratio-supported, 68px); overflow: visible; position: relative; width: 327px; }\",\".framer-jfQgM .framer-1xfmapv { aspect-ratio: 2.7176220806794054 / 1; height: var(--framer-aspect-ratio-supported, 63px); overflow: visible; position: relative; width: 171px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jfQgM.framer-momxpd { gap: 0px; } .framer-jfQgM.framer-momxpd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jfQgM.framer-momxpd > :first-child { margin-left: 0px; } .framer-jfQgM.framer-momxpd > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 158\n * @framerIntrinsicWidth 1309\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWMub326rb=withCSS(Component,css,\"framer-jfQgM\");export default FramerWMub326rb;FramerWMub326rb.displayName=\"Sections/Partners & Clients\";FramerWMub326rb.defaultProps={height:158,width:1309};addFonts(FramerWMub326rb,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWMub326rb\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"158\",\"framerIntrinsicWidth\":\"1309\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WMub326rb.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", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "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", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "Image2", "css", "FramerWMub326rb", "withCSS", "WMub326rb_default", "addFonts", "TickerFonts"]
}
