{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/bSG2fUXcc43766cbIglD/Ticker.js", "ssg:https://framerusercontent.com/modules/iSZOjhn5yfdMyxc6bLPJ/9AJJ1HbBzQbJ8Md1j9z6/UkmU1085L.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}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;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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}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,hoverFactor,animateToValue,speed]);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\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (2797bee)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/bSG2fUXcc43766cbIglD/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8erxfTpSvMFBBdmJHYJA/Kwpu1vNtWJc69sBaLec3/MOqltRSob.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/rtPJGoErHFAejXN1Tv6W/SLJcaGeFfGHBVZZgw7Oz/n_qg5dO28.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/LoZy0StCXSfVRKgBInX0/5kvd5U9AjQb3N8IKcs3j/S6zRdH0v6.js\";const EmbedFonts=getFonts(Embed);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"YYOHe4KKX\",\"N36ebbd3x\"];const serializationHash=\"framer-7MsXZ\";const variantClassNames={N36ebbd3x:\"framer-v-pdiklr\",YYOHe4KKX:\"framer-v-alqb0d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"YYOHe4KKX\",Phone:\"N36ebbd3x\"};const getProps=({height,icon,id,title,width,...props})=>{return{...props,JWwOyEnr_:title??props.JWwOyEnr_??\"Don\u2019t take our word for it\",K3AsA3nj6:icon??props.K3AsA3nj6??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"YYOHe4KKX\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,JWwOyEnr_,K3AsA3nj6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YYOHe4KKX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-alqb0d\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"YYOHe4KKX\",ref:refBinding,style:{...style},...addPropertyOverrides({N36ebbd3x:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-auq5mr\",\"data-framer-name\":\"Rolling stripes\",layoutDependency:layoutDependency,layoutId:\"px33n8Ogu\",children:[K3AsA3nj6&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-9c8s1e\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"EsPeXKsIi\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9dxxj0\",\"data-styles-preset\":\"MOqltRSob\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6f0e9f07-86a7-4cc0-bc8c-e0028a8d000c, rgb(144, 0, 255)))\"},children:\"\uEB7C\"})}),className:\"framer-17hq4q4\",\"data-framer-name\":\"Icon\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UdwPt0Pzi\",style:{\"--extracted-r6o4lv\":\"var(--token-6f0e9f07-86a7-4cc0-bc8c-e0028a8d000c, rgb(144, 0, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-17yibxx\",\"data-styles-preset\":\"S6zRdH0v6\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-2e56f5df-2069-4307-af95-ad7d90cdfc8f, rgb(50, 59, 74)))\"},children:\"Don\u2019t take our word for it\"})}),className:\"framer-9oqzaq\",\"data-framer-name\":\"Don\u2019t take our word for it\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pHpgalMQ7\",style:{\"--extracted-tcooor\":\"var(--token-2e56f5df-2069-4307-af95-ad7d90cdfc8f, rgb(50, 59, 74))\",\"--framer-paragraph-spacing\":\"0px\"},text:JWwOyEnr_,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({N36ebbd3x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-10x6cej\",\"data-styles-preset\":\"n_qg5dO28\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-2e56f5df-2069-4307-af95-ad7d90cdfc8f, rgb(50, 59, 74)))\"},children:\"Don\u2019t take our word for it\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o6anxv\",\"data-framer-name\":\"Quotes\",layoutDependency:layoutDependency,layoutId:\"scq9apiSr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-162ayul\",\"data-framer-name\":\"Social proof\",layoutDependency:layoutDependency,layoutId:\"PKYtTPLUA\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uei2yw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Jpqi3D0xe-container\",nodeId:\"Jpqi3D0xe\",rendersWithMotion:true,scopeId:\"UkmU1085L\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://widget.senja.io/widget/585caf04-c1b6-4653-9496-ad9ca0547514/platform.js\" type=\"text/javascript\" async></script>\\n        <div class=\"senja-embed\" data-id=\"585caf04-c1b6-4653-9496-ad9ca0547514\" data-mode=\"shadow\" data-lazyload=\"false\" style=\"display: block;overflow:hidden\"></div>',id:\"Jpqi3D0xe\",layoutId:\"Jpqi3D0xe\",radius:\"0px\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bqobv6-container\",\"data-framer-name\":\"Logos\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rbIRzQ4ao-container\",name:\"Logos\",nodeId:\"rbIRzQ4ao\",rendersWithMotion:true,scopeId:\"UkmU1085L\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:.5,id:\"rbIRzQ4ao\",layoutId:\"rbIRzQ4ao\",name:\"Logos\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c53rzt\",\"data-framer-name\":\"Airtable\",layoutDependency:layoutDependency,layoutId:\"IOB11ZOdG\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-15ozkbt\",layoutDependency:layoutDependency,layoutId:\"nQLWxeUck\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128.705 28\" overflow=\"visible\"><g><path d=\"M 0 28 L 0 0.039 L 128.705 0.039 L 128.705 28 Z\" fill=\"transparent\"></path><path d=\"M 50.848 15.852 L 48.642 9.915 C 48.552 9.672 48.208 9.672 48.118 9.915 L 45.912 15.852 C 45.897 15.894 45.891 15.94 45.897 15.984 C 45.903 16.029 45.919 16.071 45.945 16.108 C 45.971 16.145 46.005 16.175 46.045 16.196 C 46.085 16.217 46.129 16.228 46.175 16.228 L 50.586 16.228 C 50.631 16.228 50.675 16.217 50.715 16.196 C 50.755 16.175 50.789 16.145 50.815 16.108 C 50.841 16.071 50.857 16.029 50.863 15.984 C 50.869 15.939 50.863 15.894 50.848 15.852 M 51.867 19.188 L 44.894 19.188 C 44.836 19.189 44.781 19.206 44.734 19.238 C 44.687 19.271 44.651 19.317 44.631 19.37 L 43.259 23.064 C 43.239 23.118 43.203 23.164 43.156 23.196 C 43.109 23.229 43.054 23.246 42.997 23.246 L 39.974 23.246 C 39.928 23.246 39.883 23.235 39.843 23.214 C 39.803 23.192 39.768 23.161 39.743 23.124 C 39.717 23.086 39.701 23.042 39.696 22.997 C 39.691 22.952 39.698 22.906 39.715 22.863 L 46.673 5.556 C 46.694 5.505 46.73 5.46 46.776 5.429 C 46.823 5.398 46.877 5.381 46.933 5.381 L 49.827 5.381 C 49.941 5.381 50.044 5.451 50.086 5.556 L 57.045 22.863 C 57.062 22.906 57.068 22.951 57.064 22.997 C 57.059 23.042 57.043 23.086 57.017 23.124 C 56.992 23.162 56.957 23.192 56.917 23.214 C 56.876 23.235 56.831 23.246 56.786 23.246 L 53.764 23.246 C 53.707 23.246 53.651 23.229 53.604 23.196 C 53.557 23.164 53.521 23.118 53.502 23.064 L 52.129 19.37 C 52.109 19.317 52.073 19.271 52.026 19.238 C 51.979 19.206 51.924 19.189 51.867 19.188 M 58.461 11.455 L 61.046 11.455 C 61.12 11.455 61.191 11.485 61.244 11.537 C 61.296 11.589 61.326 11.66 61.326 11.734 L 61.326 22.967 C 61.326 23.041 61.296 23.112 61.244 23.165 C 61.191 23.217 61.12 23.246 61.046 23.246 L 58.461 23.246 C 58.387 23.246 58.316 23.217 58.263 23.165 C 58.211 23.112 58.182 23.041 58.182 22.967 L 58.182 11.734 C 58.182 11.66 58.211 11.589 58.263 11.537 C 58.316 11.485 58.387 11.455 58.461 11.455 Z M 70.754 14.188 C 70.754 14.262 70.724 14.333 70.672 14.385 C 70.62 14.437 70.548 14.467 70.474 14.467 L 70.396 14.467 C 69.118 14.467 68.18 14.773 67.584 15.386 C 66.987 15.998 66.689 17.011 66.689 18.423 L 66.689 22.967 C 66.689 23.041 66.66 23.112 66.608 23.165 C 66.555 23.217 66.484 23.246 66.41 23.246 L 63.85 23.246 C 63.776 23.246 63.705 23.217 63.652 23.165 C 63.6 23.112 63.571 23.041 63.571 22.967 L 63.571 11.734 C 63.571 11.66 63.6 11.589 63.652 11.537 C 63.705 11.485 63.776 11.455 63.85 11.455 L 66.384 11.455 C 66.458 11.455 66.529 11.485 66.582 11.537 C 66.634 11.589 66.664 11.66 66.664 11.734 L 66.664 13.956 L 66.715 13.956 C 67.022 13.037 67.507 12.332 68.172 11.838 C 68.837 11.345 69.655 11.098 70.626 11.098 L 70.754 11.098 Z M 77.822 14.084 C 77.748 14.084 77.677 14.113 77.625 14.166 C 77.572 14.218 77.543 14.289 77.543 14.363 L 77.543 19.035 C 77.543 19.512 77.636 19.852 77.824 20.056 C 78.011 20.26 78.335 20.362 78.795 20.362 L 79.052 20.362 C 79.127 20.362 79.198 20.392 79.25 20.444 C 79.303 20.496 79.332 20.567 79.332 20.641 L 79.332 22.993 C 79.332 23.067 79.303 23.138 79.25 23.19 C 79.198 23.242 79.127 23.272 79.052 23.272 L 77.952 23.272 C 76.81 23.272 75.932 22.978 75.319 22.391 C 74.705 21.804 74.398 20.933 74.398 19.775 L 74.398 14.363 C 74.398 14.289 74.369 14.218 74.316 14.166 C 74.264 14.113 74.193 14.084 74.119 14.084 L 72.505 14.084 C 72.431 14.084 72.36 14.055 72.307 14.002 C 72.255 13.95 72.226 13.879 72.226 13.805 L 72.226 11.734 C 72.226 11.66 72.255 11.589 72.307 11.537 C 72.36 11.485 72.431 11.455 72.505 11.455 L 74.119 11.455 C 74.193 11.455 74.264 11.426 74.317 11.373 C 74.369 11.321 74.398 11.25 74.398 11.176 L 74.398 7.013 C 74.398 6.939 74.428 6.868 74.48 6.815 C 74.533 6.763 74.604 6.734 74.678 6.734 L 77.263 6.734 C 77.337 6.734 77.408 6.763 77.461 6.815 C 77.513 6.868 77.543 6.939 77.543 7.013 L 77.543 11.176 C 77.543 11.25 77.572 11.321 77.624 11.373 C 77.677 11.426 77.748 11.455 77.822 11.455 L 79.691 11.455 C 79.766 11.455 79.837 11.485 79.889 11.537 C 79.942 11.589 79.971 11.66 79.971 11.734 L 79.971 13.805 C 79.971 13.879 79.942 13.95 79.889 14.002 C 79.837 14.055 79.766 14.084 79.691 14.084 Z M 89.66 19.75 C 90.248 19.137 90.542 18.338 90.542 17.351 C 90.542 16.364 90.248 15.564 89.66 14.952 C 89.072 14.339 88.301 14.033 87.346 14.033 C 86.392 14.033 85.621 14.339 85.033 14.952 C 84.445 15.564 84.151 16.364 84.151 17.351 C 84.151 18.338 84.445 19.137 85.033 19.75 C 85.621 20.362 86.392 20.669 87.346 20.669 C 88.301 20.669 89.072 20.362 89.66 19.75 Z M 83.691 22.889 C 82.822 22.396 82.135 21.677 81.633 20.732 C 81.13 19.788 80.879 18.661 80.879 17.351 C 80.879 16.041 81.13 14.913 81.633 13.969 C 82.135 13.025 82.822 12.306 83.691 11.813 C 84.56 11.319 85.514 11.072 86.554 11.072 C 87.474 11.072 88.262 11.251 88.919 11.608 C 89.574 11.966 90.098 12.468 90.491 13.114 L 90.542 13.114 L 90.542 11.734 C 90.542 11.66 90.571 11.589 90.624 11.537 C 90.676 11.485 90.747 11.455 90.821 11.455 L 93.381 11.455 C 93.455 11.455 93.526 11.485 93.578 11.537 C 93.631 11.589 93.66 11.66 93.66 11.734 L 93.66 22.967 C 93.66 23.041 93.631 23.112 93.578 23.164 C 93.526 23.217 93.455 23.246 93.381 23.246 L 90.821 23.246 C 90.747 23.246 90.676 23.217 90.624 23.164 C 90.571 23.112 90.542 23.041 90.542 22.967 L 90.542 21.587 L 90.491 21.587 C 90.098 22.234 89.574 22.736 88.919 23.093 C 88.262 23.45 87.474 23.629 86.554 23.629 C 85.514 23.629 84.56 23.382 83.691 22.889 Z M 104.305 19.75 C 104.894 19.137 105.187 18.338 105.187 17.351 C 105.187 16.364 104.894 15.564 104.305 14.952 C 103.718 14.339 102.946 14.033 101.992 14.033 C 101.038 14.033 100.267 14.339 99.679 14.952 C 99.091 15.564 98.797 16.364 98.797 17.351 C 98.797 18.338 99.091 19.137 99.679 19.75 C 100.267 20.362 101.038 20.669 101.992 20.669 C 102.946 20.669 103.718 20.362 104.305 19.75 Z M 100.42 23.093 C 99.764 22.736 99.239 22.234 98.848 21.587 L 98.797 21.587 L 98.797 22.967 C 98.797 23.041 98.767 23.112 98.715 23.164 C 98.662 23.217 98.591 23.246 98.517 23.246 L 95.932 23.246 C 95.858 23.246 95.787 23.217 95.734 23.164 C 95.682 23.112 95.652 23.041 95.652 22.967 L 95.652 5.66 C 95.652 5.586 95.682 5.515 95.734 5.463 C 95.787 5.41 95.858 5.381 95.932 5.381 L 98.517 5.381 C 98.591 5.381 98.662 5.41 98.715 5.463 C 98.767 5.515 98.797 5.586 98.797 5.66 L 98.797 13.114 L 98.848 13.114 C 99.239 12.468 99.764 11.966 100.42 11.608 C 101.076 11.251 101.864 11.072 102.784 11.072 C 103.824 11.072 104.779 11.319 105.647 11.812 C 106.517 12.306 107.202 13.025 107.706 13.969 C 108.208 14.914 108.46 16.041 108.46 17.351 C 108.46 18.661 108.208 19.788 107.706 20.733 C 107.202 21.677 106.517 22.396 105.647 22.889 C 104.779 23.382 103.824 23.629 102.784 23.629 C 101.865 23.629 101.076 23.451 100.42 23.093 M 112.815 23.246 L 110.23 23.246 C 110.156 23.246 110.085 23.217 110.032 23.165 C 109.98 23.112 109.95 23.041 109.95 22.967 L 109.95 5.661 C 109.95 5.587 109.98 5.516 110.032 5.463 C 110.085 5.411 110.156 5.381 110.23 5.381 L 112.815 5.381 C 112.889 5.381 112.96 5.411 113.013 5.463 C 113.065 5.516 113.095 5.587 113.095 5.661 L 113.095 22.967 C 113.095 23.041 113.065 23.112 113.013 23.165 C 112.96 23.217 112.889 23.246 112.815 23.246 Z M 118.913 14.186 C 118.485 14.52 118.195 15.002 118.045 15.632 C 118.004 15.806 118.14 15.973 118.319 15.973 L 123.239 15.973 C 123.41 15.973 123.544 15.82 123.516 15.652 C 123.418 15.056 123.161 14.58 122.748 14.225 C 122.262 13.808 121.627 13.599 120.843 13.599 C 120.059 13.599 119.415 13.795 118.913 14.186 Z M 125.214 12.719 C 126.22 13.816 126.722 15.369 126.722 17.376 L 126.722 17.71 C 126.722 17.784 126.693 17.855 126.641 17.907 C 126.588 17.959 126.517 17.989 126.443 17.989 L 118.224 17.989 C 118.183 17.989 118.143 17.998 118.105 18.015 C 118.068 18.032 118.035 18.058 118.009 18.089 C 117.983 18.12 117.963 18.157 117.953 18.196 C 117.942 18.236 117.94 18.277 117.947 18.317 C 118.079 19.063 118.409 19.655 118.939 20.094 C 119.543 20.597 120.306 20.847 121.227 20.847 C 122.414 20.847 123.515 20.384 124.525 19.458 C 124.649 19.345 124.845 19.369 124.941 19.507 L 126.198 21.308 C 126.237 21.364 126.254 21.432 126.247 21.5 C 126.239 21.568 126.206 21.631 126.155 21.677 C 125.538 22.216 124.852 22.671 124.115 23.029 C 123.297 23.429 122.334 23.629 121.227 23.629 C 119.949 23.629 118.832 23.37 117.877 22.851 C 116.923 22.332 116.182 21.6 115.654 20.656 C 115.125 19.712 114.862 18.619 114.862 17.376 C 114.862 16.135 115.117 15.037 115.629 14.084 C 116.14 13.131 116.855 12.391 117.776 11.864 C 118.696 11.337 119.77 11.073 120.997 11.073 C 122.803 11.073 124.209 11.622 125.214 12.719 Z M 61.663 7.303 C 61.663 8.355 60.809 9.209 59.754 9.209 C 58.699 9.209 57.844 8.355 57.844 7.302 C 57.844 6.25 58.699 5.396 59.754 5.396 C 60.809 5.396 61.663 6.25 61.663 7.303 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 14.724 0.348 L 2.432 5.426 C 1.748 5.708 1.755 6.678 2.443 6.95 L 14.786 11.837 C 15.871 12.266 17.079 12.266 18.163 11.837 L 30.507 6.95 C 31.194 6.678 31.202 5.708 30.518 5.426 L 18.226 0.347 C 17.105 -0.116 15.845 -0.116 14.724 0.347\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 17.569 14.505 L 17.569 26.713 C 17.569 27.294 18.156 27.691 18.696 27.478 L 32.451 22.148 C 32.604 22.087 32.736 21.981 32.828 21.845 C 32.921 21.709 32.97 21.548 32.97 21.383 L 32.97 9.175 C 32.97 8.594 32.384 8.197 31.843 8.411 L 18.089 13.741 C 17.936 13.802 17.804 13.907 17.712 14.043 C 17.619 14.18 17.569 14.34 17.569 14.505 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 14.356 15.135 L 10.275 17.103 L 9.86 17.303 L 1.243 21.425 C 0.697 21.688 0 21.29 0 20.685 L 0 9.226 C 0 9.007 0.113 8.818 0.264 8.676 C 0.325 8.614 0.396 8.561 0.472 8.519 C 0.678 8.396 0.972 8.363 1.221 8.462 L 14.288 13.631 C 14.952 13.894 15.004 14.823 14.356 15.135 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 14.358 15.135 L 10.276 17.103 L 0.265 8.675 C 0.327 8.614 0.397 8.561 0.474 8.519 C 0.68 8.396 0.973 8.363 1.223 8.462 L 14.29 13.631 C 14.954 13.894 15.006 14.823 14.358 15.135 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14ts2kw\",layoutDependency:layoutDependency,layoutId:\"xvZYmhBoW\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128.705 27.961\" overflow=\"visible\"><path d=\"M 0 27.961 L 0 0 L 128.705 0 L 128.705 27.961 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1tfz2w6\",layoutDependency:layoutDependency,layoutId:\"f9r5_PeC4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 87.028 18.248\" overflow=\"visible\"><path d=\"M 11.153 10.471 L 8.947 4.534 C 8.857 4.291 8.513 4.291 8.423 4.534 L 6.218 10.471 C 6.202 10.513 6.197 10.559 6.203 10.603 C 6.208 10.648 6.225 10.691 6.25 10.727 C 6.276 10.764 6.311 10.795 6.35 10.815 C 6.39 10.836 6.435 10.847 6.48 10.847 L 10.891 10.847 C 10.936 10.847 10.981 10.836 11.021 10.815 C 11.061 10.795 11.095 10.764 11.121 10.727 C 11.146 10.69 11.163 10.648 11.168 10.603 C 11.174 10.558 11.169 10.513 11.153 10.471 M 12.172 13.808 L 5.199 13.808 C 5.142 13.808 5.086 13.825 5.039 13.858 C 4.993 13.89 4.957 13.936 4.937 13.99 L 3.564 17.683 C 3.544 17.737 3.508 17.783 3.462 17.815 C 3.415 17.848 3.359 17.865 3.302 17.865 L 0.28 17.865 C 0.234 17.865 0.189 17.854 0.148 17.833 C 0.108 17.811 0.074 17.78 0.048 17.743 C 0.022 17.705 0.006 17.661 0.002 17.616 C -0.003 17.571 0.003 17.525 0.02 17.482 L 6.979 0.175 C 7 0.124 7.035 0.079 7.082 0.048 C 7.128 0.017 7.183 0 7.238 0.001 L 10.132 0.001 C 10.247 0.001 10.349 0.07 10.392 0.175 L 17.35 17.482 C 17.367 17.525 17.374 17.571 17.369 17.616 C 17.364 17.661 17.348 17.705 17.323 17.743 C 17.297 17.781 17.263 17.812 17.222 17.833 C 17.182 17.854 17.137 17.866 17.091 17.866 L 14.069 17.866 C 14.012 17.866 13.956 17.848 13.909 17.816 C 13.863 17.783 13.827 17.737 13.807 17.683 L 12.434 13.99 C 12.414 13.936 12.378 13.89 12.331 13.858 C 12.285 13.825 12.229 13.808 12.172 13.808 M 18.767 6.074 L 21.352 6.074 C 21.426 6.074 21.497 6.104 21.549 6.156 C 21.602 6.209 21.631 6.28 21.631 6.354 L 21.631 17.586 C 21.631 17.66 21.602 17.731 21.549 17.784 C 21.497 17.836 21.426 17.865 21.352 17.865 L 18.767 17.865 C 18.692 17.865 18.621 17.836 18.569 17.784 C 18.516 17.731 18.487 17.66 18.487 17.586 L 18.487 6.353 C 18.487 6.279 18.516 6.208 18.569 6.156 C 18.621 6.104 18.692 6.074 18.767 6.074 Z M 31.059 8.807 C 31.059 8.881 31.03 8.952 30.977 9.004 C 30.925 9.057 30.854 9.086 30.78 9.086 L 30.701 9.086 C 29.423 9.086 28.486 9.392 27.889 10.005 C 27.293 10.617 26.995 11.63 26.995 13.042 L 26.995 17.586 C 26.995 17.66 26.965 17.731 26.913 17.784 C 26.861 17.836 26.789 17.865 26.715 17.865 L 24.156 17.865 C 24.081 17.865 24.01 17.836 23.958 17.784 C 23.905 17.731 23.876 17.66 23.876 17.586 L 23.876 6.353 C 23.876 6.279 23.905 6.208 23.958 6.156 C 24.01 6.104 24.081 6.074 24.156 6.074 L 26.69 6.074 C 26.764 6.074 26.835 6.104 26.887 6.156 C 26.94 6.208 26.969 6.279 26.969 6.353 L 26.969 8.575 L 27.02 8.575 C 27.327 7.657 27.813 6.951 28.478 6.457 C 29.142 5.964 29.96 5.717 30.931 5.717 L 31.059 5.717 Z M 38.128 8.703 C 38.054 8.703 37.983 8.732 37.93 8.785 C 37.878 8.837 37.848 8.908 37.848 8.982 L 37.848 13.654 C 37.848 14.131 37.941 14.471 38.129 14.675 C 38.317 14.879 38.64 14.981 39.101 14.981 L 39.358 14.981 C 39.432 14.981 39.503 15.011 39.556 15.063 C 39.608 15.116 39.637 15.186 39.637 15.26 L 39.637 17.612 C 39.637 17.686 39.608 17.757 39.556 17.809 C 39.503 17.861 39.432 17.891 39.358 17.891 L 38.257 17.891 C 37.115 17.891 36.238 17.597 35.624 17.01 C 35.01 16.423 34.704 15.552 34.704 14.394 L 34.704 8.982 C 34.704 8.908 34.674 8.837 34.622 8.785 C 34.569 8.732 34.498 8.703 34.424 8.703 L 32.81 8.703 C 32.736 8.703 32.665 8.674 32.613 8.621 C 32.56 8.569 32.531 8.498 32.531 8.424 L 32.531 6.353 C 32.531 6.279 32.56 6.208 32.613 6.156 C 32.665 6.104 32.736 6.074 32.81 6.074 L 34.424 6.074 C 34.498 6.074 34.57 6.045 34.622 5.993 C 34.674 5.94 34.704 5.869 34.704 5.795 L 34.704 1.632 C 34.704 1.558 34.733 1.487 34.786 1.435 C 34.838 1.382 34.909 1.353 34.983 1.353 L 37.568 1.353 C 37.643 1.353 37.714 1.382 37.766 1.435 C 37.819 1.487 37.848 1.558 37.848 1.632 L 37.848 5.795 C 37.848 5.869 37.877 5.94 37.93 5.993 C 37.982 6.045 38.053 6.074 38.128 6.074 L 39.997 6.074 C 40.071 6.074 40.142 6.104 40.195 6.156 C 40.247 6.208 40.276 6.279 40.276 6.353 L 40.276 8.424 C 40.276 8.498 40.247 8.569 40.195 8.621 C 40.142 8.674 40.071 8.703 39.997 8.703 Z M 49.965 14.369 C 50.553 13.756 50.847 12.957 50.847 11.97 C 50.847 10.983 50.553 10.183 49.965 9.571 C 49.377 8.958 48.606 8.652 47.652 8.652 C 46.697 8.652 45.926 8.958 45.338 9.571 C 44.75 10.183 44.456 10.983 44.456 11.97 C 44.456 12.957 44.75 13.756 45.338 14.369 C 45.926 14.981 46.697 15.288 47.652 15.288 C 48.606 15.288 49.377 14.981 49.965 14.369 Z M 43.996 17.508 C 43.127 17.015 42.441 16.296 41.939 15.351 C 41.436 14.407 41.184 13.28 41.184 11.97 C 41.184 10.66 41.436 9.532 41.939 8.588 C 42.441 7.644 43.127 6.925 43.996 6.432 C 44.865 5.938 45.82 5.692 46.859 5.692 C 47.779 5.692 48.568 5.87 49.224 6.227 C 49.88 6.585 50.404 7.087 50.796 7.733 L 50.847 7.733 L 50.847 6.353 C 50.847 6.279 50.877 6.208 50.929 6.156 C 50.981 6.104 51.052 6.074 51.127 6.074 L 53.686 6.074 C 53.76 6.074 53.831 6.104 53.884 6.156 C 53.936 6.208 53.966 6.279 53.966 6.353 L 53.966 17.586 C 53.966 17.66 53.936 17.731 53.884 17.783 C 53.831 17.836 53.76 17.865 53.686 17.865 L 51.127 17.865 C 51.052 17.865 50.981 17.836 50.929 17.783 C 50.877 17.731 50.847 17.66 50.847 17.586 L 50.847 16.206 L 50.796 16.206 C 50.404 16.853 49.88 17.355 49.224 17.712 C 48.568 18.069 47.78 18.248 46.859 18.248 C 45.82 18.248 44.865 18.001 43.996 17.508 Z M 64.611 14.369 C 65.199 13.756 65.493 12.957 65.493 11.97 C 65.493 10.983 65.199 10.183 64.611 9.571 C 64.024 8.958 63.252 8.652 62.297 8.652 C 61.343 8.652 60.572 8.958 59.984 9.571 C 59.396 10.183 59.102 10.983 59.102 11.97 C 59.102 12.957 59.396 13.756 59.984 14.369 C 60.572 14.981 61.343 15.288 62.297 15.288 C 63.252 15.288 64.024 14.981 64.611 14.369 Z M 60.725 17.712 C 60.069 17.355 59.545 16.853 59.153 16.206 L 59.102 16.206 L 59.102 17.586 C 59.102 17.66 59.073 17.731 59.02 17.783 C 58.968 17.836 58.897 17.865 58.823 17.865 L 56.237 17.865 C 56.163 17.865 56.092 17.836 56.04 17.783 C 55.987 17.731 55.958 17.66 55.958 17.586 L 55.958 0.279 C 55.958 0.205 55.987 0.134 56.04 0.082 C 56.092 0.029 56.163 0 56.237 0 L 58.823 0 C 58.897 0 58.968 0.029 59.02 0.082 C 59.073 0.134 59.102 0.205 59.102 0.279 L 59.102 7.733 L 59.153 7.733 C 59.545 7.087 60.069 6.585 60.725 6.227 C 61.381 5.87 62.169 5.691 63.09 5.691 C 64.129 5.691 65.084 5.938 65.953 6.432 C 66.823 6.925 67.508 7.644 68.011 8.588 C 68.513 9.533 68.765 10.66 68.765 11.97 C 68.765 13.28 68.513 14.407 68.011 15.352 C 67.508 16.296 66.823 17.015 65.953 17.508 C 65.084 18.001 64.129 18.248 63.09 18.248 C 62.17 18.248 61.381 18.07 60.725 17.712 M 73.121 17.865 L 70.536 17.865 C 70.462 17.865 70.391 17.836 70.338 17.784 C 70.286 17.731 70.256 17.66 70.256 17.586 L 70.256 0.28 C 70.256 0.206 70.286 0.135 70.338 0.082 C 70.391 0.03 70.462 0.001 70.536 0.001 L 73.121 0.001 C 73.195 0.001 73.266 0.03 73.319 0.082 C 73.371 0.135 73.401 0.206 73.401 0.28 L 73.401 17.586 C 73.401 17.66 73.371 17.731 73.319 17.784 C 73.266 17.836 73.195 17.865 73.121 17.865 Z M 79.218 8.805 C 78.79 9.139 78.5 9.621 78.351 10.251 C 78.31 10.425 78.445 10.592 78.624 10.592 L 83.544 10.592 C 83.715 10.592 83.849 10.439 83.821 10.271 C 83.723 9.675 83.466 9.199 83.053 8.844 C 82.568 8.427 81.933 8.219 81.149 8.219 C 80.365 8.219 79.721 8.414 79.218 8.805 Z M 85.52 7.338 C 86.525 8.435 87.028 9.988 87.028 11.995 L 87.028 12.329 C 87.028 12.403 86.999 12.474 86.947 12.526 C 86.894 12.579 86.823 12.608 86.749 12.608 L 78.529 12.608 C 78.488 12.608 78.448 12.617 78.411 12.634 C 78.374 12.652 78.341 12.677 78.315 12.708 C 78.289 12.739 78.269 12.776 78.259 12.815 C 78.248 12.855 78.246 12.896 78.253 12.936 C 78.385 13.682 78.714 14.275 79.244 14.713 C 79.849 15.216 80.611 15.466 81.532 15.466 C 82.72 15.466 83.82 15.004 84.831 14.078 C 84.954 13.964 85.15 13.988 85.246 14.126 L 86.503 15.927 C 86.542 15.983 86.559 16.051 86.552 16.119 C 86.544 16.187 86.511 16.25 86.46 16.296 C 85.843 16.835 85.157 17.29 84.42 17.648 C 83.602 18.048 82.64 18.248 81.532 18.248 C 80.254 18.248 79.138 17.989 78.183 17.47 C 77.228 16.951 76.487 16.22 75.959 15.275 C 75.431 14.331 75.167 13.238 75.167 11.995 C 75.167 10.754 75.423 9.656 75.934 8.703 C 76.445 7.751 77.16 7.011 78.081 6.483 C 79.002 5.956 80.075 5.692 81.303 5.692 C 83.108 5.692 84.514 6.241 85.52 7.338 Z M 21.969 1.922 C 21.969 2.974 21.114 3.828 20.059 3.828 C 19.005 3.828 18.15 2.974 18.15 1.922 C 18.15 0.869 19.005 0.015 20.059 0.015 C 21.114 0.015 21.969 0.869 21.969 1.922 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-198ytcg\",layoutDependency:layoutDependency,layoutId:\"rIGiuUT2Q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.97 6.495\" overflow=\"visible\"><path d=\"M 4.953 6.119 L 2.747 0.182 C 2.657 -0.061 2.313 -0.061 2.223 0.182 L 0.017 6.119 C 0.002 6.161 -0.003 6.207 0.002 6.251 C 0.008 6.296 0.024 6.339 0.05 6.375 C 0.076 6.412 0.11 6.443 0.15 6.463 C 0.19 6.484 0.235 6.495 0.28 6.495 L 4.691 6.495 C 4.736 6.495 4.78 6.484 4.82 6.463 C 4.86 6.443 4.895 6.412 4.92 6.375 C 4.946 6.338 4.962 6.296 4.968 6.251 C 4.974 6.206 4.969 6.161 4.953 6.119\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mc2vg8\",layoutDependency:layoutDependency,layoutId:\"g6ZwUgbIk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.371 17.865\" overflow=\"visible\"><path d=\"M 12.172 13.807 L 5.199 13.807 C 5.142 13.807 5.086 13.824 5.039 13.857 C 4.993 13.89 4.957 13.936 4.937 13.989 L 3.564 17.683 C 3.544 17.736 3.508 17.782 3.462 17.815 C 3.415 17.847 3.359 17.865 3.302 17.865 L 0.28 17.865 C 0.234 17.865 0.189 17.854 0.148 17.832 C 0.108 17.811 0.074 17.78 0.048 17.742 C 0.022 17.704 0.006 17.661 0.002 17.615 C -0.003 17.57 0.003 17.524 0.02 17.482 L 6.979 0.175 C 7 0.123 7.035 0.079 7.082 0.048 C 7.128 0.017 7.183 0 7.238 0 L 10.132 0 C 10.247 0 10.349 0.069 10.392 0.175 L 17.35 17.482 C 17.367 17.524 17.374 17.57 17.369 17.615 C 17.364 17.661 17.348 17.704 17.323 17.742 C 17.297 17.78 17.263 17.811 17.222 17.832 C 17.182 17.854 17.137 17.865 17.091 17.865 L 14.069 17.865 C 14.012 17.865 13.956 17.848 13.909 17.815 C 13.863 17.782 13.827 17.736 13.807 17.683 L 12.434 13.989 C 12.414 13.936 12.378 13.89 12.331 13.857 C 12.285 13.824 12.229 13.807 12.172 13.807\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rk83at\",layoutDependency:layoutDependency,layoutId:\"Gh9AqA6JQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.144 11.791\" overflow=\"visible\"><path d=\"M 0.28 0 L 2.865 0 C 2.939 0 3.01 0.029 3.062 0.082 C 3.115 0.134 3.144 0.205 3.144 0.279 L 3.144 11.512 C 3.144 11.586 3.115 11.657 3.062 11.709 C 3.01 11.762 2.939 11.791 2.865 11.791 L 0.28 11.791 C 0.205 11.791 0.134 11.762 0.082 11.709 C 0.029 11.657 0 11.586 0 11.512 L 0 0.279 C 0 0.205 0.029 0.134 0.082 0.082 C 0.134 0.029 0.205 0 0.28 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m7uilo\",layoutDependency:layoutDependency,layoutId:\"tpSuXI8oJ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.183 12.149\" overflow=\"visible\"><path d=\"M 7.183 3.09 C 7.183 3.164 7.154 3.235 7.101 3.287 C 7.049 3.34 6.978 3.369 6.904 3.369 L 6.825 3.369 C 5.547 3.369 4.61 3.675 4.013 4.288 C 3.417 4.9 3.119 5.913 3.119 7.325 L 3.119 11.87 C 3.119 11.944 3.089 12.015 3.037 12.067 C 2.985 12.119 2.913 12.149 2.839 12.149 L 0.28 12.149 C 0.205 12.149 0.134 12.119 0.082 12.067 C 0.029 12.015 0 11.944 0 11.87 L 0 0.637 C 0 0.563 0.029 0.492 0.082 0.439 C 0.134 0.387 0.205 0.358 0.28 0.358 L 2.814 0.358 C 2.888 0.358 2.959 0.387 3.011 0.439 C 3.064 0.492 3.093 0.563 3.093 0.637 L 3.093 2.858 L 3.144 2.858 C 3.451 1.94 3.937 1.234 4.602 0.74 C 5.266 0.247 6.084 0 7.055 0 L 7.183 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-je6bi6\",layoutDependency:layoutDependency,layoutId:\"gPkWxzJTV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.745 16.538\" overflow=\"visible\"><path d=\"M 5.597 7.35 C 5.523 7.35 5.452 7.38 5.399 7.432 C 5.347 7.484 5.317 7.555 5.317 7.629 L 5.317 12.301 C 5.317 12.778 5.41 13.118 5.598 13.322 C 5.786 13.526 6.109 13.629 6.57 13.629 L 6.827 13.629 C 6.901 13.629 6.972 13.658 7.025 13.71 C 7.077 13.763 7.106 13.834 7.106 13.908 L 7.106 16.259 C 7.106 16.333 7.077 16.404 7.025 16.456 C 6.972 16.508 6.901 16.538 6.827 16.538 L 5.726 16.538 C 4.584 16.538 3.707 16.244 3.093 15.657 C 2.479 15.07 2.173 14.199 2.173 13.042 L 2.173 7.629 C 2.173 7.555 2.143 7.484 2.091 7.432 C 2.038 7.38 1.967 7.35 1.893 7.35 L 0.28 7.35 C 0.205 7.35 0.134 7.321 0.082 7.268 C 0.029 7.216 0 7.145 0 7.071 L 0 5.001 C 0 4.927 0.029 4.856 0.082 4.803 C 0.134 4.751 0.205 4.722 0.28 4.722 L 1.893 4.722 C 1.968 4.722 2.039 4.692 2.091 4.64 C 2.143 4.587 2.173 4.516 2.173 4.442 L 2.173 0.279 C 2.173 0.205 2.202 0.134 2.255 0.082 C 2.307 0.029 2.378 0 2.452 0 L 5.038 0 C 5.112 0 5.183 0.029 5.235 0.082 C 5.288 0.134 5.317 0.205 5.317 0.279 L 5.317 4.442 C 5.317 4.516 5.347 4.587 5.399 4.64 C 5.451 4.692 5.522 4.722 5.597 4.722 L 7.466 4.722 C 7.54 4.722 7.611 4.751 7.664 4.803 C 7.716 4.856 7.745 4.927 7.745 5.001 L 7.745 7.071 C 7.745 7.145 7.716 7.216 7.664 7.269 C 7.611 7.321 7.54 7.35 7.466 7.35 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u590p3\",layoutDependency:layoutDependency,layoutId:\"SkZsqNz27\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.391 6.636\" overflow=\"visible\"><path d=\"M 5.509 5.717 C 6.097 5.104 6.391 4.305 6.391 3.318 C 6.391 2.331 6.097 1.531 5.509 0.919 C 4.921 0.306 4.15 0 3.195 0 C 2.241 0 1.47 0.306 0.882 0.919 C 0.294 1.531 0 2.331 0 3.318 C 0 4.305 0.294 5.104 0.882 5.717 C 1.47 6.329 2.241 6.636 3.195 6.636 C 4.15 6.636 4.921 6.329 5.509 5.717 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bqo8yr\",layoutDependency:layoutDependency,layoutId:\"sOhRPLO9I\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.781 12.556\" overflow=\"visible\"><path d=\"M 2.812 11.816 C 1.943 11.323 1.257 10.604 0.754 9.66 C 0.251 8.716 0 7.589 0 6.278 C 0 4.968 0.251 3.841 0.754 2.897 C 1.257 1.952 1.943 1.234 2.812 0.74 C 3.681 0.247 4.635 0 5.675 0 C 6.595 0 7.383 0.179 8.04 0.536 C 8.695 0.893 9.219 1.395 9.612 2.042 L 9.663 2.042 L 9.663 0.662 C 9.663 0.588 9.692 0.517 9.745 0.464 C 9.797 0.412 9.868 0.383 9.942 0.383 L 12.502 0.383 C 12.576 0.383 12.647 0.412 12.699 0.464 C 12.752 0.517 12.781 0.588 12.781 0.662 L 12.781 11.895 C 12.781 11.969 12.752 12.04 12.699 12.092 C 12.647 12.144 12.576 12.174 12.502 12.174 L 9.942 12.174 C 9.868 12.174 9.797 12.144 9.745 12.092 C 9.692 12.04 9.663 11.969 9.663 11.895 L 9.663 10.515 L 9.612 10.515 C 9.219 11.162 8.695 11.663 8.04 12.021 C 7.383 12.378 6.595 12.556 5.675 12.556 C 4.635 12.556 3.681 12.31 2.812 11.816 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17j6mpk\",layoutDependency:layoutDependency,layoutId:\"HVFCbCV3Y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.39 6.636\" overflow=\"visible\"><path d=\"M 5.509 5.717 C 6.097 5.104 6.39 4.305 6.39 3.318 C 6.39 2.331 6.097 1.531 5.509 0.919 C 4.922 0.306 4.15 0 3.195 0 C 2.241 0 1.47 0.306 0.882 0.919 C 0.294 1.531 0 2.331 0 3.318 C 0 4.305 0.294 5.104 0.882 5.717 C 1.47 6.329 2.241 6.636 3.195 6.636 C 4.15 6.636 4.922 6.329 5.509 5.717 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17hzi8v\",layoutDependency:layoutDependency,layoutId:\"JUMjTzEXE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.807 18.248\" overflow=\"visible\"><path d=\"M 4.767 17.712 C 4.111 17.355 3.587 16.853 3.195 16.206 L 3.144 16.206 L 3.144 17.586 C 3.144 17.66 3.115 17.731 3.062 17.783 C 3.01 17.836 2.939 17.865 2.865 17.865 L 0.28 17.865 C 0.205 17.865 0.134 17.836 0.082 17.783 C 0.029 17.731 0 17.66 0 17.586 L 0 0.279 C 0 0.205 0.029 0.134 0.082 0.082 C 0.134 0.029 0.205 0 0.28 0 L 2.865 0 C 2.939 0 3.01 0.029 3.062 0.082 C 3.115 0.134 3.144 0.205 3.144 0.279 L 3.144 7.733 L 3.195 7.733 C 3.587 7.087 4.111 6.585 4.767 6.227 C 5.423 5.87 6.211 5.691 7.132 5.691 C 8.172 5.691 9.126 5.938 9.995 6.432 C 10.865 6.925 11.55 7.644 12.053 8.588 C 12.555 9.533 12.807 10.66 12.807 11.97 C 12.807 13.28 12.555 14.407 12.053 15.352 C 11.55 16.296 10.865 17.015 9.995 17.508 C 9.126 18.001 8.172 18.248 7.132 18.248 C 6.212 18.248 5.423 18.07 4.767 17.712\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-v7fds6\",layoutDependency:layoutDependency,layoutId:\"T_BAHS_hk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.145 17.865\" overflow=\"visible\"><path d=\"M 2.865 17.865 L 0.28 17.865 C 0.206 17.865 0.135 17.835 0.082 17.783 C 0.03 17.731 0 17.66 0 17.586 L 0 0.279 C 0 0.205 0.03 0.134 0.082 0.082 C 0.135 0.029 0.206 0 0.28 0 L 2.865 0 C 2.939 0 3.01 0.029 3.063 0.082 C 3.115 0.134 3.145 0.205 3.145 0.279 L 3.145 17.586 C 3.145 17.66 3.115 17.731 3.063 17.783 C 3.01 17.835 2.939 17.865 2.865 17.865 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bzgknc\",layoutDependency:layoutDependency,layoutId:\"tju3lg2Cu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.481 2.373\" overflow=\"visible\"><path d=\"M 0.875 0.587 C 0.447 0.921 0.157 1.402 0.007 2.033 C -0.034 2.207 0.102 2.373 0.281 2.373 L 5.201 2.373 C 5.372 2.373 5.506 2.221 5.478 2.053 C 5.38 1.456 5.123 0.981 4.71 0.625 C 4.224 0.208 3.589 0 2.805 0 C 2.022 0 1.377 0.196 0.875 0.587 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qz4asf\",layoutDependency:layoutDependency,layoutId:\"vPXywcHyT\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.86 12.557\" overflow=\"visible\"><path d=\"M 10.353 1.646 C 11.358 2.744 11.86 4.296 11.86 6.304 L 11.86 6.637 C 11.86 6.711 11.831 6.782 11.78 6.834 C 11.727 6.887 11.656 6.916 11.582 6.916 L 3.362 6.916 C 3.321 6.916 3.281 6.925 3.243 6.943 C 3.207 6.96 3.174 6.985 3.148 7.016 C 3.122 7.048 3.102 7.084 3.092 7.124 C 3.081 7.163 3.079 7.204 3.086 7.245 C 3.218 7.99 3.547 8.583 4.077 9.022 C 4.681 9.524 5.444 9.775 6.365 9.775 C 7.552 9.775 8.653 9.312 9.664 8.386 C 9.787 8.273 9.983 8.297 10.079 8.434 L 11.336 10.235 C 11.375 10.291 11.392 10.36 11.385 10.428 C 11.377 10.496 11.344 10.558 11.293 10.604 C 10.676 11.143 9.99 11.598 9.253 11.957 C 8.435 12.356 7.473 12.557 6.365 12.557 C 5.087 12.557 3.97 12.297 3.016 11.778 C 2.061 11.259 1.32 10.528 0.792 9.583 C 0.264 8.639 0 7.546 0 6.304 C 0 5.062 0.256 3.965 0.767 3.011 C 1.278 2.059 1.993 1.319 2.914 0.791 C 3.835 0.264 4.908 0 6.135 0 C 7.941 0 9.347 0.549 10.353 1.646 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ao2gxn\",layoutDependency:layoutDependency,layoutId:\"SPRHfWzvX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.819 3.813\" overflow=\"visible\"><path d=\"M 3.819 1.906 C 3.819 2.959 2.964 3.813 1.91 3.813 C 0.855 3.813 0 2.959 0 1.906 C 0 0.853 0.855 0 1.91 0 C 2.964 0 3.819 0.854 3.819 1.906 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xs59dj\",layoutDependency:layoutDependency,layoutId:\"ShKRkNXZf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 29.103 12.159\" overflow=\"visible\"><path d=\"M 12.801 0.348 L 0.509 5.426 C -0.175 5.708 -0.168 6.678 0.52 6.95 L 12.863 11.837 C 13.948 12.266 15.155 12.266 16.24 11.837 L 28.583 6.95 C 29.271 6.678 29.279 5.708 28.595 5.426 L 16.303 0.347 C 15.182 -0.116 13.922 -0.116 12.8 0.347\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1okx3ib\",layoutDependency:layoutDependency,layoutId:\"lToP8xcOQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.401 19.184\" overflow=\"visible\"><path d=\"M 0 6.153 L 0 18.361 C 0 18.942 0.586 19.339 1.127 19.125 L 14.881 13.795 C 15.035 13.735 15.166 13.629 15.259 13.493 C 15.352 13.357 15.401 13.196 15.401 13.031 L 15.401 0.823 C 15.401 0.242 14.815 -0.155 14.274 0.059 L 0.52 5.389 C 0.366 5.449 0.235 5.555 0.142 5.691 C 0.05 5.827 0 5.988 0 6.153 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eyquhh\",layoutDependency:layoutDependency,layoutId:\"AY1RoDDFv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.815 13.103\" overflow=\"visible\"><path d=\"M 14.356 6.731 L 10.275 8.699 L 9.86 8.899 L 1.243 13.021 C 0.697 13.284 0 12.887 0 12.281 L 0 0.823 C 0 0.603 0.113 0.414 0.264 0.272 C 0.325 0.21 0.396 0.158 0.472 0.115 C 0.678 -0.008 0.972 -0.041 1.221 0.058 L 14.288 5.227 C 14.952 5.49 15.004 6.419 14.356 6.731 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4k7fez\",layoutDependency:layoutDependency,layoutId:\"RkQFnWn4P\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.552 8.699\" overflow=\"visible\"><path d=\"M 14.093 6.731 L 10.011 8.699 L 0 0.272 C 0.062 0.21 0.132 0.158 0.209 0.115 C 0.414 -0.008 0.708 -0.041 0.958 0.058 L 14.024 5.227 C 14.689 5.49 14.741 6.419 14.093 6.731 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1knqfxk\",\"data-framer-name\":\"Automattic\",layoutDependency:layoutDependency,layoutId:\"RKQuJl8Wh\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1npzx3g\",layoutDependency:layoutDependency,layoutId:\"NUjzy5Xrn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 257.456 20\" overflow=\"visible\"><g><path d=\"M 100.585 9.717 C 100.585 6.137 97.993 2.933 93.229 2.933 C 88.521 2.933 85.935 6.137 85.935 9.717 L 85.935 10.158 C 85.935 13.738 88.526 16.975 93.229 16.975 C 97.969 16.975 100.585 13.738 100.585 10.158 Z M 93.229 19.91 C 86.683 19.91 82.423 15.17 82.423 10.261 L 82.423 9.648 C 82.423 4.637 86.685 0 93.229 0 C 99.808 0 104.067 4.659 104.067 9.648 L 104.067 10.261 C 104.067 15.17 99.805 19.91 93.229 19.91 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 11.353 4.315 L 7.331 12.088 L 15.513 12.088 Z M 19.329 19.213 L 16.877 14.611 L 6.032 14.611 L 3.646 19.213 L 0 19.213 L 9.989 0.701 L 12.887 0.701 L 23.046 19.213 Z M 38.829 19.929 C 32.209 19.929 29.112 16.315 29.112 11.509 L 29.112 0.706 L 32.555 0.706 L 32.555 11.543 C 32.555 14.986 34.805 16.999 39.067 16.999 C 43.466 16.999 45.27 14.988 45.27 11.543 L 45.27 0.706 L 48.747 0.706 L 48.747 11.511 C 48.747 16.079 45.805 19.931 38.827 19.931 Z M 68.081 3.599 L 68.081 19.213 L 64.604 19.213 L 64.604 3.599 L 56.525 3.599 L 56.525 0.701 L 76.16 0.701 L 76.16 3.599 Z M 135.141 19.213 L 135.141 4.55 L 134.222 6.151 L 126.484 19.208 L 124.804 19.208 L 117.129 6.149 L 116.21 4.548 L 116.21 19.21 L 112.79 19.21 L 112.79 0.698 L 117.595 0.698 L 124.89 13.38 L 125.743 14.949 L 126.596 13.38 L 133.825 0.698 L 138.599 0.698 L 138.599 19.21 Z M 156.885 4.315 L 152.864 12.088 L 161.046 12.088 Z M 164.861 19.213 L 162.409 14.611 L 151.53 14.611 L 149.176 19.213 L 145.528 19.213 L 155.517 0.701 L 158.396 0.701 L 168.554 19.213 Z M 182.588 3.599 L 182.588 19.213 L 179.115 19.213 L 179.115 3.599 L 171.036 3.599 L 171.036 0.701 L 190.671 0.701 L 190.671 3.599 Z M 208.057 3.599 L 208.057 19.213 L 204.581 19.213 L 204.581 3.599 L 196.5 3.599 L 196.5 0.701 L 216.135 0.701 L 216.135 3.599 Z M 224.695 19.213 L 224.695 2.442 C 226.094 2.442 226.64 1.691 226.64 0.725 L 228.107 0.725 L 228.107 19.238 Z M 255.307 5.916 C 253.639 4.381 251.181 2.974 247.877 2.974 C 242.934 2.974 240.173 6.348 240.173 9.893 L 240.173 10.236 C 240.173 13.748 242.969 17.021 248.15 17.021 C 251.215 17.021 253.774 15.555 255.377 14.079 L 257.456 16.285 C 255.447 18.296 252 20 247.912 20 C 240.923 20 236.662 15.432 236.662 10.42 L 236.662 9.807 C 236.662 4.83 241.321 0.09 248.083 0.09 C 252.005 0.09 255.55 1.726 257.456 3.805 Z M 95.626 6.463 C 95.777 6.558 95.907 6.683 96.01 6.829 C 96.112 6.975 96.185 7.141 96.223 7.315 C 96.261 7.49 96.264 7.67 96.232 7.846 C 96.2 8.021 96.133 8.189 96.035 8.339 L 92.865 13.247 C 92.455 13.86 91.639 14.066 90.989 13.657 C 90.376 13.247 90.205 12.396 90.614 11.781 L 93.784 6.872 C 94.194 6.259 95.013 6.053 95.626 6.463 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1osnr5k\",layoutDependency:layoutDependency,layoutId:\"IlqL4bC0I\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.643 19.91\" overflow=\"visible\"><path d=\"M 18.162 9.717 C 18.162 6.137 15.57 2.933 10.806 2.933 C 6.098 2.933 3.511 6.137 3.511 9.717 L 3.511 10.158 C 3.511 13.738 6.103 16.975 10.806 16.975 C 15.545 16.975 18.162 13.738 18.162 10.158 Z M 10.806 19.91 C 4.259 19.91 0 15.17 0 10.261 L 0 9.648 C 0 4.637 4.261 0 10.806 0 C 17.384 0 21.643 4.659 21.643 9.648 L 21.643 10.261 C 21.643 15.17 17.382 19.91 10.806 19.91 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-c3unxs\",layoutDependency:layoutDependency,layoutId:\"FmsiY3IJu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.65 14.042\" overflow=\"visible\"><path d=\"M 14.65 6.785 C 14.65 3.205 12.059 0 7.294 0 C 2.587 0 0 3.205 0 6.785 L 0 7.226 C 0 10.806 2.592 14.042 7.294 14.042 C 12.034 14.042 14.65 10.806 14.65 7.226 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kyy6zz\",layoutDependency:layoutDependency,layoutId:\"A4toQslvz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.643 19.91\" overflow=\"visible\"><path d=\"M 10.806 19.91 C 4.259 19.91 0 15.17 0 10.261 L 0 9.648 C 0 4.637 4.261 0 10.806 0 C 17.384 0 21.643 4.659 21.643 9.648 L 21.643 10.261 C 21.643 15.17 17.382 19.91 10.806 19.91 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1qtzaqk\",layoutDependency:layoutDependency,layoutId:\"IXnshoiWj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 257.456 19.91\" overflow=\"visible\"><path d=\"M 11.353 4.225 L 7.331 11.997 L 15.513 11.997 Z M 19.329 19.123 L 16.877 14.52 L 6.032 14.52 L 3.646 19.123 L 0 19.123 L 9.989 0.611 L 12.887 0.611 L 23.046 19.123 Z M 38.829 19.839 C 32.209 19.839 29.112 16.225 29.112 11.419 L 29.112 0.615 L 32.555 0.615 L 32.555 11.453 C 32.555 14.896 34.805 16.909 39.067 16.909 C 43.466 16.909 45.27 14.898 45.27 11.453 L 45.27 0.615 L 48.747 0.615 L 48.747 11.421 C 48.747 15.989 45.805 19.841 38.827 19.841 Z M 68.081 3.509 L 68.081 19.123 L 64.604 19.123 L 64.604 3.509 L 56.525 3.509 L 56.525 0.611 L 76.16 0.611 L 76.16 3.509 Z M 135.141 19.123 L 135.141 4.46 L 134.222 6.061 L 126.484 19.118 L 124.804 19.118 L 117.129 6.059 L 116.21 4.458 L 116.21 19.12 L 112.79 19.12 L 112.79 0.608 L 117.595 0.608 L 124.89 13.29 L 125.743 14.859 L 126.596 13.29 L 133.825 0.608 L 138.599 0.608 L 138.599 19.12 Z M 156.885 4.225 L 152.864 11.997 L 161.046 11.997 Z M 164.861 19.123 L 162.409 14.52 L 151.53 14.52 L 149.176 19.123 L 145.528 19.123 L 155.517 0.611 L 158.396 0.611 L 168.554 19.123 Z M 182.588 3.509 L 182.588 19.123 L 179.115 19.123 L 179.115 3.509 L 171.036 3.509 L 171.036 0.611 L 190.671 0.611 L 190.671 3.509 Z M 208.057 3.509 L 208.057 19.123 L 204.581 19.123 L 204.581 3.509 L 196.5 3.509 L 196.5 0.611 L 216.135 0.611 L 216.135 3.509 Z M 224.695 19.123 L 224.695 2.351 C 226.094 2.351 226.64 1.601 226.64 0.635 L 228.107 0.635 L 228.107 19.147 Z M 255.307 5.826 C 253.639 4.291 251.181 2.883 247.877 2.883 C 242.934 2.883 240.173 6.257 240.173 9.803 L 240.173 10.146 C 240.173 13.657 242.969 16.931 248.15 16.931 C 251.215 16.931 253.774 15.464 255.377 13.988 L 257.456 16.195 C 255.447 18.206 252 19.91 247.912 19.91 C 240.923 19.91 236.662 15.342 236.662 10.33 L 236.662 9.717 C 236.662 4.74 241.321 0 248.083 0 C 252.005 0 255.55 1.635 257.456 3.715 Z M 95.626 6.373 C 95.777 6.468 95.907 6.593 96.01 6.739 C 96.112 6.885 96.185 7.05 96.223 7.225 C 96.261 7.399 96.264 7.58 96.232 7.755 C 96.2 7.931 96.133 8.099 96.035 8.248 L 92.865 13.157 C 92.455 13.77 91.639 13.976 90.989 13.567 C 90.376 13.157 90.205 12.306 90.614 11.691 L 93.784 6.782 C 94.194 6.169 95.013 5.963 95.626 6.373 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dsit0z\",layoutDependency:layoutDependency,layoutId:\"orkOvUtCo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.182 7.773\" overflow=\"visible\"><path d=\"M 4.021 0 L 0 7.773 L 8.182 7.773 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4crphf\",layoutDependency:layoutDependency,layoutId:\"Rq6rAcQU0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.046 18.512\" overflow=\"visible\"><path d=\"M 19.329 18.512 L 16.877 13.91 L 6.032 13.91 L 3.646 18.512 L 0 18.512 L 9.989 0 L 12.887 0 L 23.046 18.512 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-47xb73\",layoutDependency:layoutDependency,layoutId:\"QsmR3t9Fq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.635 19.226\" overflow=\"visible\"><path d=\"M 9.717 19.223 C 3.097 19.223 0 15.609 0 10.803 L 0 0 L 3.443 0 L 3.443 10.838 C 3.443 14.28 5.693 16.293 9.955 16.293 C 14.354 16.293 16.158 14.283 16.158 10.838 L 16.158 0 L 19.635 0 L 19.635 10.806 C 19.635 15.374 16.693 19.226 9.715 19.226 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7w7b1c\",layoutDependency:layoutDependency,layoutId:\"I5TOKmq2b\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.635 18.512\" overflow=\"visible\"><path d=\"M 11.556 2.898 L 11.556 18.512 L 8.079 18.512 L 8.079 2.898 L 0 2.898 L 0 0 L 19.635 0 L 19.635 2.898 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8f1shq\",layoutDependency:layoutDependency,layoutId:\"MOwi23pVq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25.809 18.515\" overflow=\"visible\"><path d=\"M 22.352 18.515 L 22.352 3.852 L 21.432 5.453 L 13.694 18.51 L 12.014 18.51 L 4.34 5.451 L 3.42 3.85 L 3.42 18.512 L 0 18.512 L 0 0 L 4.806 0 L 12.1 12.681 L 12.954 14.251 L 13.807 12.681 L 21.035 0 L 25.809 0 L 25.809 18.512 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16c4fvw\",layoutDependency:layoutDependency,layoutId:\"R92Zdj534\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.182 7.773\" overflow=\"visible\"><path d=\"M 4.021 0 L 0 7.773 L 8.182 7.773 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g7vrxx\",layoutDependency:layoutDependency,layoutId:\"CyAKedke8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.026 18.512\" overflow=\"visible\"><path d=\"M 19.334 18.512 L 16.882 13.91 L 6.002 13.91 L 3.648 18.512 L 0 18.512 L 9.989 0 L 12.868 0 L 23.026 18.512 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fozr4q\",layoutDependency:layoutDependency,layoutId:\"cg6EOH51r\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.635 18.512\" overflow=\"visible\"><path d=\"M 11.552 2.898 L 11.552 18.512 L 8.079 18.512 L 8.079 2.898 L 0 2.898 L 0 0 L 19.635 0 L 19.635 2.898 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17o4h1e\",layoutDependency:layoutDependency,layoutId:\"yBtde9ZPE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.635 18.512\" overflow=\"visible\"><path d=\"M 11.557 2.898 L 11.557 18.512 L 8.081 18.512 L 8.081 2.898 L 0 2.898 L 0 0 L 19.635 0 L 19.635 2.898 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-36lsbz\",layoutDependency:layoutDependency,layoutId:\"yFP_nKbk2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.411 18.512\" overflow=\"visible\"><path d=\"M 0 18.488 L 0 1.716 C 1.398 1.716 1.945 0.966 1.945 0 L 3.411 0 L 3.411 18.512 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dg4u2a\",layoutDependency:layoutDependency,layoutId:\"u4eCJLOMI\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.794 19.91\" overflow=\"visible\"><path d=\"M 18.645 5.826 C 16.976 4.291 14.519 2.883 11.214 2.883 C 6.271 2.883 3.511 6.257 3.511 9.803 L 3.511 10.146 C 3.511 13.657 6.306 16.931 11.487 16.931 C 14.552 16.931 17.111 15.464 18.714 13.988 L 20.794 16.195 C 18.784 18.206 15.338 19.91 11.249 19.91 C 4.26 19.91 0 15.342 0 10.33 L 0 9.717 C 0 4.74 4.658 0 11.421 0 C 15.343 0 18.888 1.635 20.794 3.715 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pfxymg\",layoutDependency:layoutDependency,layoutId:\"QPsgjcYgT\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.863 7.619\" overflow=\"visible\"><path d=\"M 5.235 0.213 C 5.386 0.308 5.516 0.433 5.619 0.579 C 5.721 0.725 5.794 0.89 5.832 1.065 C 5.87 1.24 5.873 1.42 5.841 1.596 C 5.808 1.771 5.742 1.939 5.644 2.088 L 2.474 6.997 C 2.064 7.61 1.248 7.816 0.598 7.407 C -0.015 6.997 -0.187 6.146 0.223 5.531 L 3.393 0.622 C 3.803 0.009 4.622 -0.197 5.235 0.213 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bhznne\",\"data-framer-name\":\"Databricks\",layoutDependency:layoutDependency,layoutId:\"JOGmUrwCD\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1ioerp8\",layoutDependency:layoutDependency,layoutId:\"YIgbYBQk_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 115.659 32\" overflow=\"visible\"><g><path d=\"M 0 18.748 L 0 23.906 L 15.473 32 L 30.946 23.906 L 30.946 18.748 L 25.487 15.962 L 30.946 13.101 L 30.946 7.981 L 30.946 7.944 L 30.908 7.981 L 15.473 0 L 0.038 7.944 L 0 7.944 L 0 13.101 L 5.459 15.962 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 25.487 15.962 L 15.473 21.195 L 5.459 15.962 L 0 18.748 L 15.473 26.842 L 30.946 18.748 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 15.473 0 L 30.946 7.981 L 15.473 16.075 L 0 7.981 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 41.852 15.273 L 41.913 15.273 C 41.913 15.273 41.852 14.737 41.852 14.66 L 41.852 10.297 L 40.551 10.297 L 40.551 9.179 L 43.215 9.179 L 43.215 21.565 L 44.47 21.565 L 44.47 22.682 L 42.189 22.682 L 41.99 21.412 L 41.913 21.412 C 41.913 21.412 41.087 22.805 39.035 22.805 C 36.8 22.805 35.116 21.304 35.116 18.442 C 35.116 15.655 36.923 14.094 39.051 14.094 C 41.209 14.109 41.852 15.273 41.852 15.273 Z M 41.852 20.263 L 41.852 16.467 C 41.623 16.099 40.888 15.257 39.311 15.257 C 37.948 15.257 36.463 16.252 36.463 18.457 C 36.463 20.646 37.811 21.687 39.326 21.687 C 40.352 21.672 41.378 21.197 41.852 20.263 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 51.391 21.274 C 51.391 21.274 50.641 22.82 48.161 22.82 C 46.416 22.82 45.237 21.794 45.237 20.37 C 45.237 18.794 46.722 17.982 49.095 17.982 L 51.238 17.982 L 51.238 17.278 C 51.238 15.824 50.411 15.211 48.865 15.211 C 47.395 15.211 46.66 15.915 46.66 16.865 L 46.66 17.048 L 45.405 17.048 L 45.405 16.635 C 45.405 15.41 46.492 14.124 48.896 14.124 C 51.177 14.124 52.585 15.135 52.585 17.354 L 52.585 21.595 L 53.596 21.595 L 53.596 22.713 L 51.559 22.713 L 51.391 21.304 Z M 51.238 18.962 L 49.187 18.962 C 47.701 18.962 46.584 19.391 46.584 20.37 C 46.584 21.197 47.365 21.748 48.452 21.748 C 50.411 21.748 51.238 20.279 51.238 20.279 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 56.441 11.966 L 56.441 14.232 L 59.12 14.232 L 59.12 15.318 L 56.441 15.318 L 56.441 19.881 C 56.441 21.075 56.961 21.657 57.849 21.657 C 58.798 21.657 59.365 21.381 59.365 21.381 L 59.365 22.529 C 59.365 22.529 58.676 22.82 57.62 22.82 C 55.997 22.82 55.063 21.871 55.063 19.957 L 55.063 15.318 L 53.777 15.318 L 53.777 14.232 L 55.063 14.232 L 55.292 11.966 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 66.284 21.274 C 66.284 21.274 65.534 22.82 63.054 22.82 C 61.308 22.82 60.13 21.794 60.13 20.37 C 60.13 18.794 61.615 17.982 63.988 17.982 L 66.131 17.982 L 66.131 17.278 C 66.131 15.824 65.304 15.211 63.758 15.211 C 62.288 15.211 61.553 15.915 61.553 16.865 L 61.553 17.048 L 60.298 17.048 L 60.298 16.635 C 60.298 15.41 61.385 14.124 63.788 14.124 C 66.07 14.124 67.478 15.135 67.478 17.354 L 67.478 21.595 L 68.488 21.595 L 68.488 22.713 L 66.452 22.713 L 66.284 21.304 Z M 66.146 18.962 L 64.095 18.962 C 62.61 18.962 61.492 19.391 61.492 20.37 C 61.492 21.197 62.273 21.748 63.36 21.748 C 65.319 21.748 66.146 20.279 66.146 20.279 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 71.018 21.427 L 70.804 22.697 L 69.778 22.697 L 69.778 10.297 L 68.522 10.297 L 68.522 9.179 L 71.125 9.179 L 71.125 14.645 C 71.125 14.721 71.064 15.257 71.064 15.257 L 71.125 15.257 C 71.125 15.257 71.891 14.093 73.957 14.093 C 76.055 14.093 77.877 15.655 77.877 18.441 C 77.877 21.304 76.193 22.805 73.988 22.805 C 71.937 22.805 71.094 21.411 71.094 21.411 L 71.018 21.411 Z M 71.125 16.466 L 71.125 20.263 C 71.584 21.182 72.625 21.672 73.666 21.672 C 75.167 21.672 76.514 20.646 76.514 18.441 C 76.514 16.237 75.044 15.242 73.682 15.242 C 72.12 15.242 71.385 16.084 71.125 16.466 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 84.488 15.487 C 84.289 15.41 83.967 15.364 83.524 15.364 C 81.426 15.364 80.982 17.86 80.982 17.86 L 80.982 21.58 L 82.36 21.58 L 82.36 22.697 L 78.38 22.697 L 78.38 21.58 L 79.635 21.58 L 79.635 15.364 L 78.38 15.364 L 78.38 14.231 L 80.661 14.231 L 80.783 16.39 L 80.844 16.39 C 80.844 16.39 81.258 14.109 83.57 14.109 C 83.952 14.109 84.274 14.17 84.488 14.201 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 88.332 21.564 L 89.542 21.564 L 89.542 22.682 L 85.714 22.682 L 85.714 21.564 L 86.97 21.564 L 86.97 15.364 L 85.714 15.364 L 85.714 14.231 L 88.317 14.231 L 88.317 21.564 Z M 87.582 12.7 C 87 12.7 86.526 12.226 86.526 11.613 C 86.526 11.032 87 10.557 87.582 10.557 C 88.179 10.557 88.669 11.032 88.669 11.613 C 88.669 12.226 88.179 12.7 87.582 12.7 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 91.301 18.457 C 91.301 20.661 92.725 21.687 94.347 21.687 C 96.322 21.687 97.118 20.768 97.118 20.768 L 97.593 21.733 C 97.593 21.733 96.644 22.82 94.255 22.82 C 91.745 22.82 89.969 21.258 89.969 18.457 C 89.969 15.517 91.576 14.109 94.179 14.109 C 96.827 14.109 97.777 15.563 97.777 17.14 L 97.777 17.599 L 96.521 17.599 L 96.521 17.324 C 96.521 16.053 95.802 15.257 94.148 15.257 C 92.449 15.242 91.301 16.099 91.301 18.457 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 100.915 17.768 L 103.012 17.768 L 105.048 15.318 L 103.992 15.318 L 103.992 14.231 L 107.819 14.231 L 107.819 15.318 L 106.518 15.318 L 104.053 18.304 L 106.64 21.595 L 107.926 21.595 L 107.926 22.682 L 105.875 22.682 L 102.905 18.824 L 100.915 18.824 L 100.915 21.564 L 102.124 21.564 L 102.124 22.682 L 98.281 22.682 L 98.281 21.564 L 99.552 21.564 L 99.552 10.297 L 98.281 10.297 L 98.281 9.179 L 100.915 9.179 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 109.796 19.942 L 109.796 20.141 C 109.796 21.013 110.515 21.702 112.061 21.702 C 113.623 21.702 114.312 21.197 114.312 20.355 C 114.312 19.482 113.194 19.192 111.97 18.977 C 110.454 18.702 108.739 18.304 108.739 16.482 C 108.739 15.027 110.117 14.109 112 14.109 C 114.496 14.109 115.429 15.135 115.429 16.421 L 115.429 17.033 L 114.159 17.033 L 114.159 16.635 C 114.159 15.732 113.562 15.211 112.061 15.211 C 111.082 15.211 110.087 15.609 110.087 16.497 C 110.087 17.492 111.281 17.676 112.521 17.906 C 114.113 18.212 115.659 18.702 115.659 20.37 C 115.659 21.733 114.649 22.82 112.107 22.82 C 109.505 22.82 108.54 21.656 108.54 20.462 L 108.54 19.942 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-151f4fu\",layoutDependency:layoutDependency,layoutId:\"y7tOQY5US\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30.946 32\" overflow=\"visible\"><path d=\"M 0 18.748 L 0 23.906 L 15.473 32 L 30.946 23.906 L 30.946 18.748 L 25.487 15.962 L 30.946 13.101 L 30.946 7.981 L 30.946 7.944 L 30.908 7.981 L 15.473 0 L 0.038 7.944 L 0 7.944 L 0 13.101 L 5.459 15.962 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2tp29b\",layoutDependency:layoutDependency,layoutId:\"CC3uNHzvI\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30.946 10.88\" overflow=\"visible\"><path d=\"M 25.487 0 L 15.473 5.233 L 5.459 0 L 0 2.786 L 15.473 10.88 L 30.946 2.786 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eorfz5\",layoutDependency:layoutDependency,layoutId:\"udCTIklxT\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30.946 16.075\" overflow=\"visible\"><path d=\"M 15.473 0 L 30.946 7.981 L 15.473 16.075 L 0 7.981 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1qrdakf\",layoutDependency:layoutDependency,layoutId:\"RKftM5S1b\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.354 13.625\" overflow=\"visible\"><path d=\"M 6.736 6.093 L 6.797 6.093 C 6.797 6.093 6.736 5.557 6.736 5.481 L 6.736 1.118 L 5.435 1.118 L 5.435 0 L 8.099 0 L 8.099 12.385 L 9.354 12.385 L 9.354 13.503 L 7.073 13.503 L 6.874 12.232 L 6.797 12.232 C 6.797 12.232 5.971 13.625 3.919 13.625 C 1.684 13.625 0 12.125 0 9.262 C 0 6.476 1.807 4.914 3.935 4.914 C 6.093 4.93 6.736 6.093 6.736 6.093 Z M 6.736 11.084 L 6.736 7.287 C 6.507 6.92 5.772 6.078 4.195 6.078 C 2.832 6.078 1.347 7.073 1.347 9.277 C 1.347 11.467 2.694 12.508 4.21 12.508 C 5.236 12.492 6.262 12.018 6.736 11.084 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-g4uyop\",layoutDependency:layoutDependency,layoutId:\"OEb5bop2H\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.354 13.625\" overflow=\"visible\"><path d=\"M 6.736 6.093 L 6.797 6.093 C 6.797 6.093 6.736 5.557 6.736 5.481 L 6.736 1.118 L 5.435 1.118 L 5.435 0 L 8.099 0 L 8.099 12.385 L 9.354 12.385 L 9.354 13.503 L 7.073 13.503 L 6.874 12.232 L 6.797 12.232 C 6.797 12.232 5.971 13.625 3.919 13.625 C 1.684 13.625 0 12.125 0 9.262 C 0 6.476 1.807 4.914 3.935 4.914 C 6.093 4.93 6.736 6.093 6.736 6.093 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-o3pstz\",layoutDependency:layoutDependency,layoutId:\"S7fOC0Onu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.389 6.43\" overflow=\"visible\"><path d=\"M 5.389 5.006 L 5.389 1.209 C 5.159 0.842 4.424 0 2.848 0 C 1.485 0 0 0.995 0 3.2 C 0 5.389 1.347 6.43 2.863 6.43 C 3.889 6.415 4.914 5.94 5.389 5.006 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1igbc65\",layoutDependency:layoutDependency,layoutId:\"tFpgBRr1n\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.359 8.696\" overflow=\"visible\"><path d=\"M 6.154 7.149 C 6.154 7.149 5.404 8.696 2.924 8.696 C 1.179 8.696 0 7.67 0 6.246 C 0 4.669 1.485 3.858 3.858 3.858 L 6.001 3.858 L 6.001 3.154 C 6.001 1.699 5.175 1.087 3.628 1.087 C 2.159 1.087 1.424 1.791 1.424 2.74 L 1.424 2.924 L 0.168 2.924 L 0.168 2.511 C 0.168 1.286 1.255 0 3.659 0 C 5.94 0 7.349 1.01 7.349 3.23 L 7.349 7.471 L 8.359 7.471 L 8.359 8.589 L 6.323 8.589 L 6.154 7.18 Z M 6.001 4.838 L 3.95 4.838 C 2.465 4.838 1.347 5.266 1.347 6.246 C 1.347 7.073 2.128 7.624 3.215 7.624 C 5.175 7.624 6.001 6.154 6.001 6.154 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11hjx9x\",layoutDependency:layoutDependency,layoutId:\"CBmzwJLXx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.359 8.696\" overflow=\"visible\"><path d=\"M 6.154 7.149 C 6.154 7.149 5.404 8.696 2.924 8.696 C 1.179 8.696 0 7.67 0 6.246 C 0 4.669 1.485 3.858 3.858 3.858 L 6.001 3.858 L 6.001 3.154 C 6.001 1.699 5.175 1.087 3.628 1.087 C 2.159 1.087 1.424 1.791 1.424 2.74 L 1.424 2.924 L 0.168 2.924 L 0.168 2.511 C 0.168 1.286 1.255 0 3.659 0 C 5.94 0 7.349 1.01 7.349 3.23 L 7.349 7.471 L 8.359 7.471 L 8.359 8.589 L 6.323 8.589 L 6.154 7.18 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w5d4rc\",layoutDependency:layoutDependency,layoutId:\"XIZ47xhTY\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.654 2.786\" overflow=\"visible\"><path d=\"M 4.654 0 L 2.603 0 C 1.118 0 0 0.429 0 1.408 C 0 2.235 0.781 2.786 1.868 2.786 C 3.827 2.786 4.654 1.317 4.654 1.317 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nqevtk\",layoutDependency:layoutDependency,layoutId:\"OI89dzn2H\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.588 10.854\" overflow=\"visible\"><path d=\"M 2.664 0 L 2.664 2.266 L 5.343 2.266 L 5.343 3.353 L 2.664 3.353 L 2.664 7.915 C 2.664 9.109 3.184 9.691 4.072 9.691 C 5.021 9.691 5.588 9.415 5.588 9.415 L 5.588 10.564 C 5.588 10.564 4.899 10.854 3.843 10.854 C 2.22 10.854 1.286 9.905 1.286 7.992 L 1.286 3.353 L 0 3.353 L 0 2.266 L 1.286 2.266 L 1.516 0 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-13kydwm\",layoutDependency:layoutDependency,layoutId:\"hy6Y73iqk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.359 8.696\" overflow=\"visible\"><path d=\"M 6.154 7.149 C 6.154 7.149 5.404 8.696 2.924 8.696 C 1.179 8.696 0 7.67 0 6.246 C 0 4.669 1.485 3.858 3.858 3.858 L 6.001 3.858 L 6.001 3.154 C 6.001 1.699 5.175 1.087 3.628 1.087 C 2.159 1.087 1.424 1.791 1.424 2.74 L 1.424 2.924 L 0.168 2.924 L 0.168 2.511 C 0.168 1.286 1.255 0 3.659 0 C 5.94 0 7.348 1.01 7.348 3.23 L 7.348 7.471 L 8.359 7.471 L 8.359 8.589 L 6.323 8.589 L 6.154 7.18 Z M 6.017 4.838 L 3.965 4.838 C 2.48 4.838 1.363 5.266 1.363 6.246 C 1.363 7.073 2.143 7.624 3.23 7.624 C 5.19 7.624 6.017 6.154 6.017 6.154 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rc0wgu\",layoutDependency:layoutDependency,layoutId:\"a85kBcQFl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.359 8.696\" overflow=\"visible\"><path d=\"M 6.154 7.149 C 6.154 7.149 5.404 8.696 2.924 8.696 C 1.179 8.696 0 7.67 0 6.246 C 0 4.669 1.485 3.858 3.858 3.858 L 6.001 3.858 L 6.001 3.154 C 6.001 1.699 5.175 1.087 3.628 1.087 C 2.159 1.087 1.424 1.791 1.424 2.74 L 1.424 2.924 L 0.168 2.924 L 0.168 2.511 C 0.168 1.286 1.255 0 3.659 0 C 5.94 0 7.348 1.01 7.348 3.23 L 7.348 7.471 L 8.359 7.471 L 8.359 8.589 L 6.323 8.589 L 6.154 7.18 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13erux6\",layoutDependency:layoutDependency,layoutId:\"c4ZMCHTGQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.654 2.786\" overflow=\"visible\"><path d=\"M 4.654 0 L 2.603 0 C 1.118 0 0 0.429 0 1.408 C 0 2.235 0.781 2.786 1.868 2.786 C 3.827 2.786 4.654 1.317 4.654 1.317 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-vhbmau\",layoutDependency:layoutDependency,layoutId:\"cW4iOWIUD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.354 13.625\" overflow=\"visible\"><path d=\"M 2.495 12.248 L 2.281 13.518 L 1.255 13.518 L 1.255 1.118 L 0 1.118 L 0 0 L 2.603 0 L 2.603 5.466 C 2.603 5.542 2.541 6.078 2.541 6.078 L 2.603 6.078 C 2.603 6.078 3.368 4.914 5.435 4.914 C 7.532 4.914 9.354 6.476 9.354 9.262 C 9.354 12.125 7.67 13.625 5.465 13.625 C 3.414 13.625 2.572 12.232 2.572 12.232 L 2.495 12.232 Z M 2.603 7.287 L 2.603 11.084 C 3.062 12.003 4.103 12.492 5.144 12.492 C 6.644 12.492 7.992 11.467 7.992 9.262 C 7.992 7.058 6.522 6.063 5.159 6.063 C 3.598 6.063 2.863 6.905 2.603 7.287 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1j914jk\",layoutDependency:layoutDependency,layoutId:\"uCPj9KCQ2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.354 13.625\" overflow=\"visible\"><path d=\"M 2.495 12.248 L 2.281 13.518 L 1.255 13.518 L 1.255 1.118 L 0 1.118 L 0 0 L 2.603 0 L 2.603 5.466 C 2.603 5.542 2.541 6.078 2.541 6.078 L 2.603 6.078 C 2.603 6.078 3.368 4.914 5.435 4.914 C 7.532 4.914 9.354 6.476 9.354 9.262 C 9.354 12.125 7.67 13.625 5.465 13.625 C 3.414 13.625 2.572 12.232 2.572 12.232 L 2.495 12.232 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k1cmrx\",layoutDependency:layoutDependency,layoutId:\"MPPzBjWhX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.389 6.43\" overflow=\"visible\"><path d=\"M 0 1.225 L 0 5.021 C 0.459 5.94 1.5 6.43 2.541 6.43 C 4.042 6.43 5.389 5.404 5.389 3.2 C 5.389 0.995 3.919 0 2.557 0 C 0.995 0 0.26 0.842 0 1.225 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18dne2j\",layoutDependency:layoutDependency,layoutId:\"FSlhTUxKA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.108 8.589\" overflow=\"visible\"><path d=\"M 6.108 1.378 C 5.909 1.301 5.588 1.255 5.144 1.255 C 3.047 1.255 2.603 3.751 2.603 3.751 L 2.603 7.471 L 3.98 7.471 L 3.98 8.589 L 0 8.589 L 0 7.471 L 1.255 7.471 L 1.255 1.255 L 0 1.255 L 0 0.122 L 2.281 0.122 L 2.404 2.281 L 2.465 2.281 C 2.465 2.281 2.878 0 5.19 0 C 5.573 0 5.894 0.061 6.108 0.092 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1unr2i3\",layoutDependency:layoutDependency,layoutId:\"IoL7yBPOs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.827 12.125\" overflow=\"visible\"><path d=\"M 2.618 11.008 L 3.827 11.008 L 3.827 12.125 L 0 12.125 L 0 11.008 L 1.255 11.008 L 1.255 4.807 L 0 4.807 L 0 3.674 L 2.603 3.674 L 2.603 11.008 Z M 1.868 2.143 C 1.286 2.143 0.811 1.669 0.811 1.056 C 0.811 0.475 1.286 0 1.868 0 C 2.465 0 2.955 0.475 2.955 1.056 C 2.955 1.669 2.465 2.143 1.868 2.143 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1f80uia\",layoutDependency:layoutDependency,layoutId:\"GwuDwkL0Q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.827 8.451\" overflow=\"visible\"><path d=\"M 2.618 7.333 L 3.827 7.333 L 3.827 8.451 L 0 8.451 L 0 7.333 L 1.255 7.333 L 1.255 1.133 L 0 1.133 L 0 0 L 2.603 0 L 2.603 7.333 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tl3h8x\",layoutDependency:layoutDependency,layoutId:\"A6eVTr6Go\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.143 2.143\" overflow=\"visible\"><path d=\"M 1.056 2.143 C 0.475 2.143 0 1.669 0 1.056 C 0 0.475 0.475 0 1.056 0 C 1.653 0 2.143 0.475 2.143 1.056 C 2.143 1.669 1.653 2.143 1.056 2.143 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l7aw1m\",layoutDependency:layoutDependency,layoutId:\"iVVy_hVYA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.808 8.711\" overflow=\"visible\"><path d=\"M 1.332 4.348 C 1.332 6.552 2.756 7.578 4.379 7.578 C 6.353 7.578 7.149 6.66 7.149 6.66 L 7.624 7.624 C 7.624 7.624 6.675 8.711 4.287 8.711 C 1.776 8.711 0 7.149 0 4.348 C 0 1.408 1.608 0 4.21 0 C 6.859 0 7.808 1.454 7.808 3.031 L 7.808 3.491 L 6.552 3.491 L 6.552 3.215 C 6.552 1.944 5.833 1.148 4.18 1.148 C 2.48 1.133 1.332 1.99 1.332 4.348 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b42g91\",layoutDependency:layoutDependency,layoutId:\"UxP4iM7_Q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.645 13.503\" overflow=\"visible\"><path d=\"M 2.633 8.589 L 4.731 8.589 L 6.767 6.139 L 5.71 6.139 L 5.71 5.052 L 9.538 5.052 L 9.538 6.139 L 8.236 6.139 L 5.772 9.124 L 8.359 12.416 L 9.645 12.416 L 9.645 13.503 L 7.593 13.503 L 4.623 9.645 L 2.633 9.645 L 2.633 12.385 L 3.843 12.385 L 3.843 13.503 L 0 13.503 L 0 12.385 L 1.271 12.385 L 1.271 1.118 L 0 1.118 L 0 0 L 2.633 0 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-e1rfbw\",layoutDependency:layoutDependency,layoutId:\"qUvWDqL9Q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.119 8.711\" overflow=\"visible\"><path d=\"M 1.255 5.833 L 1.255 6.032 C 1.255 6.904 1.975 7.593 3.521 7.593 C 5.083 7.593 5.771 7.088 5.771 6.246 C 5.771 5.374 4.654 5.083 3.429 4.868 C 1.914 4.593 0.199 4.195 0.199 2.373 C 0.199 0.919 1.577 0 3.46 0 C 5.955 0 6.889 1.026 6.889 2.312 L 6.889 2.924 L 5.618 2.924 L 5.618 2.526 C 5.618 1.623 5.021 1.102 3.521 1.102 C 2.541 1.102 1.546 1.5 1.546 2.388 C 1.546 3.383 2.74 3.567 3.98 3.797 C 5.573 4.103 7.119 4.593 7.119 6.261 C 7.119 7.624 6.109 8.711 3.567 8.711 C 0.965 8.711 0 7.548 0 6.353 L 0 5.833 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2j6tw1\",\"data-framer-name\":\"Epic\",layoutDependency:layoutDependency,layoutId:\"VeoJxGPmM\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dgleqv\",layoutDependency:layoutDependency,layoutId:\"LazCkpGPS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.023 36\" overflow=\"visible\"><g><path d=\"M 2.816 0.001 C 0.758 0.001 0 0.76 0 2.82 L 0 27.661 C -0.001 27.878 0.009 28.095 0.03 28.311 C 0.077 28.761 0.086 29.196 0.504 29.691 C 0.545 29.74 0.971 30.058 0.971 30.058 C 1.2 30.171 1.358 30.253 1.616 30.358 L 14.118 35.595 C 14.767 35.893 15.039 36.009 15.51 36 L 15.513 36 C 15.984 36.009 16.255 35.893 16.905 35.595 L 29.407 30.357 C 29.665 30.252 29.823 30.171 30.052 30.057 C 30.052 30.057 30.478 29.74 30.519 29.692 C 30.939 29.197 30.946 28.761 30.993 28.312 C 31.014 28.096 31.024 27.879 31.023 27.661 L 31.023 2.82 C 31.023 0.76 30.264 0 28.206 0 Z M 22.864 4.666 L 23.884 4.666 C 25.591 4.666 26.416 5.496 26.416 7.21 L 26.416 10.03 L 24.355 10.03 L 24.355 7.33 C 24.355 6.777 24.1 6.52 23.571 6.52 L 23.218 6.52 C 22.668 6.52 22.413 6.775 22.413 7.329 L 22.413 16.044 C 22.413 16.597 22.668 16.854 23.218 16.854 L 23.611 16.854 C 24.141 16.854 24.396 16.597 24.396 16.044 L 24.396 12.93 L 26.455 12.93 L 26.455 16.144 C 26.455 17.86 25.612 18.709 23.905 18.709 L 22.864 18.709 C 21.157 18.709 20.314 17.86 20.314 16.144 L 20.314 7.231 C 20.314 5.515 21.157 4.668 22.864 4.668 Z M 4.586 4.786 L 9.256 4.786 L 9.256 6.697 L 6.685 6.697 L 6.685 10.602 L 9.157 10.602 L 9.157 12.514 L 6.685 12.514 L 6.685 16.675 L 9.295 16.675 L 9.295 18.588 L 4.586 18.588 Z M 10.309 4.786 L 13.606 4.786 C 15.313 4.786 16.156 5.632 16.156 7.348 L 16.156 11.016 C 16.156 12.732 15.313 13.581 13.606 13.581 L 12.408 13.581 L 12.408 18.588 L 10.308 18.588 Z M 17.104 4.786 L 19.204 4.786 L 19.204 18.588 L 17.104 18.588 Z M 12.409 6.639 L 12.409 11.727 L 13.272 11.727 C 13.803 11.727 14.056 11.47 14.056 10.917 L 14.056 7.449 C 14.056 6.897 13.801 6.639 13.272 6.639 Z M 6.799 21.859 C 7.102 21.86 7.402 21.915 7.686 22.021 C 7.954 22.129 8.202 22.281 8.421 22.47 L 7.743 23.289 C 7.604 23.169 7.448 23.071 7.281 22.996 C 7.108 22.925 6.923 22.891 6.736 22.894 C 6.592 22.893 6.448 22.924 6.316 22.984 C 6.189 23.043 6.075 23.126 5.98 23.229 C 5.883 23.335 5.806 23.459 5.754 23.593 C 5.698 23.736 5.669 23.888 5.67 24.042 L 5.67 24.054 C 5.669 24.213 5.697 24.37 5.754 24.519 C 5.806 24.656 5.886 24.782 5.989 24.886 C 6.092 24.989 6.213 25.07 6.346 25.126 C 6.491 25.185 6.645 25.215 6.801 25.213 C 7.036 25.223 7.268 25.162 7.468 25.039 L 7.468 24.531 L 6.646 24.531 L 6.646 23.683 L 8.565 23.683 L 8.565 25.566 C 8.328 25.758 8.063 25.913 7.779 26.026 C 7.453 26.154 7.105 26.217 6.754 26.211 C 6.446 26.214 6.14 26.16 5.851 26.05 C 5.585 25.948 5.342 25.795 5.135 25.6 C 4.931 25.408 4.768 25.175 4.658 24.918 C 4.54 24.643 4.482 24.346 4.485 24.048 L 4.485 24.036 C 4.482 23.742 4.54 23.451 4.655 23.181 C 4.765 22.923 4.923 22.688 5.123 22.491 C 5.326 22.29 5.568 22.132 5.833 22.027 C 6.119 21.914 6.424 21.858 6.73 21.861 C 6.753 21.86 6.775 21.86 6.798 21.861 Z M 24.744 21.871 C 25.055 21.87 25.365 21.918 25.662 22.012 C 25.938 22.104 26.196 22.244 26.422 22.428 L 25.843 23.247 C 25.664 23.117 25.467 23.014 25.258 22.939 C 25.071 22.872 24.875 22.836 24.676 22.834 C 24.567 22.827 24.457 22.854 24.364 22.912 C 24.332 22.933 24.306 22.961 24.288 22.994 C 24.27 23.027 24.26 23.065 24.259 23.103 L 24.259 23.115 C 24.258 23.159 24.27 23.203 24.292 23.241 C 24.321 23.283 24.36 23.317 24.406 23.34 C 24.477 23.377 24.551 23.407 24.627 23.43 C 24.72 23.46 24.837 23.49 24.981 23.521 C 25.2 23.568 25.415 23.629 25.626 23.704 C 25.801 23.765 25.967 23.851 26.118 23.959 C 26.248 24.053 26.355 24.176 26.428 24.319 C 26.503 24.477 26.539 24.65 26.535 24.825 L 26.535 24.837 C 26.538 25.034 26.497 25.23 26.413 25.41 C 26.332 25.576 26.215 25.722 26.07 25.837 C 25.912 25.961 25.732 26.052 25.54 26.107 C 25.316 26.171 25.083 26.202 24.85 26.199 C 24.488 26.201 24.128 26.142 23.785 26.025 C 23.457 25.913 23.154 25.737 22.896 25.506 L 23.541 24.735 C 23.956 25.069 24.408 25.237 24.891 25.237 C 25.013 25.244 25.136 25.218 25.245 25.162 C 25.283 25.141 25.314 25.111 25.336 25.073 C 25.358 25.035 25.369 24.993 25.368 24.949 L 25.368 24.937 C 25.368 24.897 25.358 24.857 25.338 24.822 C 25.31 24.78 25.272 24.746 25.228 24.723 C 25.16 24.684 25.088 24.653 25.014 24.63 C 24.899 24.593 24.782 24.562 24.664 24.537 C 24.455 24.489 24.249 24.432 24.045 24.367 C 23.868 24.312 23.701 24.231 23.548 24.127 C 23.411 24.033 23.297 23.908 23.215 23.763 C 23.129 23.596 23.086 23.41 23.092 23.223 L 23.092 23.211 C 23.09 23.025 23.128 22.842 23.203 22.672 C 23.277 22.508 23.387 22.363 23.524 22.248 C 23.675 22.123 23.848 22.029 24.034 21.97 C 24.251 21.902 24.478 21.868 24.706 21.871 C 24.719 21.871 24.731 21.871 24.744 21.871 Z M 10.707 21.909 L 11.82 21.909 L 13.594 26.124 L 12.357 26.124 L 12.052 25.375 L 10.444 25.375 L 10.147 26.122 L 8.932 26.122 Z M 14.002 21.939 L 15.223 21.939 L 16.218 23.559 L 17.212 21.939 L 18.433 21.939 L 18.433 26.124 L 17.284 26.124 L 17.284 23.721 L 16.218 25.357 L 16.194 25.357 L 15.133 23.733 L 15.133 26.122 L 14.002 26.122 Z M 19.206 21.939 L 22.558 21.939 L 22.558 22.926 L 20.349 22.926 L 20.349 23.559 L 22.35 23.559 L 22.35 24.474 L 20.349 24.474 L 20.349 25.137 L 22.588 25.137 L 22.588 26.124 L 19.206 26.124 Z M 11.256 23.284 L 10.783 24.474 L 11.719 24.474 Z M 9.538 31.069 L 21.559 31.069 L 15.424 33.091 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></g></svg>',withExternalLayout:true,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-11c2h0t\",layoutDependency:layoutDependency,layoutId:\"ybdgatpO7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.023 36\" overflow=\"visible\"><path d=\"M 2.816 0.001 C 0.758 0.001 0 0.76 0 2.82 L 0 27.661 C -0.001 27.878 0.009 28.095 0.03 28.311 C 0.077 28.761 0.086 29.196 0.504 29.691 C 0.545 29.74 0.971 30.058 0.971 30.058 C 1.2 30.171 1.358 30.253 1.616 30.358 L 14.118 35.595 C 14.767 35.893 15.039 36.009 15.51 36 L 15.513 36 C 15.984 36.009 16.255 35.893 16.905 35.595 L 29.407 30.357 C 29.665 30.252 29.823 30.171 30.052 30.057 C 30.052 30.057 30.478 29.74 30.519 29.692 C 30.939 29.197 30.946 28.761 30.993 28.312 C 31.014 28.096 31.024 27.879 31.023 27.661 L 31.023 2.82 C 31.023 0.76 30.264 0 28.206 0 Z M 22.864 4.666 L 23.884 4.666 C 25.591 4.666 26.416 5.496 26.416 7.21 L 26.416 10.03 L 24.355 10.03 L 24.355 7.33 C 24.355 6.777 24.1 6.52 23.571 6.52 L 23.218 6.52 C 22.668 6.52 22.413 6.775 22.413 7.329 L 22.413 16.044 C 22.413 16.597 22.668 16.854 23.218 16.854 L 23.611 16.854 C 24.141 16.854 24.396 16.597 24.396 16.044 L 24.396 12.93 L 26.455 12.93 L 26.455 16.144 C 26.455 17.86 25.612 18.709 23.905 18.709 L 22.864 18.709 C 21.157 18.709 20.314 17.86 20.314 16.144 L 20.314 7.231 C 20.314 5.515 21.157 4.668 22.864 4.668 Z M 4.586 4.786 L 9.256 4.786 L 9.256 6.697 L 6.685 6.697 L 6.685 10.602 L 9.157 10.602 L 9.157 12.514 L 6.685 12.514 L 6.685 16.675 L 9.295 16.675 L 9.295 18.588 L 4.586 18.588 Z M 10.309 4.786 L 13.606 4.786 C 15.313 4.786 16.156 5.632 16.156 7.348 L 16.156 11.016 C 16.156 12.732 15.313 13.581 13.606 13.581 L 12.408 13.581 L 12.408 18.588 L 10.308 18.588 Z M 17.104 4.786 L 19.204 4.786 L 19.204 18.588 L 17.104 18.588 Z M 12.409 6.639 L 12.409 11.727 L 13.272 11.727 C 13.803 11.727 14.056 11.47 14.056 10.917 L 14.056 7.449 C 14.056 6.897 13.801 6.639 13.272 6.639 Z M 6.799 21.859 C 7.102 21.86 7.402 21.915 7.686 22.021 C 7.954 22.129 8.202 22.281 8.421 22.47 L 7.743 23.289 C 7.604 23.169 7.448 23.071 7.281 22.996 C 7.108 22.925 6.923 22.891 6.736 22.894 C 6.592 22.893 6.448 22.924 6.316 22.984 C 6.189 23.043 6.075 23.126 5.98 23.229 C 5.883 23.335 5.806 23.459 5.754 23.593 C 5.698 23.736 5.669 23.888 5.67 24.042 L 5.67 24.054 C 5.669 24.213 5.697 24.37 5.754 24.519 C 5.806 24.656 5.886 24.782 5.989 24.886 C 6.092 24.989 6.213 25.07 6.346 25.126 C 6.491 25.185 6.645 25.215 6.801 25.213 C 7.036 25.223 7.268 25.162 7.468 25.039 L 7.468 24.531 L 6.646 24.531 L 6.646 23.683 L 8.565 23.683 L 8.565 25.566 C 8.328 25.758 8.063 25.913 7.779 26.026 C 7.453 26.154 7.105 26.217 6.754 26.211 C 6.446 26.214 6.14 26.16 5.851 26.05 C 5.585 25.948 5.342 25.795 5.135 25.6 C 4.931 25.408 4.768 25.175 4.658 24.918 C 4.54 24.643 4.482 24.346 4.485 24.048 L 4.485 24.036 C 4.482 23.742 4.54 23.451 4.655 23.181 C 4.765 22.923 4.923 22.688 5.123 22.491 C 5.326 22.29 5.568 22.132 5.833 22.027 C 6.119 21.914 6.424 21.858 6.73 21.861 C 6.753 21.86 6.775 21.86 6.798 21.861 Z M 24.744 21.871 C 25.055 21.87 25.365 21.918 25.662 22.012 C 25.938 22.104 26.196 22.244 26.422 22.428 L 25.843 23.247 C 25.664 23.117 25.467 23.014 25.258 22.939 C 25.071 22.872 24.875 22.836 24.676 22.834 C 24.567 22.827 24.457 22.854 24.364 22.912 C 24.332 22.933 24.306 22.961 24.288 22.994 C 24.27 23.027 24.26 23.065 24.259 23.103 L 24.259 23.115 C 24.258 23.159 24.27 23.203 24.292 23.241 C 24.321 23.283 24.36 23.317 24.406 23.34 C 24.477 23.377 24.551 23.407 24.627 23.43 C 24.72 23.46 24.837 23.49 24.981 23.521 C 25.2 23.568 25.415 23.629 25.626 23.704 C 25.801 23.765 25.967 23.851 26.118 23.959 C 26.248 24.053 26.355 24.176 26.428 24.319 C 26.503 24.477 26.539 24.65 26.535 24.825 L 26.535 24.837 C 26.538 25.034 26.497 25.23 26.413 25.41 C 26.332 25.576 26.215 25.722 26.07 25.837 C 25.912 25.961 25.732 26.052 25.54 26.107 C 25.316 26.171 25.083 26.202 24.85 26.199 C 24.488 26.201 24.128 26.142 23.785 26.025 C 23.457 25.913 23.154 25.737 22.896 25.506 L 23.541 24.735 C 23.956 25.069 24.408 25.237 24.891 25.237 C 25.013 25.244 25.136 25.218 25.245 25.162 C 25.283 25.141 25.314 25.111 25.336 25.073 C 25.358 25.035 25.369 24.993 25.368 24.949 L 25.368 24.937 C 25.368 24.897 25.358 24.857 25.338 24.822 C 25.31 24.78 25.272 24.746 25.228 24.723 C 25.16 24.684 25.088 24.653 25.014 24.63 C 24.899 24.593 24.782 24.562 24.664 24.537 C 24.455 24.489 24.249 24.432 24.045 24.367 C 23.868 24.312 23.701 24.231 23.548 24.127 C 23.411 24.033 23.297 23.908 23.215 23.763 C 23.129 23.596 23.086 23.41 23.092 23.223 L 23.092 23.211 C 23.09 23.025 23.128 22.842 23.203 22.672 C 23.277 22.508 23.387 22.363 23.524 22.248 C 23.675 22.123 23.848 22.029 24.034 21.97 C 24.251 21.902 24.478 21.868 24.706 21.871 C 24.719 21.871 24.731 21.871 24.744 21.871 Z M 10.707 21.909 L 11.82 21.909 L 13.594 26.124 L 12.357 26.124 L 12.052 25.375 L 10.444 25.375 L 10.147 26.122 L 8.932 26.122 Z M 14.002 21.939 L 15.223 21.939 L 16.218 23.559 L 17.212 21.939 L 18.433 21.939 L 18.433 26.124 L 17.284 26.124 L 17.284 23.721 L 16.218 25.357 L 16.194 25.357 L 15.133 23.733 L 15.133 26.122 L 14.002 26.122 Z M 19.206 21.939 L 22.558 21.939 L 22.558 22.926 L 20.349 22.926 L 20.349 23.559 L 22.35 23.559 L 22.35 24.474 L 20.349 24.474 L 20.349 25.137 L 22.588 25.137 L 22.588 26.124 L 19.206 26.124 Z M 11.256 23.284 L 10.783 24.474 L 11.719 24.474 Z M 9.538 31.069 L 21.559 31.069 L 15.424 33.091 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-o9fdhk\",layoutDependency:layoutDependency,layoutId:\"TGPYCsXq3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.023 36\" overflow=\"visible\"><path d=\"M 2.816 0.001 C 0.758 0.001 0 0.76 0 2.82 L 0 27.661 C -0.001 27.878 0.009 28.095 0.03 28.311 C 0.077 28.761 0.086 29.196 0.504 29.691 C 0.545 29.74 0.971 30.058 0.971 30.058 C 1.2 30.171 1.358 30.253 1.616 30.358 L 14.118 35.595 C 14.767 35.893 15.039 36.009 15.51 36 L 15.513 36 C 15.984 36.009 16.255 35.893 16.905 35.595 L 29.407 30.357 C 29.665 30.252 29.823 30.171 30.052 30.057 C 30.052 30.057 30.478 29.74 30.519 29.692 C 30.939 29.197 30.946 28.761 30.993 28.312 C 31.014 28.096 31.024 27.879 31.023 27.661 L 31.023 2.82 C 31.023 0.76 30.264 0 28.206 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cvw0hw\",layoutDependency:layoutDependency,layoutId:\"vrEt6xpl7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.141 14.043\" overflow=\"visible\"><path d=\"M 2.55 0 L 3.57 0 C 5.277 0 6.102 0.829 6.102 2.544 L 6.102 5.364 L 4.041 5.364 L 4.041 2.664 C 4.041 2.11 3.786 1.854 3.257 1.854 L 2.904 1.854 C 2.353 1.854 2.099 2.109 2.099 2.662 L 2.099 11.377 C 2.099 11.931 2.353 12.187 2.904 12.187 L 3.297 12.187 C 3.826 12.187 4.081 11.931 4.081 11.377 L 4.081 8.263 L 6.141 8.263 L 6.141 11.478 C 6.141 13.194 5.298 14.043 3.591 14.043 L 2.55 14.043 C 0.843 14.043 0 13.194 0 11.478 L 0 2.565 C 0 0.849 0.843 0.002 2.55 0.002 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tptc9\",layoutDependency:layoutDependency,layoutId:\"iVnF2luwq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.71 13.801\" overflow=\"visible\"><path d=\"M 0 0 L 4.671 0 L 4.671 1.911 L 2.1 1.911 L 2.1 5.815 L 4.572 5.815 L 4.572 7.728 L 2.1 7.728 L 2.1 11.889 L 4.71 11.889 L 4.71 13.801 L 0 13.801 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16zmxgt\",layoutDependency:layoutDependency,layoutId:\"UlAO2jsnQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.848 13.801\" overflow=\"visible\"><path d=\"M 0.002 0 L 3.298 0 C 5.006 0 5.848 0.846 5.848 2.562 L 5.848 6.229 C 5.848 7.945 5.006 8.794 3.298 8.794 L 2.1 8.794 L 2.1 13.801 L 0 13.801 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-larni3\",layoutDependency:layoutDependency,layoutId:\"mwUqyl_10\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.1 13.801\" overflow=\"visible\"><path d=\"M 0 0 L 2.1 0 L 2.1 13.801 L 0 13.801 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-140by50\",layoutDependency:layoutDependency,layoutId:\"MDVM0dfvU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.647 5.088\" overflow=\"visible\"><path d=\"M 0 0 L 0 5.088 L 0.862 5.088 C 1.393 5.088 1.647 4.831 1.647 4.278 L 1.647 0.81 C 1.647 0.258 1.392 0 0.862 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-buo7qg\",layoutDependency:layoutDependency,layoutId:\"QoG5ug_g1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.08 4.352\" overflow=\"visible\"><path d=\"M 2.315 0 C 2.617 0.001 2.918 0.056 3.201 0.162 C 3.469 0.27 3.718 0.421 3.936 0.611 L 3.258 1.43 C 3.119 1.31 2.964 1.211 2.796 1.137 C 2.623 1.066 2.438 1.032 2.252 1.035 C 2.107 1.034 1.963 1.065 1.832 1.125 C 1.705 1.183 1.59 1.267 1.496 1.37 C 1.398 1.476 1.322 1.6 1.269 1.734 C 1.213 1.877 1.184 2.029 1.185 2.182 L 1.185 2.195 C 1.184 2.353 1.212 2.511 1.269 2.659 C 1.321 2.797 1.401 2.922 1.505 3.027 C 1.607 3.13 1.728 3.211 1.862 3.267 C 2.006 3.326 2.16 3.356 2.316 3.354 C 2.551 3.364 2.783 3.303 2.984 3.18 L 2.984 2.672 L 2.162 2.672 L 2.162 1.824 L 4.08 1.824 L 4.08 3.707 C 3.843 3.899 3.578 4.054 3.294 4.167 C 2.968 4.295 2.62 4.357 2.27 4.351 C 1.961 4.355 1.655 4.301 1.367 4.191 C 1.101 4.089 0.857 3.936 0.65 3.741 C 0.446 3.548 0.283 3.316 0.173 3.059 C 0.056 2.784 -0.003 2.487 0 2.189 L 0 2.177 C -0.003 1.883 0.055 1.592 0.17 1.322 C 0.28 1.064 0.439 0.829 0.638 0.632 C 0.841 0.431 1.083 0.273 1.349 0.168 C 1.634 0.055 1.939 -0.002 2.246 0.002 C 2.268 0.001 2.291 0.001 2.313 0.002 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pxrh23\",layoutDependency:layoutDependency,layoutId:\"Kb90p98T0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.639 4.328\" overflow=\"visible\"><path d=\"M 1.848 0 C 2.159 -0.001 2.469 0.047 2.766 0.141 C 3.042 0.233 3.3 0.373 3.527 0.557 L 2.948 1.376 C 2.768 1.246 2.571 1.143 2.363 1.068 C 2.176 1.001 1.979 0.965 1.781 0.963 C 1.671 0.956 1.562 0.983 1.469 1.041 C 1.437 1.062 1.411 1.09 1.392 1.123 C 1.374 1.156 1.364 1.194 1.364 1.232 L 1.364 1.244 C 1.363 1.288 1.374 1.332 1.397 1.37 C 1.425 1.412 1.465 1.446 1.511 1.469 C 1.581 1.506 1.655 1.536 1.731 1.559 C 1.824 1.589 1.941 1.619 2.085 1.65 C 2.304 1.697 2.519 1.758 2.73 1.833 C 2.905 1.894 3.071 1.98 3.222 2.088 C 3.352 2.182 3.459 2.305 3.533 2.448 C 3.607 2.606 3.644 2.779 3.639 2.954 L 3.639 2.966 C 3.643 3.163 3.601 3.359 3.518 3.539 C 3.437 3.705 3.319 3.851 3.174 3.966 C 3.017 4.089 2.837 4.181 2.645 4.236 C 2.42 4.3 2.188 4.331 1.955 4.328 C 1.592 4.33 1.232 4.271 0.89 4.154 C 0.561 4.042 0.259 3.866 0 3.635 L 0.645 2.864 C 1.061 3.198 1.512 3.366 1.995 3.366 C 2.118 3.373 2.24 3.347 2.349 3.291 C 2.387 3.27 2.419 3.24 2.441 3.202 C 2.462 3.164 2.473 3.121 2.472 3.078 L 2.472 3.066 C 2.473 3.026 2.462 2.986 2.442 2.951 C 2.414 2.909 2.377 2.875 2.333 2.852 C 2.264 2.813 2.192 2.782 2.118 2.759 C 2.003 2.722 1.887 2.691 1.769 2.666 C 1.56 2.618 1.353 2.561 1.149 2.496 C 0.973 2.441 0.805 2.36 0.652 2.256 C 0.515 2.162 0.401 2.037 0.32 1.892 C 0.233 1.725 0.191 1.539 0.197 1.352 L 0.197 1.34 C 0.195 1.154 0.232 0.971 0.308 0.801 C 0.381 0.637 0.491 0.492 0.629 0.377 C 0.779 0.252 0.952 0.158 1.139 0.099 C 1.356 0.031 1.583 -0.003 1.811 0 C 1.823 0 1.836 0 1.848 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xn85my\",layoutDependency:layoutDependency,layoutId:\"T8ICG20JU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.662 4.215\" overflow=\"visible\"><path d=\"M 1.774 0 L 2.887 0 L 4.662 4.215 L 3.425 4.215 L 3.12 3.466 L 1.512 3.466 L 1.215 4.213 L 0 4.213 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11uf14r\",layoutDependency:layoutDependency,layoutId:\"SsrBftc1r\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.431 4.185\" overflow=\"visible\"><path d=\"M 0 0 L 1.221 0 L 2.216 1.62 L 3.21 0 L 4.431 0 L 4.431 4.185 L 3.282 4.185 L 3.282 1.782 L 2.216 3.418 L 2.191 3.418 L 1.131 1.794 L 1.131 4.183 L 0 4.183 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fr8o24\",layoutDependency:layoutDependency,layoutId:\"H_egCdq4U\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.382 4.185\" overflow=\"visible\"><path d=\"M 0 0 L 3.352 0 L 3.352 0.987 L 1.143 0.987 L 1.143 1.62 L 3.144 1.62 L 3.144 2.535 L 1.143 2.535 L 1.143 3.198 L 3.382 3.198 L 3.382 4.185 L 0 4.185 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-knrrst\",layoutDependency:layoutDependency,layoutId:\"LgEgVBGFV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1.189\" overflow=\"visible\"><path d=\"M 0.472 0 L 0 1.189 L 0.936 1.189 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hli140\",layoutDependency:layoutDependency,layoutId:\"MltkLgbTS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.021 2.022\" overflow=\"visible\"><path d=\"M 0 0 L 12.021 0 L 5.886 2.022 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ygt8mt\",\"data-framer-name\":\"Github\",layoutDependency:layoutDependency,layoutId:\"ZiXv8_cpS\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-19n1j95\",layoutDependency:layoutDependency,layoutId:\"yNObSaH_d\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 96.2 26\" overflow=\"visible\"><g><path d=\"M 0 26 L 0 0 L 96.2 0 L 96.2 26 Z\" fill=\"transparent\"></path><path d=\"M 18.531 11.128 L 10.448 11.128 C 10.348 11.128 10.252 11.168 10.181 11.239 C 10.11 11.31 10.071 11.406 10.071 11.506 L 10.071 15.456 C 10.071 15.556 10.11 15.652 10.181 15.723 C 10.252 15.794 10.348 15.834 10.448 15.834 L 13.602 15.834 L 13.602 20.741 C 13.602 20.741 12.893 20.983 10.936 20.983 C 8.627 20.983 5.401 20.139 5.401 13.049 C 5.401 5.957 8.76 5.024 11.914 5.024 C 14.644 5.024 15.82 5.504 16.568 5.736 C 16.803 5.808 17.021 5.574 17.021 5.365 L 17.922 1.549 C 17.922 1.451 17.889 1.333 17.778 1.254 C 17.474 1.037 15.62 0 10.936 0 C 5.54 0 0.005 2.295 0.005 13.325 C 0.005 24.356 6.342 26 11.682 26 C 16.104 26 18.786 24.111 18.786 24.111 C 18.897 24.05 18.909 23.896 18.909 23.825 L 18.909 11.506 C 18.909 11.297 18.74 11.128 18.531 11.128 Z M 60.187 1.322 C 60.187 1.272 60.178 1.223 60.159 1.177 C 60.141 1.131 60.113 1.089 60.078 1.054 C 60.043 1.019 60.002 0.991 59.956 0.971 C 59.911 0.952 59.861 0.942 59.812 0.942 L 55.261 0.942 C 55.211 0.942 55.162 0.952 55.116 0.971 C 55.07 0.991 55.028 1.019 54.993 1.054 C 54.958 1.089 54.931 1.131 54.912 1.177 C 54.893 1.223 54.883 1.272 54.884 1.322 L 54.885 10.113 L 47.791 10.113 L 47.791 1.322 C 47.791 1.272 47.782 1.223 47.763 1.177 C 47.744 1.131 47.717 1.089 47.682 1.054 C 47.647 1.019 47.605 0.991 47.56 0.971 C 47.514 0.952 47.465 0.942 47.415 0.942 L 42.864 0.942 C 42.764 0.943 42.668 0.983 42.598 1.054 C 42.527 1.125 42.488 1.222 42.488 1.322 L 42.488 25.125 C 42.488 25.335 42.657 25.506 42.864 25.506 L 47.415 25.506 C 47.623 25.506 47.791 25.335 47.791 25.125 L 47.791 14.944 L 54.885 14.944 L 54.872 25.125 C 54.872 25.335 55.041 25.506 55.249 25.506 L 59.811 25.506 C 60.02 25.506 60.187 25.335 60.187 25.125 Z M 27.119 4.445 C 27.119 2.807 25.806 1.484 24.185 1.484 C 22.565 1.484 21.25 2.807 21.25 4.445 C 21.25 6.082 22.565 7.409 24.185 7.409 C 25.806 7.409 27.119 6.082 27.119 4.445 Z M 26.794 20.104 L 26.794 9.116 C 26.794 9.016 26.755 8.92 26.684 8.849 C 26.613 8.778 26.518 8.738 26.417 8.737 L 21.881 8.737 C 21.673 8.737 21.486 8.952 21.486 9.16 L 21.486 24.902 C 21.486 25.365 21.775 25.503 22.148 25.503 L 26.235 25.503 C 26.684 25.503 26.794 25.282 26.794 24.895 Z M 77.483 8.773 L 72.967 8.773 C 72.76 8.773 72.591 8.943 72.591 9.153 L 72.591 20.825 C 72.591 20.825 71.444 21.664 69.815 21.664 C 68.187 21.664 67.755 20.926 67.755 19.332 L 67.755 9.153 C 67.755 8.943 67.586 8.773 67.379 8.773 L 62.796 8.773 C 62.589 8.773 62.419 8.943 62.419 9.153 L 62.419 20.102 C 62.419 24.836 65.059 25.994 68.69 25.994 C 71.669 25.994 74.071 24.35 74.071 24.35 C 74.071 24.35 74.185 25.216 74.237 25.319 C 74.289 25.422 74.424 25.525 74.569 25.525 L 77.485 25.512 C 77.692 25.512 77.862 25.341 77.862 25.132 L 77.86 9.154 C 77.86 8.943 77.691 8.773 77.483 8.773 Z M 88.045 21.65 C 86.479 21.602 85.416 20.891 85.416 20.891 L 85.416 13.354 C 85.416 13.354 86.464 12.711 87.751 12.597 C 89.377 12.451 90.944 12.942 90.944 16.82 C 90.944 20.909 90.237 21.716 88.045 21.65 Z M 89.827 8.238 C 87.262 8.238 85.517 9.382 85.517 9.382 L 85.517 1.322 C 85.517 1.112 85.349 0.942 85.141 0.942 L 80.577 0.942 C 80.528 0.942 80.479 0.952 80.433 0.972 C 80.387 0.991 80.346 1.019 80.311 1.054 C 80.276 1.089 80.248 1.131 80.229 1.177 C 80.211 1.223 80.201 1.272 80.201 1.322 L 80.201 25.125 C 80.201 25.335 80.37 25.506 80.578 25.506 L 83.745 25.506 C 83.887 25.506 83.995 25.432 84.075 25.304 C 84.154 25.176 84.267 24.206 84.267 24.206 C 84.267 24.206 86.133 25.974 89.666 25.974 C 93.814 25.974 96.192 23.871 96.192 16.534 C 96.192 9.197 92.394 8.238 89.827 8.238 Z M 39.874 8.735 L 36.46 8.735 L 36.455 4.227 C 36.455 4.056 36.367 3.971 36.17 3.971 L 31.517 3.971 C 31.337 3.971 31.24 4.051 31.24 4.224 L 31.24 8.883 C 31.24 8.883 28.908 9.445 28.751 9.491 C 28.672 9.514 28.603 9.561 28.554 9.627 C 28.504 9.692 28.478 9.772 28.478 9.854 L 28.478 12.781 C 28.478 12.992 28.646 13.161 28.854 13.161 L 31.24 13.161 L 31.24 20.203 C 31.24 25.434 34.91 25.948 37.388 25.948 C 38.519 25.948 39.873 25.585 40.097 25.502 C 40.232 25.453 40.311 25.313 40.311 25.161 L 40.314 21.941 C 40.314 21.73 40.137 21.561 39.937 21.561 C 39.738 21.561 39.229 21.642 38.705 21.642 C 37.028 21.642 36.46 20.862 36.46 19.854 L 36.46 13.161 L 39.874 13.161 C 40.082 13.161 40.251 12.991 40.251 12.781 L 40.251 9.114 C 40.251 9.064 40.241 9.015 40.223 8.969 C 40.204 8.923 40.176 8.882 40.141 8.846 C 40.106 8.811 40.065 8.783 40.019 8.764 C 39.973 8.745 39.924 8.735 39.874 8.735 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7y523x\",layoutDependency:layoutDependency,layoutId:\"vJ3s3vJn6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 96.2 26\" overflow=\"visible\"><path d=\"M 0 26 L 0 0 L 96.2 0 L 96.2 26 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1mioz4q\",layoutDependency:layoutDependency,layoutId:\"T9wYWasa7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 96.187 26\" overflow=\"visible\"><path d=\"M 18.526 11.128 L 10.443 11.128 C 10.343 11.128 10.247 11.168 10.176 11.239 C 10.105 11.31 10.066 11.406 10.066 11.506 L 10.066 15.456 C 10.066 15.556 10.105 15.652 10.176 15.723 C 10.247 15.794 10.343 15.834 10.443 15.834 L 13.596 15.834 L 13.596 20.741 C 13.596 20.741 12.888 20.983 10.931 20.983 C 8.622 20.983 5.396 20.139 5.396 13.049 C 5.396 5.957 8.755 5.024 11.909 5.024 C 14.639 5.024 15.815 5.504 16.563 5.736 C 16.798 5.808 17.016 5.574 17.016 5.365 L 17.917 1.549 C 17.917 1.451 17.884 1.333 17.773 1.254 C 17.469 1.037 15.615 0 10.931 0 C 5.535 0 0 2.295 0 13.325 C 0 24.356 6.337 26 11.677 26 C 16.099 26 18.781 24.111 18.781 24.111 C 18.892 24.05 18.904 23.896 18.904 23.825 L 18.904 11.506 C 18.904 11.297 18.735 11.128 18.526 11.128 Z M 60.182 1.322 C 60.182 1.272 60.173 1.223 60.154 1.177 C 60.136 1.131 60.108 1.089 60.073 1.054 C 60.038 1.019 59.997 0.991 59.951 0.971 C 59.905 0.952 59.856 0.942 59.807 0.942 L 55.255 0.942 C 55.206 0.942 55.157 0.952 55.111 0.971 C 55.065 0.991 55.023 1.019 54.988 1.054 C 54.953 1.089 54.926 1.131 54.907 1.177 C 54.888 1.223 54.878 1.272 54.878 1.322 L 54.88 10.113 L 47.786 10.113 L 47.786 1.322 C 47.786 1.272 47.777 1.223 47.758 1.177 C 47.739 1.131 47.712 1.089 47.677 1.054 C 47.642 1.019 47.6 0.991 47.555 0.971 C 47.509 0.952 47.46 0.942 47.41 0.942 L 42.859 0.942 C 42.759 0.943 42.663 0.983 42.593 1.054 C 42.522 1.125 42.483 1.222 42.483 1.322 L 42.483 25.125 C 42.483 25.335 42.652 25.506 42.859 25.506 L 47.41 25.506 C 47.618 25.506 47.786 25.335 47.786 25.125 L 47.786 14.944 L 54.88 14.944 L 54.867 25.125 C 54.867 25.335 55.036 25.506 55.244 25.506 L 59.806 25.506 C 60.015 25.506 60.182 25.335 60.182 25.125 Z M 27.114 4.445 C 27.114 2.807 25.8 1.484 24.179 1.484 C 22.56 1.484 21.245 2.807 21.245 4.445 C 21.245 6.082 22.56 7.409 24.179 7.409 C 25.8 7.409 27.114 6.082 27.114 4.445 Z M 26.789 20.104 L 26.789 9.116 C 26.789 9.016 26.75 8.92 26.679 8.849 C 26.608 8.778 26.512 8.738 26.412 8.737 L 21.875 8.737 C 21.667 8.737 21.481 8.952 21.481 9.16 L 21.481 24.902 C 21.481 25.365 21.77 25.503 22.143 25.503 L 26.23 25.503 C 26.679 25.503 26.789 25.282 26.789 24.895 Z M 77.478 8.773 L 72.962 8.773 C 72.755 8.773 72.586 8.943 72.586 9.153 L 72.586 20.825 C 72.586 20.825 71.439 21.664 69.81 21.664 C 68.182 21.664 67.75 20.926 67.75 19.332 L 67.75 9.153 C 67.75 8.943 67.581 8.773 67.374 8.773 L 62.791 8.773 C 62.584 8.773 62.414 8.943 62.414 9.153 L 62.414 20.102 C 62.414 24.836 65.054 25.994 68.685 25.994 C 71.664 25.994 74.066 24.35 74.066 24.35 C 74.066 24.35 74.18 25.216 74.232 25.319 C 74.284 25.422 74.418 25.525 74.564 25.525 L 77.48 25.512 C 77.687 25.512 77.857 25.341 77.857 25.132 L 77.855 9.154 C 77.855 8.943 77.686 8.773 77.478 8.773 Z M 88.04 21.65 C 86.474 21.602 85.411 20.891 85.411 20.891 L 85.411 13.354 C 85.411 13.354 86.459 12.711 87.745 12.597 C 89.372 12.451 90.939 12.942 90.939 16.82 C 90.939 20.909 90.232 21.716 88.04 21.65 Z M 89.822 8.238 C 87.257 8.238 85.512 9.382 85.512 9.382 L 85.512 1.322 C 85.512 1.112 85.344 0.942 85.136 0.942 L 80.572 0.942 C 80.523 0.942 80.474 0.952 80.428 0.972 C 80.382 0.991 80.341 1.019 80.306 1.054 C 80.271 1.089 80.243 1.131 80.224 1.177 C 80.205 1.223 80.196 1.272 80.196 1.322 L 80.196 25.125 C 80.196 25.335 80.365 25.506 80.573 25.506 L 83.74 25.506 C 83.882 25.506 83.99 25.432 84.07 25.304 C 84.148 25.176 84.262 24.206 84.262 24.206 C 84.262 24.206 86.128 25.974 89.661 25.974 C 93.809 25.974 96.187 23.871 96.187 16.534 C 96.187 9.197 92.389 8.238 89.822 8.238 Z M 39.869 8.735 L 36.455 8.735 L 36.45 4.227 C 36.45 4.056 36.362 3.971 36.165 3.971 L 31.512 3.971 C 31.332 3.971 31.234 4.051 31.234 4.224 L 31.234 8.883 C 31.234 8.883 28.903 9.445 28.745 9.491 C 28.667 9.514 28.598 9.561 28.549 9.627 C 28.499 9.692 28.473 9.772 28.473 9.854 L 28.473 12.781 C 28.473 12.992 28.641 13.161 28.849 13.161 L 31.234 13.161 L 31.234 20.203 C 31.234 25.434 34.905 25.948 37.383 25.948 C 38.514 25.948 39.868 25.585 40.092 25.502 C 40.227 25.453 40.305 25.313 40.305 25.161 L 40.309 21.941 C 40.309 21.73 40.132 21.561 39.932 21.561 C 39.733 21.561 39.224 21.642 38.7 21.642 C 37.023 21.642 36.455 20.862 36.455 19.854 L 36.455 13.161 L 39.869 13.161 C 40.077 13.161 40.246 12.991 40.246 12.781 L 40.246 9.114 C 40.246 9.064 40.236 9.015 40.217 8.969 C 40.199 8.923 40.171 8.882 40.136 8.846 C 40.101 8.811 40.059 8.783 40.014 8.764 C 39.968 8.745 39.919 8.735 39.869 8.735 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ucnyng\",layoutDependency:layoutDependency,layoutId:\"nTOG9xO5R\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.904 26\" overflow=\"visible\"><path d=\"M 18.526 11.128 L 10.443 11.128 C 10.343 11.128 10.247 11.168 10.176 11.239 C 10.105 11.31 10.066 11.406 10.066 11.506 L 10.066 15.456 C 10.066 15.556 10.105 15.652 10.176 15.723 C 10.247 15.794 10.343 15.834 10.443 15.834 L 13.596 15.834 L 13.596 20.741 C 13.596 20.741 12.888 20.983 10.931 20.983 C 8.622 20.983 5.396 20.139 5.396 13.049 C 5.396 5.957 8.755 5.024 11.909 5.024 C 14.639 5.024 15.815 5.504 16.563 5.736 C 16.798 5.808 17.016 5.574 17.016 5.365 L 17.917 1.549 C 17.917 1.451 17.884 1.333 17.773 1.254 C 17.469 1.037 15.615 0 10.931 0 C 5.535 0 0 2.295 0 13.325 C 0 24.356 6.337 26 11.677 26 C 16.099 26 18.781 24.111 18.781 24.111 C 18.892 24.05 18.904 23.896 18.904 23.825 L 18.904 11.506 C 18.904 11.297 18.735 11.128 18.526 11.128 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sgxyhe\",layoutDependency:layoutDependency,layoutId:\"huHjfO25q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.699 24.564\" overflow=\"visible\"><path d=\"M 17.699 0.38 C 17.699 0.33 17.69 0.281 17.671 0.235 C 17.652 0.189 17.625 0.147 17.59 0.112 C 17.555 0.077 17.514 0.049 17.468 0.029 C 17.422 0.01 17.373 0 17.324 0 L 12.772 0 C 12.723 0 12.673 0.01 12.628 0.029 C 12.582 0.048 12.54 0.077 12.505 0.112 C 12.47 0.147 12.442 0.189 12.424 0.235 C 12.405 0.281 12.395 0.33 12.395 0.38 L 12.397 9.171 L 5.302 9.171 L 5.302 0.38 C 5.303 0.33 5.293 0.281 5.275 0.235 C 5.256 0.189 5.228 0.147 5.194 0.112 C 5.159 0.077 5.117 0.049 5.071 0.029 C 5.026 0.01 4.977 0 4.927 0 L 0.376 0 C 0.276 0.001 0.18 0.041 0.109 0.112 C 0.039 0.183 -0.001 0.279 0 0.38 L 0 24.183 C 0 24.393 0.169 24.564 0.376 24.564 L 4.927 24.564 C 5.135 24.564 5.302 24.393 5.302 24.183 L 5.302 14.001 L 12.397 14.001 L 12.384 24.183 C 12.384 24.393 12.553 24.564 12.761 24.564 L 17.323 24.564 C 17.532 24.564 17.698 24.393 17.699 24.183 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13x3cie\",layoutDependency:layoutDependency,layoutId:\"fxuvbmqpj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.869 5.925\" overflow=\"visible\"><path d=\"M 5.869 2.962 C 5.869 1.324 4.555 0 2.934 0 C 1.315 0 0 1.324 0 2.962 C 0 4.598 1.315 5.925 2.934 5.925 C 4.555 5.925 5.869 4.598 5.869 2.962 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ypjnm2\",layoutDependency:layoutDependency,layoutId:\"JZiK8clOm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.308 16.766\" overflow=\"visible\"><path d=\"M 5.308 11.367 L 5.308 0.379 C 5.308 0.279 5.268 0.183 5.198 0.112 C 5.127 0.041 5.031 0.001 4.931 0 L 0.394 0 C 0.186 0 0 0.215 0 0.423 L 0 16.165 C 0 16.628 0.288 16.766 0.662 16.766 L 4.749 16.766 C 5.198 16.766 5.308 16.545 5.308 16.158 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cj0skv\",layoutDependency:layoutDependency,layoutId:\"khRcyEzQM\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.442 17.222\" overflow=\"visible\"><path d=\"M 15.064 0 L 10.548 0 C 10.34 0 10.172 0.171 10.172 0.381 L 10.172 12.052 C 10.172 12.052 9.024 12.891 7.396 12.891 C 5.768 12.891 5.336 12.153 5.336 10.559 L 5.336 0.381 C 5.336 0.171 5.167 0 4.96 0 L 0.376 0 C 0.17 0 0 0.171 0 0.381 L 0 11.33 C 0 16.063 2.64 17.222 6.271 17.222 C 9.25 17.222 11.652 15.577 11.652 15.577 C 11.652 15.577 11.766 16.443 11.818 16.546 C 11.87 16.649 12.004 16.752 12.15 16.752 L 15.066 16.739 C 15.273 16.739 15.442 16.569 15.442 16.359 L 15.441 0.381 C 15.441 0.171 15.272 0 15.064 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1v850z5\",layoutDependency:layoutDependency,layoutId:\"dWkkCOeui\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.528 9.079\" overflow=\"visible\"><path d=\"M 2.629 9.075 C 1.062 9.028 0 8.317 0 8.317 L 0 0.779 C 0 0.779 1.048 0.137 2.334 0.022 C 3.96 -0.124 5.528 0.367 5.528 4.245 C 5.528 8.334 4.821 9.141 2.629 9.075 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17kykxd\",layoutDependency:layoutDependency,layoutId:\"e_37Jzdop\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.991 25.032\" overflow=\"visible\"><path d=\"M 9.625 7.296 C 7.06 7.296 5.316 8.44 5.316 8.44 L 5.316 0.38 C 5.316 0.17 5.148 0 4.94 0 L 0.376 0 C 0.326 0 0.277 0.01 0.232 0.029 C 0.186 0.049 0.144 0.077 0.109 0.112 C 0.074 0.147 0.047 0.189 0.028 0.235 C 0.009 0.281 0 0.33 0 0.38 L 0 24.183 C 0 24.393 0.169 24.564 0.377 24.564 L 3.543 24.564 C 3.686 24.564 3.794 24.49 3.874 24.362 C 3.952 24.234 4.066 23.264 4.066 23.264 C 4.066 23.264 5.932 25.032 9.465 25.032 C 13.613 25.032 15.991 22.929 15.991 15.592 C 15.991 8.255 12.192 7.296 9.625 7.296 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-145liwh\",layoutDependency:layoutDependency,layoutId:\"nuYMFC02e\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.836 21.977\" overflow=\"visible\"><path d=\"M 11.396 4.764 L 7.982 4.764 L 7.977 0.256 C 7.977 0.085 7.889 0 7.692 0 L 3.04 0 C 2.859 0 2.762 0.08 2.762 0.253 L 2.762 4.912 C 2.762 4.912 0.43 5.474 0.273 5.52 C 0.194 5.543 0.125 5.59 0.076 5.656 C 0.027 5.721 0 5.801 0 5.883 L 0 8.81 C 0 9.021 0.168 9.19 0.376 9.19 L 2.762 9.19 L 2.762 16.232 C 2.762 21.463 6.432 21.977 8.91 21.977 C 10.041 21.977 11.395 21.614 11.619 21.531 C 11.754 21.482 11.833 21.342 11.833 21.19 L 11.836 17.97 C 11.836 17.759 11.659 17.59 11.459 17.59 C 11.26 17.59 10.751 17.671 10.227 17.671 C 8.55 17.671 7.982 16.891 7.982 15.883 L 7.982 9.19 L 11.396 9.19 C 11.604 9.19 11.773 9.02 11.773 8.81 L 11.773 5.143 C 11.773 5.093 11.763 5.044 11.745 4.998 C 11.726 4.952 11.698 4.911 11.663 4.875 C 11.628 4.84 11.587 4.812 11.541 4.793 C 11.495 4.774 11.446 4.764 11.396 4.764 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rjila9\",\"data-framer-name\":\"Hotjar\",layoutDependency:layoutDependency,layoutId:\"zEelSVyX3\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-abebym\",layoutDependency:layoutDependency,layoutId:\"AsJ2xtk_A\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58.546 28\" overflow=\"visible\"><g><path d=\"M 0 28 L 0 0 L 58.546 0 L 58.546 28 Z\" fill=\"transparent\"></path><path d=\"M 3.604 11.024 C 4.648 10.512 5.805 10.269 6.967 10.315 C 9.215 10.392 10.451 11.534 10.5 13.768 C 10.555 16.109 10.538 18.431 10.53 20.77 C 10.53 21.721 10.279 21.942 9.338 21.942 L 8.034 21.942 C 7.202 21.942 6.943 21.688 6.926 20.852 L 6.926 14.583 C 6.926 13.613 6.468 13.215 5.486 13.253 C 5.314 13.256 5.145 13.272 4.976 13.302 C 3.688 13.564 3.615 13.657 3.615 14.968 L 3.615 20.554 C 3.615 21.748 3.41 21.95 2.231 21.95 L 0.925 21.95 C 0.311 21.95 0.041 21.661 0 21.029 L 0 6.268 C 0 5.189 0.229 4.963 1.293 4.963 L 2.444 4.963 C 3.336 4.963 3.612 5.214 3.628 6.113 C 3.653 7.462 3.628 8.811 3.628 10.157 C 3.604 10.405 3.604 10.672 3.604 11.024 Z M 22.828 16.494 C 22.749 17.115 22.705 17.911 22.539 18.688 C 22.279 20.437 20.918 21.822 19.172 22.111 C 17.977 22.367 16.742 22.35 15.555 22.064 C 14.052 21.775 12.852 20.639 12.486 19.154 C 11.943 17.281 11.943 15.292 12.486 13.417 C 13.062 11.449 14.567 10.394 16.774 10.318 C 17.571 10.275 18.368 10.326 19.153 10.465 C 21.235 10.882 22.416 12.291 22.683 14.594 C 22.749 15.177 22.768 15.742 22.828 16.494 Z M 19.191 16.54 C 19.151 15.9 19.129 15.461 19.088 15.03 C 19.063 14.804 19.017 14.581 18.949 14.363 C 18.818 13.638 18.155 13.128 17.421 13.185 C 16.704 13.131 16.06 13.627 15.932 14.335 C 15.604 15.63 15.604 16.984 15.932 18.276 C 16.065 18.996 16.736 19.489 17.465 19.407 C 18.155 19.453 18.771 18.982 18.905 18.303 C 19.033 17.72 19.129 17.131 19.194 16.537 L 19.194 16.54 Z M 45.86 14.75 C 46.019 13.548 45.751 13.177 44.592 13.232 C 43.645 13.311 42.707 13.45 41.779 13.648 C 40.994 13.79 40.418 13.591 40.309 12.981 C 40.132 11.975 40.2 11.111 41.007 10.869 C 42.876 10.255 44.878 10.155 46.799 10.58 C 48.545 10.997 49.39 12.15 49.39 14.033 L 49.39 20.696 C 49.39 21.2 49.39 21.718 48.79 21.914 C 48.125 22.157 47.374 21.953 46.927 21.402 L 46.741 21.135 C 45.721 21.95 44.434 22.361 43.127 22.285 C 40.29 22.181 38.661 19.481 39.894 16.911 C 40.47 15.687 41.621 15.303 42.81 15.112 C 43.836 14.959 44.854 14.864 45.86 14.75 Z M 45.915 16.712 C 45.227 16.815 44.622 16.873 44.035 17.001 C 43.422 17.08 42.96 17.595 42.947 18.211 C 42.819 18.829 43.146 19.456 43.73 19.701 C 44.305 19.925 45.53 19.701 45.811 19.309 C 45.866 19.233 45.896 19.143 45.899 19.05 C 45.915 18.292 45.915 17.54 45.915 16.704 Z M 25.294 10.719 L 25.294 9.231 C 25.242 8.776 25.537 8.35 25.981 8.241 C 26.568 8.045 27.165 7.879 27.771 7.74 C 28.207 7.596 28.679 7.83 28.824 8.266 C 28.862 8.383 28.876 8.506 28.859 8.628 C 28.879 9.269 28.859 9.907 28.859 10.618 L 30.567 10.618 C 31.399 10.637 31.686 10.907 31.718 11.768 C 31.765 13.518 31.669 13.616 29.94 13.616 L 28.936 13.616 C 28.909 13.771 28.889 13.929 28.881 14.087 L 28.881 17.777 C 28.881 18.927 29.228 19.279 30.346 19.361 C 31.328 19.432 31.596 19.65 31.596 20.448 C 31.631 21.724 31.372 22.154 30.346 22.214 C 29.533 22.274 28.715 22.233 27.913 22.092 C 26.246 21.754 25.349 20.674 25.291 18.914 C 25.242 17.377 25.272 15.84 25.267 14.311 L 25.267 13.621 L 24.26 13.621 C 23.785 13.659 23.371 13.308 23.33 12.834 L 23.33 12.755 C 23.191 11.577 23.401 11.264 24.522 10.948 Z M 37.818 17.873 C 37.818 19.865 37.856 21.86 37.818 23.852 C 37.807 26.152 35.936 28.008 33.633 27.997 C 33.415 27.997 33.197 27.978 32.979 27.943 C 32.177 27.842 31.89 27.526 31.879 26.695 L 31.879 25.956 C 31.915 25.261 32.13 25.019 32.82 24.89 C 33.887 24.692 34.234 24.291 34.236 23.179 L 34.236 11.842 C 34.236 10.88 34.482 10.623 35.445 10.593 L 36.754 10.593 C 37.529 10.629 37.821 10.91 37.826 11.689 L 37.826 17.835 Z M 53.902 11.408 C 54.846 10.732 55.97 10.354 57.13 10.318 C 58.281 10.318 58.545 10.561 58.543 11.7 L 58.543 12.212 C 58.543 12.948 58.237 13.21 57.517 13.286 C 56.841 13.368 56.167 13.488 55.501 13.64 C 55.054 13.736 54.885 14.006 54.893 14.504 C 54.928 16.584 54.893 18.647 54.893 20.715 C 54.893 21.732 54.672 21.944 53.643 21.963 L 52.159 21.963 C 51.734 21.999 51.36 21.68 51.325 21.255 C 51.319 21.203 51.322 21.151 51.327 21.1 L 51.327 11.531 C 51.294 11.106 51.614 10.732 52.039 10.7 L 52.042 10.7 L 52.077 10.7 C 52.798 10.577 53.553 10.465 53.902 11.408 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 37.429 8.571 C 38.081 6.236 37.847 5.058 36.704 4.832 C 36.878 5.625 37.075 6.44 36.24 6.99 C 35.803 7.279 35.457 7.168 34.682 6.573 C 34.325 7.307 34.445 8.037 34.611 8.819 C 33.501 8.626 32.625 8.165 32.219 7.094 C 31.799 6.118 32.031 4.987 32.795 4.251 C 33.062 3.979 33.351 3.731 33.659 3.507 C 34.909 2.57 35.151 1.66 34.491 0.251 C 34.461 0.169 34.437 0.087 34.42 0.003 C 35.809 0.213 37.124 0.771 38.242 1.622 C 40.678 3.611 40.384 7.189 37.694 8.503 C 37.601 8.508 37.514 8.53 37.429 8.571 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gay97a\",layoutDependency:layoutDependency,layoutId:\"qih1WO1Xs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58.546 28\" overflow=\"visible\"><path d=\"M 0 28 L 0 0 L 58.546 0 L 58.546 28 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1m02y1p\",layoutDependency:layoutDependency,layoutId:\"qqmIhdO9b\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58.543 23.035\" overflow=\"visible\"><path d=\"M 3.604 6.061 C 4.648 5.549 5.805 5.306 6.967 5.353 C 9.215 5.429 10.451 6.571 10.5 8.806 C 10.555 11.147 10.538 13.469 10.53 15.807 C 10.53 16.758 10.279 16.979 9.338 16.979 L 8.034 16.979 C 7.202 16.979 6.943 16.725 6.926 15.889 L 6.926 9.62 C 6.926 8.65 6.468 8.252 5.486 8.29 C 5.314 8.293 5.145 8.31 4.976 8.339 C 3.688 8.601 3.615 8.694 3.615 10.005 L 3.615 15.592 C 3.615 16.785 3.41 16.987 2.231 16.987 L 0.925 16.987 C 0.311 16.987 0.041 16.698 0 16.066 L 0 1.305 C 0 0.226 0.229 0 1.293 0 L 2.444 0 C 3.336 0 3.612 0.251 3.628 1.15 C 3.653 2.499 3.628 3.848 3.628 5.194 C 3.604 5.442 3.604 5.71 3.604 6.061 Z M 22.828 11.531 C 22.749 12.152 22.705 12.948 22.539 13.725 C 22.279 15.474 20.918 16.859 19.172 17.148 C 17.977 17.404 16.742 17.388 15.555 17.101 C 14.052 16.813 12.852 15.676 12.486 14.191 C 11.943 12.318 11.943 10.329 12.486 8.454 C 13.062 6.486 14.567 5.432 16.774 5.355 C 17.571 5.312 18.368 5.363 19.153 5.502 C 21.235 5.919 22.416 7.328 22.683 9.631 C 22.749 10.215 22.768 10.779 22.828 11.531 Z M 19.191 11.577 C 19.151 10.937 19.129 10.498 19.088 10.067 C 19.063 9.841 19.017 9.618 18.949 9.4 C 18.818 8.675 18.155 8.165 17.421 8.222 C 16.704 8.168 16.06 8.664 15.932 9.372 C 15.604 10.667 15.604 12.021 15.932 13.313 C 16.065 14.033 16.736 14.526 17.465 14.444 C 18.155 14.491 18.771 14.019 18.905 13.34 C 19.033 12.757 19.129 12.169 19.194 11.574 L 19.194 11.577 Z M 45.86 9.787 C 46.019 8.585 45.751 8.214 44.592 8.269 C 43.645 8.348 42.707 8.487 41.779 8.686 C 40.994 8.827 40.418 8.628 40.309 8.018 C 40.132 7.012 40.2 6.148 41.007 5.906 C 42.876 5.293 44.878 5.192 46.799 5.617 C 48.545 6.034 49.39 7.187 49.39 9.07 L 49.39 15.733 C 49.39 16.237 49.39 16.755 48.79 16.952 C 48.125 17.194 47.374 16.99 46.927 16.439 L 46.741 16.172 C 45.721 16.987 44.434 17.398 43.127 17.322 C 40.29 17.219 38.661 14.518 39.894 11.948 C 40.47 10.724 41.621 10.34 42.81 10.149 C 43.836 9.996 44.854 9.901 45.86 9.787 Z M 45.915 11.749 C 45.227 11.852 44.622 11.91 44.035 12.038 C 43.422 12.117 42.96 12.632 42.947 13.248 C 42.819 13.866 43.146 14.493 43.73 14.739 C 44.305 14.962 45.53 14.739 45.811 14.346 C 45.866 14.27 45.896 14.18 45.899 14.087 C 45.915 13.33 45.915 12.577 45.915 11.741 Z M 25.294 5.756 L 25.294 4.268 C 25.242 3.813 25.537 3.388 25.981 3.279 C 26.568 3.082 27.165 2.916 27.771 2.777 C 28.207 2.633 28.679 2.867 28.824 3.303 C 28.862 3.42 28.876 3.543 28.859 3.666 C 28.879 4.306 28.859 4.944 28.859 5.655 L 30.567 5.655 C 31.399 5.674 31.686 5.944 31.718 6.805 C 31.765 8.555 31.669 8.653 29.94 8.653 L 28.936 8.653 C 28.909 8.808 28.889 8.966 28.881 9.124 L 28.881 12.814 C 28.881 13.965 29.228 14.316 30.346 14.398 C 31.328 14.469 31.596 14.687 31.596 15.485 C 31.631 16.761 31.372 17.191 30.346 17.251 C 29.533 17.311 28.715 17.27 27.913 17.129 C 26.246 16.791 25.349 15.711 25.291 13.951 C 25.242 12.414 25.272 10.877 25.267 9.348 L 25.267 8.658 L 24.26 8.658 C 23.785 8.696 23.371 8.345 23.33 7.871 L 23.33 7.792 C 23.191 6.614 23.401 6.301 24.522 5.985 Z M 37.818 12.91 C 37.818 14.902 37.856 16.897 37.818 18.889 C 37.807 21.189 35.936 23.045 33.633 23.034 C 33.415 23.034 33.197 23.015 32.979 22.98 C 32.177 22.879 31.89 22.563 31.879 21.732 L 31.879 20.993 C 31.915 20.298 32.13 20.056 32.82 19.928 C 33.887 19.729 34.234 19.328 34.236 18.216 L 34.236 6.879 C 34.236 5.917 34.482 5.66 35.445 5.631 L 36.754 5.631 C 37.529 5.666 37.821 5.947 37.826 6.726 L 37.826 12.872 Z M 53.902 6.445 C 54.846 5.769 55.97 5.391 57.13 5.355 C 58.281 5.355 58.545 5.598 58.543 6.737 L 58.543 7.249 C 58.543 7.985 58.237 8.247 57.517 8.323 C 56.841 8.405 56.167 8.525 55.501 8.677 C 55.054 8.773 54.885 9.043 54.893 9.541 C 54.928 11.621 54.893 13.684 54.893 15.752 C 54.893 16.769 54.672 16.981 53.643 17.001 L 52.159 17.001 C 51.734 17.036 51.36 16.717 51.325 16.292 C 51.319 16.24 51.322 16.188 51.327 16.137 L 51.327 6.568 C 51.294 6.143 51.614 5.769 52.039 5.737 L 52.042 5.737 L 52.077 5.737 C 52.798 5.614 53.553 5.502 53.902 6.445 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15i2g4e\",layoutDependency:layoutDependency,layoutId:\"A34XEh9hO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.539 16.987\" overflow=\"visible\"><path d=\"M 3.604 6.061 C 4.648 5.549 5.805 5.306 6.967 5.353 C 9.215 5.429 10.451 6.571 10.5 8.806 C 10.555 11.147 10.538 13.469 10.53 15.807 C 10.53 16.758 10.279 16.979 9.338 16.979 L 8.034 16.979 C 7.202 16.979 6.943 16.725 6.926 15.889 L 6.926 9.62 C 6.926 8.65 6.468 8.252 5.486 8.29 C 5.314 8.293 5.145 8.31 4.976 8.339 C 3.688 8.601 3.615 8.694 3.615 10.005 L 3.615 15.592 C 3.615 16.785 3.41 16.987 2.231 16.987 L 0.925 16.987 C 0.311 16.987 0.041 16.698 0 16.066 L 0 1.305 C 0 0.226 0.229 0 1.293 0 L 2.444 0 C 3.336 0 3.612 0.251 3.628 1.15 C 3.653 2.499 3.628 3.848 3.628 5.194 C 3.604 5.442 3.604 5.71 3.604 6.061 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13kx7id\",layoutDependency:layoutDependency,layoutId:\"kBfmdo_pb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.749 11.988\" overflow=\"visible\"><path d=\"M 10.749 6.191 C 10.67 6.812 10.626 7.608 10.46 8.385 C 10.201 10.134 8.839 11.519 7.093 11.808 C 5.899 12.064 4.663 12.047 3.476 11.761 C 1.973 11.472 0.773 10.336 0.407 8.851 C -0.136 6.978 -0.136 4.989 0.407 3.114 C 0.983 1.146 2.489 0.091 4.695 0.015 C 5.492 -0.029 6.289 0.023 7.074 0.162 C 9.156 0.579 10.337 1.988 10.604 4.291 C 10.67 4.874 10.689 5.438 10.749 6.191 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ci8qom\",layoutDependency:layoutDependency,layoutId:\"OTWjnENyD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.508 6.235\" overflow=\"visible\"><path d=\"M 3.505 3.359 C 3.465 2.719 3.443 2.28 3.402 1.849 C 3.377 1.623 3.331 1.4 3.263 1.182 C 3.132 0.457 2.469 -0.053 1.735 0.004 C 1.018 -0.05 0.374 0.446 0.246 1.154 C -0.082 2.449 -0.082 3.803 0.246 5.095 C 0.379 5.815 1.05 6.308 1.779 6.226 C 2.469 6.273 3.085 5.801 3.219 5.123 C 3.347 4.539 3.443 3.951 3.508 3.357 L 3.508 3.359 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r3mpgk\",layoutDependency:layoutDependency,layoutId:\"IKCjaVb5v\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.913 11.973\" overflow=\"visible\"><path d=\"M 6.383 4.428 C 6.541 3.227 6.274 2.856 5.114 2.91 C 4.168 2.989 3.229 3.128 2.302 3.327 C 1.516 3.469 0.941 3.27 0.831 2.66 C 0.654 1.654 0.722 0.79 1.53 0.548 C 3.399 -0.066 5.401 -0.166 7.321 0.259 C 9.067 0.676 9.913 1.828 9.913 3.712 L 9.913 10.375 C 9.913 10.879 9.913 11.397 9.313 11.593 C 8.647 11.836 7.897 11.631 7.45 11.081 L 7.264 10.814 C 6.244 11.629 4.956 12.04 3.649 11.964 C 0.812 11.86 -0.816 9.16 0.417 6.59 C 0.992 5.366 2.144 4.982 3.333 4.791 C 4.359 4.638 5.376 4.543 6.383 4.428 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10jchxg\",layoutDependency:layoutDependency,layoutId:\"lcOz_pkEg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.996 3.087\" overflow=\"visible\"><path d=\"M 2.996 0.008 C 2.308 0.112 1.703 0.169 1.116 0.297 C 0.502 0.376 0.041 0.891 0.028 1.507 C -0.101 2.126 0.227 2.753 0.811 2.998 C 1.386 3.221 2.611 2.998 2.892 2.605 C 2.947 2.529 2.977 2.439 2.979 2.347 C 2.996 1.589 2.996 0.837 2.996 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-x6djlq\",layoutDependency:layoutDependency,layoutId:\"Dfa1bC83s\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.435 14.544\" overflow=\"visible\"><path d=\"M 2.002 3.021 L 2.002 1.533 C 1.95 1.078 2.245 0.653 2.69 0.544 C 3.276 0.348 3.873 0.182 4.479 0.043 C 4.916 -0.102 5.388 0.133 5.532 0.569 C 5.57 0.686 5.584 0.808 5.568 0.931 C 5.587 1.572 5.568 2.209 5.568 2.921 L 7.275 2.921 C 8.107 2.94 8.394 3.209 8.427 4.071 C 8.473 5.82 8.377 5.918 6.648 5.918 L 5.644 5.918 C 5.617 6.074 5.598 6.232 5.589 6.39 L 5.589 10.08 C 5.589 11.23 5.936 11.582 7.054 11.663 C 8.036 11.734 8.304 11.952 8.304 12.751 C 8.339 14.026 8.08 14.457 7.054 14.517 C 6.241 14.577 5.423 14.536 4.621 14.394 C 2.954 14.056 2.057 12.977 1.999 11.216 C 1.95 9.679 1.98 8.142 1.975 6.613 L 1.975 5.924 L 0.968 5.924 C 0.494 5.962 0.079 5.61 0.038 5.136 L 0.038 5.057 C -0.101 3.88 0.109 3.566 1.23 3.25 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s3wvmc\",layoutDependency:layoutDependency,layoutId:\"SAqOHp2RH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.956 17.404\" overflow=\"visible\"><path d=\"M 5.939 7.279 C 5.939 9.271 5.977 11.266 5.939 13.259 C 5.928 15.559 4.057 17.415 1.754 17.404 C 1.536 17.404 1.318 17.385 1.099 17.349 C 0.297 17.248 0.011 16.932 0 16.101 L 0 15.363 C 0.035 14.668 0.251 14.425 0.941 14.297 C 2.008 14.098 2.354 13.697 2.357 12.585 L 2.357 1.248 C 2.357 0.286 2.603 0.03 3.566 0 L 4.875 0 C 5.65 0.035 5.942 0.316 5.947 1.095 L 5.947 7.241 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kom6ed\",layoutDependency:layoutDependency,layoutId:\"UlQq2ivOB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.221 11.648\" overflow=\"visible\"><path d=\"M 2.581 1.09 C 3.525 0.414 4.649 0.035 5.808 0 C 6.959 0 7.224 0.243 7.221 1.382 L 7.221 1.894 C 7.221 2.63 6.916 2.892 6.196 2.968 C 5.519 3.05 4.845 3.17 4.18 3.322 C 3.732 3.418 3.563 3.687 3.571 4.186 C 3.607 6.266 3.571 8.329 3.571 10.397 C 3.571 11.414 3.35 11.626 2.322 11.645 L 0.838 11.645 C 0.412 11.681 0.038 11.362 0.003 10.937 C -0.002 10.885 0 10.833 0.006 10.781 L 0.006 1.213 C -0.027 0.788 0.292 0.414 0.718 0.382 L 0.72 0.382 L 0.756 0.382 C 1.476 0.259 2.232 0.147 2.581 1.09 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14r24ga\",layoutDependency:layoutDependency,layoutId:\"KwjRCSoCO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.892 8.816\" overflow=\"visible\"><path d=\"M 5.418 8.568 C 6.07 6.233 5.835 5.055 4.692 4.829 C 4.867 5.622 5.063 6.437 4.228 6.988 C 3.792 7.277 3.445 7.165 2.671 6.571 C 2.313 7.304 2.433 8.034 2.6 8.816 C 1.489 8.623 0.614 8.162 0.207 7.091 C -0.213 6.116 0.019 4.985 0.783 4.249 C 1.05 3.976 1.339 3.728 1.648 3.505 C 2.897 2.567 3.14 1.657 2.48 0.248 C 2.45 0.166 2.425 0.084 2.409 0 C 3.797 0.21 5.112 0.769 6.231 1.619 C 8.667 3.608 8.372 7.187 5.682 8.5 C 5.59 8.506 5.502 8.528 5.418 8.568 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jstbra\",\"data-framer-name\":\"Ripple\",layoutDependency:layoutDependency,layoutId:\"ao3TLqHLy\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-p56lnc\",layoutDependency:layoutDependency,layoutId:\"V9xfVQ0dD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 104.73 28\" overflow=\"visible\"><g><path d=\"M 19.595 17.046 C 18.755 16.582 17.809 16.344 16.849 16.355 C 16.309 16.353 15.793 16.131 15.42 15.739 C 15.047 15.348 14.85 14.821 14.875 14.282 C 14.878 13.741 15.087 13.221 15.458 12.828 C 15.82 12.443 16.321 12.22 16.849 12.209 C 17.809 12.217 18.754 11.979 19.595 11.518 C 20.363 11.052 20.994 10.393 21.426 9.606 C 22.324 7.984 22.324 6.014 21.426 4.392 C 20.994 3.607 20.362 2.949 19.595 2.485 C 18.057 1.555 16.13 1.555 14.592 2.485 C 13.825 2.949 13.194 3.607 12.762 4.392 C 12.32 5.19 12.088 6.087 12.088 6.999 C 12.122 7.983 12.392 8.945 12.874 9.804 C 13.451 10.785 13.134 12.048 12.16 12.639 C 11.704 12.905 11.16 12.973 10.653 12.828 C 10.14 12.678 9.708 12.331 9.45 11.863 C 8.987 11.01 8.321 10.284 7.512 9.75 C 5.973 8.817 4.043 8.817 2.504 9.75 C 1.737 10.214 1.106 10.872 0.673 11.657 C -0.224 13.279 -0.224 15.249 0.673 16.871 C 1.106 17.656 1.737 18.313 2.504 18.778 C 4.043 19.71 5.973 19.71 7.512 18.778 C 8.321 18.243 8.987 17.517 9.45 16.664 C 9.858 15.973 10.877 15.116 12.142 15.893 C 12.593 16.183 12.914 16.636 13.04 17.158 C 13.174 17.688 13.103 18.248 12.842 18.728 C 12.36 19.587 12.091 20.549 12.057 21.533 C 12.057 22.445 12.289 23.342 12.73 24.14 C 13.163 24.927 13.796 25.586 14.565 26.051 C 16.105 26.983 18.034 26.983 19.573 26.051 C 20.341 25.588 20.974 24.93 21.408 24.144 C 22.307 22.521 22.307 20.549 21.408 18.926 C 20.976 18.139 20.345 17.48 19.577 17.014 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path><path d=\"M 28.942 6.421 L 32.429 6.421 L 32.429 8.136 C 32.888 7.551 33.472 7.075 34.138 6.745 C 34.797 6.419 35.521 6.248 36.256 6.246 C 36.753 6.228 37.25 6.288 37.728 6.426 L 37.728 10.572 C 37.193 10.427 36.639 10.367 36.086 10.393 C 34.098 10.393 32.77 11.775 32.77 13.848 L 32.77 22.301 L 28.942 22.301 Z M 47.676 6.421 L 51.162 6.421 L 51.162 7.956 C 52.335 6.868 53.871 6.257 55.47 6.242 C 59.298 6.242 62.613 9.697 62.613 14.359 C 62.613 19.021 59.298 22.481 55.479 22.481 C 54.007 22.479 52.59 21.922 51.512 20.919 L 51.512 28 L 47.685 28 Z M 58.786 14.364 C 58.786 11.766 57.139 10.052 54.99 10.052 C 52.841 10.052 51.162 11.757 51.162 14.364 C 51.162 16.971 52.832 18.667 54.99 18.667 C 57.148 18.667 58.786 16.962 58.786 14.364 Z M 65.418 6.421 L 68.904 6.421 L 68.904 7.956 C 70.077 6.869 71.613 6.258 73.212 6.242 C 77.04 6.242 80.356 9.697 80.356 14.359 C 80.356 19.021 77.017 22.481 73.212 22.481 C 71.74 22.479 70.323 21.922 69.245 20.919 L 69.245 28 L 65.418 28 Z M 76.528 14.364 C 76.528 11.766 74.881 10.052 72.727 10.052 C 70.574 10.052 68.9 11.757 68.9 14.364 C 68.9 16.971 70.574 18.667 72.727 18.667 C 74.881 18.667 76.528 16.962 76.528 14.364 Z M 83.16 0.539 L 86.988 0.539 L 86.988 22.301 L 83.16 22.301 Z M 89.792 14.355 C 89.792 9.868 93.278 6.237 97.42 6.237 C 101.414 6.237 104.73 9.518 104.73 14.355 C 104.714 14.88 104.657 15.404 104.559 15.921 L 93.929 15.921 C 94.24 17.579 95.731 18.75 97.416 18.658 C 99.21 18.658 99.91 17.805 99.91 17.805 L 104.048 17.805 C 103.28 19.878 100.907 22.467 97.416 22.467 C 93.278 22.481 89.792 18.851 89.792 14.364 Z M 101.064 13.148 C 100.898 12.274 100.441 11.483 99.767 10.904 C 98.411 9.738 96.407 9.738 95.051 10.904 C 94.377 11.483 93.919 12.274 93.754 13.148 Z M 39.963 2.257 C 39.961 1.663 40.189 1.09 40.6 0.66 C 40.998 0.239 41.552 0 42.132 0 C 42.712 0 43.266 0.239 43.664 0.66 C 44.512 1.556 44.512 2.959 43.664 3.855 C 43.266 4.276 42.712 4.515 42.132 4.515 C 41.552 4.515 40.998 4.276 40.6 3.855 C 40.189 3.424 39.961 2.852 39.963 2.257 Z M 40.218 6.421 L 44.05 6.421 L 44.05 22.31 L 40.223 22.31 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1iqx5gc\",layoutDependency:layoutDependency,layoutId:\"kz8qHfNGQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.099 24.963\" overflow=\"visible\"><path d=\"M 19.595 15.259 C 18.755 14.795 17.809 14.557 16.849 14.568 C 16.309 14.566 15.793 14.343 15.42 13.952 C 15.047 13.561 14.85 13.034 14.875 12.494 C 14.878 11.953 15.087 11.434 15.458 11.041 C 15.82 10.656 16.321 10.433 16.849 10.421 C 17.809 10.43 18.754 10.192 19.595 9.73 C 20.363 9.265 20.994 8.606 21.426 7.819 C 22.324 6.197 22.324 4.227 21.426 2.605 C 20.994 1.82 20.362 1.162 19.595 0.698 C 18.057 -0.233 16.13 -0.233 14.592 0.698 C 13.825 1.162 13.194 1.82 12.762 2.605 C 12.32 3.403 12.088 4.3 12.088 5.212 C 12.122 6.196 12.392 7.158 12.874 8.016 C 13.451 8.998 13.134 10.261 12.16 10.852 C 11.704 11.118 11.16 11.186 10.653 11.041 C 10.14 10.89 9.708 10.544 9.45 10.076 C 8.987 9.223 8.321 8.497 7.512 7.962 C 5.973 7.03 4.043 7.03 2.504 7.962 C 1.737 8.427 1.106 9.084 0.673 9.87 C -0.224 11.492 -0.224 13.461 0.673 15.084 C 1.106 15.869 1.737 16.526 2.504 16.991 C 4.043 17.923 5.973 17.923 7.512 16.991 C 8.321 16.456 8.987 15.73 9.45 14.877 C 9.858 14.186 10.877 13.329 12.142 14.105 C 12.593 14.396 12.914 14.849 13.04 15.371 C 13.174 15.9 13.103 16.461 12.842 16.941 C 12.36 17.8 12.091 18.762 12.057 19.746 C 12.057 20.658 12.289 21.555 12.73 22.353 C 13.163 23.14 13.796 23.799 14.565 24.264 C 16.105 25.195 18.034 25.195 19.573 24.264 C 20.341 23.801 20.974 23.143 21.408 22.357 C 22.307 20.734 22.307 18.762 21.408 17.139 C 20.976 16.352 20.345 15.693 19.577 15.227 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1sg2rbe\",layoutDependency:layoutDependency,layoutId:\"jWssRiypl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 75.787 28\" overflow=\"visible\"><path d=\"M 0 6.421 L 3.486 6.421 L 3.486 8.136 C 3.946 7.551 4.53 7.075 5.196 6.745 C 5.855 6.419 6.579 6.248 7.314 6.246 C 7.811 6.228 8.308 6.288 8.786 6.426 L 8.786 10.572 C 8.251 10.427 7.697 10.367 7.143 10.393 C 5.156 10.393 3.828 11.775 3.828 13.848 L 3.828 22.301 L 0 22.301 Z M 18.734 6.421 L 22.22 6.421 L 22.22 7.956 C 23.393 6.868 24.929 6.257 26.528 6.242 C 30.355 6.242 33.671 9.697 33.671 14.359 C 33.671 19.021 30.355 22.481 26.537 22.481 C 25.065 22.479 23.648 21.922 22.57 20.919 L 22.57 28 L 18.743 28 Z M 29.844 14.364 C 29.844 11.766 28.197 10.052 26.048 10.052 C 23.898 10.052 22.22 11.757 22.22 14.364 C 22.22 16.971 23.889 18.667 26.048 18.667 C 28.206 18.667 29.844 16.962 29.844 14.364 Z M 36.476 6.421 L 39.962 6.421 L 39.962 7.956 C 41.135 6.869 42.671 6.258 44.27 6.242 C 48.097 6.242 51.413 9.697 51.413 14.359 C 51.413 19.021 48.075 22.481 44.27 22.481 C 42.798 22.479 41.381 21.922 40.303 20.919 L 40.303 28 L 36.476 28 Z M 47.586 14.364 C 47.586 11.766 45.939 10.052 43.785 10.052 C 41.632 10.052 39.958 11.757 39.958 14.364 C 39.958 16.971 41.632 18.667 43.785 18.667 C 45.939 18.667 47.586 16.962 47.586 14.364 Z M 54.218 0.539 L 58.045 0.539 L 58.045 22.301 L 54.218 22.301 Z M 60.85 14.355 C 60.85 9.868 64.336 6.237 68.478 6.237 C 72.472 6.237 75.787 9.518 75.787 14.355 C 75.772 14.88 75.715 15.404 75.617 15.921 L 64.987 15.921 C 65.298 17.579 66.789 18.75 68.473 18.658 C 70.268 18.658 70.968 17.805 70.968 17.805 L 75.105 17.805 C 74.338 19.878 71.964 22.467 68.473 22.467 C 64.336 22.481 60.85 18.851 60.85 14.364 Z M 72.122 13.148 C 71.956 12.274 71.499 11.483 70.825 10.904 C 69.469 9.738 67.465 9.738 66.109 10.904 C 65.435 11.483 64.977 12.274 64.812 13.148 Z M 11.02 2.257 C 11.019 1.663 11.247 1.09 11.658 0.66 C 12.056 0.239 12.61 0 13.19 0 C 13.77 0 14.324 0.239 14.722 0.66 C 15.57 1.556 15.57 2.959 14.722 3.855 C 14.324 4.276 13.77 4.515 13.19 4.515 C 12.61 4.515 12.056 4.276 11.658 3.855 C 11.247 3.424 11.019 2.852 11.02 2.257 Z M 11.276 6.421 L 15.108 6.421 L 15.108 22.31 L 11.281 22.31 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gz9um\",layoutDependency:layoutDependency,layoutId:\"D8sYjvDLX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.786 16.058\" overflow=\"visible\"><path d=\"M 0 0.178 L 3.486 0.178 L 3.486 1.892 C 3.946 1.307 4.53 0.832 5.196 0.501 C 5.855 0.176 6.579 0.005 7.314 0.003 C 7.811 -0.015 8.308 0.045 8.786 0.183 L 8.786 4.329 C 8.251 4.184 7.697 4.124 7.143 4.149 C 5.156 4.149 3.828 5.531 3.828 7.604 L 3.828 16.058 L 0 16.058 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qxmlcl\",layoutDependency:layoutDependency,layoutId:\"AeFTdg26E\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.938 21.758\" overflow=\"visible\"><path d=\"M 0 0.179 L 3.486 0.179 L 3.486 1.714 C 4.659 0.626 6.195 0.015 7.794 0 C 11.622 0 14.938 3.455 14.938 8.117 C 14.938 12.779 11.622 16.239 7.803 16.239 C 6.331 16.237 4.914 15.68 3.836 14.677 L 3.836 21.758 L 0.009 21.758 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cvgg67\",layoutDependency:layoutDependency,layoutId:\"cAUNmSGpc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.624 8.615\" overflow=\"visible\"><path d=\"M 7.624 4.312 C 7.624 1.714 5.977 0 3.828 0 C 1.678 0 0 1.705 0 4.312 C 0 6.919 1.669 8.615 3.828 8.615 C 5.986 8.615 7.624 6.91 7.624 4.312 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-82ankf\",layoutDependency:layoutDependency,layoutId:\"oXmJ70Xue\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.938 21.758\" overflow=\"visible\"><path d=\"M 0 0.179 L 3.486 0.179 L 3.486 1.714 C 4.659 0.627 6.195 0.016 7.794 0 C 11.622 0 14.938 3.455 14.938 8.117 C 14.938 12.779 11.599 16.239 7.794 16.239 C 6.322 16.237 4.905 15.68 3.828 14.677 L 3.828 21.758 L 0 21.758 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vpj9ad\",layoutDependency:layoutDependency,layoutId:\"H38niZOdy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.628 8.615\" overflow=\"visible\"><path d=\"M 7.628 4.312 C 7.628 1.714 5.981 0 3.828 0 C 1.674 0 0 1.705 0 4.312 C 0 6.919 1.674 8.615 3.828 8.615 C 5.981 8.615 7.628 6.91 7.628 4.312 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8pnctg\",layoutDependency:layoutDependency,layoutId:\"jrdDX_BRB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.828 21.763\" overflow=\"visible\"><path d=\"M 0 0 L 3.828 0 L 3.828 21.763 L 0 21.763 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u36dew\",layoutDependency:layoutDependency,layoutId:\"gdz58e3Tm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.938 16.23\" overflow=\"visible\"><path d=\"M 0 8.117 C 0 3.63 3.486 0 7.628 0 C 11.622 0 14.938 3.28 14.938 8.117 C 14.922 8.643 14.865 9.166 14.767 9.683 L 4.137 9.683 C 4.448 11.341 5.939 12.512 7.624 12.42 C 9.418 12.42 10.118 11.568 10.118 11.568 L 14.256 11.568 C 13.488 13.641 11.115 16.23 7.624 16.23 C 3.486 16.243 0 12.613 0 8.126 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-crc6w9\",layoutDependency:layoutDependency,layoutId:\"o9n2U1oXP\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.31 3.118\" overflow=\"visible\"><path d=\"M 7.31 3.118 C 7.144 2.245 6.687 1.453 6.013 0.874 C 4.657 -0.291 2.653 -0.291 1.297 0.874 C 0.623 1.453 0.165 2.245 0 3.118 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nyiapg\",layoutDependency:layoutDependency,layoutId:\"bYHCy4ffc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.338 4.515\" overflow=\"visible\"><path d=\"M 0 2.257 C -0.001 1.663 0.227 1.09 0.637 0.66 C 1.036 0.239 1.59 0 2.17 0 C 2.749 0 3.304 0.239 3.702 0.66 C 4.55 1.556 4.55 2.959 3.702 3.855 C 3.304 4.276 2.749 4.515 2.17 4.515 C 1.59 4.515 1.036 4.276 0.637 3.855 C 0.227 3.424 -0.001 2.852 0 2.257 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-45eq5c\",layoutDependency:layoutDependency,layoutId:\"b2DwcNZxw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.832 15.889\" overflow=\"visible\"><path d=\"M 0 0 L 3.832 0 L 3.832 15.889 L 0.004 15.889 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6px29k\",\"data-framer-name\":\"Zapier\",layoutDependency:layoutDependency,layoutId:\"tDPZw_8Sv\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-qw6plk\",layoutDependency:layoutDependency,layoutId:\"UcWCaTzmX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 61.141 28\" overflow=\"visible\"><g><path d=\"M 0 0 L 61.14 0 L 61.14 28 L 0 28 Z\" fill=\"transparent\"></path><path d=\"M 36.69 12.18 L 35.16 12.18 C 35.047 11.575 35.047 10.955 35.16 10.35 L 38.96 10.35 L 38.96 22.37 C 38.581 22.442 38.196 22.476 37.81 22.47 C 37.435 22.464 37.06 22.431 36.69 22.37 L 36.69 12.17 Z M 49.91 15.2 C 49.91 14.76 49.85 14.35 49.73 13.95 C 49.626 13.572 49.453 13.216 49.22 12.9 C 48.717 12.246 47.925 11.88 47.1 11.92 C 46.14 11.92 45.41 12.21 44.9 12.79 C 44.4 13.36 44.09 14.17 43.98 15.2 Z M 43.96 16.94 C 43.99 18.24 44.33 19.21 44.97 19.82 C 45.62 20.42 46.58 20.73 47.85 20.73 C 48.95 20.73 50.01 20.53 51.01 20.15 C 51.14 20.38 51.24 20.67 51.31 21 C 51.39 21.33 51.44 21.66 51.46 22 C 50.94 22.22 50.37 22.38 49.76 22.5 C 49.14 22.6 48.46 22.66 47.71 22.66 C 46.61 22.66 45.67 22.5 44.89 22.2 C 44.155 21.922 43.494 21.477 42.96 20.9 C 42.446 20.341 42.064 19.675 41.84 18.95 C 41.598 18.139 41.48 17.296 41.49 16.45 C 41.49 15.56 41.61 14.73 41.83 13.95 C 42.06 13.18 42.41 12.51 42.88 11.95 C 43.36 11.366 43.965 10.898 44.65 10.58 C 45.35 10.25 46.2 10.08 47.17 10.08 C 47.99 10.08 48.72 10.22 49.35 10.5 C 49.97 10.78 50.49 11.17 50.92 11.66 C 51.34 12.16 51.66 12.74 51.88 13.42 C 52.177 14.356 52.279 15.343 52.18 16.32 L 52.14 16.95 L 43.94 16.95 Z M 54.76 10.34 C 55.087 10.288 55.418 10.261 55.75 10.26 C 56.079 10.262 56.406 10.292 56.73 10.35 C 56.846 10.977 56.916 11.612 56.94 12.25 C 57.27 11.72 57.7 11.25 58.24 10.86 C 58.853 10.449 59.582 10.246 60.32 10.28 C 60.561 10.28 60.801 10.294 61.04 10.32 C 61.112 10.628 61.146 10.944 61.14 11.26 C 61.145 11.653 61.105 12.046 61.02 12.43 C 60.892 12.401 60.761 12.387 60.63 12.39 L 60.32 12.39 C 59.9 12.39 59.49 12.45 59.11 12.56 C 58.73 12.68 58.38 12.89 58.08 13.18 C 57.78 13.48 57.53 13.88 57.35 14.4 C 57.15 15.047 57.059 15.723 57.08 16.4 L 57.08 22.37 C 56.701 22.442 56.316 22.476 55.93 22.47 C 55.538 22.466 55.147 22.432 54.76 22.37 L 54.76 10.35 Z M 38.31 3.94 C 38.31 4.22 38.26 4.5 38.16 4.76 C 37.628 4.961 37.042 4.961 36.51 4.76 C 36.309 4.228 36.309 3.642 36.51 3.11 C 37.041 2.908 37.629 2.908 38.16 3.11 C 38.26 3.37 38.31 3.65 38.31 3.93 Z M 41.17 3.29 L 38.9 3.29 L 40.5 1.69 C 40.254 1.332 39.95 1.018 39.6 0.76 L 37.99 2.37 L 37.99 0.09 C 37.56 0.017 37.12 0.017 36.69 0.09 L 36.69 2.36 L 35.09 0.76 C 34.734 1.013 34.423 1.324 34.17 1.68 L 35.77 3.28 L 33.5 3.28 C 33.5 3.28 33.45 3.7 33.45 3.92 C 33.45 4.15 33.47 4.36 33.5 4.57 L 35.77 4.57 L 34.17 6.18 C 34.42 6.53 34.73 6.84 35.08 7.1 L 36.68 5.5 L 36.68 7.76 C 36.9 7.8 37.11 7.82 37.33 7.82 L 37.34 7.82 C 37.56 7.82 37.77 7.8 37.99 7.76 L 37.99 5.5 L 39.59 7.1 C 39.946 6.847 40.257 6.536 40.51 6.18 L 38.91 4.58 L 41.17 4.58 C 41.243 4.15 41.243 3.71 41.17 3.28 Z M 0 22.05 L 6.34 12.2 L 0.75 12.2 C 0.65 11.587 0.65 10.963 0.75 10.35 L 9.78 10.35 L 9.9 10.65 L 3.52 20.52 L 9.5 20.52 C 9.588 21.133 9.588 21.757 9.5 22.37 L 0.12 22.37 Z M 18.26 16.72 C 17.662 16.648 17.062 16.601 16.46 16.58 C 15.49 16.58 14.76 16.76 14.24 17.12 C 13.74 17.48 13.48 18.03 13.48 18.76 C 13.48 19.23 13.57 19.6 13.74 19.86 C 13.91 20.13 14.13 20.33 14.38 20.48 C 14.64 20.62 14.93 20.7 15.24 20.73 C 16.25 20.841 17.271 20.78 18.26 20.55 Z M 18.26 14.45 C 18.26 13.53 18.03 12.89 17.56 12.53 C 16.957 12.132 16.241 11.942 15.52 11.99 C 14.524 11.977 13.532 12.136 12.59 12.46 C 12.282 11.893 12.131 11.255 12.15 10.61 C 13.321 10.258 14.537 10.076 15.76 10.07 C 17.32 10.07 18.51 10.42 19.32 11.13 C 20.13 11.85 20.54 12.98 20.54 14.54 L 20.54 22.07 C 19.99 22.19 19.33 22.32 18.54 22.46 C 17.75 22.59 16.95 22.66 16.15 22.66 C 15.39 22.66 14.7 22.59 14.08 22.44 C 13.516 22.322 12.982 22.091 12.51 21.76 C 12.081 21.45 11.737 21.038 11.51 20.56 C 11.263 20.01 11.144 19.412 11.16 18.81 C 11.16 18.14 11.3 17.55 11.57 17.04 C 11.84 16.54 12.22 16.11 12.68 15.78 C 13.15 15.44 13.69 15.18 14.3 15.03 C 14.926 14.862 15.572 14.778 16.22 14.78 C 16.902 14.78 17.583 14.82 18.26 14.9 Z M 25.39 20.4 C 25.69 20.51 25.99 20.6 26.3 20.64 C 26.62 20.69 27.02 20.71 27.52 20.71 C 28.09 20.71 28.6 20.62 29.07 20.44 C 29.54 20.26 29.94 19.98 30.27 19.61 C 30.61 19.23 30.87 18.76 31.07 18.19 C 31.27 17.62 31.37 16.94 31.37 16.16 C 31.37 14.91 31.14 13.92 30.67 13.19 C 30.21 12.45 29.46 12.09 28.41 12.09 C 27.626 12.063 26.867 12.368 26.32 12.93 C 26.05 13.21 25.82 13.56 25.65 13.99 C 25.48 14.42 25.39 14.94 25.39 15.53 L 25.39 20.41 Z M 23.07 10.35 C 23.72 10.218 24.39 10.218 25.04 10.35 L 25.1 10.65 C 25.166 11.112 25.223 11.576 25.27 12.04 C 25.781 11.137 26.642 10.486 27.65 10.24 C 28.72 9.968 29.849 10.035 30.88 10.43 C 31.48 10.65 32 11.02 32.43 11.51 C 32.86 12.01 33.2 12.63 33.44 13.38 C 33.68 14.14 33.8 15.04 33.8 16.07 C 33.8 18.13 33.25 19.75 32.13 20.91 C 31.01 22.07 29.43 22.66 27.38 22.66 C 26.705 22.656 26.033 22.569 25.38 22.4 L 25.38 27.9 C 24.616 28.032 23.834 28.032 23.07 27.9 L 23.07 10.36 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1cj61b\",layoutDependency:layoutDependency,layoutId:\"JqGbY5zrd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 61.14 28\" overflow=\"visible\"><path d=\"M 0 0 L 61.14 0 L 61.14 28 L 0 28 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1mkw58f\",layoutDependency:layoutDependency,layoutId:\"qmY9kFSvh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 61.141 27.963\" overflow=\"visible\"><path d=\"M 36.69 12.145 L 35.16 12.145 C 35.047 11.54 35.047 10.919 35.16 10.315 L 38.96 10.315 L 38.96 22.335 C 38.581 22.407 38.196 22.44 37.81 22.435 C 37.435 22.428 37.06 22.395 36.69 22.335 L 36.69 12.135 Z M 49.91 15.165 C 49.91 14.725 49.85 14.315 49.73 13.915 C 49.626 13.536 49.453 13.18 49.22 12.865 C 48.717 12.21 47.925 11.844 47.1 11.885 C 46.14 11.885 45.41 12.175 44.9 12.755 C 44.4 13.325 44.09 14.135 43.98 15.165 Z M 43.96 16.905 C 43.99 18.205 44.33 19.175 44.97 19.785 C 45.62 20.385 46.58 20.695 47.85 20.695 C 48.95 20.695 50.01 20.495 51.01 20.115 C 51.14 20.345 51.24 20.635 51.31 20.965 C 51.39 21.295 51.44 21.625 51.46 21.965 C 50.94 22.185 50.37 22.345 49.76 22.465 C 49.14 22.565 48.46 22.625 47.71 22.625 C 46.61 22.625 45.67 22.465 44.89 22.165 C 44.155 21.886 43.494 21.441 42.96 20.865 C 42.446 20.306 42.064 19.64 41.84 18.915 C 41.598 18.104 41.48 17.261 41.49 16.415 C 41.49 15.525 41.61 14.695 41.83 13.915 C 42.06 13.145 42.41 12.475 42.88 11.915 C 43.36 11.331 43.965 10.863 44.65 10.545 C 45.35 10.215 46.2 10.045 47.17 10.045 C 47.99 10.045 48.72 10.185 49.35 10.465 C 49.97 10.745 50.49 11.135 50.92 11.625 C 51.34 12.125 51.66 12.705 51.88 13.385 C 52.177 14.321 52.279 15.308 52.18 16.285 L 52.14 16.915 L 43.94 16.915 Z M 54.76 10.305 C 55.087 10.253 55.418 10.226 55.75 10.225 C 56.079 10.227 56.406 10.257 56.73 10.315 C 56.846 10.942 56.916 11.577 56.94 12.215 C 57.27 11.685 57.7 11.215 58.24 10.825 C 58.853 10.414 59.582 10.21 60.32 10.245 C 60.561 10.245 60.801 10.258 61.04 10.285 C 61.112 10.592 61.146 10.908 61.14 11.225 C 61.145 11.618 61.105 12.01 61.02 12.395 C 60.892 12.365 60.761 12.352 60.63 12.355 L 60.32 12.355 C 59.9 12.355 59.49 12.415 59.11 12.525 C 58.73 12.645 58.38 12.855 58.08 13.145 C 57.78 13.445 57.53 13.845 57.35 14.365 C 57.15 15.012 57.059 15.688 57.08 16.365 L 57.08 22.335 C 56.701 22.407 56.316 22.44 55.93 22.435 C 55.538 22.43 55.147 22.397 54.76 22.335 L 54.76 10.315 Z M 38.31 3.905 C 38.31 4.185 38.26 4.465 38.16 4.725 C 37.628 4.926 37.042 4.926 36.51 4.725 C 36.309 4.193 36.309 3.606 36.51 3.075 C 37.041 2.872 37.629 2.872 38.16 3.075 C 38.26 3.335 38.31 3.615 38.31 3.895 Z M 41.17 3.255 L 38.9 3.255 L 40.5 1.655 C 40.254 1.297 39.95 0.982 39.6 0.725 L 37.99 2.335 L 37.99 0.055 C 37.56 -0.018 37.12 -0.018 36.69 0.055 L 36.69 2.325 L 35.09 0.725 C 34.734 0.978 34.423 1.289 34.17 1.645 L 35.77 3.245 L 33.5 3.245 C 33.5 3.245 33.45 3.665 33.45 3.885 C 33.45 4.115 33.47 4.325 33.5 4.535 L 35.77 4.535 L 34.17 6.145 C 34.42 6.495 34.73 6.805 35.08 7.065 L 36.68 5.465 L 36.68 7.725 C 36.9 7.765 37.11 7.785 37.33 7.785 L 37.34 7.785 C 37.56 7.785 37.77 7.765 37.99 7.725 L 37.99 5.465 L 39.59 7.065 C 39.946 6.811 40.257 6.5 40.51 6.145 L 38.91 4.545 L 41.17 4.545 C 41.243 4.114 41.243 3.675 41.17 3.245 Z M 0 22.015 L 6.34 12.165 L 0.75 12.165 C 0.65 11.552 0.65 10.927 0.75 10.315 L 9.78 10.315 L 9.9 10.615 L 3.52 20.485 L 9.5 20.485 C 9.588 21.098 9.588 21.721 9.5 22.335 L 0.12 22.335 Z M 18.26 16.685 C 17.662 16.613 17.062 16.566 16.46 16.545 C 15.49 16.545 14.76 16.725 14.24 17.085 C 13.74 17.445 13.48 17.995 13.48 18.725 C 13.48 19.195 13.57 19.565 13.74 19.825 C 13.91 20.095 14.13 20.295 14.38 20.445 C 14.64 20.585 14.93 20.665 15.24 20.695 C 16.25 20.806 17.271 20.745 18.26 20.515 Z M 18.26 14.415 C 18.26 13.495 18.03 12.855 17.56 12.495 C 16.957 12.096 16.241 11.906 15.52 11.955 C 14.524 11.941 13.532 12.1 12.59 12.425 C 12.282 11.858 12.131 11.219 12.15 10.575 C 13.321 10.223 14.537 10.041 15.76 10.035 C 17.32 10.035 18.51 10.385 19.32 11.095 C 20.13 11.815 20.54 12.945 20.54 14.505 L 20.54 22.035 C 19.99 22.155 19.33 22.285 18.54 22.425 C 17.75 22.555 16.95 22.625 16.15 22.625 C 15.39 22.625 14.7 22.555 14.08 22.405 C 13.516 22.287 12.982 22.056 12.51 21.725 C 12.081 21.415 11.737 21.002 11.51 20.525 C 11.263 19.975 11.144 19.377 11.16 18.775 C 11.16 18.105 11.3 17.515 11.57 17.005 C 11.84 16.505 12.22 16.075 12.68 15.745 C 13.15 15.405 13.69 15.145 14.3 14.995 C 14.926 14.827 15.572 14.743 16.22 14.745 C 16.902 14.745 17.583 14.785 18.26 14.865 Z M 25.39 20.365 C 25.69 20.475 25.99 20.565 26.3 20.605 C 26.62 20.655 27.02 20.675 27.52 20.675 C 28.09 20.675 28.6 20.585 29.07 20.405 C 29.54 20.225 29.94 19.945 30.27 19.575 C 30.61 19.195 30.87 18.725 31.07 18.155 C 31.27 17.585 31.37 16.905 31.37 16.125 C 31.37 14.875 31.14 13.885 30.67 13.155 C 30.21 12.415 29.46 12.055 28.41 12.055 C 27.626 12.027 26.867 12.332 26.32 12.895 C 26.05 13.175 25.82 13.525 25.65 13.955 C 25.48 14.385 25.39 14.905 25.39 15.495 L 25.39 20.375 Z M 23.07 10.315 C 23.72 10.183 24.39 10.183 25.04 10.315 L 25.1 10.615 C 25.166 11.077 25.223 11.54 25.27 12.005 C 25.781 11.102 26.642 10.451 27.65 10.205 C 28.72 9.933 29.849 9.999 30.88 10.395 C 31.48 10.615 32 10.985 32.43 11.475 C 32.86 11.975 33.2 12.595 33.44 13.345 C 33.68 14.105 33.8 15.005 33.8 16.035 C 33.8 18.095 33.25 19.715 32.13 20.875 C 31.01 22.035 29.43 22.625 27.38 22.625 C 26.705 22.621 26.033 22.533 25.38 22.365 L 25.38 27.865 C 24.616 27.996 23.834 27.996 23.07 27.865 L 23.07 10.325 Z\" fill=\"var(--token-317c029f-4a91-4db1-ac24-d4b7b66f41dc, rgb(94, 104, 123)) /* {&quot;name&quot;:&quot;700&quot;} */\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8wy1w9\",layoutDependency:layoutDependency,layoutId:\"sXzoNMZ20\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.885 12.121\" overflow=\"visible\"><path d=\"M 1.615 1.83 L 0.085 1.83 C -0.028 1.225 -0.028 0.605 0.085 0 L 3.885 0 L 3.885 12.02 C 3.506 12.092 3.121 12.126 2.735 12.12 C 2.36 12.114 1.985 12.081 1.615 12.02 L 1.615 1.82 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8z1m2y\",layoutDependency:layoutDependency,layoutId:\"MGA7VmYY9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.93 3.283\" overflow=\"visible\"><path d=\"M 5.93 3.283 C 5.93 2.843 5.87 2.433 5.75 2.033 C 5.646 1.655 5.473 1.299 5.24 0.983 C 4.737 0.329 3.945 -0.037 3.12 0.003 C 2.16 0.003 1.43 0.293 0.92 0.873 C 0.42 1.443 0.11 2.253 0 3.283 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k1e1dv\",layoutDependency:layoutDependency,layoutId:\"kuRY5tMGS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.727 12.58\" overflow=\"visible\"><path d=\"M 2.471 6.86 C 2.501 8.16 2.841 9.13 3.481 9.74 C 4.131 10.34 5.091 10.65 6.361 10.65 C 7.461 10.65 8.521 10.45 9.521 10.07 C 9.651 10.3 9.751 10.59 9.821 10.92 C 9.901 11.25 9.951 11.58 9.971 11.92 C 9.451 12.14 8.881 12.3 8.271 12.42 C 7.651 12.52 6.971 12.58 6.221 12.58 C 5.121 12.58 4.181 12.42 3.401 12.12 C 2.665 11.842 2.005 11.397 1.471 10.82 C 0.957 10.261 0.574 9.595 0.351 8.87 C 0.109 8.059 -0.009 7.216 0.001 6.37 C 0.001 5.48 0.121 4.65 0.341 3.87 C 0.571 3.1 0.921 2.43 1.391 1.87 C 1.87 1.286 2.475 0.818 3.161 0.5 C 3.861 0.17 4.711 0 5.681 0 C 6.501 0 7.231 0.14 7.861 0.42 C 8.481 0.7 9.001 1.09 9.431 1.58 C 9.851 2.08 10.171 2.66 10.391 3.34 C 10.687 4.276 10.789 5.263 10.691 6.24 L 10.651 6.87 L 2.451 6.87 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r8l2mq\",layoutDependency:layoutDependency,layoutId:\"Fp1uA0Njs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.381 12.211\" overflow=\"visible\"><path d=\"M 0 0.08 C 0.327 0.028 0.658 0.001 0.99 0 C 1.319 0.002 1.646 0.032 1.97 0.09 C 2.086 0.717 2.156 1.352 2.18 1.99 C 2.51 1.46 2.94 0.99 3.48 0.6 C 4.093 0.189 4.822 -0.014 5.56 0.02 C 5.801 0.02 6.041 0.034 6.28 0.06 C 6.352 0.368 6.386 0.684 6.38 1 C 6.385 1.393 6.345 1.786 6.26 2.17 C 6.132 2.141 6.001 2.127 5.87 2.13 L 5.56 2.13 C 5.14 2.13 4.73 2.19 4.35 2.3 C 3.97 2.42 3.62 2.63 3.32 2.92 C 3.02 3.22 2.77 3.62 2.59 4.14 C 2.39 4.787 2.299 5.463 2.32 6.14 L 2.32 12.11 C 1.941 12.182 1.556 12.216 1.17 12.21 C 0.778 12.206 0.387 12.172 0 12.11 L 0 0.09 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eivu4f\",layoutDependency:layoutDependency,layoutId:\"jo2P7n4Lu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.951 1.953\" overflow=\"visible\"><path d=\"M 1.951 0.982 C 1.951 1.262 1.901 1.542 1.801 1.802 C 1.269 2.003 0.683 2.003 0.151 1.802 C -0.05 1.27 -0.05 0.683 0.151 0.152 C 0.682 -0.051 1.27 -0.051 1.801 0.152 C 1.901 0.412 1.951 0.692 1.951 0.972 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p5whtu\",layoutDependency:layoutDependency,layoutId:\"K4UeZCP0C\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.775 7.785\" overflow=\"visible\"><path d=\"M 7.72 3.255 L 5.45 3.255 L 7.05 1.655 C 6.804 1.297 6.5 0.982 6.15 0.725 L 4.54 2.335 L 4.54 0.055 C 4.11 -0.018 3.67 -0.018 3.24 0.055 L 3.24 2.325 L 1.64 0.725 C 1.284 0.978 0.973 1.289 0.72 1.645 L 2.32 3.245 L 0.05 3.245 C 0.05 3.245 0 3.665 0 3.885 C 0 4.115 0.02 4.325 0.05 4.535 L 2.32 4.535 L 0.72 6.145 C 0.97 6.495 1.28 6.805 1.63 7.065 L 3.23 5.465 L 3.23 7.725 C 3.45 7.765 3.66 7.785 3.88 7.785 L 3.89 7.785 C 4.11 7.785 4.32 7.765 4.54 7.725 L 4.54 5.465 L 6.14 7.065 C 6.496 6.811 6.807 6.5 7.06 6.145 L 5.46 4.545 L 7.72 4.545 C 7.793 4.114 7.793 3.675 7.72 3.245 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c26ene\",layoutDependency:layoutDependency,layoutId:\"I1NJYtCmK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.9 12.02\" overflow=\"visible\"><path d=\"M 0 11.7 L 6.34 1.85 L 0.75 1.85 C 0.65 1.237 0.65 0.613 0.75 0 L 9.78 0 L 9.9 0.3 L 3.52 10.17 L 9.5 10.17 C 9.588 10.783 9.588 11.407 9.5 12.02 L 0.12 12.02 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bc62kh\",layoutDependency:layoutDependency,layoutId:\"SuIaGMjJ6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.78 4.204\" overflow=\"visible\"><path d=\"M 4.78 0.14 C 4.182 0.068 3.582 0.021 2.98 0 C 2.01 0 1.28 0.18 0.76 0.54 C 0.26 0.9 0 1.45 0 2.18 C 0 2.65 0.09 3.02 0.26 3.28 C 0.43 3.55 0.65 3.75 0.9 3.9 C 1.16 4.04 1.45 4.12 1.76 4.15 C 2.77 4.261 3.791 4.2 4.78 3.97 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jr0e3p\",layoutDependency:layoutDependency,layoutId:\"mXqbrWcJO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.381 12.59\" overflow=\"visible\"><path d=\"M 7.101 4.38 C 7.101 3.46 6.871 2.82 6.401 2.46 C 5.799 2.062 5.082 1.872 4.361 1.92 C 3.365 1.907 2.374 2.066 1.431 2.39 C 1.124 1.823 0.972 1.185 0.991 0.54 C 2.163 0.188 3.378 0.006 4.601 0 C 6.161 0 7.351 0.35 8.161 1.06 C 8.971 1.78 9.381 2.91 9.381 4.47 L 9.381 12 C 8.831 12.12 8.171 12.25 7.381 12.39 C 6.591 12.52 5.791 12.59 4.991 12.59 C 4.231 12.59 3.541 12.52 2.921 12.37 C 2.357 12.252 1.823 12.021 1.351 11.69 C 0.923 11.38 0.579 10.968 0.351 10.49 C 0.105 9.94 -0.015 9.342 0.001 8.74 C 0.001 8.07 0.141 7.48 0.411 6.97 C 0.681 6.47 1.061 6.04 1.521 5.71 C 1.991 5.37 2.531 5.11 3.141 4.96 C 3.768 4.792 4.413 4.708 5.061 4.71 C 5.743 4.71 6.424 4.75 7.101 4.83 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lmm1du\",layoutDependency:layoutDependency,layoutId:\"M0jMrLFE2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.98 8.622\" overflow=\"visible\"><path d=\"M 0 8.312 C 0.3 8.422 0.6 8.512 0.91 8.552 C 1.23 8.602 1.63 8.622 2.13 8.622 C 2.7 8.622 3.21 8.532 3.68 8.352 C 4.15 8.172 4.55 7.892 4.88 7.522 C 5.22 7.142 5.48 6.672 5.68 6.102 C 5.88 5.532 5.98 4.852 5.98 4.072 C 5.98 2.822 5.75 1.832 5.28 1.102 C 4.82 0.362 4.07 0.002 3.02 0.002 C 2.236 -0.026 1.477 0.279 0.93 0.842 C 0.66 1.122 0.43 1.472 0.26 1.902 C 0.09 2.332 0 2.852 0 3.442 L 0 8.322 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7eodo6\",layoutDependency:layoutDependency,layoutId:\"mvw4OZWZr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.73 17.923\" overflow=\"visible\"><path d=\"M 0 0.274 C 0.65 0.142 1.32 0.142 1.97 0.274 L 2.03 0.574 C 2.096 1.036 2.153 1.5 2.2 1.964 C 2.711 1.062 3.572 0.41 4.58 0.164 C 5.65 -0.107 6.779 -0.041 7.81 0.354 C 8.41 0.574 8.93 0.944 9.36 1.434 C 9.79 1.934 10.13 2.554 10.37 3.304 C 10.61 4.064 10.73 4.964 10.73 5.994 C 10.73 8.054 10.18 9.674 9.06 10.834 C 7.94 11.994 6.36 12.584 4.31 12.584 C 3.635 12.581 2.963 12.493 2.31 12.324 L 2.31 17.824 C 1.546 17.956 0.764 17.956 0 17.824 L 0 0.284 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7MsXZ.framer-1io3him, .framer-7MsXZ .framer-1io3him { display: block; }\",\".framer-7MsXZ.framer-alqb0d { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 160px 0px; position: relative; width: 1440px; }\",\".framer-7MsXZ .framer-auq5mr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7MsXZ .framer-9c8s1e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 30px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 30px; }\",\".framer-7MsXZ .framer-17hq4q4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7MsXZ .framer-9oqzaq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7MsXZ .framer-o6anxv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 6px 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7MsXZ .framer-162ayul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7MsXZ .framer-1uei2yw-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-7MsXZ .framer-bqobv6-container { flex: none; height: 60px; position: relative; width: 100%; }\",\".framer-7MsXZ .framer-1c53rzt { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7MsXZ .framer-15ozkbt { height: 28px; position: relative; width: 129px; }\",\".framer-7MsXZ .framer-14ts2kw { height: 28px; left: 0px; position: absolute; top: 0px; width: 129px; }\",\".framer-7MsXZ .framer-1tfz2w6 { height: 18px; left: 40px; position: absolute; top: 6px; width: 87px; }\",\".framer-7MsXZ .framer-198ytcg { height: 7px; left: 6px; position: absolute; top: 5px; width: 5px; }\",\".framer-7MsXZ .framer-mc2vg8 { height: 18px; left: 0px; position: absolute; top: 0px; width: 18px; }\",\".framer-7MsXZ .framer-rk83at { height: 12px; left: 19px; position: absolute; top: 6px; width: 3px; }\",\".framer-7MsXZ .framer-m7uilo { height: 12px; left: 24px; position: absolute; top: 6px; width: 7px; }\",\".framer-7MsXZ .framer-je6bi6 { height: 17px; left: 33px; position: absolute; top: 2px; width: 8px; }\",\".framer-7MsXZ .framer-u590p3 { height: 7px; left: 45px; position: absolute; top: 9px; width: 7px; }\",\".framer-7MsXZ .framer-1bqo8yr { height: 13px; left: 41px; position: absolute; top: 6px; width: 13px; }\",\".framer-7MsXZ .framer-17j6mpk { height: 7px; left: 59px; position: absolute; top: 9px; width: 7px; }\",\".framer-7MsXZ .framer-17hzi8v { height: 18px; left: 56px; position: absolute; top: 0px; width: 13px; }\",\".framer-7MsXZ .framer-v7fds6 { height: 18px; left: 71px; position: absolute; top: 0px; width: 3px; }\",\".framer-7MsXZ .framer-1bzgknc { height: 3px; left: 79px; position: absolute; top: 8px; width: 6px; }\",\".framer-7MsXZ .framer-qz4asf { height: 13px; left: 75px; position: absolute; top: 6px; width: 12px; }\",\".framer-7MsXZ .framer-1ao2gxn { height: 4px; left: 18px; position: absolute; top: 0px; width: 4px; }\",\".framer-7MsXZ .framer-xs59dj { height: 12px; left: 2px; position: absolute; top: 0px; width: 29px; }\",\".framer-7MsXZ .framer-1okx3ib { height: 19px; left: 18px; position: absolute; top: 9px; width: 16px; }\",\".framer-7MsXZ .framer-1eyquhh { height: 13px; left: 0px; position: absolute; top: 9px; width: 15px; }\",\".framer-7MsXZ .framer-4k7fez { height: 9px; left: 1px; position: absolute; top: 9px; width: 15px; }\",\".framer-7MsXZ .framer-1knqfxk { height: 20px; overflow: hidden; position: relative; width: 258px; }\",\".framer-7MsXZ .framer-1npzx3g, .framer-7MsXZ .framer-1qtzaqk { height: 20px; left: 0px; position: absolute; top: 0px; width: 258px; }\",\".framer-7MsXZ .framer-1osnr5k { height: 20px; left: 83px; position: absolute; top: 0px; width: 22px; }\",\".framer-7MsXZ .framer-c3unxs { height: 14px; left: 4px; position: absolute; top: 3px; width: 15px; }\",\".framer-7MsXZ .framer-1kyy6zz { height: 20px; left: 0px; position: absolute; top: 0px; width: 22px; }\",\".framer-7MsXZ .framer-1dsit0z { height: 8px; left: 8px; position: absolute; top: 4px; width: 8px; }\",\".framer-7MsXZ .framer-4crphf { height: 19px; left: 0px; position: absolute; top: 1px; width: 23px; }\",\".framer-7MsXZ .framer-47xb73 { height: 19px; left: 29px; position: absolute; top: 1px; width: 20px; }\",\".framer-7MsXZ .framer-7w7b1c { height: 19px; left: 57px; position: absolute; top: 1px; width: 20px; }\",\".framer-7MsXZ .framer-8f1shq { height: 19px; left: 113px; position: absolute; top: 1px; width: 26px; }\",\".framer-7MsXZ .framer-16c4fvw { height: 8px; left: 153px; position: absolute; top: 4px; width: 8px; }\",\".framer-7MsXZ .framer-1g7vrxx { height: 19px; left: 146px; position: absolute; top: 1px; width: 23px; }\",\".framer-7MsXZ .framer-1fozr4q { height: 19px; left: 171px; position: absolute; top: 1px; width: 20px; }\",\".framer-7MsXZ .framer-17o4h1e { height: 19px; left: 197px; position: absolute; top: 1px; width: 20px; }\",\".framer-7MsXZ .framer-36lsbz { height: 19px; left: 225px; position: absolute; top: 1px; width: 4px; }\",\".framer-7MsXZ .framer-1dg4u2a { height: 20px; left: 237px; position: absolute; top: 0px; width: 21px; }\",\".framer-7MsXZ .framer-1pfxymg { height: 8px; left: 91px; position: absolute; top: 6px; width: 6px; }\",\".framer-7MsXZ .framer-1bhznne { height: 32px; overflow: hidden; position: relative; width: 117px; }\",\".framer-7MsXZ .framer-1ioerp8 { height: 32px; left: 1px; position: absolute; top: 0px; width: 116px; }\",\".framer-7MsXZ .framer-151f4fu { height: 32px; left: 0px; position: absolute; top: 0px; width: 31px; }\",\".framer-7MsXZ .framer-2tp29b { height: 11px; left: 0px; position: absolute; top: 16px; width: 31px; }\",\".framer-7MsXZ .framer-1eorfz5 { height: 16px; left: 0px; position: absolute; top: 0px; width: 31px; }\",\".framer-7MsXZ .framer-1qrdakf { height: 14px; left: 35px; position: absolute; top: 9px; width: 10px; }\",\".framer-7MsXZ .framer-g4uyop, .framer-7MsXZ .framer-1j914jk { height: 14px; left: 0px; position: absolute; top: 0px; width: 10px; }\",\".framer-7MsXZ .framer-o3pstz { height: 7px; left: 2px; position: absolute; top: 6px; width: 6px; }\",\".framer-7MsXZ .framer-1igbc65 { height: 9px; left: 45px; position: absolute; top: 14px; width: 9px; }\",\".framer-7MsXZ .framer-11hjx9x, .framer-7MsXZ .framer-1rc0wgu { height: 9px; left: 0px; position: absolute; top: 0px; width: 9px; }\",\".framer-7MsXZ .framer-1w5d4rc, .framer-7MsXZ .framer-13erux6 { height: 3px; left: 2px; position: absolute; top: 5px; width: 5px; }\",\".framer-7MsXZ .framer-1nqevtk { height: 11px; left: 54px; position: absolute; top: 12px; width: 6px; }\",\".framer-7MsXZ .framer-13kydwm { height: 9px; left: 60px; position: absolute; top: 14px; width: 9px; }\",\".framer-7MsXZ .framer-vhbmau { height: 14px; left: 69px; position: absolute; top: 9px; width: 10px; }\",\".framer-7MsXZ .framer-k1cmrx { height: 7px; left: 3px; position: absolute; top: 6px; width: 6px; }\",\".framer-7MsXZ .framer-18dne2j { height: 9px; left: 79px; position: absolute; top: 14px; width: 6px; }\",\".framer-7MsXZ .framer-1unr2i3 { height: 12px; left: 86px; position: absolute; top: 11px; width: 4px; }\",\".framer-7MsXZ .framer-1f80uia { height: 9px; left: 0px; position: absolute; top: 4px; width: 4px; }\",\".framer-7MsXZ .framer-1tl3h8x { height: 2px; left: 1px; position: absolute; top: 0px; width: 2px; }\",\".framer-7MsXZ .framer-l7aw1m { height: 9px; left: 90px; position: absolute; top: 14px; width: 8px; }\",\".framer-7MsXZ .framer-1b42g91 { height: 14px; left: 99px; position: absolute; top: 9px; width: 10px; }\",\".framer-7MsXZ .framer-e1rfbw { height: 9px; left: 109px; position: absolute; top: 14px; width: 7px; }\",\".framer-7MsXZ .framer-2j6tw1 { height: 36px; overflow: hidden; position: relative; width: 32px; }\",\".framer-7MsXZ .framer-1dgleqv { height: 36px; left: 1px; position: absolute; top: 0px; width: 31px; }\",\".framer-7MsXZ .framer-11c2h0t, .framer-7MsXZ .framer-o9fdhk { height: 36px; left: 0px; position: absolute; top: 0px; width: 31px; }\",\".framer-7MsXZ .framer-1cvw0hw { height: 14px; left: 21px; position: absolute; top: 5px; width: 6px; }\",\".framer-7MsXZ .framer-1tptc9 { height: 14px; left: 5px; position: absolute; top: 5px; width: 5px; }\",\".framer-7MsXZ .framer-16zmxgt { height: 14px; left: 11px; position: absolute; top: 5px; width: 6px; }\",\".framer-7MsXZ .framer-larni3 { height: 14px; left: 17px; position: absolute; top: 5px; width: 2px; }\",\".framer-7MsXZ .framer-140by50 { height: 5px; left: 13px; position: absolute; top: 7px; width: 2px; }\",\".framer-7MsXZ .framer-buo7qg { height: 5px; left: 5px; position: absolute; top: 22px; width: 4px; }\",\".framer-7MsXZ .framer-1pxrh23 { height: 5px; left: 23px; position: absolute; top: 22px; width: 4px; }\",\".framer-7MsXZ .framer-1xn85my { height: 4px; left: 9px; position: absolute; top: 22px; width: 5px; }\",\".framer-7MsXZ .framer-11uf14r { height: 4px; left: 14px; position: absolute; top: 22px; width: 5px; }\",\".framer-7MsXZ .framer-1fr8o24 { height: 4px; left: 19px; position: absolute; top: 22px; width: 4px; }\",\".framer-7MsXZ .framer-knrrst { height: 1px; left: 11px; position: absolute; top: 24px; width: 1px; }\",\".framer-7MsXZ .framer-1hli140 { height: 2px; left: 10px; position: absolute; top: 31px; width: 12px; }\",\".framer-7MsXZ .framer-1ygt8mt { height: 26px; overflow: hidden; position: relative; width: 97px; }\",\".framer-7MsXZ .framer-19n1j95 { height: 26px; left: 1px; position: absolute; top: 0px; width: 96px; }\",\".framer-7MsXZ .framer-7y523x, .framer-7MsXZ .framer-1mioz4q { height: 26px; left: 0px; position: absolute; top: 0px; width: 96px; }\",\".framer-7MsXZ .framer-1ucnyng { height: 26px; left: 0px; position: absolute; top: 0px; width: 19px; }\",\".framer-7MsXZ .framer-sgxyhe { height: 25px; left: 43px; position: absolute; top: 1px; width: 18px; }\",\".framer-7MsXZ .framer-13x3cie { height: 6px; left: 21px; position: absolute; top: 2px; width: 6px; }\",\".framer-7MsXZ .framer-ypjnm2 { height: 17px; left: 22px; position: absolute; top: 9px; width: 6px; }\",\".framer-7MsXZ .framer-cj0skv { height: 17px; left: 63px; position: absolute; top: 9px; width: 16px; }\",\".framer-7MsXZ .framer-1v850z5 { height: 9px; left: 86px; position: absolute; top: 13px; width: 6px; }\",\".framer-7MsXZ .framer-17kykxd { height: 25px; left: 80px; position: absolute; top: 1px; width: 16px; }\",\".framer-7MsXZ .framer-145liwh { height: 22px; left: 29px; position: absolute; top: 4px; width: 12px; }\",\".framer-7MsXZ .framer-rjila9 { height: 28px; overflow: hidden; position: relative; width: 59px; }\",\".framer-7MsXZ .framer-abebym, .framer-7MsXZ .framer-gay97a { height: 28px; left: 0px; position: absolute; top: 0px; width: 59px; }\",\".framer-7MsXZ .framer-1m02y1p { height: 23px; left: 0px; position: absolute; top: 5px; width: 59px; }\",\".framer-7MsXZ .framer-15i2g4e { height: 17px; left: 0px; position: absolute; top: 0px; width: 11px; }\",\".framer-7MsXZ .framer-13kx7id { height: 12px; left: 12px; position: absolute; top: 6px; width: 11px; }\",\".framer-7MsXZ .framer-ci8qom { height: 6px; left: 16px; position: absolute; top: 8px; width: 4px; }\",\".framer-7MsXZ .framer-1r3mpgk { height: 12px; left: 40px; position: absolute; top: 6px; width: 10px; }\",\".framer-7MsXZ .framer-10jchxg { height: 3px; left: 43px; position: absolute; top: 12px; width: 3px; }\",\".framer-7MsXZ .framer-x6djlq { height: 15px; left: 24px; position: absolute; top: 3px; width: 9px; }\",\".framer-7MsXZ .framer-s3wvmc { height: 18px; left: 32px; position: absolute; top: 6px; width: 6px; }\",\".framer-7MsXZ .framer-1kom6ed { height: 12px; left: 52px; position: absolute; top: 6px; width: 7px; }\",\".framer-7MsXZ .framer-14r24ga { height: 9px; left: 32px; position: absolute; top: 0px; width: 8px; }\",\".framer-7MsXZ .framer-jstbra { height: 29px; overflow: hidden; position: relative; width: 106px; }\",\".framer-7MsXZ .framer-p56lnc { height: 28px; left: 1px; position: absolute; top: 0px; width: 105px; }\",\".framer-7MsXZ .framer-1iqx5gc { height: 25px; left: 0px; position: absolute; top: 2px; width: 22px; }\",\".framer-7MsXZ .framer-1sg2rbe { height: 28px; left: 29px; position: absolute; top: 0px; width: 76px; }\",\".framer-7MsXZ .framer-1gz9um { height: 16px; left: 0px; position: absolute; top: 6px; width: 9px; }\",\".framer-7MsXZ .framer-qxmlcl { height: 22px; left: 19px; position: absolute; top: 6px; width: 15px; }\",\".framer-7MsXZ .framer-cvgg67 { height: 9px; left: 22px; position: absolute; top: 10px; width: 8px; }\",\".framer-7MsXZ .framer-82ankf { height: 22px; left: 37px; position: absolute; top: 6px; width: 15px; }\",\".framer-7MsXZ .framer-vpj9ad { height: 9px; left: 40px; position: absolute; top: 10px; width: 8px; }\",\".framer-7MsXZ .framer-8pnctg { height: 22px; left: 54px; position: absolute; top: 1px; width: 4px; }\",\".framer-7MsXZ .framer-u36dew { height: 16px; left: 61px; position: absolute; top: 6px; width: 15px; }\",\".framer-7MsXZ .framer-crc6w9 { height: 3px; left: 65px; position: absolute; top: 10px; width: 8px; }\",\".framer-7MsXZ .framer-nyiapg { height: 5px; left: 11px; position: absolute; top: 0px; width: 5px; }\",\".framer-7MsXZ .framer-45eq5c { height: 16px; left: 12px; position: absolute; top: 7px; width: 4px; }\",\".framer-7MsXZ .framer-6px29k { height: 28px; overflow: hidden; position: relative; width: 62px; }\",\".framer-7MsXZ .framer-qw6plk, .framer-7MsXZ .framer-1cj61b, .framer-7MsXZ .framer-1mkw58f { height: 28px; left: 0px; position: absolute; top: 0px; width: 61px; }\",\".framer-7MsXZ .framer-8wy1w9 { height: 12px; left: 35px; position: absolute; top: 11px; width: 4px; }\",\".framer-7MsXZ .framer-8z1m2y { height: 4px; left: 44px; position: absolute; top: 12px; width: 6px; }\",\".framer-7MsXZ .framer-k1e1dv { height: 13px; left: 42px; position: absolute; top: 10px; width: 11px; }\",\".framer-7MsXZ .framer-1r8l2mq { height: 12px; left: 55px; position: absolute; top: 10px; width: 7px; }\",\".framer-7MsXZ .framer-1eivu4f { height: 2px; left: 37px; position: absolute; top: 3px; width: 2px; }\",\".framer-7MsXZ .framer-p5whtu { height: 8px; left: 34px; position: absolute; top: 0px; width: 8px; }\",\".framer-7MsXZ .framer-c26ene { height: 12px; left: 0px; position: absolute; top: 11px; width: 10px; }\",\".framer-7MsXZ .framer-1bc62kh { height: 4px; left: 14px; position: absolute; top: 17px; width: 5px; }\",\".framer-7MsXZ .framer-1jr0e3p { height: 13px; left: 11px; position: absolute; top: 10px; width: 10px; }\",\".framer-7MsXZ .framer-lmm1du { height: 9px; left: 26px; position: absolute; top: 12px; width: 6px; }\",\".framer-7MsXZ .framer-7eodo6 { height: 18px; left: 23px; position: absolute; top: 10px; width: 11px; }\",\".framer-7MsXZ.framer-v-pdiklr.framer-alqb0d { width: 390px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 406\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"N36ebbd3x\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JWwOyEnr_\":\"title\",\"K3AsA3nj6\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUkmU1085L=withCSS(Component,css,\"framer-7MsXZ\");export default FramerUkmU1085L;FramerUkmU1085L.displayName=\"Social proof\";FramerUkmU1085L.defaultProps={height:406,width:1440};addPropertyControls(FramerUkmU1085L,{variant:{options:[\"YYOHe4KKX\",\"N36ebbd3x\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},JWwOyEnr_:{defaultValue:\"Don\u2019t take our word for it\",displayTextArea:false,title:\"Title\",type:ControlType.String},K3AsA3nj6:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean}});addFonts(FramerUkmU1085L,[{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\"}]},...EmbedFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUkmU1085L\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N36ebbd3x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"406\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"JWwOyEnr_\\\":\\\"title\\\",\\\"K3AsA3nj6\\\":\\\"icon\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "EmbedFonts", "getFonts", "Embed", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "JWwOyEnr_", "K3AsA3nj6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FramerUkmU1085L", "withCSS", "UkmU1085L_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
