{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/LTDTHOkPyxvSSDOqAjwZ/eGp3alY6qM0NQI8dCJmY/tF9lNQdHg.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,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)`};/**\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[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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;startTransition(()=>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)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"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.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,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||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (295c121)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,RichText,SVG,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/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lydC4Ma2xiIs04LEAjzs/YqzBlX2QUogDf0Uz1hJG/BKpJLHEiw.js\";const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-p6fyk\";const variantClassNames={nDkvgY1Ke:\"framer-v-h31m8r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:2.5,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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 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:\"nDkvgY1Ke\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-h31m8r\",className,classNames),\"data-framer-name\":\"Normal\",layoutDependency:layoutDependency,layoutId:\"nDkvgY1Ke\",ref:ref??ref1,style:{backgroundColor:\"var(--token-018638ab-6906-4f93-a993-1c197b597327, rgb(29, 61, 243))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-boas16\",\"data-framer-name\":\"Ticker\",layoutDependency:layoutDependency,layoutId:\"bjt0iTDO_\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e8wqym-container\",layoutDependency:layoutDependency,layoutId:\"G1SqLwswk-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"G1SqLwswk\",layoutId:\"G1SqLwswk\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5e4kfv\",\"data-framer-name\":\"Logos\",layoutDependency:layoutDependency,layoutId:\"viB8TxIzd\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15zt1v6\",\"data-framer-name\":\"Logo 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RTZ04wO0a\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 91 35\"><path d=\"M 21.601 0 C 18.047 0 14.638 1.412 12.125 3.925 L 3.925 12.126 C 1.412 14.639 0.001 18.046 0 21.599 C 0 29.002 5.999 35 13.399 35 C 16.953 35 20.362 33.588 22.875 31.075 L 28.547 25.403 L 45.075 8.875 C 46.649 7.3 48.927 6.656 51.092 7.175 C 53.256 7.693 54.996 9.298 55.686 11.415 L 60.902 6.199 C 58.443 2.336 54.18 -0.002 49.601 0 C 46.047 0 42.638 1.412 40.125 3.925 L 17.925 26.126 C 15.425 28.625 11.373 28.625 8.874 26.126 C 6.375 23.626 6.375 19.574 8.875 17.075 L 17.075 8.874 C 18.649 7.299 20.927 6.655 23.092 7.174 C 25.257 7.692 26.997 9.298 27.686 11.415 L 32.902 6.2 C 30.443 2.336 26.18 -0.002 21.601 0 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 45.925 26.125 C 44.352 27.7 42.073 28.344 39.909 27.826 C 37.744 27.308 36.004 25.703 35.314 23.587 L 30.099 28.802 C 32.558 32.664 36.82 35.001 41.398 35 C 44.952 35 48.361 33.588 50.874 31.075 L 73.074 8.874 C 75.574 6.375 79.626 6.375 82.125 8.874 C 84.624 11.374 84.623 15.426 82.124 17.925 L 73.924 26.126 C 72.35 27.701 70.071 28.345 67.907 27.826 C 65.742 27.308 64.002 25.702 63.313 23.585 L 58.097 28.802 C 60.556 32.665 64.819 35.003 69.399 35 C 72.953 35 76.362 33.588 78.875 31.075 L 87.075 22.874 C 89.588 20.361 90.999 16.954 91 13.402 C 91 5.998 85.001 0 77.601 0 C 74.047 0 70.638 1.412 68.125 3.925 L 45.925 26.126 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9903761360,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-go121i\",\"data-framer-name\":\"Logo 2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vH_R0orvE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 22.024 32.112 C 22.061 28.44 21.13 25.454 19.946 25.443 C 18.762 25.431 17.773 28.398 17.738 32.07 C 17.701 35.742 18.632 38.726 19.816 38.738 C 21 38.75 21.989 35.783 22.024 32.111 Z M 15.158 31.278 C 17.174 28.209 18.004 25.194 17.014 24.544 C 16.025 23.894 13.589 25.855 11.574 28.924 C 9.558 31.994 8.726 35.008 9.717 35.658 C 10.706 36.308 13.142 34.346 15.158 31.278 Z M 9.824 26.874 C 13.178 25.382 15.507 23.295 15.026 22.214 C 14.545 21.132 11.435 21.464 8.081 22.957 C 4.726 24.449 2.397 26.535 2.878 27.618 C 3.359 28.699 6.469 28.366 9.823 26.874 Z M 14.624 19.179 C 14.804 18.01 12.008 16.608 8.379 16.049 C 4.75 15.49 1.662 15.986 1.482 17.157 C 1.302 18.327 4.098 19.729 7.726 20.287 C 11.356 20.846 14.443 20.35 14.623 19.179 Z M 15.926 16.392 C 16.71 15.504 15.116 12.814 12.365 10.382 C 9.614 7.951 6.748 6.699 5.964 7.586 C 5.18 8.474 6.774 11.164 9.526 13.596 C 12.276 16.027 15.142 17.279 15.926 16.391 Z M 18.521 14.762 C 19.661 14.44 19.774 11.314 18.774 7.782 C 17.774 4.249 16.04 1.646 14.901 1.969 C 13.762 2.291 13.648 5.417 14.648 8.95 C 15.648 12.482 17.382 15.085 18.521 14.762 Z M 25.566 9.059 C 26.636 5.547 26.585 2.419 25.452 2.075 C 24.318 1.73 22.534 4.298 21.465 7.81 C 20.395 11.322 20.447 14.45 21.58 14.794 C 22.713 15.139 24.498 12.572 25.566 9.058 Z M 30.601 13.805 C 33.399 11.428 35.046 8.77 34.279 7.867 C 33.513 6.965 30.623 8.16 27.825 10.538 C 25.026 12.914 23.38 15.573 24.146 16.475 C 24.914 17.378 27.802 16.182 30.601 13.805 Z M 32.266 20.522 C 35.906 20.034 38.728 18.689 38.57 17.515 C 38.414 16.342 35.336 15.785 31.697 16.271 C 28.058 16.758 25.235 18.104 25.393 19.278 C 25.549 20.451 28.626 21.009 32.266 20.522 Z M 36.96 27.953 C 37.462 26.881 35.175 24.748 31.85 23.19 C 28.526 21.632 25.423 21.238 24.921 22.31 C 24.418 23.382 26.706 25.515 30.03 27.073 C 33.355 28.631 36.458 29.025 36.96 27.953 Z M 29.967 35.864 C 30.97 35.234 30.198 32.203 28.243 29.094 C 26.289 25.986 23.892 23.978 22.89 24.608 C 21.887 25.238 22.659 28.269 24.614 31.377 C 26.568 34.486 28.965 36.494 29.967 35.864 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9582871435,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nkzicx\",\"data-framer-name\":\"Logo 3\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"DJWvj25ro\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 40\"><path d=\"M 4.77 4.235 C 5.03 3.001 6.26 2 7.513 2 L 14.325 2 L 8.66 28.823 L 1.848 28.823 C 0.594 28.823 -0.212 27.823 0.049 26.588 Z M 27.477 4.235 C 27.738 3.001 28.967 2 30.22 2 L 37.032 2 L 31.367 28.823 L 24.555 28.823 C 23.301 28.823 22.495 27.823 22.756 26.588 Z M 72.892 4.235 C 73.152 3.001 74.38 2 75.635 2 L 82.447 2 L 76.782 28.823 L 69.969 28.823 C 68.715 28.823 67.91 27.823 68.171 26.588 L 72.891 4.235 Z M 39.303 2 L 46.115 2 C 47.369 2 48.175 3 47.914 4.235 L 43.193 26.588 C 42.933 27.823 41.704 28.823 40.45 28.823 L 33.638 28.823 Z M 84.718 2 L 91.53 2 C 92.784 2 93.59 3 93.329 4.235 L 88.607 26.588 C 88.347 27.823 87.119 28.823 85.865 28.823 L 79.052 28.823 Z M 50.185 4.235 C 50.445 3.001 51.673 2 52.927 2 L 59.74 2 L 54.074 28.823 L 47.262 28.823 C 46.008 28.823 45.202 27.823 45.464 26.588 L 50.184 4.235 Z M 62.01 2 L 68.823 2 C 70.077 2 70.882 3 70.621 4.235 L 63.54 37.765 C 63.278 38.999 62.05 40 60.796 40 L 53.983 40 Z M 12.819 19.882 L 21.902 19.882 L 20.486 26.588 C 20.225 27.823 18.996 28.823 17.743 28.823 L 10.93 28.823 L 12.818 19.883 Z M 44.52 31.059 L 53.602 31.059 L 51.714 40 L 44.902 40 C 43.647 40 42.842 39 43.103 37.765 L 44.519 31.059 Z M 69.174 33.138 L 68.024 38.584 C 67.974 38.818 67.896 38.882 67.658 38.882 L 67.135 38.882 C 66.897 38.882 66.845 38.818 66.895 38.584 L 68.045 33.138 C 68.095 32.905 68.173 32.84 68.411 32.84 L 68.934 32.84 C 69.172 32.84 69.224 32.905 69.174 33.138 Z M 70.686 36.812 L 70.579 36.812 C 70.465 36.812 70.425 36.844 70.402 36.957 L 70.058 38.584 C 70.008 38.818 69.929 38.882 69.692 38.882 L 69.168 38.882 C 68.931 38.882 68.879 38.818 68.928 38.584 L 70.078 33.138 C 70.128 32.905 70.208 32.84 70.445 32.84 L 71.525 32.84 C 72.769 32.84 73.24 33.283 73.01 34.37 L 72.818 35.281 C 72.588 36.369 71.93 36.811 70.686 36.811 Z M 71.002 34.113 L 70.702 35.539 C 70.677 35.652 70.703 35.684 70.818 35.684 L 70.99 35.684 C 71.39 35.684 71.605 35.523 71.692 35.112 L 71.812 34.54 C 71.899 34.13 71.753 33.968 71.352 33.968 L 71.18 33.968 C 71.066 33.968 71.026 34 71.002 34.113 Z M 74.74 34.991 L 75.59 35.926 C 76.036 36.409 76.098 36.699 75.984 37.239 L 75.954 37.384 C 75.739 38.399 75.227 38.963 74.04 38.963 C 72.854 38.963 72.561 38.488 72.835 37.19 L 72.869 37.03 C 72.919 36.796 72.998 36.731 73.235 36.731 L 73.791 36.731 C 74.029 36.731 74.081 36.796 74.031 37.029 L 73.956 37.384 C 73.888 37.706 73.992 37.835 74.278 37.835 C 74.565 37.835 74.721 37.715 74.783 37.425 L 74.815 37.271 C 74.863 37.045 74.837 36.933 74.591 36.667 L 73.791 35.805 C 73.343 35.33 73.286 35.055 73.4 34.515 L 73.437 34.339 C 73.652 33.324 74.164 32.759 75.35 32.759 C 76.537 32.759 76.83 33.235 76.556 34.532 L 76.522 34.693 C 76.472 34.927 76.393 34.991 76.156 34.991 L 75.599 34.991 C 75.362 34.991 75.31 34.927 75.359 34.693 L 75.434 34.339 C 75.502 34.016 75.399 33.888 75.112 33.888 C 74.826 33.888 74.669 34.008 74.608 34.298 L 74.579 34.435 C 74.529 34.669 74.555 34.782 74.74 34.991 Z M 79.532 33.138 C 79.582 32.905 79.66 32.84 79.898 32.84 L 80.421 32.84 C 80.659 32.84 80.711 32.905 80.661 33.138 L 79.805 37.191 C 79.531 38.488 79.038 38.963 77.851 38.963 C 76.665 38.963 76.372 38.488 76.646 37.19 L 77.502 33.138 C 77.552 32.905 77.631 32.84 77.868 32.84 L 78.392 32.84 C 78.629 32.84 78.681 32.905 78.632 33.138 L 77.735 37.384 C 77.667 37.706 77.779 37.835 78.09 37.835 C 78.392 37.835 78.567 37.706 78.635 37.384 Z M 82.938 36.417 C 82.941 36.482 82.962 36.497 83.003 36.497 C 83.043 36.497 83.072 36.482 83.102 36.417 L 84.516 33.05 C 84.585 32.88 84.667 32.84 84.872 32.84 L 85.666 32.84 C 85.903 32.84 85.955 32.905 85.906 33.138 L 84.756 38.584 C 84.706 38.818 84.626 38.882 84.389 38.882 L 84.013 38.882 C 83.776 38.882 83.723 38.818 83.773 38.584 L 84.325 35.974 C 84.34 35.902 84.327 35.885 84.278 35.885 C 84.245 35.885 84.208 35.902 84.188 35.958 L 83.046 38.617 C 82.964 38.81 82.859 38.882 82.622 38.882 L 82.4 38.882 C 82.154 38.882 82.08 38.81 82.08 38.617 L 82.052 35.957 C 82.047 35.901 82.034 35.885 81.993 35.885 C 81.944 35.885 81.924 35.902 81.909 35.974 L 81.358 38.584 C 81.308 38.818 81.23 38.882 80.992 38.882 L 80.616 38.882 C 80.378 38.882 80.326 38.818 80.376 38.584 L 81.526 33.138 C 81.576 32.905 81.655 32.84 81.892 32.84 L 82.572 32.84 C 82.858 32.84 82.95 32.905 82.948 33.187 L 82.937 36.417 Z M 100 2 C 100 3.105 99.11 4 98.013 4 C 97.484 3.998 96.978 3.787 96.605 3.412 C 96.232 3.037 96.024 2.529 96.026 2 C 96.026 0.895 96.916 0 98.013 0 C 99.11 0 100 0.895 100 2 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11687087421,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-137lud5\",\"data-framer-name\":\"Logo 4\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"COr7pWAZG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 40\"><path d=\"M 56.25 1.25 C 56.25 1.94 56.81 2.5 57.5 2.5 L 58.75 2.5 C 59.44 2.5 60 1.94 60 1.25 C 60 0.56 59.44 0 58.75 0 L 57.5 0 C 56.81 0 56.25 0.56 56.25 1.25 Z M 20 40 L 26.072 40 L 24.305 38.232 C 23.836 37.763 23.2 37.5 22.537 37.5 L 20 37.5 C 10.335 37.5 2.5 29.665 2.5 20 C 2.5 10.335 10.335 2.5 20 2.5 L 40 2.5 C 49.665 2.5 57.5 10.335 57.5 20 C 57.5 29.665 49.665 37.5 40 37.5 L 32.518 37.5 C 31.524 37.5 30.57 37.105 29.867 36.402 L 27.796 34.331 C 26.624 33.159 25.034 32.5 23.376 32.5 L 20 32.5 C 13.096 32.5 7.5 26.904 7.5 20 C 7.5 13.096 13.096 7.5 20 7.5 L 40 7.5 C 46.904 7.5 52.5 13.096 52.5 20 C 52.5 26.904 46.904 32.5 40 32.5 L 35.196 32.5 C 34.201 32.5 33.247 32.105 32.544 31.402 L 30.474 29.331 C 29.302 28.159 27.712 27.5 26.054 27.5 L 20 27.5 C 15.858 27.5 12.5 24.142 12.5 20 C 12.5 15.858 15.858 12.5 20 12.5 L 40 12.5 C 44.105 12.511 47.437 15.82 47.479 19.924 C 47.52 24.029 44.254 27.404 40.151 27.498 L 40.151 27.5 L 38.321 27.5 C 37.326 27.5 36.372 27.105 35.669 26.402 L 33.6 24.33 C 32.644 23.374 31.403 22.753 30.064 22.562 L 30 22.5 L 20 22.5 C 18.619 22.5 17.5 21.381 17.5 20 C 17.5 18.619 18.619 17.5 20 17.5 L 40 17.5 C 41.381 17.5 42.5 18.619 42.5 20 C 42.5 21.381 41.381 22.5 40 22.5 L 35 22.5 L 36.768 24.268 C 37.237 24.737 37.872 25 38.535 25 L 40 25 C 42.761 25 45 22.761 45 20 C 45 17.239 42.761 15 40 15 L 20 15 C 17.239 15 15 17.239 15 20 C 15 22.761 17.239 25 20 25 L 29.179 25 C 30.174 25 31.128 25.395 31.831 26.098 L 33.901 28.169 C 35.073 29.342 36.664 30 38.322 30 L 40.626 30 L 40.626 29.98 C 45.896 29.65 50.001 25.28 50 20 C 50 14.477 45.523 10 40 10 L 20 10 C 14.477 10 10 14.477 10 20 C 10 25.523 14.477 30 20 30 L 26.054 30 C 27.049 30 28.003 30.395 28.706 31.098 L 30.776 33.169 C 31.948 34.342 33.539 35 35.197 35 L 40 35 C 48.284 35 55 28.284 55 20 C 55 11.716 48.284 5 40 5 L 20 5 C 11.716 5 5 11.716 5 20 C 5 28.284 11.716 35 20 35 L 23.376 35 C 24.371 35 25.325 35.395 26.028 36.098 L 28.099 38.169 C 29.271 39.341 30.861 40 32.519 40 L 40 40 C 51.046 40 60 31.046 60 20 C 60 8.954 51.046 0 40 0 L 20 0 C 8.954 0 0 8.954 0 20 C 0 31.046 8.954 40 20 40 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10643043646,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fd8toq\",\"data-framer-name\":\"Logo 5\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LLTIhR_Ze\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 86.275 44\"><path d=\"M 2.23 25.466 L 4.674 25.466 L 4.674 37.449 L 2.23 37.449 Z M 6.092 33.343 C 6.088 31.583 7.146 29.994 8.772 29.318 C 10.397 28.641 12.27 29.012 13.516 30.255 C 14.762 31.499 15.136 33.371 14.463 34.998 C 13.79 36.625 12.203 37.686 10.443 37.686 C 9.286 37.699 8.173 37.247 7.354 36.429 C 6.535 35.612 6.08 34.5 6.092 33.343 Z M 12.332 33.343 C 12.305 32.307 11.448 31.486 10.411 31.503 C 9.374 31.521 8.545 32.372 8.554 33.409 C 8.563 34.445 9.406 35.282 10.443 35.282 C 10.957 35.296 11.453 35.095 11.812 34.727 C 12.171 34.359 12.36 33.857 12.332 33.343 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 24.618 29.238 L 24.618 37.042 C 24.618 39.804 22.459 40.969 20.275 40.969 C 18.71 41.085 17.211 40.318 16.39 38.981 L 18.491 37.767 C 18.832 38.455 19.559 38.865 20.325 38.802 C 20.823 38.885 21.333 38.732 21.703 38.388 C 22.073 38.043 22.262 37.546 22.214 37.042 L 22.214 36.284 C 21.632 37.001 20.742 37.398 19.82 37.352 C 17.516 37.352 15.648 35.484 15.648 33.18 C 15.648 30.877 17.516 29.009 19.82 29.009 C 20.742 28.967 21.63 29.362 22.215 30.076 L 22.215 29.262 Z M 22.215 33.18 C 22.248 32.37 21.785 31.62 21.046 31.287 C 20.306 30.954 19.438 31.103 18.853 31.665 C 18.267 32.226 18.082 33.087 18.384 33.84 C 18.686 34.593 19.416 35.086 20.227 35.087 C 20.751 35.124 21.265 34.938 21.644 34.575 C 22.023 34.211 22.23 33.705 22.215 33.18 Z M 26.027 33.343 C 26.024 31.583 27.082 29.994 28.707 29.318 C 30.333 28.641 32.205 29.012 33.452 30.255 C 34.698 31.499 35.071 33.371 34.399 34.998 C 33.726 36.625 32.139 37.686 30.378 37.686 C 29.222 37.699 28.108 37.246 27.29 36.429 C 26.471 35.612 26.016 34.5 26.027 33.343 Z M 32.268 33.343 C 32.242 32.306 31.384 31.484 30.347 31.502 C 29.309 31.519 28.48 32.37 28.489 33.407 C 28.497 34.445 29.341 35.282 30.378 35.282 C 30.889 35.292 31.382 35.088 31.737 34.721 C 32.093 34.353 32.279 33.854 32.252 33.343 Z M 35.861 27.038 C 35.861 26.218 36.525 25.555 37.344 25.555 C 38.163 25.555 38.827 26.218 38.827 27.038 C 38.827 27.857 38.163 28.521 37.344 28.521 C 36.527 28.516 35.865 27.855 35.861 27.038 Z M 36.114 29.238 L 38.558 29.238 L 38.558 37.449 L 36.114 37.449 L 36.114 29.238 Z M 49.214 33.343 C 49.273 34.44 48.893 35.514 48.157 36.329 C 47.422 37.144 46.392 37.633 45.295 37.686 C 44.372 37.73 43.477 37.363 42.851 36.684 L 42.851 40.757 L 40.407 40.757 L 40.407 29.238 L 42.851 29.238 L 42.851 30.012 C 43.477 29.333 44.372 28.966 45.295 29.01 C 46.39 29.062 47.42 29.549 48.155 30.363 C 48.891 31.176 49.272 32.249 49.214 33.344 Z M 46.769 33.343 C 46.742 32.277 45.865 31.429 44.798 31.438 C 43.732 31.447 42.869 32.31 42.86 33.377 C 42.851 34.443 43.699 35.32 44.765 35.348 C 45.305 35.382 45.833 35.181 46.214 34.797 C 46.595 34.413 46.792 33.883 46.753 33.343 L 46.77 33.343 Z M 56.823 34.989 C 56.823 36.879 55.193 37.686 53.401 37.686 C 51.937 37.815 50.54 37.041 49.874 35.731 L 52.008 34.517 C 52.187 35.127 52.767 35.531 53.401 35.486 C 53.997 35.486 54.29 35.298 54.29 34.972 C 54.29 34.068 50.216 34.549 50.216 31.714 C 50.216 29.922 51.731 29.018 53.475 29.018 C 54.785 28.978 56.013 29.652 56.684 30.778 L 54.542 31.902 C 54.349 31.462 53.914 31.178 53.434 31.176 C 53.011 31.176 52.749 31.339 52.749 31.64 C 52.782 32.577 56.823 31.951 56.823 34.989 Z M 65.817 29.238 L 65.817 37.449 L 63.373 37.449 L 63.373 36.684 C 62.796 37.374 61.924 37.747 61.026 37.686 C 59.397 37.686 57.955 36.504 57.955 34.28 L 57.955 29.238 L 60.399 29.238 L 60.399 33.922 C 60.356 34.326 60.497 34.729 60.783 35.018 C 61.069 35.306 61.47 35.451 61.874 35.412 C 62.77 35.412 63.398 34.891 63.398 33.726 L 63.398 29.238 Z M 79.944 32.414 L 79.944 37.449 L 77.5 37.449 L 77.5 32.626 C 77.5 31.812 77.102 31.274 76.319 31.274 C 75.538 31.274 75.032 31.852 75.032 32.821 L 75.032 37.449 L 72.588 37.449 L 72.588 32.626 C 72.588 31.812 72.197 31.274 71.406 31.274 C 70.617 31.274 70.127 31.852 70.127 32.821 L 70.127 37.449 L 67.684 37.449 L 67.684 29.238 L 70.127 29.238 L 70.127 29.996 C 70.646 29.316 71.474 28.944 72.327 29.01 C 73.185 28.968 74.001 29.38 74.478 30.093 C 75.032 29.348 75.93 28.938 76.857 29.01 C 78.714 29.01 79.945 30.363 79.945 32.415 Z M 82.03 29.188 C 83.038 29.188 83.855 28.371 83.855 27.364 C 83.855 26.356 83.038 25.539 82.03 25.539 C 81.022 25.539 80.205 26.356 80.205 27.364 C 80.205 28.371 81.022 29.188 82.03 29.188 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 29.889 19.249 C 34.609 19.249 38.435 15.423 38.435 10.703 C 38.435 5.983 34.609 2.157 29.889 2.157 C 25.17 2.157 21.343 5.983 21.343 10.703 C 21.343 15.422 25.169 19.249 29.889 19.249 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 48.994 19.249 C 53.714 19.249 57.54 15.423 57.54 10.703 C 57.54 5.983 53.714 2.157 48.994 2.157 C 44.274 2.157 40.447 5.983 40.447 10.703 C 40.447 15.422 44.273 19.249 48.994 19.249 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 19.331 2.157 L 2.247 2.157 L 2.247 19.241 L 19.331 19.241 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11515361504,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nhthl2\",\"data-framer-name\":\"Logo 6\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TEoUFNd9A\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 78 32\"><path d=\"M 55.5 0 L 77.5 0 L 58.5 32 L 36.5 32 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 35.5 0 L 51.5 0 L 32.5 32 L 16.5 32 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 19.5 0 L 31.5 0 L 12.5 32 L 0.5 32 Z\" fill=\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11410273832,withExternalLayout:true})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tcq3in\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"MHv_p_Qyi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1icd08m\",\"data-framer-name\":\"Pulse Circle\",layoutDependency:layoutDependency,layoutId:\"QUCtQlG0i\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1878hwg\",\"data-framer-name\":\"Small\",layoutDependency:layoutDependency,layoutId:\"iUQZU0JOH\",style:{backgroundColor:\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fpzrrs\",layoutDependency:layoutDependency,layoutId:\"s9okD94Ca\",style:{backgroundColor:\"var(--token-018638ab-6906-4f93-a993-1c197b597327, rgb(29, 61, 243))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.4,className:\"framer-zpa9ev\",\"data-framer-name\":\"Big\",layoutDependency:layoutDependency,layoutId:\"q6apo1eJy\",style:{backgroundColor:\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.4},transformTemplate:transformTemplate1})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1q5w7az\",\"data-styles-preset\":\"BKpJLHEiw\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255)))\"},children:\"Clients\"})}),className:\"framer-ivabb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bEc0YL3Ni\",style:{\"--extracted-r6o4lv\":\"var(--token-55b9dbd8-1c89-4689-99b1-e62168496f26, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-p6fyk.framer-wf32ly, .framer-p6fyk .framer-wf32ly { display: block; }\",\".framer-p6fyk.framer-h31m8r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 220px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 379px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p6fyk .framer-boas16 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 65px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p6fyk .framer-1e8wqym-container { flex: none; height: 65px; position: relative; width: 100%; }\",\".framer-p6fyk .framer-5e4kfv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 65px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-p6fyk .framer-15zt1v6 { flex: none; height: 35px; position: relative; width: 91px; }\",\".framer-p6fyk .framer-go121i { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-p6fyk .framer-1nkzicx { flex: none; height: 40px; position: relative; width: 100px; }\",\".framer-p6fyk .framer-137lud5 { flex: none; height: 40px; position: relative; width: 60px; }\",\".framer-p6fyk .framer-1fd8toq { flex: none; height: 44px; position: relative; width: 86px; }\",\".framer-p6fyk .framer-nhthl2 { flex: none; height: 32px; position: relative; width: 78px; }\",\".framer-p6fyk .framer-1tcq3in { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 16px; overflow: visible; padding: 0px; position: absolute; right: 16px; top: 16px; z-index: 1; }\",\".framer-p6fyk .framer-1icd08m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-p6fyk .framer-1878hwg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-p6fyk .framer-1fpzrrs { flex: none; height: 4px; left: calc(50.00000000000002% - 4px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 4px / 2); width: 4px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p6fyk .framer-zpa9ev { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 14px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-p6fyk .framer-ivabb7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-p6fyk.framer-h31m8r, .framer-p6fyk .framer-boas16, .framer-p6fyk .framer-5e4kfv, .framer-p6fyk .framer-1tcq3in, .framer-p6fyk .framer-1icd08m { gap: 0px; } .framer-p6fyk.framer-h31m8r > *, .framer-p6fyk .framer-boas16 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-p6fyk.framer-h31m8r > :first-child, .framer-p6fyk .framer-boas16 > :first-child { margin-top: 0px; } .framer-p6fyk.framer-h31m8r > :last-child, .framer-p6fyk .framer-boas16 > :last-child { margin-bottom: 0px; } .framer-p6fyk .framer-5e4kfv > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-p6fyk .framer-5e4kfv > :first-child, .framer-p6fyk .framer-1tcq3in > :first-child, .framer-p6fyk .framer-1icd08m > :first-child { margin-left: 0px; } .framer-p6fyk .framer-5e4kfv > :last-child, .framer-p6fyk .framer-1tcq3in > :last-child, .framer-p6fyk .framer-1icd08m > :last-child { margin-right: 0px; } .framer-p6fyk .framer-1tcq3in > *, .framer-p6fyk .framer-1icd08m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 220\n * @framerIntrinsicWidth 379\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertF9lNQdHg=withCSS(Component,css,\"framer-p6fyk\");export default FramertF9lNQdHg;FramertF9lNQdHg.displayName=\"Card/Logos\";FramertF9lNQdHg.defaultProps={height:220,width:379};addFonts(FramertF9lNQdHg,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertF9lNQdHg\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"379\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"220\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tF9lNQdHg.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "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", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "Ticker", "SVG", "MotionDivWithFX", "RichText2", "css", "FramertF9lNQdHg", "withCSS", "tF9lNQdHg_default", "addFonts", "TickerFonts", "getFontsFromSharedStyle", "fonts", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType"]
}
