{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/k0wwPqiyQqCZrMgkB8jb/M5HApl3ggMLlDOa1YBWe/EiruAAGp1.js", "ssg:https://framerusercontent.com/modules/n9LjLO1sQDw9rt0bPh9Y/mrx3z3N7LSwBsweKuKPP/AigDOvEBP.js", "ssg:https://framerusercontent.com/modules/3Feua3NKraPWqJtLGfTK/BodS4VmehtsPXBBNgdKI/T_hMsbvaZ.js", "ssg:https://framerusercontent.com/modules/uVaFfJ8ntHlLWCOyQKZS/i9uxFN79eQUIfghpqZHJ/PSaeh7tMX.js", "ssg:https://framerusercontent.com/modules/6K4dm0oJAhmROQxQFk0W/23LGMhFByQYFMfcNb31E/CardValue.js", "ssg:https://framerusercontent.com/modules/iW4tBBXoSuL6GaDtiqQj/qpSm1NkLnAfH4z9cMmud/YSW3s7nAi.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (12ecc5e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-rhBg3\";const variantClassNames={VgXGt16qC:\"framer-v-1pcfdlj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,width,...props})=>{return{...props,pFwOoUbug:image!==null&&image!==void 0?image:props.pFwOoUbug};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pFwOoUbug,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"VgXGt16qC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pcfdlj\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"VgXGt16qC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(23, 23, 26)\",borderBottomLeftRadius:26,borderBottomRightRadius:26,borderTopLeftRadius:26,borderTopRightRadius:26,...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+38),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 95px)`,...toResponsiveImage(pFwOoUbug),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1nerwnh\",layoutDependency:layoutDependency,layoutId:\"Yazp4mSjx\"})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rhBg3.framer-1p8ddb5, .framer-rhBg3 .framer-1p8ddb5 { display: block; }\",\".framer-rhBg3.framer-1pcfdlj { height: 413px; overflow: visible; position: relative; width: 517px; }\",\".framer-rhBg3 .framer-1nerwnh { bottom: 38px; flex: none; left: 48px; overflow: visible; position: absolute; right: 47px; top: 38px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 413\n * @framerIntrinsicWidth 517\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"pFwOoUbug\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEiruAAGp1=withCSS(Component,css,\"framer-rhBg3\");export default FramerEiruAAGp1;FramerEiruAAGp1.displayName=\"card2\";FramerEiruAAGp1.defaultProps={height:413,width:517};addPropertyControls(FramerEiruAAGp1,{pFwOoUbug:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerEiruAAGp1,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEiruAAGp1\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"517\",\"framerVariables\":\"{\\\"pFwOoUbug\\\":\\\"image\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"413\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EiruAAGp1.map", "// Generated by Framer (648e021)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-K6rRh\";const variantClassNames={ZJHHjnnu3:\"framer-v-i5mwgk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image2,image3,text,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,Dw19PQwtK:(_ref=image2!==null&&image2!==void 0?image2:props.Dw19PQwtK)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/tP8ylxXvJnoe1CV8l3eMjX9UA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tP8ylxXvJnoe1CV8l3eMjX9UA.png 632w\"},JDSvZxy_S:(_ref1=text!==null&&text!==void 0?text:props.JDSvZxy_S)!==null&&_ref1!==void 0?_ref1:\"Android SDK to sign txs from borrower apps.\",pCyd3P5O4:(_ref2=image3!==null&&image3!==void 0?image3:props.pCyd3P5O4)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/s9ZyH39VmmbIL1s4lssj5SvTzH8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/s9ZyH39VmmbIL1s4lssj5SvTzH8.png?scale-down-to=1024 864w,https://framerusercontent.com/images/s9ZyH39VmmbIL1s4lssj5SvTzH8.png 1195w\"},S8hsels7f:(_ref3=title!==null&&title!==void 0?title:props.S8hsels7f)!==null&&_ref3!==void 0?_ref3:\"Embedded Wallets\\u2028\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,S8hsels7f,JDSvZxy_S,Dw19PQwtK,pCyd3P5O4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ZJHHjnnu3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:855,pixelWidth:632,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(Dw19PQwtK),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-i5mwgk\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ZJHHjnnu3\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:26,borderBottomRightRadius:26,borderTopLeftRadius:26,borderTopRightRadius:26,...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(pCyd3P5O4),...{positionX:\"left\",positionY:\"top\"}},className:\"framer-1k51k7o\",layoutDependency:layoutDependency,layoutId:\"gFwsZFOdz\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xozk51\",layoutDependency:layoutDependency,layoutId:\"JfL5FhhA8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255)))\"},children:\"Embedded Wallets\\u2028\\u2028\"})}),className:\"framer-gn0hgy\",\"data-framer-name\":\"Structure and syndicate \\u2028deals using customizable templates.\",fonts:[\"FS;Poppins-semibold\"],layoutDependency:layoutDependency,layoutId:\"QGetOtVXT\",style:{\"--extracted-a0htzi\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:S8hsels7f,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"Android SDK to sign txs from borrower apps.\"})}),className:\"framer-1p4iawn\",\"data-framer-name\":\"Structure and syndicate \\u2028deals using customizable templates.\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"hNR8BMe8g\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\",\"--framer-paragraph-spacing\":\"0px\"},text:JDSvZxy_S,verticalAlignment:\"center\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-K6rRh.framer-18bj42l, .framer-K6rRh .framer-18bj42l { display: block; }\",\".framer-K6rRh.framer-i5mwgk { height: 418px; overflow: hidden; position: relative; width: 270px; will-change: var(--framer-will-change-override, transform); }\",\".framer-K6rRh .framer-1k51k7o { aspect-ratio: 0.645933014354067 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 418px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-K6rRh .framer-1xozk51 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 35px; position: absolute; width: 100%; }\",\".framer-K6rRh .framer-gn0hgy, .framer-K6rRh .framer-1p4iawn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K6rRh .framer-1xozk51 { gap: 0px; } .framer-K6rRh .framer-1xozk51 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-K6rRh .framer-1xozk51 > :first-child { margin-top: 0px; } .framer-K6rRh .framer-1xozk51 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 418\n * @framerIntrinsicWidth 270\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"S8hsels7f\":\"title\",\"JDSvZxy_S\":\"text\",\"Dw19PQwtK\":\"image2\",\"pCyd3P5O4\":\"image3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAigDOvEBP=withCSS(Component,css,\"framer-K6rRh\");export default FramerAigDOvEBP;FramerAigDOvEBP.displayName=\"card\";FramerAigDOvEBP.defaultProps={height:418,width:270};addPropertyControls(FramerAigDOvEBP,{S8hsels7f:{defaultValue:\"Embedded Wallets\\u2028\",displayTextArea:false,title:\"Title\",type:ControlType.String},JDSvZxy_S:{defaultValue:\"Android SDK to sign txs from borrower apps.\",displayTextArea:false,title:\"Text\",type:ControlType.String},Dw19PQwtK:{__defaultAssetReference:\"data:framer/asset-reference,tP8ylxXvJnoe1CV8l3eMjX9UA.png?originalFilename=back.png&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},pCyd3P5O4:{__defaultAssetReference:\"data:framer/asset-reference,s9ZyH39VmmbIL1s4lssj5SvTzH8.png?originalFilename=ba11.png&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage}});addFonts(FramerAigDOvEBP,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAigDOvEBP\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"S8hsels7f\\\":\\\"title\\\",\\\"JDSvZxy_S\\\":\\\"text\\\",\\\"Dw19PQwtK\\\":\\\"image2\\\",\\\"pCyd3P5O4\\\":\\\"image3\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"418\",\"framerIntrinsicWidth\":\"270\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AigDOvEBP.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-GiRYb\";const variantClassNames={qRZcDMKz5:\"framer-v-iorwkm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image2,image3,text,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,Dw19PQwtK:(_ref=image2!==null&&image2!==void 0?image2:props.Dw19PQwtK)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/tP8ylxXvJnoe1CV8l3eMjX9UA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tP8ylxXvJnoe1CV8l3eMjX9UA.png 632w\"},JDSvZxy_S:(_ref1=text!==null&&text!==void 0?text:props.JDSvZxy_S)!==null&&_ref1!==void 0?_ref1:\"Android SDK to sign txs from borrower apps.\",pCyd3P5O4:(_ref2=image3!==null&&image3!==void 0?image3:props.pCyd3P5O4)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/s9ZyH39VmmbIL1s4lssj5SvTzH8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/s9ZyH39VmmbIL1s4lssj5SvTzH8.png?scale-down-to=1024 864w,https://framerusercontent.com/images/s9ZyH39VmmbIL1s4lssj5SvTzH8.png 1195w\"},S8hsels7f:(_ref3=title!==null&&title!==void 0?title:props.S8hsels7f)!==null&&_ref3!==void 0?_ref3:\"Embedded Wallets\\u2028\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,S8hsels7f,JDSvZxy_S,Dw19PQwtK,pCyd3P5O4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"qRZcDMKz5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:855,pixelWidth:632,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(Dw19PQwtK),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-iorwkm\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qRZcDMKz5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:26,borderBottomRightRadius:26,borderTopLeftRadius:26,borderTopRightRadius:26,...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(pCyd3P5O4),...{positionX:\"left\",positionY:\"top\"}},className:\"framer-w45dts\",layoutDependency:layoutDependency,layoutId:\"c2NDVg_tI\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nb1nor\",layoutDependency:layoutDependency,layoutId:\"aYlZ193ap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255)))\"},children:\"Embedded Wallets\\u2028\\u2028\"})}),className:\"framer-8gatt1\",\"data-framer-name\":\"Structure and syndicate \\u2028deals using customizable templates.\",fonts:[\"FS;Poppins-semibold\"],layoutDependency:layoutDependency,layoutId:\"hxQ2EY0vt\",style:{\"--extracted-a0htzi\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:S8hsels7f,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"Android SDK to sign txs from borrower apps.\"})}),className:\"framer-jckywg\",\"data-framer-name\":\"Structure and syndicate \\u2028deals using customizable templates.\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"HWC5bNJxO\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\",\"--framer-paragraph-spacing\":\"0px\"},text:JDSvZxy_S,verticalAlignment:\"center\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GiRYb.framer-bsgnwk, .framer-GiRYb .framer-bsgnwk { display: block; }\",\".framer-GiRYb.framer-iorwkm { height: 418px; overflow: hidden; position: relative; width: 270px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GiRYb .framer-w45dts { aspect-ratio: 0.645933014354067 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 505px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-GiRYb .framer-nb1nor { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 35px; position: absolute; width: 100%; }\",\".framer-GiRYb .framer-8gatt1, .framer-GiRYb .framer-jckywg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GiRYb .framer-nb1nor { gap: 0px; } .framer-GiRYb .framer-nb1nor > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GiRYb .framer-nb1nor > :first-child { margin-top: 0px; } .framer-GiRYb .framer-nb1nor > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 418\n * @framerIntrinsicWidth 270\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"S8hsels7f\":\"title\",\"JDSvZxy_S\":\"text\",\"Dw19PQwtK\":\"image2\",\"pCyd3P5O4\":\"image3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerT_hMsbvaZ=withCSS(Component,css,\"framer-GiRYb\");export default FramerT_hMsbvaZ;FramerT_hMsbvaZ.displayName=\"card 2\";FramerT_hMsbvaZ.defaultProps={height:418,width:270};addPropertyControls(FramerT_hMsbvaZ,{S8hsels7f:{defaultValue:\"Embedded Wallets\\u2028\",displayTextArea:false,title:\"Title\",type:ControlType.String},JDSvZxy_S:{defaultValue:\"Android SDK to sign txs from borrower apps.\",displayTextArea:false,title:\"Text\",type:ControlType.String},Dw19PQwtK:{__defaultAssetReference:\"data:framer/asset-reference,tP8ylxXvJnoe1CV8l3eMjX9UA.png?originalFilename=back.png&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},pCyd3P5O4:{__defaultAssetReference:\"data:framer/asset-reference,s9ZyH39VmmbIL1s4lssj5SvTzH8.png?originalFilename=ba11.png&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage}});addFonts(FramerT_hMsbvaZ,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerT_hMsbvaZ\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"S8hsels7f\\\":\\\"title\\\",\\\"JDSvZxy_S\\\":\\\"text\\\",\\\"Dw19PQwtK\\\":\\\"image2\\\",\\\"pCyd3P5O4\\\":\\\"image3\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"418\",\"framerIntrinsicWidth\":\"270\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./T_hMsbvaZ.map", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Card from\"https://framerusercontent.com/modules/n9LjLO1sQDw9rt0bPh9Y/mrx3z3N7LSwBsweKuKPP/AigDOvEBP.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Button4 from\"https://framerusercontent.com/modules/gwb3XEgvfr5hM7YMns2N/RpQgHtCtvCNkWv2oRkpo/LpqNmc8Xi.js\";import Card2 from\"https://framerusercontent.com/modules/3Feua3NKraPWqJtLGfTK/BodS4VmehtsPXBBNgdKI/T_hMsbvaZ.js\";const Button4Fonts=getFonts(Button4);const Card2Fonts=getFonts(Card2);const CardFonts=getFonts(Card);const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"MuPcKqIop\",\"VKhuiUev6\",\"ortJ1nGDk\",\"oVdeIKABZ\"];const serializationHash=\"framer-FMvDd\";const variantClassNames={MuPcKqIop:\"framer-v-1s94xm7\",ortJ1nGDk:\"framer-v-1uxds7l\",oVdeIKABZ:\"framer-v-zg4960\",VKhuiUev6:\"framer-v-ttc1fn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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:\"MuPcKqIop\",Desktop2:\"VKhuiUev6\",Tablet:\"ortJ1nGDk\",Tablet2:\"oVdeIKABZ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MuPcKqIop\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MuPcKqIop\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const BFzuXvATU1eajbg8=activeVariantCallback(async(...args)=>{setVariant(\"VKhuiUev6\");});const BFzuXvATU1xmdxfv=activeVariantCallback(async(...args)=>{setVariant(\"oVdeIKABZ\");});const BFzuXvATUn4wkia=activeVariantCallback(async(...args)=>{setVariant(\"MuPcKqIop\");});const BFzuXvATU5e0hp1=activeVariantCallback(async(...args)=>{setVariant(\"ortJ1nGDk\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"VKhuiUev6\",\"oVdeIKABZ\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"ortJ1nGDk\")return true;return false;};const isDisplayed2=()=>{if([\"VKhuiUev6\",\"ortJ1nGDk\",\"oVdeIKABZ\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"VKhuiUev6\",\"oVdeIKABZ\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"oVdeIKABZ\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"oVdeIKABZ\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1s94xm7\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"MuPcKqIop\",ref:refBinding,style:{...style},...addPropertyOverrides({ortJ1nGDk:{\"data-framer-name\":\"Tablet\"},oVdeIKABZ:{\"data-framer-name\":\"Tablet2\"},VKhuiUev6:{\"data-framer-name\":\"Desktop2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u1i366\",layoutDependency:layoutDependency,layoutId:\"hMTBzOv1C\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,...addPropertyOverrides({ortJ1nGDk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-46)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zvbst0-container\",layoutDependency:layoutDependency,layoutId:\"uHtvq5cSv-container\",nodeId:\"uHtvq5cSv\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Button4,{height:\"100%\",id:\"uHtvq5cSv\",layoutId:\"uHtvq5cSv\",PI9Hk9WtQ:\"Capital Providers\",variant:\"ivYTPc5Ck\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,...addPropertyOverrides({ortJ1nGDk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-46)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a1gz33-container\",layoutDependency:layoutDependency,layoutId:\"r0mfbGr4C-container\",nodeId:\"r0mfbGr4C\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Button4,{BFzuXvATU:BFzuXvATU1eajbg8,height:\"100%\",id:\"r0mfbGr4C\",layoutId:\"r0mfbGr4C\",PI9Hk9WtQ:\"Originators\",variant:\"ivYTPc5Ck\",width:\"100%\",...addPropertyOverrides({ortJ1nGDk:{BFzuXvATU:BFzuXvATU1xmdxfv}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ufoj4q-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FZ0S5XQoz-container\",nodeId:\"FZ0S5XQoz\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgb(18, 118, 227)\",arrowPadding:5,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:0},gap:10,height:\"100%\",id:\"FZ0S5XQoz\",layoutId:\"FZ0S5XQoz\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:9,dotsOpacity:.2,dotsPadding:7,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"311px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8h8u2u-container\",\"data-framer-name\":\"1\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"nLr8hjmZt-container\",name:\"1\",nodeId:\"nLr8hjmZt\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card2,{height:\"100%\",id:\"nLr8hjmZt\",JDSvZxy_S:\"Get origination, repayment, and borrower data in real-time.\",layoutId:\"nLr8hjmZt\",name:\"1\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/qZPjVHqblZF2r7srLvASw18SMc.png\",srcSet:\"https://framerusercontent.com/images/qZPjVHqblZF2r7srLvASw18SMc.png 632w\"},\"\"),S8hsels7f:\"Real-time Loan Level Data\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"311px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ohwnl1-container\",\"data-framer-name\":\"2\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iwwVoGEpW-container\",name:\"2\",nodeId:\"iwwVoGEpW\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"iwwVoGEpW\",JDSvZxy_S:\"View DPD cohorts, roll-rates, recovery by vintages, & more.\",layoutId:\"iwwVoGEpW\",name:\"2\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/GBiEmlCcnBivKesgSZT7n2aHEKY.png\",srcSet:\"https://framerusercontent.com/images/GBiEmlCcnBivKesgSZT7n2aHEKY.png 632w\"},\"\"),S8hsels7f:\"Asset Monitoring & Reporting\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"311px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13i5nqm-container\",\"data-framer-name\":\"3\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"L_lTl_M5_-container\",name:\"3\",nodeId:\"L_lTl_M5_\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"L_lTl_M5_\",JDSvZxy_S:\"Set borrowing base parameters & let us calculate it.\",layoutId:\"L_lTl_M5_\",name:\"3\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/TPOFbQWuE9do5Iu1t2IFewSBAwM.png\",srcSet:\"https://framerusercontent.com/images/TPOFbQWuE9do5Iu1t2IFewSBAwM.png 632w\"},\"\"),S8hsels7f:\"Borrowing Base Enforcement\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"311px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1il7gyr-container\",\"data-framer-name\":\"4\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cp01ZeDcZ-container\",name:\"4\",nodeId:\"cp01ZeDcZ\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"cp01ZeDcZ\",JDSvZxy_S:\"24/7 breach alerts with a cloud-based curing process.\",layoutId:\"cp01ZeDcZ\",name:\"4\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/YQ4Au2pJzS0nQcEndXdKZe4USBY.png\",srcSet:\"https://framerusercontent.com/images/YQ4Au2pJzS0nQcEndXdKZe4USBY.png 632w\"},\"\"),S8hsels7f:\"Whitelabel Portals & Dashboards\",style:{width:\"100%\"},width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6xbb8w\",\"data-framer-name\":\"3 Box\",layoutDependency:layoutDependency,layoutId:\"Z74HJm9op\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1280px), 400px), 280px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tnqrw9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pHkrKy9s5-container\",nodeId:\"pHkrKy9s5\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"pHkrKy9s5\",JDSvZxy_S:\"Get origination, repayment, and borrower data in real-time.\",layoutId:\"pHkrKy9s5\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/qZPjVHqblZF2r7srLvASw18SMc.png\",srcSet:\"https://framerusercontent.com/images/qZPjVHqblZF2r7srLvASw18SMc.png 632w\"},\"\"),S8hsels7f:\"Real-time Loan Level Data\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1280px), 400px), 280px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1iq22k8-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"hAmz2ggtF-container\",nodeId:\"hAmz2ggtF\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"hAmz2ggtF\",JDSvZxy_S:\"View DPD cohorts, roll-rates, recovery by vintages, & more.\",layoutId:\"hAmz2ggtF\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/LwTANINov4tbS3RNeNpPBEx6w.png\",srcSet:\"https://framerusercontent.com/images/LwTANINov4tbS3RNeNpPBEx6w.png?scale-down-to=1024 769w,https://framerusercontent.com/images/LwTANINov4tbS3RNeNpPBEx6w.png 964w\"},\"\"),S8hsels7f:\"Asset Monitoring & Reporting\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1280px), 400px), 280px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f98bvh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Zzt3du7Tw-container\",nodeId:\"Zzt3du7Tw\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"Zzt3du7Tw\",JDSvZxy_S:\"Set borrowing base parameters & let us enforce it.\",layoutId:\"Zzt3du7Tw\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/jhtbPihuEnXnUIaWVxb10lUh9VM.png\",srcSet:\"https://framerusercontent.com/images/jhtbPihuEnXnUIaWVxb10lUh9VM.png 632w\"},\"\"),S8hsels7f:\"Borrowing Base Enforcement\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1280px), 400px), 280px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ymjykl-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HdFzOVc0E-container\",nodeId:\"HdFzOVc0E\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"HdFzOVc0E\",JDSvZxy_S:\"24/7 breach alerts with a cloud-based curing process.\",layoutId:\"HdFzOVc0E\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/97GYpmYXhcX9JlT5FHZuvEqQg.png\",srcSet:\"https://framerusercontent.com/images/97GYpmYXhcX9JlT5FHZuvEqQg.png?scale-down-to=1024 757w,https://framerusercontent.com/images/97GYpmYXhcX9JlT5FHZuvEqQg.png 948w\"},\"\"),S8hsels7f:\"Whitelabel Portals & Dashboards\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wyjlfj\",\"data-framer-name\":\"Variant 2\",layoutDependency:layoutDependency,layoutId:\"wElLf6CAU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qc524q\",layoutDependency:layoutDependency,layoutId:\"wKkX71d8G\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,...addPropertyOverrides({oVdeIKABZ:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-536)/2+0+0)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zlt2a1-container\",layoutDependency:layoutDependency,layoutId:\"popPBuWBZ-container\",nodeId:\"popPBuWBZ\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Button4,{BFzuXvATU:BFzuXvATUn4wkia,height:\"100%\",id:\"popPBuWBZ\",layoutId:\"popPBuWBZ\",PI9Hk9WtQ:\"Originators\",variant:\"ivYTPc5Ck\",width:\"100%\",...addPropertyOverrides({oVdeIKABZ:{BFzuXvATU:BFzuXvATU5e0hp1,PI9Hk9WtQ:\"Capital Providers\"},VKhuiUev6:{PI9Hk9WtQ:\"Capital Providers\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,...addPropertyOverrides({oVdeIKABZ:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-536)/2+0+0)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ejtk1b-container\",layoutDependency:layoutDependency,layoutId:\"sABZEbZo6-container\",nodeId:\"sABZEbZo6\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Button4,{height:\"100%\",id:\"sABZEbZo6\",layoutId:\"sABZEbZo6\",PI9Hk9WtQ:\"Capital Providers\",variant:\"ivYTPc5Ck\",width:\"100%\",...addPropertyOverrides({oVdeIKABZ:{PI9Hk9WtQ:\"Originators\"},VKhuiUev6:{PI9Hk9WtQ:\"Originators\"}},baseVariant,gestureVariant)})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s97ujl-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"n_c4BxUqb-container\",nodeId:\"n_c4BxUqb\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"n_c4BxUqb\",layoutId:\"n_c4BxUqb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:9,dotsOpacity:.2,dotsPadding:7,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"311px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b9s7dq-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"W6HijVVkW-container\",nodeId:\"W6HijVVkW\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"W6HijVVkW\",JDSvZxy_S:\"Integrate at the mobile app and server level in weeks.\",layoutId:\"W6HijVVkW\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/UZcCYVitruFbfVlTaZZYX4olo.png\",srcSet:\"https://framerusercontent.com/images/UZcCYVitruFbfVlTaZZYX4olo.png 632w\"},\"\"),S8hsels7f:\"API & SDK Integrations\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"311px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mxakks-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ajFncATvP-container\",nodeId:\"ajFncATvP\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"ajFncATvP\",JDSvZxy_S:\"Replace eOriginal with our UETA compliant vault.\",layoutId:\"ajFncATvP\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/5ZUpv3tma4y04520EBCJd7V9pw.png\",srcSet:\"https://framerusercontent.com/images/5ZUpv3tma4y04520EBCJd7V9pw.png 632w\"},\"\"),S8hsels7f:\"Loan Vaulting & Reporting\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"311px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vl67q3-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jhpUXZkkT-container\",nodeId:\"jhpUXZkkT\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"jhpUXZkkT\",JDSvZxy_S:\"24/7 breach alerts with a cloud-based curing process.\",layoutId:\"jhpUXZkkT\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/YQ4Au2pJzS0nQcEndXdKZe4USBY.png\",srcSet:\"https://framerusercontent.com/images/YQ4Au2pJzS0nQcEndXdKZe4USBY.png 632w\"},\"\"),S8hsels7f:\"Multi-Facility Pledging\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"311px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vy1f90-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yxkwUq2sN-container\",nodeId:\"yxkwUq2sN\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"yxkwUq2sN\",JDSvZxy_S:\"Make sure backup servicers are always ready to go.\",layoutId:\"yxkwUq2sN\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/gvSGElbB40A0ssc9mWMBdTdOA8.png\",srcSet:\"https://framerusercontent.com/images/gvSGElbB40A0ssc9mWMBdTdOA8.png 685w\"},\"\"),S8hsels7f:\"Backup Servicing Data\",style:{width:\"100%\"},width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l4qd9e\",\"data-framer-name\":\"3 Box\",layoutDependency:layoutDependency,layoutId:\"cRkD6cps3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,...addPropertyOverrides({VKhuiUev6:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1280px), 400px), 280px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11m9qlq-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Zf3iVVzkb-container\",nodeId:\"Zf3iVVzkb\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"Zf3iVVzkb\",JDSvZxy_S:\"Make sure backup servicers are always ready to go.\",layoutId:\"Zf3iVVzkb\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/8ip0Vi2EHtKGBlgRO0xAFvAAIY.png\",srcSet:\"https://framerusercontent.com/images/8ip0Vi2EHtKGBlgRO0xAFvAAIY.png 632w\"},\"\"),S8hsels7f:\"Backup Servicing Data Lake\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,...addPropertyOverrides({VKhuiUev6:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1280px), 400px), 280px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7oo67s-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Q7kD0nGJv-container\",nodeId:\"Q7kD0nGJv\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"Q7kD0nGJv\",JDSvZxy_S:\"Replace eOriginal with our UETA compliant vault.\",layoutId:\"Q7kD0nGJv\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/5ZUpv3tma4y04520EBCJd7V9pw.png\",srcSet:\"https://framerusercontent.com/images/5ZUpv3tma4y04520EBCJd7V9pw.png 632w\"},\"\"),S8hsels7f:\"Loan Vaulting & Reporting\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"296px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ubdjbv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pKvZXPL18-container\",nodeId:\"pKvZXPL18\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"pKvZXPL18\",JDSvZxy_S:\"Integrate at the mobile app and server level in weeks.\",layoutId:\"pKvZXPL18\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/Fb3fYPuuvuMMkZRU52hvZKvxkzU.png\",srcSet:\"https://framerusercontent.com/images/Fb3fYPuuvuMMkZRU52hvZKvxkzU.png 632w\"},\"\"),S8hsels7f:\"API & SDK Integrations\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,...addPropertyOverrides({VKhuiUev6:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1280px), 400px), 280px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cfw4gl-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NeP4pgEQY-container\",nodeId:\"NeP4pgEQY\",rendersWithMotion:true,scopeId:\"PSaeh7tMX\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"NeP4pgEQY\",JDSvZxy_S:\"24/7 breach alerts with a cloud-based curing process.\",layoutId:\"NeP4pgEQY\",pCyd3P5O4:addImageAlt({src:\"https://framerusercontent.com/images/97GYpmYXhcX9JlT5FHZuvEqQg.png\",srcSet:\"https://framerusercontent.com/images/97GYpmYXhcX9JlT5FHZuvEqQg.png?scale-down-to=1024 757w,https://framerusercontent.com/images/97GYpmYXhcX9JlT5FHZuvEqQg.png 948w\"},\"\"),S8hsels7f:\"Multi-Facility Pledging\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FMvDd.framer-f99m5l, .framer-FMvDd .framer-f99m5l { display: block; }\",\".framer-FMvDd.framer-1s94xm7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 52px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 954px; }\",\".framer-FMvDd .framer-1u1i366, .framer-FMvDd .framer-1qc524q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FMvDd .framer-zvbst0-container, .framer-FMvDd .framer-1a1gz33-container, .framer-FMvDd .framer-zlt2a1-container, .framer-FMvDd .framer-ejtk1b-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-FMvDd .framer-ufoj4q-container, .framer-FMvDd .framer-1s97ujl-container { flex: none; height: 458px; position: relative; width: 100%; }\",\".framer-FMvDd .framer-8h8u2u-container, .framer-FMvDd .framer-1ohwnl1-container, .framer-FMvDd .framer-13i5nqm-container, .framer-FMvDd .framer-1il7gyr-container, .framer-FMvDd .framer-b9s7dq-container, .framer-FMvDd .framer-1mxakks-container, .framer-FMvDd .framer-1vl67q3-container, .framer-FMvDd .framer-1vy1f90-container { height: auto; position: relative; width: 311px; }\",\".framer-FMvDd .framer-6xbb8w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FMvDd .framer-1tnqrw9-container, .framer-FMvDd .framer-1iq22k8-container, .framer-FMvDd .framer-1f98bvh-container, .framer-FMvDd .framer-ymjykl-container, .framer-FMvDd .framer-11m9qlq-container, .framer-FMvDd .framer-7oo67s-container, .framer-FMvDd .framer-cfw4gl-container { flex: 1 0 0px; height: auto; max-width: 400px; min-width: 280px; position: relative; width: 1px; }\",\".framer-FMvDd .framer-wyjlfj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FMvDd .framer-1l4qd9e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FMvDd .framer-ubdjbv-container { flex: none; height: auto; max-width: 400px; min-width: 280px; position: relative; width: 296px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FMvDd.framer-1s94xm7, .framer-FMvDd .framer-1u1i366, .framer-FMvDd .framer-6xbb8w, .framer-FMvDd .framer-wyjlfj, .framer-FMvDd .framer-1qc524q, .framer-FMvDd .framer-1l4qd9e { gap: 0px; } .framer-FMvDd.framer-1s94xm7 > *, .framer-FMvDd .framer-wyjlfj > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-FMvDd.framer-1s94xm7 > :first-child, .framer-FMvDd .framer-wyjlfj > :first-child { margin-top: 0px; } .framer-FMvDd.framer-1s94xm7 > :last-child, .framer-FMvDd .framer-wyjlfj > :last-child { margin-bottom: 0px; } .framer-FMvDd .framer-1u1i366 > *, .framer-FMvDd .framer-1qc524q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FMvDd .framer-1u1i366 > :first-child, .framer-FMvDd .framer-6xbb8w > :first-child, .framer-FMvDd .framer-1qc524q > :first-child, .framer-FMvDd .framer-1l4qd9e > :first-child { margin-left: 0px; } .framer-FMvDd .framer-1u1i366 > :last-child, .framer-FMvDd .framer-6xbb8w > :last-child, .framer-FMvDd .framer-1qc524q > :last-child, .framer-FMvDd .framer-1l4qd9e > :last-child { margin-right: 0px; } .framer-FMvDd .framer-6xbb8w > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-FMvDd .framer-1l4qd9e > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\".framer-FMvDd.framer-v-ttc1fn.framer-1s94xm7 { width: 1466px; }\",\".framer-FMvDd.framer-v-ttc1fn .framer-11m9qlq-container { order: 3; }\",\".framer-FMvDd.framer-v-ttc1fn .framer-7oo67s-container { order: 1; }\",\".framer-FMvDd.framer-v-ttc1fn .framer-ubdjbv-container { order: 0; }\",\".framer-FMvDd.framer-v-ttc1fn .framer-cfw4gl-container { order: 2; }\",\".framer-FMvDd.framer-v-1uxds7l.framer-1s94xm7, .framer-FMvDd.framer-v-zg4960.framer-1s94xm7 { gap: 32px; width: 375px; }\",\".framer-FMvDd.framer-v-1uxds7l .framer-1u1i366 { max-width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FMvDd.framer-v-1uxds7l.framer-1s94xm7 { gap: 0px; } .framer-FMvDd.framer-v-1uxds7l.framer-1s94xm7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-FMvDd.framer-v-1uxds7l.framer-1s94xm7 > :first-child { margin-top: 0px; } .framer-FMvDd.framer-v-1uxds7l.framer-1s94xm7 > :last-child { margin-bottom: 0px; } }\",\".framer-FMvDd.framer-v-zg4960 .framer-wyjlfj { gap: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FMvDd.framer-v-zg4960.framer-1s94xm7, .framer-FMvDd.framer-v-zg4960 .framer-wyjlfj { gap: 0px; } .framer-FMvDd.framer-v-zg4960.framer-1s94xm7 > *, .framer-FMvDd.framer-v-zg4960 .framer-wyjlfj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-FMvDd.framer-v-zg4960.framer-1s94xm7 > :first-child, .framer-FMvDd.framer-v-zg4960 .framer-wyjlfj > :first-child { margin-top: 0px; } .framer-FMvDd.framer-v-zg4960.framer-1s94xm7 > :last-child, .framer-FMvDd.framer-v-zg4960 .framer-wyjlfj > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 946\n * @framerIntrinsicWidth 954\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VKhuiUev6\":{\"layout\":[\"fixed\",\"auto\"]},\"ortJ1nGDk\":{\"layout\":[\"fixed\",\"auto\"]},\"oVdeIKABZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPSaeh7tMX=withCSS(Component,css,\"framer-FMvDd\");export default FramerPSaeh7tMX;FramerPSaeh7tMX.displayName=\"O - CP - Desktop 3\";FramerPSaeh7tMX.defaultProps={height:946,width:954};addPropertyControls(FramerPSaeh7tMX,{variant:{options:[\"MuPcKqIop\",\"VKhuiUev6\",\"ortJ1nGDk\",\"oVdeIKABZ\"],optionTitles:[\"Desktop\",\"Desktop2\",\"Tablet\",\"Tablet2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPSaeh7tMX,[{explicitInter:true,fonts:[]},...Button4Fonts,...Card2Fonts,...CardFonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPSaeh7tMX\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"946\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VKhuiUev6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ortJ1nGDk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oVdeIKABZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"954\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/// https://api.lucidfinance.xyz/documentation/static/index.html\n// Function to format numbers\nfunction formatNumber(value,useAbbreviation,includeDollarSignInDecimals){if(!useAbbreviation){if(includeDollarSignInDecimals)return\"$\"+value.toFixed(2);else return value.toFixed(2);}if(value>=1e9){if(includeDollarSignInDecimals)return\"$\"+(value/1e9).toFixed(1)+\"B\";else return(value/1e9).toFixed(1)+\"B\";}if(value>=1e6){if(includeDollarSignInDecimals)return\"$\"+(value/1e6).toFixed(1)+\"M\";else return(value/1e6).toFixed(1)+\"M\";}if(value>=1e3){if(includeDollarSignInDecimals)return\"$\"+(value/1e3).toFixed(1)+\"K\";else return(value/1e3).toFixed(1)+\"K\";}if(includeDollarSignInDecimals)return\"$\"+value.toFixed(2);else return value.toFixed(2);}// Define the Framer component\nexport function LoanDataDisplay({apiUrl,parameterName,decimalPlaces,fontColor,fontSize,fontStyle,fontFamily,fontWeight,useAbbreviation,includeDollarSignInDecimals}){const[loanData,setLoanData]=useState(null);useEffect(()=>{if(apiUrl&&parameterName){fetch(apiUrl).then(response=>response.json()).then(data=>{if(parameterName in data){setLoanData(data[parameterName]);}else{setLoanData(null);}}).catch(error=>{console.error(\"Error fetching data:\",error);});}},[apiUrl,parameterName]);return /*#__PURE__*/_jsx(\"div\",{style:{height:`${fontSize}px`,display:\"flex\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(\"p\",{style:{color:fontColor,fontSize:`${fontSize}px`,fontStyle:fontStyle,fontFamily:fontFamily,fontWeight:fontWeight},children:loanData!==null?formatNumber(loanData,useAbbreviation,includeDollarSignInDecimals):\"-\"})});}// Add property controls for API URL, parameter name, and styling\naddPropertyControls(LoanDataDisplay,{apiUrl:{type:ControlType.String,title:\"API URL\",defaultValue:\"https://api.lucidfinance.xyz/api/v0/public/aggregates/loans?currency=USD\"},parameterName:{type:ControlType.String,title:\"Parameter Name\",defaultValue:\"principal\"},decimalPlaces:{type:ControlType.Number,title:\"Decimals\",min:0,max:10,defaultValue:2},fontColor:{type:ControlType.Color,title:\"Font Color\",defaultValue:\"#000000\"},fontSize:{type:ControlType.Number,title:\"Font Size\",min:10,max:100,defaultValue:16},fontStyle:{type:ControlType.Enum,options:[\"normal\",\"italic\",\"oblique\"],optionTitles:[\"Normal\",\"Italic\",\"Oblique\"],title:\"Font Style\"},fontFamily:{type:ControlType.GoogleFont,title:\"Font Family\"},fontWeight:{type:ControlType.Enum,options:[\"normal\",\"bold\"],optionTitles:[\"Normal\",\"Bold\"],title:\"Font Weight\"},useAbbreviation:{type:ControlType.Boolean,title:\"Abbreviate\",defaultValue:false},includeDollarSignInDecimals:{type:ControlType.Boolean,title:\"Include $ Sign in Decimals\",defaultValue:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"LoanDataDisplay\":{\"type\":\"reactComponent\",\"name\":\"LoanDataDisplay\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CardValue.map", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import RequestAccess from\"https://framerusercontent.com/modules/e9FxIvwLKGpOxufQriFy/JF7QMT7VH5453ibrvwrK/Z68e4W1tn.js\";import Card2 from\"https://framerusercontent.com/modules/k0wwPqiyQqCZrMgkB8jb/M5HApl3ggMLlDOa1YBWe/EiruAAGp1.js\";import MiniCard1 from\"https://framerusercontent.com/modules/oG3AqZ5IkHkQdhRiJW9S/Qzo56xEgcH6zivXSgFGb/kUq3kaWx5.js\";import Calendly from\"https://framerusercontent.com/modules/WIJbzyan03eQVbqqCNqQ/ZVFGE0CIYem9dXbVNw5j/Calendly.js\";import Footer2 from\"#framer/local/canvasComponent/CXLsBhDlW/CXLsBhDlW.js\";import NavbarDark from\"#framer/local/canvasComponent/GEXWl8zTX/GEXWl8zTX.js\";import OCPDesktop3 from\"#framer/local/canvasComponent/PSaeh7tMX/PSaeh7tMX.js\";import Button1 from\"#framer/local/canvasComponent/ZaGdVHgHf/ZaGdVHgHf.js\";import{LoanDataDisplay}from\"#framer/local/codeFile/iodPViO/CardValue.js\";import metadataProvider from\"#framer/local/webPageMetadata/YSW3s7nAi/YSW3s7nAi.js\";const NavbarDarkFonts=getFonts(NavbarDark);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const Button1Fonts=getFonts(Button1);const CalendlyFonts=getFonts(Calendly);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const OCPDesktop3Fonts=getFonts(OCPDesktop3);const LoanDataDisplayFonts=getFonts(LoanDataDisplay);const Card2Fonts=getFonts(Card2);const MiniCard1Fonts=getFonts(MiniCard1);const RequestAccessFonts=getFonts(RequestAccess);const Footer2Fonts=getFonts(Footer2);const breakpoints={h57r6HWav:\"(min-width: 1280px)\",kInq1lCXA:\"(min-width: 820px) and (max-width: 1279px)\",wSb1Hb6bJ:\"(max-width: 819px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-bIv6D\";const variantClassNames={h57r6HWav:\"framer-v-z9qddy\",kInq1lCXA:\"framer-v-n41s1c\",wSb1Hb6bJ:\"framer-v-qw2hku\"};const transition1={damping:40,delay:0,mass:1,stiffness:250,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-108};const transition2={damping:20,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition3={damping:20,delay:.3,mass:1,stiffness:150,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition4={bounce:.2,delay:.4,duration:3.5,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:20};const transition5={damping:20,delay:.45,mass:1,stiffness:150,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:20};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition6={delay:.2,duration:.7,ease:[.4,0,0,1],type:\"tween\"};const transition7={delay:.4,duration:.7,ease:[.4,0,0,1],type:\"tween\"};const transition8={delay:.6,duration:.7,ease:[.4,0,0,1],type:\"tween\"};const transition9={delay:.8,duration:.7,ease:[.4,0,0,1],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:20};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition10={damping:20,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"h57r6HWav\",Phone:\"wSb1Hb6bJ\",Tablet:\"kInq1lCXA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"h57r6HWav\"};};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,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const iEOAdS_HW3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"pFH6KwbE3\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"N_QstTVuU\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"wSb1Hb6bJ\")return true;return false;};const elementId2=useRouteElementId(\"O3y_CEqBL\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"dve3hkVmJ\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"zJPgZAL8U\");const ref5=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"wSb1Hb6bJ\")return false;return true;};const elementId5=useRouteElementId(\"p6qJBBLQU\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"OyzeLagx3\");const ref7=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"kInq1lCXA\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"kInq1lCXA\")return true;return false;};const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"h57r6HWav\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-z9qddy\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{width:`calc(${componentViewport?.width||\"100vw\"} - 74px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:`calc(${componentViewport?.width||\"100vw\"} - 44px)`,y:20,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1munc6p-container\",layoutScroll:true,nodeId:\"zawfel6nl\",rendersWithMotion:true,scopeId:\"YSW3s7nAi\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSb1Hb6bJ:{variant:\"UnC2QWhy_\"}},children:/*#__PURE__*/_jsx(NavbarDark,{height:\"100%\",id:\"zawfel6nl\",layoutId:\"zawfel6nl\",style:{width:\"100%\"},variant:\"PfrS0s26n\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSb1Hb6bJ:{background:undefined}},children:/*#__PURE__*/_jsxs(\"header\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2580,intrinsicWidth:2880,positionX:\"center\",positionY:\"top\"},className:\"framer-1jvvyx3\",\"data-framer-name\":\"Hero section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2nsnbw\",\"data-framer-name\":\"Tittle section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wxk2vf\",\"data-framer-name\":\"Tittle\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ced4xr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"An infrastructure platform for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(76, 78, 251)\"},children:\"global credit markets\"})]})})},wSb1Hb6bJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"An infrastructure platform for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(76, 78, 251)\"},children:\"global credit markets\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"An infrastructure platform for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(76, 78, 251)\"},children:\"global credit markets\"})]})}),className:\"framer-13mn97n\",\"data-framer-appear-id\":\"13mn97n\",fonts:[\"FS;Poppins-medium\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSb1Hb6bJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"Originate, securitize and service loans across borders with less cost and greater transparency.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"Originate, securitize and service loans across borders with less cost and greater transparency.\"})}),className:\"framer-15pcctv\",\"data-framer-appear-id\":\"15pcctv\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{y:(componentViewport?.y||0)+0+0+156.3+0+0+0+236.4},wSb1Hb6bJ:{y:(componentViewport?.y||0)+0+0+149+-5684341886080802e-29+0+0+0+117.60000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-la0jcq-container\",id:\"la0jcq\",nodeId:\"Aao6a0kyH\",scopeId:\"YSW3s7nAi\",children:[/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"Aao6a0kyH\",iEOAdS_HW:iEOAdS_HW3bnx0g({overlay}),layoutId:\"Aao6a0kyH\",PI9Hk9WtQ:\"Book a demo\",variant:\"waINVxrTv\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-7fems\"),\"data-framer-portal-id\":\"la0jcq\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"x1EhJQWVO\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-5nsac3-container\"),\"data-framer-portal-id\":\"la0jcq\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vc4nGquUR\",rendersWithMotion:true,scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(Calendly,{calendar:\"eric-lucidfinance\",height:\"100%\",hideGdprBanner:true,hideLandingPageDetails:true,id:\"vc4nGquUR\",layoutId:\"vc4nGquUR\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSb1Hb6bJ:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1rtliyd\",\"data-framer-appear-id\":\"1rtliyd\",\"data-framer-name\":\"Image\",initial:animation5,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:2340,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0),pixelHeight:895,pixelWidth:1440,positionX:\"center\",positionY:\"center\",sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 112px) / 2, 1px), 400px)`,src:\"https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?lossless=1 1440w\"},style:{originX:.2,originY:.6,rotate:10,rotateY:-45,transformPerspective:901,z:60}},wSb1Hb6bJ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:2340,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+149+175.59999999999997+187.5),pixelHeight:895,pixelWidth:1440,positionX:\"center\",positionY:\"center\",sizes:\"430px\",src:\"https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?lossless=1 1440w\"},style:{originX:.1,originY:.7,rotate:10,rotateY:-45,transformPerspective:931,z:-230}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:2340,pixelHeight:895,pixelWidth:1440,positionX:\"center\",positionY:\"center\",sizes:\"626px\",src:\"https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/wFsMZaLGiAxVqD051qcXDvED14.png?lossless=1 1440w\"},className:\"framer-100srbh\",\"data-framer-name\":\"Image\",style:{originX:.1,originY:.7,rotate:10,rotateY:-45,transformPerspective:931,z:-300}})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11puppq\",\"data-framer-name\":\"Ticker\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ff1e5\",\"data-framer-name\":\"Ticker\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"In partnership with\"})}),className:\"framer-18qqlve\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-111s9jq-container\",isModuleExternal:true,nodeId:\"wEApDeY3K\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:46,height:\"100%\",hoverFactor:.25,id:\"wEApDeY3K\",layoutId:\"wEApDeY3K\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5yigd\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:82,intrinsicWidth:274.5,pixelHeight:164,pixelWidth:549,sizes:\"139px\",src:\"https://framerusercontent.com/images/PQYsRROLBsCqGxapAqq0tL27gmA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PQYsRROLBsCqGxapAqq0tL27gmA.png?scale-down-to=512 512w,https://framerusercontent.com/images/PQYsRROLBsCqGxapAqq0tL27gmA.png 549w\"},className:\"framer-1o5kw68\",\"data-framer-name\":\"Tiberia\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5yigd\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ow4qhn\",\"data-framer-name\":\"aptos\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-x6wdhx\",\"data-framer-name\":\"APTOS LOGO _ DARKMODE\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"32\" viewBox=\"0 0 130 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2402_96875)\">\\n<path d=\"M99.1159 11.015H96.4406C96.1352 11.015 95.8299 10.8856 95.6126 10.6476L94.5259 9.43151C94.1999 9.08481 93.6773 9.03824 93.3099 9.36424C93.2892 9.38494 93.2685 9.40564 93.2426 9.43151L92.306 10.4768C92.0007 10.8235 91.566 11.0201 91.1106 11.0201H76.4405C76.0265 12.2362 75.7471 13.4988 75.6384 14.7821H89.4806C89.7187 14.7821 89.9567 14.6735 90.1326 14.4975L91.4159 13.1521C91.566 12.9762 91.8041 12.8934 92.0214 12.8934H92.0628C92.3008 12.8934 92.5389 13.002 92.7148 13.178L93.8015 14.394C93.9981 14.6321 94.3034 14.7614 94.6294 14.7614H105.931C105.822 13.4781 105.563 12.2207 105.129 10.9994H99.1107V11.015H99.1159ZM84.0369 22.6631C84.2749 22.6631 84.5129 22.5545 84.6889 22.3785L85.9722 21.0331C86.1223 20.8572 86.3655 20.7744 86.5828 20.7744H86.6501C86.8881 20.7744 87.1261 20.8831 87.3021 21.059L88.3888 22.275C88.6061 22.5131 88.8907 22.6424 89.2167 22.6424H104.529C105.113 21.4471 105.527 20.1638 105.791 18.8598H91.0796C90.7743 18.8598 90.469 18.7304 90.2775 18.4924L89.1908 17.2763C89.0408 17.1004 88.7976 16.9917 88.5388 16.9917C88.3008 16.9917 88.0628 17.1004 87.9075 17.2763L86.9709 18.3216C86.6656 18.6683 86.2309 18.8649 85.7549 18.8649H75.8868C76.1248 20.169 76.5595 21.4523 77.1235 22.6683H84.0369V22.6631ZM94.8985 6.90627C95.1365 6.90627 95.3746 6.7976 95.5505 6.62166L96.8338 5.27625C96.9839 5.10031 97.2271 5.01752 97.4444 5.01752H97.5117C97.7497 5.01752 97.9878 5.12619 98.143 5.30212L99.2297 6.51817C99.447 6.75621 99.7316 6.88557 100.052 6.88557H102.966C97.9257 0.168852 88.4043 -1.17656 81.6927 3.86357C80.544 4.73291 79.5194 5.73162 78.6707 6.88557H94.9037L94.8985 6.90627ZM89.0356 26.42H85.0563C84.751 26.42 84.4457 26.2906 84.2542 26.0525L83.1675 24.8365C82.8415 24.4898 82.2982 24.4432 81.9515 24.7692C81.9308 24.7899 81.9101 24.8106 81.8842 24.8365L80.9476 25.9025C80.6423 26.2492 80.2076 26.4458 79.7522 26.4458H79.685C85.3978 32.5726 95.0279 32.9193 101.155 27.2065C101.413 26.9685 101.677 26.7046 101.915 26.4458L89.0356 26.42ZM23.576 30.2699L20.4919 22.7511H6.67039L3.58629 30.2699H0.000244141L13.5579 1.84544L27.1621 30.2699H23.576ZM7.84504 19.8999H19.2966L13.5372 7.77562L7.84504 19.8999ZM32.0987 30.2699V1.84544H40.0108C46.2049 1.84544 49.4442 4.67081 49.4442 10.0162C49.4442 15.165 45.9875 18.1198 39.9694 18.1198H35.426V30.244H32.0987V30.2699ZM35.4467 15.165H39.2242C44.0056 15.165 46.1117 13.6023 46.1117 10.0162C46.1117 6.32153 43.9798 4.80018 39.2449 4.80018H35.4623L35.4467 15.165ZM61.5633 4.86228H51.7625V1.81957H74.7121V4.86228H64.9113V30.2647H61.584V4.86228H61.5633ZM110.635 25.0745L113.501 23.1185L113.719 23.5739C115.478 26.7925 117.413 28.0707 120.348 28.0707C123.608 28.0707 125.89 25.8093 125.89 23.0926C125.89 20.526 124.606 18.7925 119.457 16.6605C113.548 14.2026 111.545 11.6825 111.545 8.05505C111.545 4.1223 114.63 1.0382 119.975 1.0382C123.908 1.0382 126.604 2.70961 128.125 5.44701L125.802 7.05634L125.129 6.8804C123.913 4.99682 122.433 3.91014 119.913 3.91014C116.829 3.91014 115.023 5.64883 115.023 7.97225C115.023 10.1456 116.177 11.3824 121.217 13.6851C127.758 16.6605 129.367 19.0978 129.367 23.0512C129.367 27.3566 125.672 31.0047 120.415 31.0047C115.98 31.0513 112.937 29.354 110.635 25.0745Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2402_96875\">\\n<rect width=\"129.367\" height=\"30.4788\" fill=\"white\" transform=\"translate(0 0.805664)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5yigd\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jMy46HtCi5xS6J0N7fdt0K02j6E.png\"},className:\"framer-xpv32b\",\"data-framer-name\":\"branch-logo 2\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5yigd\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:139.5,intrinsicWidth:451.5,pixelHeight:279,pixelWidth:903,sizes:\"108px\",src:\"https://framerusercontent.com/images/rNTDIx2p3bAkYSCbYkYFxzQDI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rNTDIx2p3bAkYSCbYkYFxzQDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rNTDIx2p3bAkYSCbYkYFxzQDI.png 903w\"},className:\"framer-1ljvc93\",\"data-framer-name\":\"Kredu\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5yigd\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ca4q6j\",\"data-framer-name\":\"celo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DisuIngTis5t8fbO3NTYW7nzdvA.png\"},className:\"framer-1ab7pc7\",\"data-framer-name\":\"celo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5yigd\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eflso7\",\"data-framer-name\":\"PACT\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1whx90b\",\"data-framer-name\":\"Group 4248\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:39,svg:'<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.12661 29.9448V29.9448C7.61729 28.4087 11.5982 28.4382 15.0657 30.0261V30.0261V30.0261C18.5331 31.6139 22.514 31.6434 26.0047 30.1073V30.1073L26.036 25.8946V25.8946C22.5453 27.4308 18.5644 27.4012 15.097 25.8134V25.8134V25.8134C11.6295 24.2255 7.64858 24.196 4.15791 25.7321V25.7321L4.12661 29.9448Z\" fill=\"white\"/>\\n<path d=\"M8.3251 21.5135V21.5135C11.8158 19.9774 15.7967 20.007 19.2641 21.5948V21.5948V21.5948C22.7316 23.1826 26.7125 23.2122 30.2032 21.676V21.676L30.2345 17.4634V17.4634C26.7438 18.9995 22.7629 18.9699 19.2954 17.3821V17.3821V17.3821C15.828 15.7943 11.8471 15.7647 8.35639 17.3008V17.3008L8.3251 21.5135Z\" fill=\"white\"/>\\n<path d=\"M12.5254 12.9776V12.9776C16.0161 11.4415 19.997 11.4711 23.4645 13.0589V13.0589V13.0589C26.9319 14.6467 30.9128 14.6763 34.4035 13.1401V13.1401L34.4348 8.92747V8.92747C30.9441 10.4636 26.9632 10.434 23.4958 8.84621V8.84621V8.84621C20.0283 7.25838 16.0474 7.22881 12.5567 8.76495V8.76495L12.5254 12.9776Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.3299 3.89306C10.7653 3.89306 3.82238 10.836 3.82238 19.4006C3.82238 22.9943 5.04479 26.3025 7.09649 28.932C6.07202 29.1418 5.06783 29.4823 4.10916 29.9533C3.90115 30.0555 3.691 30.1515 3.47897 30.2414C1.36495 27.1564 0.128174 23.4229 0.128174 19.4006C0.128174 8.79575 8.72508 0.198853 19.3299 0.198853C24.3545 0.198853 28.9284 2.12878 32.3506 5.2878L31.8088 5.55086C30.0778 6.39121 28.057 6.39121 26.3261 5.55086L26.3206 5.55439C24.22 4.49175 21.8449 3.89306 19.3299 3.89306ZM6.29519 33.5004C9.71897 36.6671 14.2984 38.6023 19.3299 38.6023C29.9347 38.6023 38.5316 30.0054 38.5316 19.4006C38.5316 15.3585 37.2827 11.6082 35.1497 8.51436C34.9481 8.59949 34.7481 8.69013 34.5501 8.78627C33.5754 9.25948 32.5547 9.59945 31.5139 9.80619C33.5954 12.4458 34.8374 15.7781 34.8374 19.4006C34.8374 27.9651 27.8945 34.9081 19.3299 34.9081C16.701 34.9081 14.2249 34.2539 12.0555 33.0995C10.3902 32.3806 8.48759 32.4233 6.8505 33.2276L6.29519 33.5004Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLTUwMA==\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"24.48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"30.48px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PACT\"})}),className:\"framer-1q4los9\",\"data-framer-name\":\"PACT\",fonts:[\"GF;Unbounded-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tNTAw\",\"--framer-font-family\":'\"Roboto Mono\", monospace',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.23em\",\"--framer-line-height\":\"10.97px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"CONSORTIUM\"})}),className:\"framer-1urk6fq\",\"data-framer-name\":\"CONSORTIUM\",fonts:[\"GF;Roboto Mono-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5yigd\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mhghbp\",\"data-framer-name\":\"BSFG\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fzb885\",\"data-framer-name\":\"Group 4470\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 205 29\"><path d=\"M 89.223 12.792 L 89.223 5.058 L 92.561 5.058 C 94.003 5.058 94.905 5.803 94.905 6.988 C 94.903 7.395 94.757 7.788 94.493 8.095 C 94.229 8.402 93.864 8.605 93.465 8.665 L 93.465 8.708 C 94.507 8.788 95.272 9.555 95.272 10.578 C 95.272 11.94 94.257 12.792 92.627 12.792 Z M 90.828 8.273 L 91.986 8.273 C 92.84 8.273 93.33 7.893 93.33 7.24 C 93.33 6.618 92.9 6.263 92.149 6.263 L 90.827 6.263 Z M 92.21 11.587 C 93.135 11.587 93.636 11.19 93.636 10.45 C 93.636 9.71 93.12 9.34 92.172 9.34 L 90.828 9.34 L 90.828 11.587 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 102.576 12.792 L 97.494 12.792 L 97.494 5.058 L 102.576 5.058 L 102.576 6.392 L 99.104 6.392 L 99.104 8.257 L 102.384 8.257 L 102.384 9.5 L 99.099 9.5 L 99.099 11.45 L 102.571 11.45 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 106.648 12.792 L 105.043 12.792 L 105.043 5.058 L 108.184 5.058 C 109.95 5.058 110.96 5.997 110.96 7.523 C 110.96 8.515 110.449 9.373 109.566 9.722 L 111.183 12.792 L 109.364 12.792 L 107.934 9.958 L 106.648 9.958 Z M 106.648 8.792 L 108.03 8.792 C 108.839 8.792 109.311 8.325 109.311 7.558 C 109.311 6.792 108.815 6.327 108.014 6.327 L 106.648 6.327 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 113.319 12.792 L 113.319 5.058 L 114.924 5.058 L 114.924 8.585 L 114.972 8.585 L 117.854 5.058 L 119.639 5.058 L 116.801 8.488 L 119.836 12.792 L 117.918 12.792 L 115.642 9.56 L 114.924 10.428 L 114.924 12.792 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 126.902 12.792 L 121.818 12.792 L 121.818 5.058 L 126.902 5.058 L 126.902 6.392 L 123.43 6.392 L 123.43 8.257 L 126.71 8.257 L 126.71 9.5 L 123.43 9.5 L 123.43 11.45 L 126.902 11.45 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 134.326 12.792 L 129.367 12.792 L 129.367 5.058 L 130.972 5.058 L 130.972 11.452 L 134.326 11.452 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 141.668 12.792 L 136.585 12.792 L 136.585 5.058 L 141.668 5.058 L 141.668 6.392 L 138.197 6.392 L 138.197 8.257 L 141.477 8.257 L 141.477 9.5 L 138.197 9.5 L 138.197 11.45 L 141.668 11.45 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 146.307 12.792 L 146.307 9.895 L 143.637 5.05 L 145.386 5.05 L 147.104 8.352 L 147.142 8.352 L 148.863 5.05 L 150.586 5.05 L 147.913 9.895 L 147.913 12.792 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 157.402 10.582 C 157.477 11.218 158.135 11.637 158.986 11.637 C 159.837 11.637 160.426 11.223 160.426 10.657 C 160.426 10.157 160.059 9.873 159.135 9.657 L 158.143 9.437 C 156.729 9.132 156.033 8.407 156.033 7.27 C 156.033 5.843 157.255 4.902 158.968 4.902 C 160.753 4.902 161.876 5.828 161.902 7.235 L 160.398 7.235 C 160.345 6.582 159.776 6.185 158.973 6.185 C 158.169 6.185 157.65 6.565 157.65 7.138 C 157.65 7.615 158.022 7.883 158.905 8.087 L 159.836 8.285 C 161.372 8.618 162.041 9.285 162.041 10.462 C 162.041 11.962 160.834 12.912 158.931 12.912 C 157.086 12.912 155.913 12.027 155.865 10.578 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 164.083 8.92 C 164.083 6.46 165.508 4.92 167.783 4.92 C 170.057 4.92 171.478 6.464 171.478 8.92 C 171.478 10.28 171.048 11.375 170.256 12.034 L 171.228 13.514 L 169.671 13.514 L 169.123 12.704 C 168.692 12.851 168.239 12.924 167.783 12.919 C 165.508 12.919 164.083 11.402 164.083 8.92 Z M 168.33 11.504 L 167.49 10.239 L 168.941 10.239 L 169.272 10.699 C 169.634 10.28 169.836 9.665 169.836 8.92 C 169.836 7.295 169.032 6.254 167.778 6.254 C 166.523 6.254 165.716 7.299 165.716 8.92 C 165.716 10.542 166.518 11.587 167.778 11.587 C 167.964 11.585 168.151 11.557 168.33 11.504 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 175.427 9.89 C 175.427 10.882 176.006 11.53 177.037 11.53 C 178.069 11.53 178.643 10.882 178.643 9.89 L 178.643 5.057 L 180.25 5.057 L 180.25 10.057 C 180.25 11.762 179 12.925 177.037 12.925 C 175.075 12.925 173.822 11.758 173.822 10.057 L 173.822 5.057 L 175.427 5.057 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 187.112 10.908 L 184.416 10.908 L 183.835 12.792 L 182.182 12.792 L 184.846 5.058 L 186.732 5.058 L 189.402 12.792 L 187.694 12.792 Z M 184.761 9.697 L 186.767 9.697 L 185.775 6.53 L 185.737 6.53 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 193.093 12.792 L 191.488 12.792 L 191.488 5.058 L 194.629 5.058 C 196.395 5.058 197.405 5.997 197.405 7.523 C 197.405 8.515 196.894 9.373 196.013 9.722 L 197.628 12.792 L 195.81 12.792 L 194.38 9.958 L 193.093 9.958 Z M 193.093 8.792 L 194.476 8.792 C 195.284 8.792 195.757 8.325 195.757 7.558 C 195.757 6.792 195.261 6.327 194.459 6.327 L 193.093 6.327 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 204.85 12.792 L 199.768 12.792 L 199.768 5.058 L 204.85 5.058 L 204.85 6.392 L 201.378 6.392 L 201.378 8.257 L 204.659 8.257 L 204.659 9.5 L 201.378 9.5 L 201.378 11.45 L 204.85 11.45 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 89.223 23.545 L 89.223 15.657 L 94.348 15.657 L 94.348 17.019 L 90.86 17.019 L 90.86 19.134 L 94.042 19.134 L 94.042 20.44 L 90.86 20.44 L 90.86 23.545 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 97.754 23.545 L 97.754 15.657 L 99.392 15.657 L 99.392 23.545 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 103.137 23.545 L 103.137 15.657 L 104.502 15.657 L 108.157 20.795 L 108.2 20.795 L 108.2 15.657 L 109.771 15.657 L 109.771 23.545 L 108.415 23.545 L 104.755 18.379 L 104.706 18.379 L 104.706 23.545 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 118.037 21.625 L 115.288 21.625 L 114.691 23.538 L 113.011 23.538 L 115.728 15.65 L 117.652 15.65 L 120.373 23.538 L 118.634 23.538 Z M 115.64 20.39 L 117.685 20.39 L 116.682 17.16 L 116.644 17.16 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 123.615 23.545 L 123.615 15.657 L 124.981 15.657 L 128.634 20.795 L 128.677 20.795 L 128.677 15.657 L 130.245 15.657 L 130.245 23.545 L 128.889 23.545 L 125.23 18.379 L 125.181 18.379 L 125.181 23.545 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 133.743 19.598 C 133.743 17.057 135.179 15.52 137.446 15.52 C 139.326 15.52 140.753 16.723 140.883 18.488 L 139.288 18.488 C 139.231 18.039 139.011 17.627 138.672 17.331 C 138.332 17.036 137.895 16.877 137.446 16.887 C 136.209 16.887 135.413 17.932 135.413 19.593 C 135.413 21.255 136.198 22.315 137.451 22.315 C 138.421 22.315 139.121 21.74 139.294 20.807 L 140.888 20.807 C 140.705 22.567 139.364 23.682 137.446 23.682 C 135.173 23.682 133.743 22.145 133.743 19.598 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 149.528 23.545 L 144.345 23.545 L 144.345 15.657 L 149.528 15.657 L 149.528 17.019 L 145.977 17.019 L 145.977 18.92 L 149.323 18.92 L 149.323 20.189 L 145.977 20.189 L 145.977 22.179 L 149.523 22.179 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 161.317 23.682 C 158.979 23.682 157.548 22.14 157.548 19.577 C 157.548 17.052 158.979 15.52 161.279 15.52 C 163.098 15.52 164.483 16.608 164.716 18.205 L 163.073 18.205 C 162.835 17.372 162.167 16.887 161.284 16.887 C 159.993 16.887 159.217 17.877 159.217 19.553 C 159.217 21.263 160.044 22.308 161.343 22.308 C 162.411 22.308 163.162 21.642 163.187 20.668 L 163.187 20.542 L 161.484 20.542 L 161.484 19.34 L 164.78 19.34 L 164.78 20.23 C 164.785 22.38 163.501 23.682 161.317 23.682 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 169.948 23.545 L 168.312 23.545 L 168.312 15.657 L 171.516 15.657 C 173.316 15.657 174.346 16.614 174.346 18.172 C 174.346 19.184 173.825 20.057 172.926 20.414 L 174.579 23.545 L 172.724 23.545 L 171.266 20.659 L 169.948 20.659 Z M 169.948 19.462 L 171.359 19.462 C 172.185 19.462 172.665 18.987 172.665 18.205 C 172.665 17.424 172.155 16.947 171.342 16.947 L 169.948 16.947 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 185.158 19.603 C 185.158 22.113 183.698 23.682 181.384 23.682 C 179.069 23.682 177.611 22.113 177.611 19.603 C 177.611 17.093 179.063 15.52 181.384 15.52 C 183.705 15.52 185.158 17.09 185.158 19.603 Z M 179.281 19.603 C 179.281 21.255 180.107 22.298 181.384 22.298 C 182.66 22.298 183.482 21.255 183.482 19.603 C 183.482 17.952 182.655 16.898 181.384 16.898 C 180.112 16.898 179.286 17.948 179.286 19.603 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 190.295 20.594 C 190.295 21.604 190.886 22.26 191.938 22.26 C 192.989 22.26 193.575 21.594 193.575 20.594 L 193.575 15.657 L 195.213 15.657 L 195.213 20.757 C 195.213 22.495 193.938 23.682 191.938 23.682 C 189.937 23.682 188.658 22.495 188.658 20.757 L 188.658 15.657 L 190.295 15.657 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 202.14 15.657 C 203.745 15.657 204.85 16.734 204.85 18.357 C 204.85 19.98 203.707 21.059 202.059 21.059 L 200.594 21.059 L 200.594 23.545 L 198.957 23.545 L 198.957 15.657 Z M 200.594 19.769 L 201.7 19.769 C 202.639 19.769 203.188 19.269 203.188 18.364 C 203.188 17.459 202.646 16.964 201.7 16.964 L 200.589 16.964 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 0.144 23.682 L 0.144 5.235 L 8.106 5.235 C 11.543 5.235 13.697 7.012 13.697 9.837 C 13.692 10.807 13.342 11.743 12.713 12.477 C 12.083 13.21 11.213 13.693 10.262 13.837 L 10.262 13.938 C 12.742 14.13 14.573 15.958 14.573 18.4 C 14.573 21.647 12.151 23.68 8.245 23.68 Z M 3.973 12.905 L 6.724 12.905 C 8.766 12.905 9.933 11.998 9.933 10.438 C 9.933 8.955 8.904 8.105 7.122 8.105 L 3.981 8.105 Z M 7.269 20.805 C 9.475 20.805 10.667 19.858 10.667 18.095 C 10.667 16.37 9.437 15.448 7.18 15.448 L 3.973 15.448 L 3.973 20.805 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 23.395 18.427 C 23.572 19.948 25.144 20.945 27.173 20.945 C 29.201 20.945 30.61 19.962 30.61 18.612 C 30.61 17.41 29.735 16.745 27.528 16.247 L 25.144 15.723 C 21.771 14.993 20.11 13.268 20.11 10.572 C 20.11 7.17 23.026 4.922 27.11 4.922 C 31.37 4.922 34.053 7.132 34.11 10.468 L 30.52 10.468 C 30.393 8.91 29.032 7.968 27.123 7.968 C 25.214 7.968 23.969 8.867 23.969 10.233 C 23.969 11.372 24.856 12.01 26.961 12.497 L 29.18 12.968 C 32.845 13.762 34.442 15.347 34.442 18.158 C 34.442 21.738 31.564 23.992 27.024 23.992 C 22.625 23.992 19.822 21.883 19.708 18.418 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 40.42 23.682 L 40.42 5.235 L 52.404 5.235 L 52.404 8.418 L 44.249 8.418 L 44.249 13.365 L 51.688 13.365 L 51.688 16.42 L 44.249 16.42 L 44.249 23.682 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 66.538 24 C 61.072 24 57.724 20.397 57.724 14.4 C 57.724 8.495 61.072 4.917 66.448 4.917 C 70.722 4.917 73.942 7.46 74.488 11.192 L 70.646 11.192 C 70.094 9.262 68.528 8.112 66.457 8.112 C 63.438 8.112 61.624 10.425 61.624 14.35 C 61.624 18.35 63.552 20.792 66.595 20.792 C 69.093 20.792 70.831 19.245 70.907 16.958 L 70.919 16.665 L 66.943 16.665 L 66.943 13.852 L 74.652 13.852 L 74.652 15.935 C 74.652 20.958 71.634 24 66.538 24 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 82.61 0.038 L 81.263 0.038 L 81.263 28.88 L 82.61 28.88 Z\" fill=\"rgb(130, 130, 130)\"></path></svg>',svgContentId:10277525985,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5yigd\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y84okh\",\"data-framer-name\":\"Brassica\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-61ptqx\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:301,intrinsicWidth:344,svg:'<svg width=\"344\" height=\"301\" viewBox=\"0 0 344 301\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M140.33 0.898848V1.70761H134.392C131.111 1.70761 127.252 1.77693 125.842 1.86936L123.231 2.00801V2.63191V3.25581L120.181 3.41756C118.494 3.50999 116.206 3.57931 115.097 3.57931L113.064 3.60242V4.38807V5.17373H107.864H102.665V5.95938V6.74503L99.3147 6.90679L95.9642 7.06854V7.85419V8.63984H93.3068H90.6494V9.4486V10.2574H87.2989H83.9483V11.043V11.8287L82.2152 11.9904L80.4822 12.1522V12.9378V13.7235H77.8248H75.1675V14.5322V15.341H73.9659C73.2958 15.341 72.1866 15.4103 71.5396 15.4796C70.338 15.6414 70.3149 15.6414 70.3149 16.4039V17.1896H68.5818H66.8488V17.9984V18.8071H65.1157H63.3827V19.5928V20.3784L61.6496 20.5402L59.9165 20.7019V21.4876V22.2732H58.2759C56.7277 22.2732 56.6584 22.2963 56.6815 22.7816C56.7739 23.7752 56.7046 23.8445 54.9484 24.0063L53.2154 24.1681V24.9537C53.2154 25.6931 53.1692 25.7394 52.4066 25.7394C51.6441 25.7394 51.5979 25.7856 51.5979 26.5481C51.5979 27.3338 51.5747 27.3569 50.6736 27.3569C49.7724 27.3569 49.7493 27.38 49.7493 28.1425V28.9282L48.0162 29.0899L46.2831 29.2517V30.0373C46.2831 30.7768 46.2369 30.823 45.4744 30.823C44.7118 30.823 44.6656 30.8692 44.6656 31.6086C44.6656 32.3712 44.6194 32.4174 43.8106 32.4867C42.9788 32.5561 42.9326 32.6023 42.8632 33.411C42.7939 34.2429 42.7477 34.2891 41.9852 34.2891C41.2457 34.2891 41.1995 34.3353 41.1995 35.0979C41.1995 35.8835 41.1764 35.9066 40.2752 35.9066C39.374 35.9066 39.3509 35.9297 39.3509 36.7154C39.3509 37.4779 39.3047 37.5242 38.5421 37.5242C37.7565 37.5242 37.7334 37.5473 37.7334 38.4485C37.7334 39.3496 37.7103 39.3728 36.9246 39.3728C36.1621 39.3728 36.1159 39.419 36.1159 40.1815C36.1159 40.9672 36.0928 40.9903 35.1916 40.9903C34.2904 40.9903 34.2673 41.0134 34.2673 41.799C34.2673 42.5616 34.2211 42.6078 33.4585 42.6078C32.6729 42.6078 32.6497 42.6309 32.6497 43.5321C32.6497 44.4333 32.6266 44.4564 31.841 44.4564C31.0784 44.4564 31.0322 44.5026 31.0322 45.242C31.0322 46.0046 30.986 46.0508 30.1772 46.1201C29.3454 46.1895 29.2992 46.2357 29.2298 47.0444C29.1605 47.8763 29.1143 47.9225 28.3518 47.9225H27.5661V49.5169V51.1344L26.7111 51.2038C25.8793 51.2731 25.833 51.3193 25.7637 52.1281C25.6944 52.9599 25.6482 53.0061 24.8856 53.0061H24.1V54.7392V56.4723H23.3143H22.5518L22.39 58.0667C22.2283 59.6842 22.2283 59.6842 21.4888 59.7535L20.7494 59.8228L20.6801 61.4866L20.6108 63.1734H19.8251H19.0395L18.9701 64.9527L18.9008 66.7551L18.1614 66.8244C17.3988 66.8937 17.3988 66.9168 17.3988 68.0953C17.3988 68.7654 17.3295 69.8515 17.2602 70.4985C17.0984 71.7001 17.0984 71.7232 16.3359 71.7232H15.5502V75.1893V78.6554H14.7415H13.9327V82.6299C13.9327 84.8251 13.8634 87.9446 13.7941 89.539L13.6323 92.4275L12.9853 92.335L12.3152 92.2426V94.8075V97.3725H12.9853H13.6554L13.8172 106.038L13.9789 114.703H14.7877C15.504 114.703 15.5733 114.749 15.5502 115.327C15.5271 115.697 15.504 117.199 15.5271 118.678L15.5502 121.404H16.3359H17.1215L17.2833 123.137C17.445 124.824 17.4682 124.87 18.0921 124.87C18.6697 124.87 18.7391 124.94 18.8777 126.072C18.947 126.742 19.0164 127.897 19.0164 128.614V129.954H19.802H20.5646L20.7263 131.571L20.8881 133.189H21.6968C22.4594 133.189 22.4825 133.212 22.4825 134.113C22.4825 135.014 22.5056 135.038 23.2912 135.038H24.1V136.771V138.504H24.9088C25.6713 138.504 25.7175 138.55 25.7175 139.312C25.7175 140.098 25.7406 140.121 26.6418 140.121H27.5661L27.5892 141.092C27.6123 141.646 27.5892 142.363 27.5661 142.709C27.543 143.31 27.5892 143.356 28.3518 143.356C29.1605 143.356 29.1836 143.379 29.1836 144.281V145.205H30.1079C31.0091 145.205 31.0322 145.228 31.0322 146.014C31.0322 146.776 31.0784 146.822 31.841 146.822C32.6266 146.822 32.6497 146.846 32.6497 147.747C32.6497 148.648 32.6729 148.671 33.4585 148.671C34.2211 148.671 34.2673 148.717 34.2673 149.457C34.2673 150.219 34.3135 150.265 35.1454 150.335C35.9541 150.404 36.0003 150.45 36.0696 151.259C36.139 152.091 36.1852 152.137 36.9477 152.137C37.6872 152.137 37.7334 152.183 37.7334 152.923V153.708L39.4664 153.87L41.1995 154.032V154.818C41.1995 155.557 41.2457 155.603 42.0083 155.603C42.7708 155.603 42.817 155.649 42.817 156.412C42.817 157.198 42.8401 157.221 43.7413 157.221C44.6425 157.221 44.6656 157.244 44.6656 158.006V158.792L46.3987 158.954L48.1317 159.116V159.901V160.687H49.7493H51.3668V161.496C51.3668 162.281 51.3899 162.304 52.2911 162.304C53.1923 162.304 53.2154 162.327 53.2154 163.09C53.2154 163.853 53.2385 163.853 54.4401 164.014C55.0871 164.084 56.2425 164.153 56.9819 164.153H58.299V164.962C58.299 165.747 58.3221 165.771 59.2233 165.771C60.1245 165.771 60.1476 165.794 60.1476 166.579V167.388H61.3723C62.0193 167.388 63.1285 167.457 63.7986 167.527C64.9077 167.665 65.0002 167.735 65.0002 168.312C65.0002 168.913 65.0695 168.936 66.4097 169.098C67.1954 169.167 68.397 169.237 69.0671 169.237H70.3149V170.022V170.808L72.048 170.97C73.7579 171.131 73.781 171.131 73.781 171.755V172.402L76.2535 172.541C77.5937 172.633 79.5117 172.703 80.5284 172.703H82.3308V173.512V174.32H86.6056H90.8805V175.106V175.892L95.9642 176.053C101.325 176.238 101.21 176.192 101.071 177.255C101.025 177.486 104.075 177.555 115.605 177.555H130.163V176.908V176.238L135.409 176.1C138.274 176.007 141.717 175.938 143.034 175.938H145.414V175.129V174.32H151.422H157.43V173.512V172.703H160.965C162.883 172.703 166.742 172.633 169.515 172.541L174.529 172.402V171.778V171.155L177.002 171.016C178.342 170.923 180.63 170.854 182.086 170.854H184.697V170.045V169.237H188.579C190.728 169.237 194.217 169.167 196.32 169.075L200.179 168.936V168.312V167.688L207.85 167.55C217.625 167.342 233.014 167.342 238.606 167.55L242.928 167.688V168.312V168.936L245.4 169.075C246.74 169.167 248.658 169.237 249.675 169.237H251.477V170.045V170.854H252.702C253.349 170.854 254.458 170.923 255.128 170.993C256.237 171.131 256.33 171.201 256.33 171.778C256.33 172.379 256.399 172.402 257.739 172.564C258.525 172.633 259.727 172.703 260.397 172.703H261.645V173.512V174.32H263.239H264.857L264.926 175.175C264.995 176.007 265.041 176.053 265.873 176.123C266.682 176.192 266.728 176.238 266.728 177.001V177.786H268.323H269.94L270.009 178.641C270.056 179.219 270.194 179.519 270.425 179.543C270.61 179.566 271.003 179.589 271.257 179.612C271.719 179.635 271.789 179.82 271.927 181.252L272.089 182.87H273.545H275.001L275.162 184.603L275.324 186.336H276.087H276.849L277.011 187.931C277.173 189.525 277.173 189.548 277.889 189.617L278.629 189.687L278.698 191.35L278.767 193.037H279.553H280.362V202.396V211.754H279.553H278.744V213.487V215.22H277.958H277.196L277.034 216.63C276.965 217.416 276.895 218.571 276.895 219.172V220.304H276.087C275.301 220.304 275.278 220.327 275.278 221.228C275.278 222.13 275.255 222.153 274.492 222.153C273.73 222.153 273.684 222.199 273.614 223.008C273.545 223.84 273.499 223.886 272.69 223.955C271.858 224.024 271.812 224.071 271.812 224.833C271.812 225.573 271.766 225.619 271.026 225.619C270.264 225.619 270.217 225.665 270.148 226.474C270.079 227.283 270.009 227.352 269.339 227.421C268.692 227.491 268.6 227.583 268.531 228.23C268.461 228.9 268.392 228.969 267.606 229.039C266.774 229.108 266.728 229.154 266.728 229.917C266.728 230.679 266.705 230.702 265.804 230.702C264.903 230.702 264.88 230.726 264.88 231.488V232.274L263.262 232.436L261.645 232.597V233.383V234.169H259.912H258.178V234.954V235.717L256.584 235.879C254.967 236.04 254.967 236.04 254.897 236.78C254.828 237.473 254.759 237.519 253.857 237.588C252.933 237.658 252.864 237.704 252.864 238.305C252.864 238.906 252.771 238.975 251.801 239.114C251.2 239.183 249.744 239.252 248.566 239.252H246.394V240.038V240.824L244.545 240.985C242.72 241.147 242.696 241.147 242.696 241.794C242.696 242.372 242.627 242.441 241.495 242.58C240.825 242.649 239.3 242.718 238.144 242.718H235.995V243.527V244.336L231.674 244.382L227.33 244.451L227.261 245.168L227.191 245.884L224.742 246.046C223.402 246.115 221.53 246.184 220.583 246.184H218.896V246.855C218.896 247.478 218.826 247.525 217.694 247.663C217.024 247.733 212.033 247.802 206.603 247.802H196.713V248.611V249.419H179.613H162.514V248.611V247.802H151.838C145.946 247.802 140.585 247.733 139.938 247.663C138.782 247.525 138.713 247.478 138.713 246.855V246.184H136.934C135.94 246.184 133.953 246.115 132.543 246.023L129.932 245.884V245.26C129.932 244.682 129.84 244.613 128.731 244.474C128.06 244.405 125.403 244.336 122.838 244.336H118.147V243.527V242.718H115.097C113.41 242.718 111.469 242.649 110.822 242.58C109.69 242.441 109.598 242.372 109.598 241.794C109.598 241.193 109.528 241.17 108.188 241.008C107.402 240.939 106.201 240.87 105.531 240.87H104.283V240.061V239.252H101.348C99.7076 239.252 97.8359 239.183 97.1889 239.114C96.0335 238.975 95.9642 238.929 95.9642 238.305C95.9642 237.635 95.9411 237.635 94.647 237.635C93.9076 237.635 92.7753 237.565 92.1052 237.496C90.973 237.357 90.9036 237.311 90.8343 236.618L90.765 235.902L88.2925 235.832L85.7969 235.763V234.977V234.169H83.1395H80.4822V233.383V232.62L79.0726 232.459C78.287 232.389 77.1316 232.32 76.5308 232.32H75.3985V231.511V230.702H73.6655H71.9324V229.894V229.085H70.6153C69.8758 229.085 68.7436 229.016 68.0735 228.946C66.9412 228.808 66.8719 228.761 66.8026 228.068L66.7332 227.352L65.0695 227.283L63.3827 227.213V226.428V225.619H62.0655C61.3261 225.619 60.1707 225.549 59.5237 225.48C58.3683 225.342 58.299 225.272 58.299 224.671C58.299 224.047 58.2759 224.047 56.566 223.886L54.8329 223.724V222.938V222.153H53.2154H51.5979V221.344V220.558L49.8186 220.489L48.0162 220.42L47.9469 219.68C47.8776 218.964 47.8544 218.964 46.26 218.802L44.6656 218.64V217.855V217.069H42.9326H41.1995V216.283V215.498L39.4664 215.336L37.7334 215.174V214.389V213.603H36.1159H34.4983V212.794V211.985H31.841H29.1836V212.794C29.1836 213.557 29.1374 213.603 28.3749 213.603C27.5892 213.603 27.5661 213.626 27.5661 214.527C27.5661 215.428 27.543 215.452 26.7805 215.452H25.9948L25.833 217.069L25.6713 218.687H24.8856H24.1V220.42V222.153H23.2912C22.5287 222.153 22.4825 222.199 22.4825 222.938C22.4825 223.701 22.4363 223.747 21.6275 223.816C20.7956 223.886 20.7494 223.932 20.6801 224.741C20.6108 225.573 20.5646 225.619 19.8251 225.619H19.0395L18.9701 227.283L18.9008 228.969L18.1614 229.039C17.4682 229.108 17.3988 229.177 17.3988 229.917C17.3988 230.679 17.3757 230.702 16.4745 230.702H15.5502V232.436V234.169H14.7646C14.002 234.169 13.9558 234.215 13.8865 235.024C13.8172 235.832 13.7479 235.902 13.0777 235.971C12.3614 236.04 12.3383 236.063 12.1997 237.542L12.0379 239.021H11.2522C10.4666 239.021 10.4666 239.044 10.4666 240.061C10.4666 241.101 10.4666 241.101 9.68094 241.101H8.89529L8.73354 242.718L8.57178 244.336H7.78613C7.04669 244.336 7.00048 244.382 7.00048 245.145C7.00048 245.907 6.95426 245.953 6.21482 245.953H5.42917L5.26742 247.663L5.10567 249.396L4.38934 249.466C3.71922 249.535 3.6499 249.604 3.58057 250.39C3.51125 251.222 3.46504 251.268 2.70249 251.268C1.96305 251.268 1.91684 251.314 1.91684 252.077C1.91684 252.839 1.87062 252.886 1.10808 252.886H0.299316V255.427V257.969H1.10808C1.89373 257.969 1.91684 257.992 1.91684 258.894C1.91684 259.795 1.93995 259.818 2.7256 259.818C3.48814 259.818 3.53436 259.864 3.53436 260.627V261.435H5.26742H7.00048V262.221V263.007L8.73354 263.168L10.4666 263.33V264.116V264.901H12.1997H13.9327V265.71V266.496L15.6196 266.565L17.2833 266.635L17.3526 267.374C17.4219 268.09 17.445 268.09 19.0395 268.252L20.6339 268.414V269.199V269.985H22.4825H24.3311V270.794V271.603H25.4633C26.0641 271.603 27.2195 271.672 28.0051 271.741C29.3685 271.903 29.4147 271.926 29.4147 272.55C29.4147 273.174 29.4609 273.197 31.0322 273.359L32.6497 273.521V274.283V275.069H33.99C34.7063 275.069 35.8617 275.138 36.5318 275.207C37.641 275.346 37.7334 275.415 37.7334 275.993C37.7334 276.594 37.8027 276.617 39.1429 276.779C39.9286 276.848 41.084 276.917 41.6848 276.917H42.817V277.726V278.535H44.5501H46.2831V279.321V280.106L49.7493 280.268L53.2154 280.43V281.077C53.2154 281.724 53.2385 281.724 54.9484 281.885L56.6815 282.047V282.833V283.619H59.2233H61.7651V284.427V285.236H63.2209C64.0297 285.236 65.9707 285.305 67.4958 285.398L70.3149 285.536V286.322V287.085H72.048H73.781V287.893V288.702H75.6989C76.7388 288.702 78.287 288.771 79.165 288.864C80.6901 289.003 80.7132 289.003 80.7132 289.65C80.7132 290.297 80.7595 290.32 81.9379 290.343C82.5849 290.366 84.8033 290.435 86.8367 290.528L90.5339 290.666L90.6032 291.406L90.6726 292.145L93.2606 292.214L95.8486 292.284L95.9179 293L95.9873 293.74L101.071 293.901L106.131 294.063V294.71C106.131 295.311 106.201 295.334 107.541 295.496C108.327 295.565 110.984 295.634 113.433 295.634H117.916V296.443V297.252H120.412C121.798 297.252 124.201 297.321 125.727 297.414L128.546 297.552V298.176V298.8L132.197 298.939C134.184 299.031 140.261 299.1 145.715 299.1H155.581V299.909V300.718H174.414H193.247V299.909V299.1H202.443C207.527 299.1 212.934 299.031 214.459 298.939L217.278 298.8V298.176V297.552L219.889 297.414C221.299 297.321 223.587 297.252 224.973 297.252H227.446V296.443V295.634H231.328C233.453 295.634 235.741 295.565 236.411 295.496C237.544 295.357 237.613 295.311 237.613 294.687V294.017H239.184C240.062 294.017 242.049 293.948 243.575 293.855L246.394 293.716V293.093C246.394 292.515 246.486 292.446 247.457 292.307C248.057 292.238 249.19 292.168 249.998 292.168H251.477V291.36V290.551H253.164C254.112 290.551 255.983 290.481 257.323 290.389L259.796 290.25V289.626C259.796 289.026 259.865 289.003 261.206 288.841C261.991 288.771 263.147 288.702 263.747 288.702H264.88V287.893V287.085H266.613H268.346V286.299V285.513L271.673 285.352L275.024 285.19L275.093 284.45L275.162 283.734L276.849 283.665L278.513 283.595V282.833V282.047L280.246 281.885C281.956 281.724 281.979 281.724 281.979 281.077C281.979 280.43 282.002 280.43 283.828 280.268L285.676 280.106V279.321V278.535H287.294H288.911V277.749V276.964L290.644 276.802L292.377 276.64V275.854V275.069H294.111H295.844V274.26C295.844 273.497 295.89 273.451 296.652 273.451C297.415 273.451 297.461 273.405 297.461 272.666V271.88L299.194 271.718L300.927 271.556V270.771V269.985H302.522H304.139L304.209 269.107C304.278 268.298 304.324 268.252 305.156 268.183C305.965 268.113 306.011 268.067 306.011 267.305C306.011 266.542 306.034 266.519 306.935 266.519C307.836 266.519 307.859 266.496 307.859 265.71C307.859 264.948 307.906 264.901 308.668 264.901C309.431 264.901 309.477 264.855 309.477 264.116V263.33L311.095 263.168L312.712 263.007V262.221C312.712 261.458 312.735 261.435 313.636 261.435H314.561V260.511C314.561 259.61 314.584 259.587 315.369 259.587C316.132 259.587 316.178 259.541 316.178 258.778C316.178 257.992 316.201 257.969 317.102 257.969C318.004 257.969 318.027 257.946 318.027 257.16C318.027 256.398 318.073 256.352 318.836 256.352C319.621 256.352 319.644 256.329 319.644 255.427C319.644 254.526 319.667 254.503 320.453 254.503C321.216 254.503 321.262 254.457 321.262 253.694C321.262 252.909 321.285 252.886 322.186 252.886H323.11V251.961C323.11 251.06 323.134 251.037 323.896 251.037H324.682L324.843 249.419L325.005 247.802H325.791C326.53 247.802 326.577 247.756 326.577 246.993C326.577 246.231 326.623 246.184 327.385 246.184C328.171 246.184 328.194 246.161 328.194 245.26C328.194 244.359 328.217 244.336 328.98 244.336H329.765L329.927 242.718L330.089 241.101H330.875H331.66V239.368V237.635H332.469C333.255 237.635 333.278 237.612 333.278 236.71C333.278 235.809 333.301 235.786 334.063 235.786H334.849L335.011 234.053L335.172 232.32H335.958H336.721L336.79 229.824L336.859 227.352L337.576 227.283C338.315 227.213 338.315 227.213 338.477 225.48C338.639 223.793 338.639 223.77 339.263 223.77C339.863 223.77 339.933 223.701 340.071 222.546C340.141 221.899 340.21 220.373 340.21 219.195V217.069H341.019H341.827V214.458C341.827 213.048 341.897 210.691 341.989 209.259L342.128 206.671H342.752H343.376L343.537 200.409C343.63 196.989 343.63 191.997 343.56 189.317L343.376 184.488H342.752H342.128L341.989 181.876C341.897 180.467 341.827 177.809 341.827 175.984V172.703H341.019H340.233L340.164 170.092L340.094 167.504L339.355 167.434L338.639 167.365L338.477 165.632C338.315 163.968 338.292 163.922 337.668 163.922C337.09 163.922 337.021 163.829 336.882 162.859C336.813 162.258 336.744 161.126 336.744 160.317V158.838H335.958H335.172L335.011 157.221L334.849 155.603H334.063C333.301 155.603 333.278 155.58 333.278 154.679C333.278 153.778 333.255 153.755 332.469 153.755H331.66V152.16V150.543L330.805 150.473C329.973 150.404 329.927 150.358 329.858 149.526C329.788 148.717 329.742 148.671 328.98 148.671C328.217 148.671 328.194 148.648 328.194 147.747C328.194 146.846 328.171 146.822 327.408 146.822H326.623L326.461 145.205L326.299 143.587H325.514C324.774 143.587 324.728 143.541 324.728 142.779C324.728 142.016 324.682 141.97 323.919 141.97C323.134 141.97 323.11 141.947 323.11 141.046V140.121H322.186C321.285 140.121 321.262 140.098 321.262 139.312C321.262 138.55 321.216 138.504 320.476 138.504C319.737 138.504 319.667 138.434 319.598 137.741C319.529 137.117 319.436 137.002 318.905 137.002C318.558 136.979 318.212 136.909 318.119 136.817C318.027 136.724 317.611 136.655 317.172 136.655C316.455 136.655 316.409 136.609 316.409 135.846C316.409 135.061 316.386 135.038 315.485 135.038C314.584 135.038 314.561 135.014 314.561 134.252C314.561 133.489 314.514 133.443 313.706 133.374C312.874 133.305 312.828 133.258 312.758 132.426L312.689 131.571H311.071H309.477V130.763C309.477 129.977 309.454 129.954 308.553 129.954C307.652 129.954 307.628 129.931 307.628 129.168V128.383L305.895 128.221L304.162 128.059V127.273V126.488H301.736H299.31V125.679C299.31 124.893 299.287 124.87 298.385 124.87C297.484 124.87 297.461 124.847 297.461 124.085C297.461 123.345 297.415 123.299 296.398 123.16C295.797 123.091 294.665 123.022 293.856 123.022H292.377V122.213V121.404H291.06C290.321 121.404 289.166 121.335 288.519 121.266C287.363 121.127 287.294 121.058 287.294 120.48C287.294 119.856 287.248 119.833 285.561 119.671C283.805 119.509 283.735 119.463 283.828 118.446L283.851 117.938H279.576H275.278V117.129V116.321H273.614C272.69 116.321 270.749 116.251 269.339 116.159L266.728 116.02V115.396C266.728 114.795 266.659 114.749 265.411 114.611C264.672 114.541 262.384 114.472 260.327 114.449H256.561V113.64V112.854H232.529H208.497V113.64V114.449H203.137C200.179 114.472 197.105 114.541 196.32 114.611C194.933 114.749 194.864 114.795 194.864 115.396V116.02L191.005 116.159C188.902 116.251 185.113 116.321 182.571 116.321H177.996V117.129V117.938H169.33H160.665V118.747V119.556H158.193C156.806 119.556 154.518 119.625 153.109 119.717L150.498 119.856V120.48V121.104L146.639 121.242C141.671 121.45 112.139 121.45 108.743 121.242L106.131 121.104V120.48C106.131 119.879 106.062 119.856 104.722 119.694C103.936 119.625 102.781 119.556 102.18 119.556H101.048V118.747V117.938H97.6972H94.3466V117.152V116.367L92.6367 116.205L90.9036 116.043L90.8343 115.327C90.765 114.657 90.6957 114.588 89.91 114.518C89.0781 114.449 89.0319 114.403 89.0319 113.686V112.924L87.4375 112.762C85.82 112.6 85.82 112.6 85.7507 111.861C85.6813 111.191 85.612 111.121 84.8264 111.052C83.9945 110.983 83.9483 110.937 83.9483 110.174C83.9483 109.435 83.9021 109.388 83.1626 109.388C82.4001 109.388 82.3539 109.342 82.2846 108.51C82.2152 107.701 82.169 107.655 81.3603 107.586L80.4822 107.517V105.899V104.305H79.6965H78.9109L78.7491 102.549L78.5874 100.815L77.8479 100.885L77.1316 100.954L77.0623 99.2673L76.9929 97.6035H76.2073H75.3985V90.7868V83.9701H76.2073C76.9467 83.9701 77.0161 83.9008 77.0161 83.3C77.0161 82.9534 77.0854 82.1678 77.1547 81.5901C77.2933 80.5964 77.3627 80.5271 78.0328 80.4578L78.7491 80.3885L78.8184 78.7016L78.8878 77.0379H79.6734C80.4591 77.0379 80.4822 77.0148 80.4822 76.1136C80.4822 75.2124 80.5053 75.1893 81.2678 75.1893C82.0304 75.1893 82.0766 75.1431 82.1459 74.3112C82.2152 73.5256 82.2846 73.4562 83.024 73.3407C83.671 73.2483 83.8327 73.1327 83.8327 72.6475C83.8559 72.324 83.879 71.6308 83.9021 71.0762L83.9483 70.1057H85.5427H87.1602L87.2295 69.2276C87.2989 68.4188 87.3451 68.3726 88.177 68.3033C88.9857 68.234 89.0319 68.1877 89.0319 67.4252C89.0319 66.6858 89.0781 66.6395 89.8407 66.6395C90.6032 66.6395 90.6494 66.5933 90.6494 65.8308V65.0451L92.4518 64.9758L94.2311 64.9065L94.3004 64.167C94.3697 63.4507 94.3929 63.4507 95.9873 63.289L97.5817 63.1272V62.3416V61.5559H99.3147H101.048V60.7471V59.9384H102.388C103.104 59.9384 104.26 59.8691 104.93 59.7997C106.039 59.6611 106.131 59.5918 106.131 59.0141C106.131 58.4364 106.224 58.3671 107.356 58.2284C108.003 58.1591 109.159 58.0898 109.898 58.0898H111.215V57.281V56.4723H114.288C115.952 56.4723 117.893 56.4029 118.563 56.3336C119.672 56.195 119.765 56.1257 119.765 55.548V54.9241L122.376 54.7854C123.786 54.693 125.773 54.6237 126.766 54.6237H128.546V53.8149V53.0061H134.438H140.33V52.1974V51.3886H160.781H181.231V52.1974V53.0061H188.163H195.095V53.7918V54.5775L201.912 54.7392L208.729 54.901V55.548C208.729 56.1257 208.798 56.195 209.953 56.3336C210.6 56.4029 213.258 56.4723 215.846 56.4723H220.513V57.281V58.0898H222.778C224.003 58.0898 225.574 58.1591 226.244 58.2284C227.353 58.3671 227.446 58.4364 227.446 59.0141V59.638L230.057 59.7766C231.466 59.8691 233.407 59.9384 234.332 59.9384H235.995V60.724V61.5097L239.369 61.5328C241.241 61.5559 242.835 61.6021 242.928 61.6714C242.997 61.7177 243.043 62.0643 242.974 62.434L242.881 63.1041L246.255 63.289L249.629 63.4507V64.0977C249.629 64.6754 249.698 64.7447 250.853 64.8834C251.5 64.9527 253.072 65.022 254.32 65.022H256.561V65.8308V66.6395H257.901C258.618 66.6395 259.773 66.7089 260.443 66.7782C261.552 66.9168 261.645 66.9862 261.645 67.5638C261.645 68.1415 261.737 68.2109 262.869 68.3495C263.516 68.4188 264.672 68.4881 265.411 68.4881H266.728V69.2969V70.1057H269.27H271.812V70.9144V71.7001L273.499 71.7694L275.162 71.8387L275.232 72.5551C275.301 73.2483 275.37 73.2945 276.503 73.4331C277.173 73.5025 278.305 73.5718 279.044 73.5718H280.362V74.3805V75.1893H284.636H288.911V73.5718V71.9543H289.697H290.483L290.644 70.2443L290.806 68.5112L291.523 68.4419C292.193 68.3726 292.262 68.3033 292.331 67.4945C292.401 66.6858 292.447 66.6395 293.186 66.6395H293.972L294.041 64.9527L294.111 63.289L294.85 63.2196L295.566 63.1503L295.728 61.4173L295.89 59.7073H296.675H297.461V58.0898V56.4723H298.247H299.032L299.194 54.7392L299.356 53.0061H300.142C300.904 53.0061 300.927 52.983 300.927 52.0819C300.927 51.1807 300.95 51.1576 301.736 51.1576H302.545V49.54V47.9225H303.33H304.116L304.278 46.1895L304.44 44.4564H305.225H306.011V42.8389V41.2213H306.797H307.582L307.744 39.5114L307.906 37.7783L308.622 37.709C309.292 37.6397 309.361 37.5704 309.431 36.7616C309.5 35.9529 309.546 35.9066 310.309 35.9066H311.095V32.5792V29.2517L309.5 29.0899C307.906 28.9282 307.883 28.9282 307.813 28.2119L307.744 27.4724L306.08 27.4031L304.393 27.3338V26.5712V25.7856L302.66 25.6238C300.95 25.4621 300.927 25.4621 300.927 24.8382C300.927 24.2143 300.858 24.1912 299.518 24.0294C298.732 23.9601 297.207 23.8908 296.144 23.8908C294.272 23.8908 294.203 23.8677 294.226 23.3593C294.319 22.2963 294.295 22.2732 292.377 22.2732H290.529V21.4645V20.6557H289.397C288.796 20.6557 287.64 20.5864 286.855 20.5171L285.445 20.3553V19.5928V18.8071H282.095H278.744V17.9984V17.1896H277.011H275.278V16.4039V15.6414L273.868 15.4796C273.083 15.4103 271.558 15.341 270.518 15.341C268.762 15.341 268.577 15.2948 268.577 14.902C268.577 13.7466 268.507 13.7235 264.857 13.7235H261.414V12.9378V12.1522L258.178 11.9904L254.943 11.8287V11.1817C254.943 10.5809 254.874 10.5578 253.534 10.396C252.748 10.3267 250.761 10.2574 249.143 10.2574H246.163V9.4486V8.63984H243.112C241.426 8.63984 239.485 8.57052 238.838 8.5012C237.705 8.36255 237.613 8.29323 237.613 7.71555V7.09164L235.14 6.953C233.8 6.86057 231.928 6.79125 230.981 6.79125H229.294V5.98249V5.17373L222.431 5.12751L215.545 5.05819L215.476 4.29564L215.407 3.5562H213.165C211.94 3.5562 209.283 3.48688 207.296 3.39445L203.645 3.25581V2.63191V2.00801L201.057 1.86936C199.624 1.77693 195.719 1.70761 192.392 1.70761H186.314V0.898848V0.0900872H163.322H140.33V0.898848Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vhlm6\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:301,intrinsicWidth:344,svg:'<svg width=\"344\" height=\"301\" viewBox=\"0 0 344 301\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M140.127 0.898848L140.265 1.70761H134.188C130.838 1.70761 127.002 1.77693 125.662 1.86936L123.189 2.00801V2.63191V3.25581L120.601 3.39445C119.168 3.48688 116.881 3.5562 115.517 3.5562H113.022V4.36497V5.17373H107.823H102.623V5.98249V6.79125H101.376C100.706 6.79125 99.5039 6.86057 98.7183 6.92989C97.3781 7.09164 97.3087 7.11475 97.3087 7.71555C97.3087 8.29323 97.2163 8.36255 96.1071 8.5012C95.437 8.57052 93.9119 8.63984 92.7566 8.63984H90.6076V9.4486V10.2574H88.3662C87.1183 10.2574 85.547 10.3267 84.9 10.396C83.7447 10.5347 83.6753 10.604 83.6753 11.2048C83.6753 11.8287 83.6522 11.8287 81.9423 11.9904L80.2092 12.1522V12.9378V13.7235H77.6674H75.1256V14.5322V15.341H73.8085C73.069 15.341 71.9136 15.4103 71.2666 15.4796C70.065 15.6414 70.0419 15.6414 70.0419 16.4039V17.1896H68.4244H66.8069V17.9984V18.784L65.0276 18.8533L63.2252 18.9227L63.1559 19.6621C63.0866 20.3784 63.0635 20.3784 61.4691 20.5402L59.8747 20.7019V21.4876C59.8747 22.2501 59.8516 22.2732 58.9504 22.2732C58.0492 22.2732 58.0261 22.2963 58.0261 23.082V23.8677L56.3623 23.937L54.6755 24.0063L54.6062 24.7457C54.5368 25.4852 54.5368 25.4852 52.9193 25.6469L51.3249 25.8087V26.5712C51.3249 27.3338 51.3018 27.3569 50.4006 27.3569C49.4994 27.3569 49.4763 27.38 49.4763 28.1425V28.9282L47.8588 29.0899L46.2413 29.2517V30.0373C46.2413 30.7768 46.1951 30.823 45.4325 30.823C44.67 30.823 44.6237 30.8692 44.6237 31.6318C44.6237 32.4174 44.6006 32.4405 43.6994 32.4405C42.7983 32.4405 42.7752 32.4636 42.7752 33.2262C42.7752 33.9887 42.7289 34.0349 41.9202 34.1043C41.0883 34.1736 41.0421 34.2198 40.9728 35.0286C40.9034 35.8604 40.8572 35.9066 40.0947 35.9066C39.3552 35.9066 39.309 35.9529 39.309 36.6923V37.4779L37.7146 37.6397L36.1202 37.8014L35.9585 39.3959L35.7967 40.9903H35.011C34.2716 40.9903 34.2254 41.0365 34.2254 41.7759C34.2254 42.5385 34.1792 42.5847 33.3704 42.654C32.5385 42.7233 32.4923 42.7695 32.423 43.5783C32.3537 44.4102 32.3075 44.4564 31.5449 44.4564C30.7824 44.4564 30.7593 44.4795 30.7593 45.3807C30.7593 46.2819 30.7362 46.305 29.9505 46.305C29.188 46.305 29.1418 46.3512 29.1418 47.1137C29.1418 47.8763 29.0955 47.9225 28.3561 47.9225H27.5704L27.4087 49.6556L27.2469 51.3886H26.4613C25.7219 51.3886 25.6756 51.4348 25.6756 52.1974C25.6756 52.9599 25.6294 53.0061 24.89 53.0061H24.1043L23.9426 54.7392L23.7808 56.4723H22.9952H22.2095V58.2053V59.9384H21.4008H20.592L20.5689 61.14C20.5458 61.8101 20.5458 62.5495 20.5689 62.7575C20.6151 63.081 20.4534 63.1734 19.8063 63.1734H19.0207L18.8589 64.9065C18.6972 66.6164 18.6741 66.6395 18.0271 66.6395C17.5418 66.6395 17.357 66.7551 17.3338 67.0324C17.3107 67.2634 17.2414 68.7885 17.149 70.4523L17.0103 73.4562L16.2709 73.5256C15.5315 73.5949 15.5084 73.618 15.5084 74.704C15.5084 75.3279 15.439 76.4602 15.3697 77.2459C15.208 78.5861 15.1849 78.6554 14.5841 78.6554C14.0064 78.6554 13.9371 78.7478 13.7984 79.857C13.7291 80.5271 13.6598 83.9701 13.6598 87.4825V93.9063H12.851H12.0422V97.3725V100.839H12.851H13.6598V105.992C13.6598 108.834 13.7291 112.277 13.8215 113.64C13.9371 115.835 14.0064 116.113 14.353 116.02C15.0462 115.835 15.5546 116.297 15.5084 117.083C15.4853 117.499 15.4621 118.215 15.4853 118.678C15.5084 119.509 15.5315 119.556 16.294 119.556H17.1028L17.2183 122.375C17.2645 123.946 17.3338 125.494 17.3338 125.841C17.357 126.395 17.4494 126.488 18.0271 126.488C18.6972 126.488 18.6972 126.511 18.8589 128.082C19.0207 129.677 19.0207 129.7 19.737 129.769C20.4071 129.838 20.4765 129.931 20.5458 130.693C20.6151 131.525 20.6613 131.571 21.4239 131.571H22.2095V133.305V135.038H22.9952H23.7808L23.9426 136.655L24.1043 138.273H24.89C25.6525 138.273 25.6756 138.296 25.6756 139.197C25.6756 140.098 25.6987 140.121 26.4613 140.121H27.2238L27.3856 141.716C27.5473 143.333 27.5473 143.333 28.2868 143.402C28.9569 143.472 29.0262 143.541 29.0955 144.327C29.1649 145.136 29.2111 145.182 30.0198 145.251C30.8055 145.32 30.8748 145.39 30.9441 146.06C31.0135 146.707 31.1059 146.799 31.7529 146.869C32.423 146.938 32.4923 147.007 32.5617 147.793C32.631 148.625 32.6772 148.671 33.4397 148.671C34.1792 148.671 34.2254 148.717 34.2254 149.457C34.2254 150.219 34.2716 150.265 35.1035 150.335C35.9122 150.404 35.9585 150.45 36.0278 151.259C36.0971 152.091 36.1433 152.137 36.9059 152.137C37.6453 152.137 37.6915 152.183 37.6915 152.923V153.685L39.2859 153.847C40.9034 154.009 40.9034 154.009 40.9728 154.748C41.0421 155.418 41.1114 155.488 41.9202 155.557C42.7289 155.626 42.7752 155.673 42.7752 156.435C42.7752 157.198 42.7983 157.221 43.6994 157.221C44.6006 157.221 44.6237 157.244 44.6237 158.006V158.792L46.2182 158.954C47.8126 159.116 47.8357 159.116 47.905 159.832L47.9743 160.571L49.6612 160.641L51.3249 160.71V161.496C51.3249 162.235 51.3711 162.281 52.203 162.351C52.9655 162.42 53.058 162.489 53.1273 163.136C53.1966 163.829 53.2659 163.876 54.3982 164.014C55.0683 164.084 56.1544 164.153 56.8245 164.153H58.0261V164.962C58.0261 165.747 58.0492 165.771 58.9504 165.771C59.8516 165.771 59.8747 165.794 59.8747 166.579V167.388H61.2149C61.9312 167.388 63.0866 167.457 63.7567 167.527C64.8659 167.665 64.9583 167.735 64.9583 168.312C64.9583 168.89 65.0507 168.959 66.183 169.098C66.83 169.167 67.9854 169.237 68.7248 169.237H70.0419V170.045V170.854H71.775H73.5081V171.617V172.402L76.1192 172.541C77.5288 172.633 79.4698 172.703 80.3941 172.703H82.0578V173.512V174.32H86.3327H90.6076V175.083V175.868L94.4665 176.007C96.5693 176.1 99.2729 176.169 100.474 176.169H102.623V176.862V177.555H116.257H129.89V176.862V176.169H132.386C133.772 176.169 137.262 176.1 140.127 176.007L145.372 175.868V175.083V174.32H151.38H157.388V173.512V172.703H160.692C162.518 172.703 166.377 172.633 169.242 172.541L174.488 172.402V171.778V171.155L176.96 171.016C178.3 170.923 180.588 170.854 182.044 170.854H184.655V170.045V169.237H188.421C190.501 169.237 193.944 169.167 196.047 169.075L199.906 168.936V168.312V167.688L206.538 167.55C215.018 167.342 231.147 167.342 237.64 167.55L242.655 167.688V168.312V168.936L245.266 169.075C246.675 169.167 248.616 169.237 249.541 169.237H251.204V170.045V170.854H252.545C253.261 170.854 254.416 170.923 255.086 170.993C256.196 171.131 256.288 171.201 256.288 171.778C256.288 172.379 256.357 172.402 257.698 172.564C258.483 172.633 259.639 172.703 260.239 172.703H261.372V173.512V174.32H263.105H264.838V175.106C264.838 175.868 264.884 175.915 265.716 175.984C266.501 176.053 266.571 176.123 266.64 176.793C266.709 177.532 266.733 177.532 268.304 177.694L269.898 177.833L269.968 178.688C270.037 179.427 270.106 179.519 270.776 179.589C271.423 179.658 271.516 179.751 271.585 180.398C271.654 181.068 271.724 181.137 272.533 181.206C273.341 181.276 273.388 181.322 273.388 182.084C273.388 182.824 273.434 182.87 274.173 182.87H274.959L275.121 184.603L275.282 186.336H276.068C276.807 186.336 276.854 186.382 276.854 187.145C276.854 187.907 276.9 187.954 277.662 187.954H278.471V189.271C278.471 190.01 278.54 191.166 278.61 191.813C278.748 192.945 278.818 193.037 279.395 193.037H280.019L280.158 195.625C280.25 197.058 280.32 200.154 280.32 202.511C280.32 204.868 280.25 207.965 280.158 209.374L280.019 211.985H279.395C278.818 211.985 278.748 212.078 278.61 213.187C278.54 213.857 278.471 215.012 278.471 215.729V217.069H277.685C276.923 217.069 276.877 217.115 276.807 217.924C276.738 218.71 276.669 218.802 275.999 218.871C275.282 218.941 275.282 218.964 275.121 220.558L274.959 222.153H274.173C273.411 222.153 273.388 222.176 273.388 223.077C273.388 223.978 273.364 224.001 272.579 224.001C271.816 224.001 271.77 224.047 271.77 224.81C271.77 225.573 271.724 225.619 270.984 225.619H270.199L270.037 227.213L269.875 228.808L268.281 228.969L266.686 229.131V229.917C266.686 230.679 266.663 230.702 265.762 230.702C264.861 230.702 264.838 230.726 264.838 231.488C264.838 232.251 264.792 232.297 263.983 232.366C263.197 232.436 263.105 232.505 263.035 233.152C262.966 233.845 262.897 233.891 261.764 234.03C261.094 234.099 260.008 234.169 259.361 234.169H258.137V234.977C258.137 235.763 258.113 235.786 257.212 235.786C256.311 235.786 256.288 235.809 256.288 236.572C256.288 237.173 256.196 237.38 255.895 237.38C255.664 237.38 254.878 237.45 254.162 237.542C252.891 237.681 252.822 237.727 252.822 238.328C252.822 238.906 252.729 238.975 251.62 239.114C250.95 239.183 249.425 239.252 248.27 239.252H246.121V240.038V240.824L244.388 240.985C242.678 241.147 242.655 241.147 242.655 241.771C242.655 242.372 242.585 242.441 241.453 242.58C240.783 242.649 239.258 242.718 238.102 242.718H235.953V243.527V244.336L231.632 244.382L227.288 244.451L227.219 245.168L227.149 245.884L224.561 246.023C223.129 246.115 221.28 246.184 220.425 246.184H218.854V246.855C218.854 247.478 218.808 247.502 217.444 247.663C216.659 247.733 211.968 247.802 207.046 247.802H198.057V248.611V249.419H180.264H162.472V248.611V247.802H151.681C145.719 247.802 140.312 247.733 139.665 247.663C138.509 247.525 138.44 247.478 138.44 246.855V246.184H136.776C135.852 246.184 133.911 246.115 132.501 246.023L129.89 245.884V245.26C129.89 244.682 129.798 244.613 128.689 244.474C128.019 244.405 125.315 244.336 122.681 244.336H117.874V243.527V242.718H114.94C113.299 242.718 111.427 242.649 110.78 242.58C109.648 242.441 109.556 242.372 109.556 241.794C109.556 241.193 109.486 241.17 108.146 241.008C107.36 240.939 106.159 240.87 105.489 240.87H104.241V240.061V239.252H101.191C99.5039 239.252 97.5629 239.183 96.9159 239.114C95.7605 238.975 95.6912 238.929 95.6912 238.305C95.6912 237.658 95.645 237.635 94.5589 237.635C93.9582 237.635 92.8028 237.565 92.0171 237.496L90.6076 237.334V236.572V235.786H88.0658H85.5239V234.977V234.169L83.7447 234.122C79.9781 234.03 80.3248 234.099 80.2554 233.314C80.1861 232.597 80.1861 232.597 78.4531 232.436L76.7431 232.274V231.488V230.702H74.2013H71.6595V229.894V229.085H70.5272C69.9264 229.085 68.771 229.016 67.9854 228.946L66.5758 228.785V228.022V227.236H64.9583H63.3408V226.428V225.619H62.0237C61.2842 225.619 60.1288 225.549 59.4818 225.48C58.3265 225.342 58.2571 225.272 58.2571 224.695C58.2571 224.071 58.2109 224.047 56.5241 223.886L54.791 223.724V222.938V222.153H53.058H51.3249V221.367V220.581L49.5918 220.42C47.8819 220.258 47.8588 220.258 47.8588 219.611C47.8588 218.964 47.8357 218.964 46.1257 218.802L44.3927 218.64V217.878V217.115L42.7752 216.954C41.2038 216.792 41.1576 216.769 41.1576 216.145C41.1576 215.521 41.1345 215.498 39.4246 215.336L37.6915 215.174V214.389V213.603H35.9585H34.2254V212.794V211.985H31.6836H29.1418V212.794C29.1418 213.557 29.0955 213.603 28.3561 213.603H27.5704L27.4087 215.22L27.2469 216.838H26.4613C25.6987 216.838 25.6756 216.861 25.6756 217.762C25.6756 218.663 25.6525 218.687 24.89 218.687C24.1274 218.687 24.0812 218.733 24.0119 219.542C23.9426 220.327 23.8733 220.42 23.2031 220.489C22.4868 220.558 22.4868 220.581 22.3251 222.176L22.1633 223.77H21.3777C20.6151 223.77 20.592 223.793 20.592 224.695C20.592 225.596 20.5689 225.619 19.8063 225.619H19.0207L18.8589 227.213C18.6972 228.808 18.6972 228.831 17.9809 228.9L17.2414 228.969L17.1721 230.633L17.1028 232.297L16.2478 232.366C15.439 232.436 15.3928 232.482 15.3235 233.29C15.2542 234.122 15.208 234.169 14.4454 234.169C13.6829 234.169 13.6598 234.192 13.6598 235.093C13.6598 235.994 13.6367 236.017 12.851 236.017H12.0422V237.635V239.252H11.2566C10.494 239.252 10.4478 239.298 10.3785 240.107C10.3092 240.939 10.263 240.985 9.45421 241.055L8.57612 241.124V242.741V244.336H7.76736C6.98171 244.336 6.9586 244.359 6.9586 245.26C6.9586 246.161 6.93549 246.184 6.17295 246.184H5.3873L5.22554 247.802L5.06379 249.419H4.27814C3.51559 249.419 3.49248 249.443 3.49248 250.344C3.49248 251.245 3.46938 251.268 2.70683 251.268C1.94429 251.268 1.89807 251.314 1.82875 252.123C1.75943 252.909 1.6901 253.001 1.0431 253.07C0.372979 253.14 0.303657 253.209 0.165012 254.203C0.0956895 254.78 0.0263672 255.866 0.0263672 256.606V257.969H0.812021C1.57457 257.969 1.62078 258.015 1.6901 258.824C1.75943 259.656 1.80564 259.702 2.63751 259.772C3.44627 259.841 3.49248 259.887 3.49248 260.65V261.435H5.22554H6.9586V262.221V263.007L8.69166 263.168L10.4247 263.33V264.116V264.901H12.0422H13.6598V265.71V266.519H15C15.7163 266.519 16.8486 266.588 17.5187 266.658C18.651 266.796 18.7203 266.842 18.7896 267.536C18.8589 268.183 18.9514 268.252 19.737 268.321C20.5458 268.391 20.592 268.437 20.592 269.199V269.985H22.3251H24.0581V270.794V271.603H26.3458C29.1418 271.603 29.3266 271.649 29.188 272.504L29.0955 273.174L30.8517 273.336L32.6079 273.497V274.283V275.069H33.9481C34.6644 275.069 35.8198 275.138 36.4899 275.207C37.5991 275.346 37.6915 275.415 37.6915 275.993C37.6915 276.594 37.7608 276.617 39.1011 276.779C39.8867 276.848 41.0421 276.917 41.6429 276.917H42.7752V277.726V278.535H44.5082H46.2413V279.321V280.106L49.5918 280.268L52.9424 280.43V281.077C52.9424 281.724 52.9655 281.724 54.8603 281.909L56.7552 282.117L56.6858 282.856L56.6165 283.595L59.1121 283.665L61.6077 283.734L61.677 284.45L61.7464 285.167L64.3344 285.305C65.7671 285.398 67.6157 285.467 68.4937 285.467H70.0419V286.276V287.085H71.8443H73.6236V287.824V288.587L76.3965 288.725C77.9216 288.818 79.4467 288.887 79.8164 288.91C80.3479 288.933 80.4403 289.026 80.4403 289.626C80.4403 290.297 80.4634 290.32 81.665 290.343C82.312 290.366 84.5765 290.458 86.6793 290.528L90.492 290.666L90.5614 291.406L90.6307 292.168H93.1725C95.6219 292.168 95.6912 292.191 95.6912 292.677C95.6912 292.977 95.7836 293.324 95.8761 293.485C95.9916 293.67 97.8171 293.809 101.768 293.924L107.476 294.086V294.71C107.476 295.311 107.545 295.334 108.886 295.496C109.671 295.565 112.028 295.634 114.085 295.634H117.874V296.443V297.252H120.486C121.895 297.252 124.252 297.321 125.685 297.414L128.273 297.552V298.176V298.8L132.132 298.939C134.234 299.031 140.381 299.1 145.765 299.1H155.54V299.909V300.718H173.448H191.356V299.909V299.1H201.131C206.515 299.1 212.661 299.031 214.764 298.939L218.623 298.8V298.176C218.623 297.575 218.692 297.552 220.032 297.391C220.818 297.321 222.805 297.252 224.469 297.252H227.45L227.357 296.443L227.265 295.634H231.216C233.365 295.634 235.699 295.565 236.369 295.496C237.502 295.357 237.571 295.288 237.571 294.71V294.063L242.678 293.901L247.761 293.74L247.692 293L247.623 292.284L249.425 292.214L251.204 292.145V291.36V290.551H254.07C255.618 290.551 257.559 290.481 258.345 290.412C259.685 290.25 259.754 290.227 259.754 289.626C259.754 289.049 259.847 288.979 260.979 288.841C261.626 288.771 262.781 288.702 263.521 288.702H264.838V287.893V287.085H266.571H268.304V286.299V285.513L271.654 285.352L275.005 285.19V284.404V283.619H276.738H278.471V282.833V282.047L280.204 281.885C281.914 281.724 281.937 281.724 281.937 281.077C281.937 280.36 281.868 280.383 286.097 280.083C286.836 280.037 286.905 279.968 286.975 279.274C287.044 278.581 287.113 278.535 287.968 278.535C288.846 278.535 288.869 278.512 288.869 277.749V276.964L290.487 276.802C292.058 276.64 292.105 276.617 292.105 275.993C292.105 275.346 292.128 275.346 293.838 275.184L295.571 275.023V274.237C295.571 273.474 295.594 273.451 296.495 273.451C297.396 273.451 297.419 273.428 297.419 272.666V271.88L299.152 271.718L300.885 271.556V270.771V269.985H302.503H304.12V269.061C304.12 268.16 304.144 268.137 304.906 268.137C305.646 268.137 305.715 268.067 305.784 267.374C305.853 266.704 305.923 266.635 306.732 266.565C307.54 266.496 307.587 266.45 307.587 265.687V264.901H309.181H310.798L310.868 264.023C310.937 263.215 310.983 263.168 311.815 263.099C312.624 263.03 312.67 262.984 312.67 262.221C312.67 261.458 312.693 261.435 313.594 261.435C314.496 261.435 314.519 261.412 314.519 260.627C314.519 259.864 314.565 259.818 315.328 259.818C316.113 259.818 316.136 259.795 316.136 258.894C316.136 257.992 316.159 257.969 316.945 257.969C317.708 257.969 317.754 257.923 317.754 257.16C317.754 256.375 317.777 256.352 318.678 256.352C319.579 256.352 319.602 256.329 319.602 255.543C319.602 254.78 319.649 254.734 320.411 254.734C321.197 254.734 321.22 254.711 321.22 253.81C321.22 252.909 321.243 252.886 322.029 252.886C322.791 252.886 322.837 252.839 322.837 252.1C322.837 251.337 322.884 251.291 323.716 251.222C324.547 251.153 324.571 251.106 324.64 250.228C324.709 249.304 324.709 249.281 325.518 249.373C326.327 249.466 326.35 249.466 326.304 248.703C326.28 248.264 326.257 247.525 326.28 247.063C326.304 246.254 326.35 246.208 327.182 246.138C327.99 246.069 328.037 246.023 328.106 245.191C328.175 244.382 328.221 244.336 328.938 244.336H329.7L329.862 242.718C330.024 241.124 330.047 241.101 330.717 241.101C331.341 241.101 331.387 241.055 331.387 240.176C331.387 239.275 331.41 239.252 332.173 239.252H332.959L333.12 237.519L333.282 235.786H334.068H334.83L334.9 234.099L334.969 232.436L335.708 232.366L336.425 232.297L336.586 230.564L336.748 228.854H337.534H338.319V226.428V224.001H339.105H339.891L340.053 220.535L340.214 217.069H340.861C341.439 217.069 341.508 217 341.647 215.844C341.716 215.197 341.786 213.672 341.786 212.494V210.368H342.571H343.357L343.449 202.558C343.472 198.283 343.472 191.304 343.449 187.076L343.357 179.404H342.571H341.786V176.862V174.32H341H340.214L340.053 170.854L339.891 167.388H339.105H338.319V164.962V162.535H337.534H336.748L336.586 160.826L336.425 159.092L335.708 159.023L334.969 158.954L334.9 157.267L334.83 155.603H334.045C333.259 155.603 333.236 155.58 333.236 154.679C333.236 153.778 333.213 153.755 332.45 153.755H331.664L331.503 152.16C331.341 150.566 331.341 150.543 330.625 150.473C329.955 150.404 329.885 150.312 329.816 149.526C329.747 148.717 329.7 148.671 328.961 148.671C328.221 148.671 328.175 148.625 328.106 147.793C328.037 147.007 327.967 146.938 327.297 146.869C326.558 146.799 326.558 146.799 326.396 145.182L326.234 143.587H325.472C324.732 143.587 324.686 143.541 324.686 142.802C324.686 142.039 324.64 141.993 323.831 141.924C322.999 141.854 322.953 141.808 322.884 140.976C322.814 140.167 322.768 140.121 322.006 140.121C321.266 140.121 321.22 140.075 321.22 139.312C321.22 138.55 321.174 138.504 320.411 138.504C319.649 138.504 319.602 138.458 319.602 137.718V136.932L317.869 136.771L316.136 136.609V135.823C316.136 135.084 316.09 135.038 315.328 135.038C314.565 135.038 314.519 134.991 314.519 134.252C314.519 133.489 314.473 133.443 313.664 133.374C312.832 133.305 312.786 133.258 312.716 132.426L312.647 131.571H310.914H309.204V130.763C309.204 130 309.158 129.954 308.395 129.954C307.633 129.954 307.587 129.908 307.587 129.168V128.383L305.853 128.221L304.12 128.059V127.273V126.488H301.579H299.037V125.679C299.037 124.917 298.991 124.87 298.251 124.87C297.489 124.87 297.442 124.824 297.373 123.992L297.304 123.137L294.831 123.068L292.336 122.999V122.213V121.404H290.903C290.094 121.404 288.893 121.335 288.246 121.266C287.09 121.127 287.021 121.058 287.021 120.457C287.021 119.833 286.998 119.833 285.288 119.671L283.555 119.509V118.724V117.938H279.28H275.005V117.129V116.321H273.341C272.417 116.321 270.476 116.251 269.066 116.159L266.455 116.02V115.396C266.455 114.819 266.363 114.749 265.254 114.611C264.584 114.541 262.643 114.472 260.979 114.472H257.906V113.663V112.854H233.181C209.796 112.854 208.456 112.878 208.432 113.247C208.409 113.478 208.409 113.848 208.432 114.056C208.479 114.449 208.086 114.472 203.072 114.472C200.091 114.472 197.017 114.541 196.232 114.611C194.891 114.772 194.822 114.795 194.822 115.396V116.02L190.963 116.159C188.86 116.251 185.002 116.321 182.413 116.321H177.723V117.129V117.938H169.173H160.623V118.747V119.556H158.151C156.764 119.556 154.477 119.625 153.067 119.717L150.456 119.856V120.503V121.15L147.983 121.219C143.454 121.381 110.388 121.404 108.932 121.266C107.545 121.104 107.476 121.081 107.476 120.48V119.833L104.241 119.671L101.006 119.509V118.724V117.938H98.3486H95.6912V117.129V116.344L94.0275 116.274L92.3406 116.205L92.2713 115.466C92.202 114.749 92.1789 114.749 90.5845 114.588L88.9901 114.426V113.64C88.9901 112.878 88.9669 112.854 88.0658 112.854C87.1646 112.854 87.1415 112.831 87.1415 112.069V111.283L85.5239 111.121L83.9064 110.96V110.174C83.9064 109.411 83.8833 109.388 82.9821 109.388H82.0578V107.794V106.176L81.2028 106.107C80.371 106.038 80.3248 105.992 80.2554 105.16C80.1861 104.351 80.1399 104.305 79.3774 104.305H78.5917V102.572V100.839H77.7829H76.9742V98.2968V95.7549H76.1654H75.3567V91.4801V87.2052H76.0268C76.6507 87.2052 76.6969 87.1359 76.8355 85.9805C76.9049 85.3335 76.9742 83.8084 76.9742 82.6299V80.504H77.7829H78.5917V78.7941V77.061L79.4698 76.9917C80.2785 76.9224 80.3248 76.8761 80.3941 76.0443C80.4634 75.2355 80.5096 75.1893 81.2722 75.1893H82.0578V73.5949V71.9774L82.9359 71.908C83.7447 71.8387 83.7909 71.7925 83.8602 70.9606L83.9295 70.1057H85.5239H87.1183L87.1877 69.2276C87.257 68.4419 87.3263 68.3726 87.9964 68.3033C88.6434 68.234 88.7359 68.1415 88.8052 67.4945C88.8745 66.8244 88.9438 66.7551 89.7526 66.6858C90.5614 66.6164 90.6076 66.5702 90.6076 65.8308V65.0451L92.2944 64.9758L93.9582 64.9065L94.0275 64.167C94.0968 63.4507 94.1199 63.4507 95.7143 63.289L97.3087 63.1272V62.3416V61.5559H99.0418H100.775V60.7471V59.9384H102.023C102.693 59.9384 103.894 59.8691 104.68 59.7997C106.02 59.638 106.09 59.6149 106.09 59.0141C106.09 58.4364 106.182 58.3671 107.314 58.2284C107.961 58.1591 109.117 58.0898 109.856 58.0898H111.173V57.281V56.4723H114.131C115.748 56.4723 117.62 56.4029 118.29 56.3336C119.423 56.195 119.492 56.1488 119.492 55.5249V54.8547L121.41 54.8085C122.45 54.7854 123.559 54.7392 123.882 54.7161C124.206 54.693 125.685 54.6468 127.187 54.6468L129.89 54.6237V53.8149V53.0061H135.783H141.675V52.1974V51.3886H161.432H181.189V52.1974V53.0061H188.005H194.822V53.7918V54.5775L201.639 54.7392L208.456 54.901V55.548C208.456 56.1257 208.525 56.195 209.68 56.3336C210.327 56.4029 213.031 56.4723 215.688 56.4723H220.471V57.281V58.0898H222.528C223.637 58.0898 225.208 58.1591 225.994 58.2284C227.334 58.3902 227.404 58.4133 227.404 59.0141V59.638L229.876 59.7766C231.216 59.8691 233.458 59.9384 234.844 59.9384H237.34V60.7471V61.5559H240.806H244.272V62.3416V63.1041L245.682 63.2659C246.467 63.3352 247.623 63.4045 248.223 63.4045C249.31 63.4045 249.356 63.4276 249.356 64.0746C249.356 64.6985 249.402 64.7216 250.765 64.8834C251.551 64.9527 253.122 65.022 254.231 65.022H256.288V65.8308V66.6395H257.628C258.345 66.6395 259.5 66.7089 260.17 66.7782C261.279 66.9168 261.372 66.9862 261.372 67.5638C261.372 68.1646 261.441 68.1877 262.781 68.3495C263.567 68.4188 264.722 68.4881 265.323 68.4881H266.455V69.2969V70.1057H269.113H271.77V70.9144V71.7001L273.457 71.7694L275.121 71.8387L275.19 72.5551C275.259 73.2483 275.329 73.2945 276.461 73.4331C277.131 73.5025 278.263 73.5718 279.003 73.5718H280.32V74.3805V75.1893H284.456H288.592L288.754 73.4562L288.916 71.7232H289.701C290.441 71.7232 290.487 71.677 290.487 70.9144C290.487 70.1519 290.533 70.1057 291.296 70.1057H292.081L292.151 68.4188L292.22 66.7551L292.96 66.6858L293.676 66.6164L293.838 64.8834L293.999 63.1734H294.762H295.524L295.686 61.579C295.848 59.9846 295.848 59.9615 296.564 59.8922L297.304 59.8228L297.373 58.136L297.442 56.4723H298.228C299.014 56.4723 299.037 56.4492 299.037 55.548C299.037 54.6468 299.06 54.6237 299.822 54.6237H300.608L300.77 53.0061C300.932 51.4348 300.955 51.3886 301.579 51.3886C302.226 51.3886 302.226 51.3655 302.387 49.6556L302.549 47.9225H303.335H304.097L304.167 46.2357L304.236 44.5719L305.114 44.5026C305.946 44.4333 305.969 44.4102 306.015 43.4628C306.015 42.9313 306.015 42.215 305.992 41.8453C305.946 41.2676 306.015 41.2213 306.755 41.2213H307.587V39.4883V37.7552H308.372C309.135 37.7552 309.181 37.709 309.25 36.8771C309.32 36.0684 309.366 36.0222 310.198 35.9529L311.076 35.8835L311.006 32.4867L310.937 29.0899L310.082 29.0206C309.296 28.9513 309.204 28.882 309.204 28.3043C309.204 27.6804 309.135 27.6342 308.002 27.4955C307.332 27.4262 306.177 27.3569 305.461 27.3569H304.12V26.5481V25.7625L302.457 25.6931L300.77 25.6238L300.701 24.9075C300.631 24.2143 300.562 24.1681 299.43 24.0294C298.759 23.9601 297.627 23.8908 296.911 23.8908H295.571V23.082V22.2732H293.029H290.487V21.4876V20.725L289.077 20.5633C288.292 20.494 287.136 20.4246 286.513 20.4246C285.565 20.4246 285.38 20.3553 285.426 20.0087C285.542 18.7609 285.658 18.8071 282.053 18.8071H278.702V17.9984V17.2127L276.923 17.1434L275.121 17.0741L275.051 16.3577C274.982 15.6645 274.913 15.6183 273.78 15.4796C273.11 15.4103 271.608 15.341 270.453 15.341H268.304V14.5322V13.7235H264.838H261.372V12.9378V12.1522L258.044 11.9904L254.694 11.8287L254.624 11.1123C254.555 10.2805 255.04 10.3729 249.656 10.3036L246.121 10.2574V9.4486V8.63984H243.071C241.384 8.63984 239.443 8.57052 238.796 8.5012C237.663 8.36255 237.571 8.29323 237.571 7.71555C237.571 7.11475 237.502 7.09164 236.161 6.92989C235.376 6.86057 233.804 6.79125 232.695 6.79125H230.639V5.98249V5.17373L223.083 5.12751L215.503 5.05819L215.434 4.29564L215.365 3.5562H213.216C212.037 3.5562 209.334 3.48688 207.231 3.39445L203.372 3.25581V2.63191V2.00801L200.899 1.86936C199.559 1.77693 195.7 1.70761 192.35 1.70761H186.272V0.898848V0.0900872H163.142H139.988L140.127 0.898848Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tnni2a\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:301,intrinsicWidth:312,svg:'<svg width=\"312\" height=\"301\" viewBox=\"0 0 312 301\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M163.115 0.898848V1.70761H155.974C152.069 1.70761 148.21 1.77693 147.425 1.84625C146.085 2.00801 146.015 2.03111 146.015 2.63191V3.27892L140.932 3.44067L135.848 3.62553V4.38807V5.17373H129.956H124.063V5.98249V6.79125H122.815C122.145 6.79125 120.944 6.86057 120.158 6.92989C118.818 7.09164 118.748 7.11475 118.748 7.71555C118.748 8.29323 118.656 8.36255 117.547 8.5012C116.877 8.57052 115.352 8.63984 114.196 8.63984H112.047V9.4486V10.2343L109.459 10.3036L106.848 10.3729L106.779 11.0892C106.709 11.7825 106.64 11.8287 105.508 11.9673C104.838 12.0366 103.752 12.106 103.105 12.106H101.88V12.9147V13.7235H99.2226H96.5652V14.5322V15.341H95.3636C94.6935 15.341 93.6075 15.4103 92.9374 15.4796C91.8051 15.6183 91.7358 15.6645 91.6665 16.3577C91.5971 17.0278 91.5278 17.0741 90.6266 17.1434C89.6561 17.2127 89.633 17.2358 89.633 17.9984V18.784L87.1605 18.8533L84.6649 18.9227L84.5956 19.6621C84.5263 20.3784 84.5031 20.3784 82.9087 20.5402L81.3143 20.7019V21.4876V22.2732H79.5813H77.8482V23.0589V23.8445L76.1151 24.0063L74.3821 24.1681V24.9537C74.3821 25.7162 74.359 25.7394 73.4578 25.7394C72.5566 25.7394 72.5335 25.7625 72.5335 26.5481V27.3569H70.916H69.2984V28.1425V28.9282L67.5654 29.0899L65.8323 29.2517V30.0373C65.8323 30.7999 65.8092 30.823 64.908 30.823C64.0068 30.823 63.9837 30.8461 63.9837 31.6318C63.9837 32.4174 63.9606 32.4405 63.1288 32.4636C60.818 32.5098 60.8642 32.5098 60.7949 33.2955C60.7256 33.9887 60.6563 34.058 59.9168 34.058C59.1081 34.058 59.0618 34.1274 58.8077 35.2596C58.669 35.8835 58.5997 35.9066 57.167 35.9066H55.6882L55.6188 36.7616C55.5495 37.5935 55.5033 37.6397 54.6945 37.709C53.8627 37.7783 53.8165 37.8246 53.8165 38.5871C53.8165 39.3265 53.7702 39.3728 53.0077 39.3728C52.2451 39.3728 52.1989 39.419 52.1989 40.1584C52.1989 40.921 52.1527 40.9672 51.344 41.0365C50.5583 41.1058 50.4659 41.1751 50.3965 41.8453C50.3272 42.5616 50.3041 42.5616 48.7097 42.7233L47.1153 42.8851V43.6707C47.1153 44.4102 47.0691 44.4564 46.3296 44.4564C45.5671 44.4564 45.5209 44.5026 45.4516 45.3114C45.3822 46.1432 45.336 46.1895 44.5273 46.2588C43.6954 46.3281 43.6492 46.3743 43.6492 47.1369C43.6492 47.8763 43.603 47.9225 42.8404 47.9225C42.0779 47.9225 42.0317 47.9687 42.0317 48.7313C42.0317 49.4938 41.9854 49.54 41.246 49.54C40.4835 49.54 40.4372 49.5862 40.3679 50.395C40.2986 51.2269 40.2524 51.2731 39.4436 51.3424C38.6117 51.4117 38.5655 51.4579 38.5655 52.2205C38.5655 52.983 38.5424 53.0061 37.6412 53.0061H36.7169V53.9304C36.7169 54.8316 36.6938 54.8547 35.9082 54.8547C35.1456 54.8547 35.0994 54.901 35.0994 55.6635C35.0994 56.4261 35.0532 56.4723 34.2907 56.4723C33.5281 56.4723 33.4819 56.5185 33.4819 57.281C33.4819 58.0436 33.4357 58.0898 32.6962 58.0898H31.9106L31.7488 59.8228L31.5871 61.5559H30.8014C30.062 61.5559 30.0158 61.6021 30.0158 62.3647C30.0158 63.1272 29.9696 63.1734 29.2301 63.1734C28.4676 63.1734 28.4214 63.2196 28.352 64.0284C28.2827 64.8603 28.2365 64.9065 27.4277 64.9758L26.5497 65.0451V66.6395V68.234L25.6947 68.3033C24.8628 68.3726 24.8166 68.4188 24.7473 69.2276C24.678 70.0594 24.6317 70.1057 23.8692 70.1057C23.1067 70.1057 23.0835 70.1288 23.0835 71.03C23.0835 71.9312 23.0604 71.9543 22.2748 71.9543H21.466V73.5718V75.1893H20.6804H19.8947L19.733 76.9224L19.5712 78.6554H18.7856H17.9999V80.3885V82.1215H17.2143C16.4517 82.1215 16.4055 82.1678 16.3362 82.9765C16.2668 83.7622 16.1975 83.8546 15.5505 83.9239C14.8573 83.9932 14.8111 84.0626 14.6724 85.1948C14.6031 85.8649 14.5338 86.951 14.5338 87.598V88.8227H13.725H12.9163V90.5558V92.2888H12.1306H11.345L11.1832 94.0219L11.0215 95.7549H10.2358H9.45015V98.2968V100.839H8.64139H7.83263V103.38V105.922H7.04697H6.28443L6.12267 107.332C6.05335 108.117 5.98403 109.273 5.98403 109.874V111.006H5.17527H4.36651V116.089V121.173H3.55775H2.74899V122.952C2.74899 123.946 2.67966 125.933 2.58723 127.343L2.44859 129.954H1.82469H1.20079L1.06214 132.426C0.969713 133.767 0.900391 141.092 0.900391 148.671C0.900391 156.25 0.969713 163.575 1.06214 164.916L1.20079 167.388H1.82469H2.44859L2.58723 169.976C2.67966 171.409 2.74899 173.766 2.74899 175.175V177.786H3.55775H4.36651V182.87V187.954H5.15216H5.93781L6.09957 189.687C6.26132 191.397 6.26132 191.42 6.88522 191.42C7.48601 191.42 7.55534 191.489 7.69398 192.621C7.7633 193.291 7.83263 194.817 7.83263 195.972V198.121H8.64139H9.45015V199.554C9.45015 200.362 9.51947 201.564 9.58879 202.211C9.72744 203.366 9.79676 203.436 10.3744 203.436C10.9983 203.436 11.0215 203.482 11.1832 205.053L11.345 206.671H12.1306H12.9163V209.213V211.754H13.7019H14.4876L14.6493 213.487L14.8111 215.22H15.5967C16.3593 215.22 16.3824 215.244 16.3824 216.145C16.3824 217.046 16.4055 217.069 17.1911 217.069H17.9999V218.386C17.9999 219.126 18.0692 220.281 18.1385 220.928C18.3003 222.13 18.3003 222.153 19.0628 222.153C19.8254 222.153 19.8485 222.176 19.8485 223.077C19.8485 223.978 19.8716 224.001 20.6573 224.001H21.466V225.619V227.236H22.2517C23.0142 227.236 23.0604 227.283 23.1298 228.091C23.1991 228.877 23.2684 228.969 23.9385 229.039C24.6548 229.108 24.6548 229.131 24.8166 230.726L24.9784 232.32H25.764C26.5266 232.32 26.5497 232.343 26.5497 233.244C26.5497 234.145 26.5728 234.169 27.3353 234.169H28.121L28.2827 235.786L28.4445 237.404H29.2301C29.9927 237.404 30.0158 237.427 30.0158 238.328V239.252H30.9401C31.8413 239.252 31.8644 239.275 31.8644 240.038C31.8644 240.777 31.9337 240.847 32.6269 240.916C33.297 240.985 33.3664 241.055 33.4357 241.84C33.505 242.672 33.5512 242.718 34.3138 242.718C35.0532 242.718 35.0994 242.765 35.0994 243.527C35.0994 244.29 35.1456 244.336 35.8851 244.336H36.6707L36.8325 245.93L36.9942 247.548L38.5655 247.71L40.1368 247.848L40.2986 249.443L40.4603 251.037H41.246C42.0085 251.037 42.0317 251.06 42.0317 251.961V252.886H43.6261H45.2436L45.3129 253.741C45.3822 254.549 45.4516 254.619 46.1217 254.688C46.7687 254.757 46.8611 254.85 46.9304 255.497C46.9998 256.167 47.0691 256.236 47.8778 256.305C48.6866 256.375 48.7328 256.421 48.7328 257.184C48.7328 257.946 48.7559 257.969 49.6571 257.969C50.5583 257.969 50.5814 257.992 50.5814 258.778C50.5814 259.541 50.6276 259.587 51.3902 259.587C52.1758 259.587 52.1989 259.61 52.1989 260.511V261.435H53.932H55.665V262.36C55.665 263.261 55.6882 263.284 56.4738 263.284C57.2364 263.284 57.2826 263.33 57.2826 264.093C57.2826 264.878 57.3057 264.901 58.2069 264.901C59.1081 264.901 59.1312 264.925 59.1312 265.687V266.473L60.7487 266.635C62.3431 266.796 62.3662 266.819 62.3662 267.443C62.3662 268.044 62.4586 268.113 63.2443 268.183C64.0531 268.252 64.0993 268.298 64.1686 269.107L64.2379 269.985H65.8554H67.4498V270.771V271.556L69.1598 271.718L70.8929 271.88L70.9622 272.596C71.0315 273.266 71.1008 273.336 71.9096 273.405C72.7183 273.474 72.7646 273.521 72.7646 274.26V275.046L74.4514 275.115L76.1151 275.184L76.1845 275.924L76.2538 276.64L77.9868 276.802L79.6968 276.964V277.749V278.535H81.3143H82.9318V279.344C82.9318 280.129 82.9549 280.152 83.8561 280.175C84.3645 280.199 84.896 280.245 85.0115 280.268C85.1502 280.291 85.8665 280.337 86.6059 280.36L87.9924 280.383L88.0617 281.123L88.131 281.885L89.8179 281.955L91.4816 282.024V282.787V283.572L93.2147 283.734C94.9477 283.896 94.9477 283.896 94.9477 284.566C94.9477 285.213 94.9939 285.236 96.08 285.236C96.6808 285.236 97.8361 285.305 98.6218 285.375L100.031 285.536V286.299V287.085H101.764H103.497V287.893V288.702H104.838C105.554 288.702 106.709 288.771 107.38 288.841C108.489 288.979 108.581 289.049 108.581 289.626C108.581 290.227 108.65 290.25 109.991 290.412C110.776 290.481 112.348 290.551 113.457 290.551H115.513V291.36V292.168H118.055H120.597V292.977V293.786H122.284C123.185 293.786 125.126 293.855 126.559 293.948L129.147 294.086V294.71C129.147 295.288 129.239 295.357 130.371 295.496C131.018 295.565 133.306 295.634 135.455 295.634H139.314V296.443V297.252H141.116C142.087 297.252 144.074 297.321 145.507 297.414L148.095 297.552V298.176V298.8L151.746 298.939C153.733 299.031 160.18 299.1 166.072 299.1H176.748V299.909V300.718H187.955H199.162V299.909V299.1H208.128C213.073 299.1 218.85 299.031 220.953 298.939L224.812 298.8V298.176V297.552L227.284 297.414C228.624 297.321 230.542 297.252 231.559 297.252H233.361V296.443V295.634H237.636C239.993 295.634 241.911 295.542 241.911 295.45C241.911 295.357 242.281 295.311 242.72 295.357C243.482 295.45 243.529 295.426 243.529 294.779V294.086L246.14 293.948C247.549 293.855 249.49 293.786 250.415 293.786H252.078V292.977V292.168H254.62H257.162V291.36V290.551H259.219C260.328 290.551 261.899 290.481 262.685 290.412C264.025 290.25 264.094 290.227 264.094 289.626C264.094 289.026 264.164 289.003 265.504 288.841C266.289 288.771 267.445 288.702 268.046 288.702H269.178V287.893V287.085H270.911H272.644V286.299V285.513L275.971 285.352L279.322 285.19L279.391 284.45L279.461 283.734L281.263 283.665L283.042 283.595V282.81V282.001H284.66C286.37 282.001 286.462 281.932 286.301 280.661C286.277 280.476 286.624 280.383 287.387 280.383C288.01 280.383 289.166 280.314 289.951 280.245L291.361 280.083V279.321V278.535H293.094H294.827V277.749V276.964L296.56 276.802C298.27 276.64 298.293 276.617 298.293 275.993C298.293 275.346 298.316 275.346 300.026 275.184L301.759 275.023V274.26V273.497L303.377 273.336C304.948 273.174 304.994 273.151 304.994 272.527C304.994 271.88 305.018 271.88 306.727 271.718L308.461 271.556V270.771V269.985L309.916 269.962C310.702 269.939 311.418 269.939 311.488 269.939C311.765 269.985 311.973 266.519 311.811 264.901C311.649 263.33 311.649 263.307 310.933 263.238C310.263 263.168 310.194 263.076 310.124 262.29C310.055 261.482 310.009 261.435 309.246 261.435C308.484 261.435 308.461 261.412 308.461 260.511C308.461 259.61 308.437 259.587 307.652 259.587H306.843V257.992V256.375L305.988 256.305C305.156 256.236 305.11 256.19 305.041 255.358C304.971 254.549 304.925 254.503 304.186 254.503H303.4L303.331 252.816L303.261 251.153L302.522 251.083C301.806 251.014 301.806 250.991 301.644 249.396L301.482 247.802H300.696C299.934 247.802 299.911 247.779 299.911 246.878C299.911 245.976 299.888 245.953 299.102 245.953H298.293V244.336V242.718H297.508H296.722L296.56 240.985L296.398 239.252H295.613C294.873 239.252 294.827 239.206 294.827 238.443C294.827 237.635 294.596 237.473 293.533 237.612C293.371 237.635 293.21 236.988 293.094 235.902L292.932 234.169H292.147C291.384 234.169 291.361 234.145 291.361 233.244C291.361 232.343 291.338 232.32 290.575 232.32H289.79L289.628 230.702C289.466 229.131 289.443 229.085 288.819 229.085C288.172 229.085 288.172 229.062 288.01 227.352L287.849 225.619H283.712H279.576V226.428C279.576 227.213 279.553 227.236 278.652 227.236C277.751 227.236 277.728 227.259 277.728 228.022V228.808L275.995 228.969L274.262 229.131V229.917V230.702H271.72H269.178V231.488V232.274L267.583 232.436C265.989 232.597 265.966 232.597 265.897 233.314L265.827 234.053L263.355 234.122L260.859 234.192V234.977V235.786H259.011H257.162V236.572C257.162 237.334 257.139 237.334 255.96 237.496C255.29 237.565 254.204 237.635 253.534 237.635C252.356 237.635 252.333 237.635 252.263 238.374L252.194 239.137L248.797 239.206L245.377 239.275V240.038V240.824L243.529 240.985C241.703 241.147 241.68 241.147 241.68 241.794C241.68 242.372 241.611 242.441 240.478 242.58C239.808 242.649 238.283 242.718 237.128 242.718H234.979V243.527V244.336H231.12C228.971 244.336 226.683 244.405 226.036 244.474C224.904 244.613 224.812 244.682 224.812 245.26V245.884L222.224 246.023C220.791 246.115 218.85 246.184 217.949 246.184H216.262V246.855C216.262 247.478 216.193 247.525 215.06 247.663C214.39 247.733 209.399 247.802 203.969 247.802H194.079V248.611V249.419H188.88H183.68V248.611V247.802H173.005C167.112 247.802 161.751 247.733 161.104 247.663C159.949 247.525 159.88 247.478 159.88 246.855V246.184H158.216C157.292 246.184 155.351 246.115 153.941 246.023L151.33 245.884V245.098V244.336H147.794H144.259L144.351 243.527L144.444 242.718H142.295C141.093 242.718 139.568 242.649 138.921 242.58C137.789 242.441 137.696 242.372 137.696 241.794C137.696 241.193 137.627 241.17 136.287 241.008C135.501 240.939 134.346 240.87 133.745 240.87H132.613V240.061V239.275L130.025 239.206L127.414 239.137L127.344 238.397C127.275 237.681 127.252 237.681 125.681 237.519C124.109 237.357 124.086 237.357 124.017 236.641L123.948 235.902L122.284 235.832L120.597 235.763V234.977V234.169H119.28C118.54 234.169 117.408 234.099 116.738 234.03C115.606 233.891 115.536 233.845 115.467 233.152C115.398 232.505 115.305 232.436 114.543 232.366C113.711 232.297 113.665 232.251 113.665 231.488V230.702H112.047H110.43V229.917V229.131L108.72 228.969L106.987 228.808L106.917 228.091C106.848 227.421 106.779 227.352 105.993 227.283C105.161 227.213 105.115 227.167 105.115 226.451V225.688L103.521 225.526C101.903 225.365 101.903 225.365 101.834 224.625C101.764 223.955 101.695 223.886 100.909 223.816C100.078 223.747 100.031 223.701 100.031 222.938C100.031 222.176 100.008 222.153 99.1071 222.153C98.2059 222.153 98.1828 222.13 98.1828 221.367V220.581L96.5652 220.42L94.9477 220.258V219.472C94.9477 218.733 94.9015 218.687 94.139 218.687C93.3764 218.687 93.3302 218.64 93.3302 217.878C93.3302 217.092 93.3071 217.069 92.4059 217.069H91.4816V216.145C91.4816 215.244 91.4585 215.22 90.6728 215.22C89.9103 215.22 89.8641 215.174 89.8641 214.412C89.8641 213.626 89.841 213.603 88.9398 213.603H88.0155V212.679C88.0155 211.777 87.9924 211.754 87.2067 211.754C86.4442 211.754 86.398 211.708 86.398 210.946C86.398 210.183 86.3517 210.137 85.5892 210.137C84.8267 210.137 84.7804 210.091 84.7804 209.351C84.7804 208.589 84.7342 208.542 83.9255 208.473L83.0474 208.404L82.9781 206.717L82.9087 205.053H82.1231C81.3605 205.053 81.3143 205.007 81.3143 204.268C81.3143 203.505 81.2681 203.459 80.4593 203.389C79.6275 203.32 79.5813 203.274 79.5119 202.442C79.4426 201.633 79.3964 201.587 78.6339 201.587H77.8482V199.854V198.121H77.0394C76.2769 198.121 76.2307 198.075 76.2307 197.312C76.2307 196.55 76.1845 196.503 75.445 196.503H74.6594L74.4976 194.77L74.3359 193.037H73.5502H72.7646V191.697C72.7646 190.981 72.6952 189.825 72.6259 189.155C72.4642 187.977 72.4642 187.954 71.7016 187.954C70.9391 187.954 70.916 187.931 70.916 187.029C70.916 186.128 70.8929 186.105 70.1072 186.105H69.2984V183.563V181.021H68.4897H67.704L67.6347 178.526L67.5654 176.053L66.8491 175.984C66.1558 175.915 66.1096 175.845 65.971 174.713C65.9016 174.043 65.8323 172.541 65.8323 171.363V169.237H65.0236H64.2148L64.1917 163.159C64.1917 159.832 64.1455 156.782 64.1224 156.412C64.0993 156.019 64.0531 154.91 64.0299 153.916L63.9837 152.137H63.2905H62.5973V148.671V145.205H63.2443H63.9144L64.0531 141.554C64.1455 139.567 64.2148 135.708 64.2148 133.004V128.105H65.0236H65.8323V125.564V123.022H66.5949H67.3805L67.5423 120.526C67.6578 119.163 67.704 117.661 67.704 117.176C67.6578 116.344 67.6809 116.321 68.4897 116.321H69.2984V113.779V111.237H70.1072C70.8929 111.237 70.916 111.214 70.916 110.313C70.916 109.411 70.9391 109.388 71.7016 109.388H72.4873L72.649 107.655L72.8108 105.922H73.5964H74.359L74.4283 104.235L74.4976 102.572L75.2371 102.502C75.9534 102.433 75.9534 102.41 76.1151 100.815L76.2769 99.221H77.0625C77.8251 99.221 77.8482 99.1979 77.8482 98.2968C77.8482 97.3956 77.8713 97.3725 78.6339 97.3725H79.4195L79.5813 95.7549L79.743 94.1374H80.5287C81.2912 94.1374 81.3143 94.1143 81.3143 93.2131C81.3143 92.3119 81.3374 92.2888 82.1 92.2888C82.8625 92.2888 82.9087 92.2426 82.9781 91.4107C83.0474 90.6251 83.1167 90.5558 83.8099 90.4864C84.48 90.4171 84.5494 90.3478 84.5494 89.6084C84.5494 88.8458 84.5725 88.8227 85.4737 88.8227C86.3748 88.8227 86.398 88.7996 86.398 88.0139C86.398 87.2514 86.4442 87.2052 87.1836 87.2052C87.9462 87.2052 87.9924 87.159 88.0617 86.3271C88.131 85.5414 88.2003 85.4721 88.8936 85.4028C89.425 85.3566 89.633 85.2179 89.6561 84.8713C89.6792 84.6402 89.7023 84.2936 89.7254 84.1319C89.7254 83.9932 90.1414 83.8315 90.6266 83.7853C91.4354 83.716 91.4816 83.6697 91.4816 82.9072C91.4816 82.1678 91.5278 82.1215 92.2672 82.1215C93.0298 82.1215 93.076 82.0753 93.1453 81.2435C93.2147 80.4347 93.2609 80.3885 94.0927 80.3192C94.9015 80.2498 94.9477 80.2036 94.9477 79.4411C94.9477 78.6785 94.9708 78.6554 95.872 78.6554C96.7732 78.6554 96.7963 78.6323 96.7963 77.8698V77.0841L98.4138 76.9224L100.031 76.7606V75.975C100.031 75.2124 100.054 75.1893 100.956 75.1893C101.857 75.1893 101.88 75.1662 101.88 74.3805V73.5718H103.474H105.092L105.161 72.6937C105.231 71.8849 105.277 71.8387 106.109 71.7694C106.917 71.7001 106.964 71.6539 106.964 70.8913V70.1057H108.697H110.43V69.32V68.5344L112.024 68.3726C113.619 68.2109 113.642 68.2109 113.711 67.4945L113.78 66.7551L115.467 66.6858L117.131 66.6164V65.8308V65.022H118.864H120.597V64.2364C120.597 63.4738 120.62 63.4738 121.822 63.3121C122.469 63.2427 123.624 63.1734 124.363 63.1734H125.681V62.3647V61.5559H127.414H129.147V60.7471V59.9384H131.296C132.451 59.9384 133.976 59.8691 134.646 59.7997C135.755 59.6611 135.848 59.5918 135.848 59.0141C135.848 58.4364 135.94 58.3671 137.073 58.2284C137.72 58.1591 138.875 58.0898 139.614 58.0898H140.932V57.281V56.4723H144.005C145.669 56.4723 147.61 56.4029 148.28 56.3336C149.412 56.195 149.481 56.1257 149.481 55.548V54.901L154.68 54.7392L159.88 54.5775V53.7918V53.0061H166.696H173.513V52.1974V51.3886H186.338H199.162V52.1974V53.0061H205.979H212.796V53.7687V54.5543L216.655 54.693C218.757 54.7854 221.415 54.8547 222.547 54.8547H224.581V55.5249C224.581 56.1488 224.627 56.1719 226.036 56.3105C226.822 56.4029 229.156 56.4723 231.235 56.4954L234.979 56.5185V57.3041V58.0898H236.319C237.035 58.0898 238.191 58.1591 238.861 58.2284C239.97 58.3671 240.063 58.4364 240.063 59.0141C240.063 59.6149 240.132 59.638 241.472 59.7997C242.258 59.8691 243.829 59.9384 244.938 59.9384H246.995V60.7471V61.5559H249.537H252.078V62.3647V63.1734H253.811H255.544V63.9591C255.544 64.7216 255.568 64.7216 256.769 64.8834C257.416 64.9527 258.941 65.022 260.12 65.022H262.246V65.8077V66.5933L263.956 66.7551L265.689 66.9168L265.758 67.6332L265.827 68.3726L267.514 68.4419L269.178 68.5112V69.2969V70.1057H270.911H272.644V70.9144V71.7232H274.377H276.11V70.9144V70.1057H277.728H279.322L279.391 68.4188L279.461 66.7551L280.2 66.6858C280.916 66.6164 280.916 66.5933 281.078 64.9989L281.24 63.4045H282.026C282.788 63.4045 282.811 63.3814 282.811 62.4802C282.811 61.579 282.834 61.5559 283.597 61.5559H284.383L284.544 59.8228L284.706 58.0898H285.492C286.231 58.0898 286.277 58.0436 286.277 57.281C286.277 56.5185 286.324 56.4723 287.063 56.4723H287.849L288.01 54.7392C288.172 53.0293 288.172 53.0061 288.819 53.0061C289.466 53.0061 289.466 52.983 289.628 51.2731L289.79 49.54H290.575C291.315 49.54 291.361 49.4938 291.361 48.7313C291.361 47.9687 291.407 47.9225 292.147 47.9225H292.932L293.094 46.1895L293.256 44.4564H294.042H294.827V42.862V41.2445L295.705 41.1751C296.514 41.1058 296.56 41.0596 296.63 40.2508C296.699 39.4883 296.768 39.3959 297.438 39.3265L298.178 39.2572L298.247 37.5704L298.316 35.9066H299.102C299.865 35.9066 299.911 35.8604 299.911 35.0979C299.911 34.3353 299.957 34.2891 300.696 34.2891H301.482L301.644 32.3712C301.875 29.5059 301.806 29.113 300.904 29.0206C300.257 28.9513 300.165 28.8589 300.096 28.2119C300.026 27.5186 299.957 27.4724 299.056 27.4031C298.085 27.3338 298.062 27.3107 298.062 26.525V25.7394H296.445H294.827V24.9537V24.1681L293.094 24.0063L291.361 23.8445V23.0589V22.2732H289.628H287.895V21.4876V20.7019L286.162 20.5402C284.475 20.3784 284.429 20.3553 284.429 19.7314C284.429 19.1537 284.336 19.0844 283.366 18.9458C282.765 18.8764 281.633 18.8071 280.824 18.8071H279.345V17.9984V17.2127L277.681 17.1434L275.995 17.0741L275.925 16.3577C275.856 15.6645 275.787 15.6183 274.654 15.4796C273.984 15.4103 272.852 15.341 272.136 15.341H270.795V14.5322V13.7235H267.445H264.094V12.9378V12.1522L262.361 11.9904C260.651 11.8287 260.628 11.8287 260.628 11.2048C260.628 10.604 260.559 10.5347 259.427 10.396C258.756 10.3267 257.185 10.2574 255.96 10.2574H253.696V9.4486V8.66295L250.299 8.59363L246.879 8.52431L246.81 7.80798L246.741 7.06854L243.39 6.90679L240.063 6.74503V5.95938V5.17373H234.17H228.278V4.41118V3.62553L222.917 3.46377C219.959 3.34824 217.255 3.27892 216.909 3.30202C216.354 3.32513 216.262 3.25581 216.262 2.67812C216.262 2.03111 216.216 2.00801 214.852 1.84625C214.067 1.77693 210.208 1.70761 206.303 1.70761H199.162V0.898848V0.0900872H181.139H163.115V0.898848Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fkjgi0\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:293,intrinsicWidth:348,svg:'<svg width=\"348\" height=\"293\" viewBox=\"0 0 348 293\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M198.969 0.810553C198.877 0.92609 198.877 1.29581 198.946 1.61931L199.085 2.17389H169.045H139.006V2.98265C139.006 3.7452 138.959 3.79141 138.197 3.79141H137.388V5.52447V7.25753H136.602H135.817L135.655 8.99059L135.493 10.7236H134.708C133.945 10.7236 133.922 10.7468 133.922 11.6479C133.922 12.295 133.83 12.5722 133.598 12.5722C133.414 12.5722 133.206 12.7109 133.159 12.8495C133.067 13.0806 133.021 13.0806 133.021 12.8495C132.998 12.7109 132.836 12.5722 132.651 12.5722C132.397 12.5722 132.304 13.0575 132.258 15.0447L132.189 17.5403L131.449 17.6097C130.733 17.679 130.733 17.7021 130.571 19.2965L130.41 20.8909H129.624H128.838V22.624V24.357H128.03H127.244L127.175 26.0208L127.105 27.7076L126.366 27.7769L125.65 27.8463L125.488 29.5793L125.326 31.2893H124.54H123.755V33.0223V34.7554H122.946H122.137V35.957C122.137 36.6271 122.068 37.7363 121.999 38.3833C121.837 39.5849 121.837 39.608 121.074 39.608C120.312 39.608 120.289 39.6311 120.289 40.5323C120.289 41.4334 120.265 41.4566 119.48 41.4566H118.671V42.7737C118.671 43.5131 118.602 44.6685 118.532 45.3155C118.394 46.4709 118.348 46.5402 117.724 46.5402C117.146 46.5402 117.077 46.6326 117.007 47.3952C116.938 48.227 116.892 48.2733 116.083 48.3426L115.205 48.4119V50.145V51.8549H114.396H113.587V53.0565C113.587 53.7266 113.518 54.8127 113.449 55.4828C113.31 56.615 113.264 56.6844 112.571 56.7537C111.924 56.823 111.854 56.9154 111.785 57.678C111.716 58.5099 111.669 58.5561 110.907 58.5561H110.121V59.8732C110.121 60.6126 110.052 61.768 109.983 62.415C109.844 63.5704 109.775 63.6397 109.174 63.6397C108.55 63.6397 108.55 63.6628 108.388 65.3728L108.226 67.1058H107.441H106.655V68.7233V70.3409H105.87H105.084L104.922 72.1895C104.76 74.015 104.76 74.0381 104.113 74.0381C103.466 74.0381 103.466 74.0612 103.305 75.7711L103.143 77.5042H102.38H101.618L101.456 79.1217C101.294 80.693 101.271 80.7392 100.647 80.7392C100.07 80.7392 100 80.8085 99.8616 81.9408C99.7923 82.6109 99.7229 83.7663 99.7229 84.4826V85.8229H98.9142C98.1285 85.8229 98.1054 85.846 98.1054 86.7472C98.1054 87.6483 98.0823 87.6715 97.3198 87.6715H96.5341L96.3724 89.289C96.2106 90.8603 96.1875 90.9065 95.5636 90.9065C94.9628 90.9065 94.9397 90.9758 94.7779 92.316C94.7086 93.1017 94.6393 94.2571 94.6393 94.8579V95.9901H93.8305C93.0449 95.9901 93.0218 96.0132 93.0218 96.9144C93.0218 97.8156 92.9987 97.8387 92.2361 97.8387H91.4736L91.3118 99.2483C91.2425 100.034 91.1732 101.189 91.1732 101.79V102.922H90.3644H89.5557V104.655V106.388H88.77H87.9844L87.8226 107.983C87.6608 109.577 87.6608 109.6 86.9445 109.67L86.2051 109.739L86.1358 111.518L86.0664 113.321H85.2808H84.472V114.938V116.556H83.6864H82.9007L82.739 118.289L82.5772 120.022H81.7916H81.0059V121.755V123.488H80.2202H79.4346L79.2728 125.221L79.1111 126.954H78.3254H77.5398V128.572V130.189H76.731H75.9223V132.038V133.886H75.1366H74.351L74.1892 135.504L74.0275 137.121H73.2418H72.4561V138.854V140.588H71.6474H70.8386V141.905C70.8386 142.644 70.7693 143.799 70.7 144.446C70.5382 145.648 70.5382 145.671 69.7757 145.671C69.0131 145.671 68.99 145.694 68.99 146.595C68.99 147.497 68.9669 147.52 68.1813 147.52H67.3725V148.883C67.3725 149.623 67.3032 150.709 67.2339 151.309C67.0952 152.28 67.0259 152.372 66.4482 152.372C65.8243 152.372 65.8012 152.419 65.6394 154.105L65.4777 155.838H64.692C63.9295 155.838 63.9064 155.862 63.9064 156.763C63.9064 157.664 63.8833 157.687 63.0976 157.687H62.2889V159.004C62.2889 159.744 62.2195 160.899 62.1502 161.546C62.0116 162.701 61.9423 162.771 61.3646 162.771C60.7407 162.771 60.7176 162.817 60.5558 164.388L60.3941 166.006H59.6084H58.8227V167.739V169.472H58.0371H57.2514L57.0897 171.32C56.9279 173.169 56.9279 173.169 56.2809 173.169C55.6339 173.169 55.6108 173.192 55.4491 174.787L55.2873 176.404H54.5248H53.7391V178.137V179.87H52.9535H52.1909L52.0292 181.28C51.9598 182.065 51.8905 183.221 51.8905 183.822V184.954H51.0818C50.2961 184.954 50.273 184.977 50.273 185.855C50.273 186.733 50.2499 186.756 49.5336 186.71C48.8172 186.687 48.771 186.733 48.7248 187.496C48.6786 187.935 48.5861 189.044 48.5168 189.968L48.3782 191.632L47.6618 191.701C46.9917 191.771 46.9224 191.84 46.8531 192.625C46.7838 193.457 46.7376 193.504 45.9981 193.504H45.2125L45.1431 195.167L45.0738 196.854L44.3575 196.923C43.6643 196.993 43.618 197.062 43.4794 198.194C43.4101 198.864 43.3408 199.997 43.3408 200.713V202.053H42.532C41.7463 202.053 41.7232 202.076 41.7232 202.978C41.7232 203.879 41.7001 203.902 40.9145 203.902H40.1057V205.104C40.1057 205.774 40.0364 206.86 39.9671 207.53C39.8284 208.662 39.7822 208.731 39.089 208.801L38.3727 208.87L38.3033 210.603L38.234 212.359L37.4484 212.267L36.6396 212.174V213.907V215.664L35.7846 215.733C35.2994 215.779 34.8834 215.941 34.8834 216.08C34.8603 216.241 34.8372 217.004 34.8141 217.766L34.791 219.153H33.9822H33.1735V220.886V222.619H32.3878H31.6022L31.4404 224.213C31.2787 225.808 31.2787 225.831 30.5623 225.9L29.8229 225.97L29.7536 227.749L29.6843 229.551H28.8986H28.0898V231.169V232.786H27.3042H26.5185L26.3568 234.519L26.195 236.252H25.4094H24.6237V238.794V241.336H23.8381C23.0755 241.336 23.0293 241.382 22.96 242.191C22.8907 242.977 22.8213 243.069 22.1743 243.138C21.4811 243.208 21.4349 243.277 21.2962 244.409C21.2269 245.079 21.1576 246.165 21.1576 246.812V248.037H20.3488H19.5401V249.77V251.503H18.7313C17.9457 251.503 17.9226 251.526 17.9226 252.428C17.9226 253.329 17.8995 253.352 17.1369 253.352C16.3744 253.352 16.3744 253.375 16.2126 254.553C16.1433 255.224 16.074 256.379 16.074 257.095V258.435H15.2883H14.5027L14.3409 260.169L14.1792 261.902H13.3935C12.631 261.902 12.6078 261.925 12.6078 262.826C12.6078 263.727 12.5847 263.75 11.7991 263.75H10.9903V266.176V268.603H10.2047H9.41902L9.25726 270.336L9.09551 272.069H8.30986H7.5242V273.802V275.535H6.71544H5.90668V277.268V279.001H5.12103H4.33538L4.17362 280.734L4.01187 282.467H3.22622H2.44056V284.2V285.933H1.65491H0.869258L0.707506 287.643C0.615076 288.591 0.615076 290.093 0.707506 290.994L0.869258 292.635H30.7703H60.6713V291.826C60.6713 291.063 60.7176 291.017 61.4801 291.017C62.2658 291.017 62.2889 290.994 62.2889 290.093C62.2889 289.192 62.312 289.168 63.0745 289.168H63.8371L63.9988 287.551C64.1606 285.956 64.1837 285.933 64.8307 285.933C65.4777 285.933 65.4777 285.933 65.6394 284.085C65.8012 282.259 65.8012 282.236 66.4482 282.236C67.0721 282.236 67.1183 282.19 67.2339 280.78C67.3032 279.995 67.3956 278.932 67.4418 278.423C67.488 277.568 67.5343 277.499 68.2506 277.43C68.9438 277.36 68.99 277.291 68.99 276.436C68.99 275.558 69.0131 275.535 69.7757 275.535C70.5382 275.535 70.5382 275.512 70.7 274.31C70.7693 273.663 70.8386 272.508 70.8386 271.768V270.451H71.6474C72.433 270.451 72.4561 270.428 72.4561 269.527C72.4561 268.626 72.4793 268.603 73.2418 268.603H74.0275L74.1892 266.87C74.351 265.183 74.3741 265.137 74.998 265.137C75.5757 265.137 75.645 265.044 75.7836 264.074C75.8529 263.473 75.9223 262.341 75.9223 261.532V260.053H76.7079H77.4936L77.6553 258.459C77.8171 256.864 77.8171 256.841 78.5334 256.772L79.2728 256.702L79.3422 255.016L79.4115 253.352H80.1971H81.0059V251.619V249.886H81.7916H82.5772L82.739 248.291C82.9007 246.697 82.9007 246.674 83.617 246.604C84.2872 246.535 84.3565 246.443 84.4258 245.657L84.4951 244.802L169.115 244.756C215.653 244.71 254.474 244.71 255.352 244.71C256.253 244.71 258.148 244.733 259.58 244.756L262.168 244.802V245.611C262.168 246.373 262.215 246.42 262.977 246.42H263.786V248.153V249.886H264.572H265.357L265.519 251.619L265.681 253.352H266.466H267.252V255.085V256.818H268.061H268.846L268.916 258.482L268.985 260.169L269.724 260.238C270.441 260.307 270.441 260.33 270.603 261.925L270.764 263.519H271.55H272.336V264.836C272.336 265.576 272.405 266.731 272.474 267.378C272.613 268.533 272.682 268.603 273.283 268.603C273.907 268.603 273.907 268.626 274.069 270.336L274.23 272.069H275.016C275.779 272.069 275.802 272.092 275.802 272.993C275.802 273.894 275.825 273.917 276.61 273.917H277.419V275.119C277.419 275.789 277.489 276.875 277.558 277.545C277.697 278.678 277.743 278.747 278.436 278.816C279.083 278.886 279.152 278.978 279.222 279.741C279.291 280.572 279.337 280.619 280.1 280.619H280.885V282.352V284.085H281.694H282.503V285.217C282.503 285.818 282.572 286.973 282.642 287.759L282.803 289.168H283.566C284.305 289.168 284.351 289.215 284.351 289.977C284.351 290.74 284.398 290.786 285.137 290.786C285.9 290.786 285.946 290.832 286.015 291.641L286.085 292.519L315.962 292.588L345.817 292.635V291.71C345.817 290.809 345.84 290.786 346.626 290.786C347.389 290.786 347.435 290.74 347.435 289.977C347.435 289.215 347.389 289.168 346.626 289.168H345.817V287.435V285.702H345.032H344.246L344.084 284.085C343.922 282.513 343.899 282.467 343.275 282.467C342.698 282.467 342.628 282.398 342.49 281.243C342.421 280.596 342.351 279.44 342.351 278.701V277.384H341.542C340.757 277.384 340.734 277.36 340.734 276.459C340.734 275.558 340.711 275.535 339.948 275.535H339.162L339.001 273.802L338.839 272.069H338.053H337.268V269.527V266.985H336.482C335.719 266.985 335.673 266.939 335.604 266.107C335.534 265.322 335.465 265.252 334.795 265.183C334.056 265.114 334.056 265.114 333.894 263.496L333.732 261.902H332.97H332.184V260.561C332.184 259.845 332.115 258.713 332.045 258.043C331.907 256.91 331.86 256.841 331.167 256.772C330.52 256.702 330.451 256.61 330.382 255.824C330.312 255.016 330.266 254.969 329.503 254.969H328.718V252.543V250.117H327.932C327.146 250.117 327.123 250.094 327.054 249.123C326.985 248.222 326.939 248.153 326.245 248.083C325.529 248.014 325.529 247.991 325.367 246.397L325.205 244.802H324.42H323.634V243.462C323.634 242.746 323.565 241.613 323.496 240.943C323.357 239.811 323.311 239.742 322.617 239.672C321.97 239.603 321.901 239.51 321.832 238.725C321.762 237.916 321.716 237.87 320.954 237.87H320.168V236.137V234.404H319.359H318.551V233.179C318.551 232.532 318.481 231.446 318.412 230.776C318.273 229.644 318.227 229.574 317.534 229.505C316.887 229.436 316.817 229.343 316.748 228.558C316.679 227.749 316.633 227.703 315.87 227.703H315.084V225.97V224.236H314.276H313.467V222.896C313.467 222.18 313.398 221.025 313.328 220.354C313.166 219.176 313.166 219.153 312.404 219.153C311.664 219.153 311.618 219.107 311.618 218.344C311.618 217.582 311.572 217.535 310.81 217.535H310.001V216.195C310.001 215.479 309.931 214.346 309.862 213.676C309.723 212.544 309.677 212.475 308.984 212.405C308.337 212.336 308.268 212.244 308.198 211.458C308.129 210.649 308.083 210.603 307.32 210.603H306.535V208.87V207.137H305.726H304.917V205.912C304.917 205.265 304.848 204.179 304.778 203.509C304.64 202.377 304.594 202.308 303.9 202.238C303.23 202.169 303.184 202.1 303.115 201.175C303.045 200.228 303.022 200.205 302.237 200.205H301.451V198.587V196.97H300.665H299.903L299.741 195.56C299.672 194.774 299.602 193.619 299.602 193.018V191.886H298.794C298.008 191.886 297.985 191.863 297.985 190.962C297.985 190.061 297.962 190.037 297.199 190.037H296.414L296.252 188.304C296.09 186.594 296.09 186.571 295.466 186.571C294.865 186.571 294.796 186.502 294.657 185.347C294.588 184.7 294.519 183.59 294.519 182.92V181.719H293.71C292.924 181.719 292.901 181.696 292.901 180.794C292.901 179.893 292.878 179.87 292.116 179.87H291.353L291.191 178.461C291.122 177.675 291.053 176.52 291.053 175.919V174.787H290.244C289.458 174.787 289.435 174.763 289.435 173.885C289.435 173.03 289.389 172.961 288.696 172.892C287.933 172.822 287.933 172.822 287.725 171.136C287.517 169.541 287.494 169.472 286.893 169.472C286.316 169.472 286.246 169.379 286.108 168.409C286.038 167.808 285.969 166.722 285.969 165.983V164.619H285.16C284.375 164.619 284.351 164.596 284.351 163.695C284.351 162.794 284.328 162.771 283.566 162.771H282.78L282.618 161.038C282.457 159.351 282.434 159.305 281.81 159.305C281.232 159.305 281.163 159.235 281.024 158.08C280.955 157.433 280.885 156.277 280.885 155.538V154.221H280.1C279.337 154.221 279.291 154.175 279.222 153.343C279.152 152.557 279.083 152.488 278.413 152.419C277.697 152.349 277.673 152.326 277.558 150.917C277.465 150.131 277.396 149.068 277.35 148.56C277.304 147.705 277.257 147.635 276.587 147.566C275.848 147.497 275.848 147.497 275.686 145.787L275.524 144.077L274.808 144.007C274.138 143.938 274.069 143.869 273.999 143.06C273.93 142.251 273.884 142.205 273.121 142.205H272.336V139.663V137.121H271.55C270.787 137.121 270.741 137.075 270.672 136.243C270.603 135.481 270.533 135.388 269.863 135.319C269.147 135.25 269.147 135.227 268.985 133.632L268.823 132.038H268.038H267.252V129.519V126.977L266.397 126.908C265.565 126.839 265.519 126.792 265.45 125.96C265.38 125.152 265.334 125.106 264.572 125.106H263.786V123.372V121.639H262.977H262.168V120.415C262.168 119.768 262.099 118.682 262.03 118.012C261.891 116.879 261.845 116.81 261.152 116.741C260.505 116.671 260.435 116.579 260.366 115.793C260.297 114.984 260.25 114.938 259.488 114.938H258.702V112.396V109.855H257.917H257.131L256.969 108.122L256.807 106.388H256.022C255.259 106.388 255.236 106.365 255.236 105.464C255.236 104.563 255.213 104.54 254.427 104.54H253.619V103.315C253.619 102.668 253.549 101.582 253.48 100.912C253.341 99.7798 253.295 99.7104 252.602 99.6411C251.955 99.5718 251.886 99.4794 251.816 98.6937C251.747 97.8849 251.701 97.8387 250.938 97.8387H250.152V96.1057V94.3726H249.344H248.535V93.2403C248.535 92.6396 248.466 91.4842 248.396 90.6985L248.235 89.289H247.472C246.709 89.289 246.686 89.2659 246.686 88.3647C246.686 87.4635 246.663 87.4404 245.878 87.4404H245.069V85.8229V84.2053H244.283H243.521L243.359 82.7958C243.29 82.0101 243.22 80.8548 243.22 80.254V79.1217H242.411C241.626 79.1217 241.603 79.0986 241.603 78.1974C241.603 77.2962 241.58 77.2731 240.794 77.2731H239.985V76.1408C239.985 75.54 239.916 74.3847 239.847 73.599C239.685 72.2588 239.662 72.1895 239.038 72.1895C238.414 72.1895 238.414 72.1664 238.252 70.4564L238.09 68.7233H237.328H236.565L236.404 67.0827C236.242 65.4421 236.242 65.4421 235.595 65.5345L234.948 65.6269L234.786 63.8477L234.647 62.0453L233.908 61.976L233.168 61.9066L233.099 60.2198L233.03 58.5561H232.267H231.482L231.32 56.9617C231.158 55.3672 231.158 55.3441 230.442 55.2748L229.702 55.2055L229.633 53.4031L229.564 51.6238H228.801H228.016L227.854 50.0063C227.692 48.435 227.669 48.3888 227.045 48.3888C226.398 48.3888 226.398 48.3657 226.236 46.6557L226.074 44.9227H225.289H224.503V43.1896V41.4566H223.718H222.955L222.793 39.8621C222.631 38.2446 222.631 38.2446 221.892 38.1753L221.153 38.106L221.083 36.4191L221.014 34.7554H220.228H219.42V33.0223V31.2893H218.634H217.848L217.686 29.5562L217.525 27.8232H216.739H215.953V26.0901V24.357H215.168H214.405L214.243 22.7626C214.082 21.1451 214.082 21.1451 213.342 21.0758L212.603 21.0065L212.534 19.3196L212.464 17.6559H211.679H210.87V15.9228V14.1898H210.084H209.298L209.137 12.4567L208.975 10.7236H208.189H207.404V8.99059V7.25753H206.595H205.809L205.74 5.57069L205.671 3.90695L204.816 3.83763C203.984 3.76831 203.938 3.72209 203.938 2.95955V2.17389H202.204H200.471V1.36513C200.471 0.625694 200.425 0.556371 199.801 0.556371C199.408 0.556371 199.039 0.671909 198.969 0.810553ZM173.389 66.2277C173.459 67.0596 173.505 67.1058 174.268 67.1058C175.03 67.1058 175.053 67.1289 175.053 68.0301C175.053 68.9313 175.076 68.9544 175.862 68.9544H176.671V70.5719V72.1895H177.456H178.242L178.404 73.9225C178.566 75.6325 178.566 75.6556 179.213 75.6556C179.836 75.6556 179.86 75.7018 179.998 77.2038C180.068 78.0819 180.16 79.2141 180.183 79.7456C180.229 80.7161 180.252 80.7392 180.992 80.7392C181.708 80.7392 181.754 80.7854 181.754 81.548C181.754 82.3105 181.801 82.3567 182.54 82.3567H183.326L183.487 84.2053L183.649 86.0539H184.435H185.221V87.787V89.52H186.006H186.792L186.954 91.1376L187.115 92.7551H187.901H188.687V95.2969V97.8387H189.472C190.235 97.8387 190.281 97.8849 190.35 98.6937C190.42 99.4794 190.489 99.5718 191.159 99.6411C191.875 99.7104 191.875 99.7335 192.037 101.328L192.199 102.922H192.985H193.77V105.464V108.006H194.556C195.318 108.006 195.365 108.052 195.434 108.861C195.503 109.647 195.573 109.739 196.22 109.808C196.89 109.878 196.959 109.947 197.098 110.941C197.167 111.518 197.236 112.304 197.236 112.651C197.236 113.251 197.306 113.321 198.045 113.321H198.854V114.684C198.854 115.423 198.923 116.51 198.993 117.087C199.131 118.081 199.201 118.15 199.871 118.219C200.518 118.289 200.587 118.381 200.656 119.144C200.726 119.976 200.772 120.022 201.534 120.022H202.32V122.564V125.106H203.106H203.891L204.053 126.839L204.215 128.572H205H205.786V130.189V131.807H206.595H207.404V133.655V135.504H208.189H208.975L209.137 137.121L209.298 138.739H210.084H210.87V140.472V142.205H211.655H212.441L212.603 143.938C212.765 145.648 212.765 145.671 213.412 145.671C214.059 145.671 214.059 145.694 214.22 147.404L214.382 149.137H215.168H215.93L216 150.801L216.069 152.488L216.808 152.557L217.525 152.626L217.686 154.36L217.848 156.07H218.634H219.42V157.687V159.305H220.205H220.991L221.153 161.038C221.314 162.748 221.314 162.771 221.961 162.771C222.608 162.771 222.608 162.794 222.77 164.504L222.932 166.237H223.694H224.434L224.596 167.854C224.757 169.449 224.78 169.472 225.427 169.472C226.074 169.472 226.074 169.472 226.236 171.32C226.398 173.169 226.398 173.169 227.045 173.169C227.692 173.169 227.715 173.192 227.877 174.787L228.039 176.404H228.801H229.587V178.137V179.87H230.372H231.135L231.297 181.28C231.366 182.065 231.435 183.221 231.435 183.822V184.954H232.221C232.984 184.954 233.03 185 233.099 185.809C233.168 186.618 233.238 186.687 233.908 186.756L234.624 186.826L234.786 188.559C234.948 190.245 234.971 190.269 235.618 190.269C236.219 190.269 236.288 190.338 236.288 191.077C236.288 191.817 236.242 191.886 235.595 191.886H234.925L234.855 193.55L234.786 195.237L233.931 195.306C233.122 195.375 233.053 195.421 233.053 196.115V196.854L174.083 196.808C141.64 196.762 114.766 196.739 114.35 196.739C113.726 196.739 113.611 196.646 113.541 196.092C113.472 195.491 113.426 195.468 111.808 195.398L110.121 195.329L110.098 194.012C110.098 193.296 110.052 192.441 110.006 192.117C109.96 191.794 109.983 190.846 110.052 189.968L110.191 188.42H110.93H111.693L111.854 186.687C112.016 184.977 112.016 184.954 112.663 184.954C113.31 184.954 113.31 184.931 113.472 183.221C113.634 181.511 113.657 181.488 114.281 181.488C114.928 181.488 114.928 181.465 115.089 179.755L115.251 178.022H116.014H116.776L116.938 176.289C117.1 174.602 117.123 174.555 117.747 174.555C118.324 174.555 118.394 174.486 118.532 173.331C118.602 172.684 118.671 171.575 118.671 170.904V169.703H119.48C120.265 169.703 120.289 169.68 120.289 168.779C120.289 167.877 120.312 167.854 121.074 167.854C121.837 167.854 121.837 167.831 121.999 166.63C122.068 165.983 122.137 164.827 122.137 164.088V162.771H122.946H123.755V161.153V159.536H124.54H125.326L125.488 157.803C125.65 156.093 125.65 156.07 126.297 156.07C126.944 156.07 126.944 156.046 127.105 154.221L127.267 152.372H128.053H128.838V150.755V149.137H129.624H130.41L130.571 147.404L130.733 145.671H131.519H132.304V143.938V142.205H133.09H133.853L134.014 140.588C134.176 138.993 134.199 138.97 134.846 138.97C135.516 138.97 135.516 138.97 135.678 137.121L135.84 135.273H136.602H137.388V132.847V130.42H138.197C138.983 130.42 139.006 130.397 139.006 129.496C139.006 128.595 139.029 128.572 139.791 128.572C140.554 128.572 140.554 128.549 140.716 127.347C140.785 126.7 140.854 125.545 140.854 124.805V123.488H141.64H142.426L142.587 121.755L142.749 120.022H143.535C144.297 120.022 144.32 119.999 144.32 119.098C144.32 118.196 144.343 118.173 145.129 118.173H145.938V115.747V113.321H146.723H147.509L147.671 111.588L147.833 109.855H148.618H149.404V108.122V106.388H150.213H151.021V105.048C151.021 104.332 151.091 103.177 151.16 102.506C151.322 101.328 151.322 101.305 152.084 101.305C152.847 101.305 152.87 101.282 152.87 100.381C152.87 99.4794 152.893 99.4563 153.679 99.4563H154.488V97.03V94.6037H155.273H156.059L156.221 92.8706L156.382 91.1376H157.168C157.931 91.1376 157.954 91.1145 157.954 90.2133C157.954 89.3121 157.977 89.289 158.762 89.289H159.571V87.9487C159.571 87.2324 159.641 86.077 159.71 85.4069C159.849 84.2747 159.918 84.2053 160.496 84.2053C161.119 84.2053 161.143 84.1591 161.304 82.4723L161.466 80.7392H162.252H163.037V79.1217V77.5042H163.846H164.632L164.701 75.7018L164.77 73.9225L165.51 73.8532C166.226 73.7839 166.226 73.7608 166.388 72.1664L166.55 70.5719H167.335H168.121V68.8389V67.1058H169.045C169.946 67.1058 169.97 67.0827 169.97 66.3202C169.97 65.5576 170.016 65.5114 170.848 65.419C171.31 65.3728 172.072 65.3265 172.511 65.3497C173.274 65.3728 173.32 65.419 173.389 66.2277Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gqqci8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:291,intrinsicWidth:62,svg:'<svg width=\"62\" height=\"291\" viewBox=\"0 0 62 291\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.07011 0.127582L2.15219 0.196904V1.90686V3.63991H1.34343H0.534668V5.25744V6.87496H1.34343C2.12908 6.87496 2.15219 6.89807 2.15219 7.79926C2.15219 8.70045 2.12908 8.72355 1.34343 8.72355H0.534668V143.671V278.619H1.34343H2.15219V281.16V283.702H1.34343H0.534668V285.435V287.168H1.34343H2.15219V288.901V290.634L3.88525 290.658C4.83265 290.658 5.98803 290.681 6.42707 290.681C6.86611 290.681 19.1362 290.658 33.6708 290.658L60.1288 290.634L60.1981 289.756C60.2674 288.994 60.3367 288.901 60.9838 288.832C61.677 288.763 61.7232 288.693 61.8618 287.515C62.0467 285.921 62.0467 4.8415 61.8387 3.24709C61.7232 2.09172 61.677 2.02239 61.0531 2.02239C60.4292 2.02239 60.383 1.95307 60.383 1.09809V0.173797L33.8787 0.150689C19.2748 0.150689 7.05097 0.127582 6.65814 0.104475C6.28842 0.0813671 5.10994 0.0813671 4.07011 0.127582Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t843j6\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:291,intrinsicWidth:300,svg:'<svg width=\"300\" height=\"291\" viewBox=\"0 0 300 291\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.503906 145.404V290.635H104.233C161.262 290.635 208.586 290.565 209.372 290.496C210.735 290.334 210.782 290.311 210.782 289.687V289.017H213.624C215.195 289.017 218.222 288.948 220.325 288.855L224.161 288.717L224.23 288L224.3 287.284L226.911 287.215L229.499 287.145V286.36V285.551H231.186C232.133 285.551 234.005 285.482 235.345 285.389L237.817 285.25V284.627C237.817 284.026 237.887 284.003 239.227 283.841C240.013 283.772 241.214 283.702 241.884 283.702H243.132V282.894V282.085H244.865H246.598V281.299C246.598 280.537 246.621 280.537 247.823 280.375C248.47 280.305 249.625 280.236 250.365 280.236H251.682V279.427V278.619H253.299H254.917V277.833C254.917 277.047 254.94 277.024 255.911 276.955C256.812 276.886 256.881 276.839 256.95 276.169C257.02 275.476 257.089 275.43 258.221 275.291C258.891 275.222 259.977 275.153 260.648 275.153H261.849V274.344C261.849 273.558 261.872 273.535 262.773 273.535C263.675 273.535 263.698 273.512 263.698 272.749V271.964L265.315 271.802L266.933 271.64V270.855C266.933 270.092 266.956 270.069 267.857 270.069C268.758 270.069 268.781 270.046 268.781 269.26C268.781 268.498 268.828 268.451 269.59 268.451C270.353 268.451 270.399 268.405 270.399 267.666V266.88L272.132 266.718L273.865 266.557V265.771C273.865 265.031 273.911 264.985 274.651 264.985C275.413 264.985 275.459 264.939 275.529 264.107C275.598 263.322 275.667 263.252 276.338 263.183C276.985 263.114 277.077 263.021 277.146 262.374C277.216 261.704 277.285 261.635 278.094 261.565C278.902 261.496 278.949 261.45 278.949 260.687C278.949 259.948 278.995 259.902 279.734 259.902H280.52L280.682 258.169L280.843 256.435H282.415H283.986L284.148 254.702L284.31 252.969H285.095H285.881V251.352V249.734H286.69C287.475 249.734 287.498 249.711 287.498 248.81C287.498 247.909 287.522 247.886 288.284 247.886H289.07L289.231 246.153L289.393 244.42H290.179H290.965V242.802V241.185H291.75H292.536L292.698 239.452C292.859 237.742 292.859 237.718 293.483 237.718C294.084 237.718 294.153 237.649 294.292 236.494C294.361 235.847 294.431 234.645 294.431 233.836V232.404H295.239H296.048V229.862V227.32H296.811H297.596L297.735 224.709C297.827 223.299 297.897 221.358 297.897 220.434V218.77H298.567C299.191 218.77 299.237 218.701 299.376 217.546C299.561 215.951 299.561 189.447 299.376 187.598C299.214 186.235 299.191 186.189 298.567 186.189H297.897V184.618C297.897 183.763 297.827 181.891 297.735 180.458L297.596 177.87H296.811H296.048V175.328V172.787H295.239H294.431V171.539C294.431 170.869 294.361 169.667 294.292 168.881C294.13 167.541 294.107 167.472 293.506 167.472C292.882 167.472 292.859 167.426 292.698 165.854L292.536 164.237H291.75H290.965V162.504V160.771H290.179H289.416L289.255 159.361C289.185 158.575 289.116 157.42 289.116 156.819V155.687H288.307C287.545 155.687 287.498 155.641 287.498 154.878C287.498 154.116 287.452 154.07 286.69 154.07C285.904 154.07 285.881 154.046 285.881 153.145C285.881 152.244 285.858 152.221 285.095 152.221H284.31L284.148 150.488L283.986 148.755H283.2C282.461 148.755 282.415 148.709 282.415 147.946C282.415 147.183 282.369 147.137 281.629 147.137C280.867 147.137 280.82 147.091 280.751 146.259C280.682 145.45 280.636 145.404 279.827 145.335C278.995 145.266 278.949 145.219 278.949 144.457C278.949 143.717 278.902 143.671 278.163 143.671C277.4 143.671 277.354 143.625 277.285 142.793C277.216 142.007 277.146 141.938 276.476 141.869C275.829 141.799 275.737 141.707 275.667 141.06C275.598 140.39 275.529 140.321 274.743 140.251C273.911 140.182 273.865 140.136 273.865 139.373C273.865 138.634 273.819 138.588 273.079 138.588C272.317 138.588 272.271 138.541 272.201 137.709C272.132 136.901 272.086 136.854 271.277 136.785C270.445 136.716 270.399 136.67 270.399 135.907V135.121H268.805H267.187L267.118 134.243C267.048 133.435 267.002 133.388 266.193 133.319C265.362 133.25 265.315 133.203 265.315 132.441C265.315 131.678 265.292 131.655 264.391 131.655C263.49 131.655 263.467 131.632 263.467 130.847C263.467 130.084 263.42 130.038 262.658 130.038C261.895 130.038 261.849 129.992 261.849 129.229C261.849 128.466 261.803 128.42 261.04 128.42H260.232V126.687V124.954H261.04H261.849V123.221V121.488H262.773C263.675 121.488 263.698 121.465 263.698 120.679C263.698 119.917 263.744 119.87 264.507 119.87H265.315V118.137V116.404H266.101H266.887L267.048 114.671L267.21 112.938H267.996C268.758 112.938 268.781 112.915 268.781 112.014C268.781 111.113 268.805 111.09 269.59 111.09H270.399V109.957C270.399 109.357 270.468 108.201 270.538 107.416C270.699 106.075 270.722 106.006 271.323 106.006C271.901 106.006 271.97 105.914 272.109 104.781C272.178 104.134 272.248 103.025 272.248 102.355V101.153H273.056H273.865V98.6116V96.0698H274.651H275.436L275.598 87.4276C275.691 82.6675 275.691 74.9265 275.598 70.2126L275.436 61.6397H274.651H273.865V59.0979V56.5561H273.056H272.248V55.2158C272.248 54.4995 272.178 53.3441 272.109 52.674C271.97 51.5649 271.901 51.4724 271.323 51.4724C270.746 51.4724 270.676 51.38 270.538 50.2477C270.468 49.6007 270.399 48.4454 270.399 47.7059V46.3888H269.59C268.805 46.3888 268.781 46.3657 268.781 45.4645C268.781 44.5633 268.758 44.5402 267.996 44.5402H267.21L267.048 42.8071L266.887 41.0741H266.101H265.315V39.4797V37.8621L264.46 37.7928C263.628 37.7235 263.582 37.6773 263.513 36.8454C263.444 36.0367 263.397 35.9904 262.635 35.9904C261.895 35.9904 261.849 35.9442 261.849 35.1817C261.849 34.4191 261.803 34.3729 261.04 34.3729C260.255 34.3729 260.232 34.3498 260.232 33.4486C260.232 32.5474 260.209 32.5243 259.423 32.5243C258.66 32.5243 258.614 32.4781 258.614 31.7156C258.614 30.953 258.568 30.9068 257.828 30.9068H257.043L256.881 29.3124L256.719 27.718L255.009 27.5562L253.299 27.3945V26.6088C253.299 25.8694 253.253 25.8232 252.491 25.8232C251.705 25.8232 251.682 25.8001 251.682 24.8989C251.682 23.9977 251.659 23.9746 250.896 23.9746C250.157 23.9746 250.087 23.9052 250.018 23.212C249.949 22.5419 249.88 22.4726 249.094 22.4033C248.262 22.3339 248.216 22.2877 248.216 21.5483V20.7857L246.621 20.624C245.027 20.4622 245.004 20.4622 244.935 19.7459C244.865 19.0527 244.796 19.0065 243.895 18.9371C242.924 18.8678 242.901 18.8447 242.901 18.0591V17.2734H241.284H239.666V16.4878V15.7021L238.048 15.5403L236.431 15.3786V14.5929V13.8073H234.582H232.734V13.0216V12.236L231.139 12.0742C229.545 11.9125 229.522 11.9125 229.453 11.1961L229.383 10.4567L227.719 10.3874L226.033 10.3181V9.53241V8.72365H222.682H219.331V7.938V7.15234L217.598 6.99059C215.888 6.82884 215.865 6.82884 215.865 6.20494C215.865 5.60414 215.796 5.53482 214.664 5.39618C213.994 5.32685 212.422 5.25753 211.198 5.25753H208.933V4.44877V3.64001H205.837C204.15 3.64001 202.278 3.57069 201.677 3.50137C200.707 3.36272 200.614 3.2934 200.614 2.71571C200.614 2.11492 200.568 2.09181 199.066 1.95317C198.188 1.86074 196.27 1.79141 194.791 1.79141H192.065V0.982653V0.173893H96.2843H0.503906V145.404ZM171.268 50.5019V51.172L173.879 51.3107C175.289 51.4031 178.362 51.4724 180.696 51.4724H184.901V52.2812V53.0668L186.704 53.1362L188.483 53.2055L188.552 53.9218C188.622 54.615 188.691 54.6613 189.823 54.7999C190.493 54.8692 191.926 54.9385 193.058 54.9385H195.069V55.7473C195.069 56.5561 195.069 56.5561 196.108 56.5561C197.148 56.5561 197.148 56.5561 197.148 57.3417V58.1274L198.766 58.2891L200.383 58.4509V59.2365C200.383 59.9991 200.406 60.0222 201.308 60.0222C202.209 60.0222 202.232 60.0453 202.232 60.8309C202.232 61.5935 202.278 61.6397 203.041 61.6397C203.803 61.6397 203.849 61.6859 203.849 62.4485C203.849 63.211 203.896 63.2572 204.658 63.2572C205.444 63.2572 205.467 63.2803 205.467 64.1815V65.1058H206.391H207.316V66.0301C207.316 66.9313 207.339 66.9544 208.124 66.9544H208.933V68.5719V70.1895H209.719H210.528L210.666 71.9918C210.828 73.7249 210.851 73.7942 211.429 73.7711C211.96 73.7711 212.053 73.8867 212.214 74.6954C212.307 75.2038 212.376 77.0986 212.376 78.901L212.399 82.2053H213.208H214.017V83.9384V85.6715H213.208H212.399L212.353 89.877L212.284 94.1057L211.544 94.175C210.782 94.2443 210.782 94.2443 210.782 95.5614C210.782 96.2778 210.712 97.4331 210.643 98.0802C210.481 99.2817 210.481 99.3048 209.696 99.3048C209.072 99.3048 208.91 99.3973 208.956 99.6977C208.979 99.9287 208.979 100.714 208.956 101.431L208.933 102.771H208.124C207.362 102.771 207.316 102.817 207.316 103.58C207.316 104.342 207.269 104.388 206.53 104.388H205.744L205.583 106.122L205.421 107.855H204.496C203.78 107.855 203.595 107.924 203.642 108.247C203.734 109.31 203.642 109.472 202.81 109.472C202.047 109.472 202.001 109.518 202.001 110.258V111.043L200.268 111.205L198.535 111.367V112.153V112.938H194.26H189.985V112.129V111.321H125.977H61.9697V110.512C61.9697 109.749 61.9235 109.703 61.161 109.703H60.3522V80.6109V51.5186L62.0853 51.3569C63.8183 51.1951 63.8183 51.1951 63.8183 50.525V49.8549H117.543H171.268V50.5019ZM200.383 161.579V162.388H202.186C203.202 162.388 205.12 162.458 206.461 162.55L208.933 162.689V163.312C208.933 163.89 209.026 163.959 210.158 164.098C210.805 164.167 211.96 164.237 212.7 164.237H214.017V165.022V165.808L215.75 165.97L217.483 166.132V166.917V167.703H219.1H220.718V168.512C220.718 169.297 220.741 169.32 221.642 169.32C222.543 169.32 222.567 169.344 222.567 170.106C222.567 170.869 222.613 170.915 223.445 170.984C224.253 171.053 224.3 171.1 224.369 171.908C224.438 172.74 224.484 172.787 225.247 172.787C225.986 172.787 226.033 172.833 226.033 173.595C226.033 174.358 226.079 174.404 226.818 174.404C227.581 174.404 227.627 174.45 227.696 175.259C227.766 176.091 227.812 176.137 228.644 176.206L229.499 176.276V177.893V179.488H230.308C231.093 179.488 231.116 179.511 231.116 180.412C231.116 181.313 231.139 181.336 231.902 181.336H232.688L232.849 183.069L233.011 184.802H233.797H234.582V188.153V191.504H235.345H236.131L236.269 196.98C236.339 200.007 236.315 204.19 236.246 206.292L236.084 210.105L235.345 210.174L234.582 210.244V213.71V217.153H233.797H233.011L232.849 218.747C232.688 220.342 232.688 220.365 231.971 220.434C231.301 220.503 231.232 220.596 231.162 221.358C231.093 222.19 231.047 222.236 230.331 222.236H229.545L229.383 223.97L229.221 225.703H228.436C227.696 225.703 227.65 225.749 227.65 226.511C227.65 227.274 227.604 227.32 226.841 227.32C226.056 227.32 226.033 227.343 226.033 228.244V229.169H225.108C224.207 229.169 224.184 229.192 224.184 229.954V230.74L222.567 230.902L220.949 231.064V231.849C220.949 232.589 220.903 232.635 220.163 232.635C219.424 232.635 219.355 232.704 219.285 233.374L219.216 234.137L217.437 234.206L215.634 234.275V235.038V235.824L214.017 235.985C212.445 236.147 212.399 236.17 212.399 236.794C212.399 237.372 212.33 237.441 211.198 237.58C210.528 237.649 209.326 237.718 208.54 237.718H207.085V238.527V239.336H202.602C200.152 239.336 197.495 239.405 196.709 239.475C195.369 239.636 195.3 239.659 195.3 240.26V240.884L188.899 241.023C180.58 241.231 67.9777 241.231 64.5809 241.023L61.9697 240.884V240.099C61.9697 239.382 61.9235 239.336 61.161 239.336H60.3522V200.862V162.388H61.161C61.9235 162.388 61.9697 162.342 61.9697 161.579V160.771H131.177H200.383V161.579Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rnyelx\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:293,intrinsicWidth:289,svg:'<svg width=\"289\" height=\"293\" viewBox=\"0 0 289 293\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.88071 141.938V283.702H1.07194H0.263184V285.435V287.168H1.04884H1.81138L1.97313 288.763L2.13489 290.334L3.19783 290.496C3.77552 290.565 16.0456 290.634 30.4415 290.634H56.6454V291.443C56.6454 292.206 56.6916 292.252 57.4541 292.252C58.2167 292.252 58.2629 292.206 58.2629 291.443C58.2629 290.681 58.3091 290.634 59.0485 290.634H59.8342L59.9959 289.017C60.1577 287.422 60.1577 287.399 60.8278 287.399H61.4979V250.22C61.4979 229.793 61.5672 212.416 61.6366 211.63L61.7983 210.221H62.5609C63.3003 210.221 63.3465 210.174 63.3465 209.412V208.603H65.0796H66.8126V207.794V206.985H81.3703H95.928V207.794V208.603H126.661H157.394V209.412C157.394 210.174 157.44 210.221 158.18 210.221H158.965L159.127 211.954L159.289 213.687H160.074C160.814 213.687 160.86 213.733 160.86 214.495C160.86 215.258 160.906 215.304 161.669 215.304C162.454 215.304 162.477 215.327 162.477 216.228C162.477 217.13 162.501 217.153 163.263 217.153H164.049L164.211 218.886L164.372 220.619H165.158C165.897 220.619 165.944 220.665 165.944 221.428C165.944 222.19 165.99 222.236 166.729 222.236H167.515L167.677 223.969L167.838 225.703H168.624C169.387 225.703 169.41 225.726 169.41 226.627C169.41 227.528 169.433 227.551 170.218 227.551C170.981 227.551 171.027 227.597 171.027 228.36C171.027 229.122 171.073 229.169 171.813 229.169H172.599L172.76 230.902L172.922 232.635H173.708C174.447 232.635 174.493 232.681 174.493 233.443C174.493 234.206 174.54 234.252 175.302 234.252H176.088L176.157 235.916L176.226 237.603L176.966 237.672C177.682 237.741 177.682 237.765 177.844 239.359L178.006 240.953H178.791C179.554 240.953 179.577 240.977 179.577 241.878C179.577 242.779 179.6 242.802 180.363 242.802H181.148L181.31 244.42L181.472 246.037H182.257C183.02 246.037 183.043 246.06 183.043 246.961C183.043 247.863 183.066 247.886 183.829 247.886C184.591 247.886 184.638 247.932 184.707 248.741C184.776 249.526 184.845 249.619 185.516 249.688C186.232 249.757 186.232 249.78 186.394 251.375L186.555 252.969H187.341C188.104 252.969 188.127 252.992 188.127 253.894C188.127 254.795 188.15 254.818 188.912 254.818H189.698L189.86 256.412C190.022 258.007 190.022 258.03 190.738 258.099C191.408 258.168 191.477 258.261 191.547 259.023C191.616 259.855 191.662 259.902 192.425 259.902C193.072 259.902 193.234 259.994 193.187 260.294C193.164 260.525 193.21 261.242 193.326 261.912C193.488 263.044 193.534 263.113 194.227 263.183C194.874 263.252 194.943 263.345 195.013 264.107C195.082 264.939 195.128 264.985 195.891 264.985H196.677V266.718V268.451H197.485C198.248 268.451 198.294 268.497 198.294 269.237C198.294 269.999 198.34 270.046 199.172 270.115L200.027 270.184L200.096 271.848L200.166 273.535H200.951C201.737 273.535 201.76 273.558 201.76 274.459C201.76 275.36 201.783 275.384 202.569 275.384C203.331 275.384 203.378 275.43 203.378 276.192C203.378 276.978 203.401 277.001 204.302 277.001H205.226V278.734V280.467H206.012H206.798L206.959 282.085L207.121 283.702H207.907C208.669 283.702 208.692 283.725 208.692 284.626C208.692 285.528 208.715 285.551 209.478 285.551H210.241L210.402 287.145L210.564 288.763L212.043 288.901C213.499 289.063 213.522 289.086 213.591 289.803L213.66 290.519L248.738 290.588L283.792 290.634V288.093V285.551H283.006C282.243 285.551 282.197 285.505 282.128 284.673C282.059 283.864 282.012 283.818 281.204 283.748L280.325 283.679V282.062V280.467H279.517C278.731 280.467 278.708 280.444 278.708 279.543C278.708 278.642 278.685 278.619 277.922 278.619C277.16 278.619 277.114 278.572 277.044 277.74C276.975 276.955 276.906 276.885 276.235 276.816C275.496 276.747 275.496 276.747 275.334 275.129L275.173 273.535H274.41C273.647 273.535 273.624 273.512 273.624 272.611C273.624 271.709 273.601 271.686 272.839 271.686H272.03L271.868 270.069L271.706 268.451H270.944C270.181 268.451 270.158 268.428 270.158 267.527C270.158 266.626 270.135 266.603 269.373 266.603H268.587L268.425 264.985L268.263 263.368H267.478C266.715 263.368 266.692 263.345 266.692 262.443C266.692 261.542 266.669 261.519 265.906 261.519H265.144L264.982 259.925C264.82 258.307 264.82 258.307 264.081 258.238C263.411 258.168 263.342 258.099 263.272 257.29C263.203 256.482 263.157 256.435 262.394 256.435H261.608V254.841V253.223L260.753 253.154C259.922 253.085 259.875 253.039 259.806 252.207C259.737 251.398 259.691 251.352 258.928 251.352C258.165 251.352 258.142 251.329 258.142 250.427C258.142 249.526 258.119 249.503 257.357 249.503H256.571L256.409 247.909C256.248 246.314 256.248 246.291 255.531 246.222C254.861 246.153 254.792 246.06 254.722 245.275C254.653 244.466 254.607 244.42 253.844 244.42H253.059V242.802V241.184H252.25C251.464 241.184 251.441 241.161 251.441 240.26V239.336H250.517H249.593V238.412C249.593 237.51 249.569 237.487 248.784 237.487H247.975V235.87V234.252H247.189H246.404L246.242 232.635L246.08 231.017H245.295C244.532 231.017 244.509 230.994 244.509 230.093C244.509 229.192 244.486 229.169 243.723 229.169C242.961 229.169 242.915 229.122 242.845 228.291C242.776 227.528 242.707 227.436 242.036 227.366C241.32 227.297 241.32 227.274 241.158 225.679L240.997 224.085H240.211C239.448 224.085 239.425 224.062 239.425 223.161C239.425 222.259 239.402 222.236 238.64 222.236H237.854L237.692 220.619L237.53 219.001H236.745C235.982 219.001 235.959 218.978 235.959 218.077C235.959 217.176 235.936 217.153 235.174 217.153C234.411 217.153 234.365 217.107 234.295 216.275C234.226 215.489 234.157 215.42 233.487 215.35C232.747 215.281 232.747 215.281 232.585 213.664L232.424 212.069H231.661C230.899 212.069 230.876 212.046 230.876 211.145C230.876 210.244 230.852 210.221 230.09 210.221H229.304L229.142 208.603L228.981 206.985H228.195C227.433 206.985 227.409 206.962 227.409 206.061C227.409 205.16 227.386 205.137 226.601 205.137C225.838 205.137 225.792 205.091 225.792 204.328C225.792 203.566 225.746 203.519 225.006 203.519H224.221L224.059 201.833C223.99 200.931 223.943 199.383 223.99 198.436L224.059 196.703L225.746 196.633L227.409 196.564V195.778V194.97H229.142H230.876V194.184V193.398L232.47 193.237C234.064 193.075 234.087 193.075 234.157 192.358L234.226 191.619L236.029 191.55L237.808 191.48V190.695V189.886H239.425H241.043V188.962V188.037H241.967C242.868 188.037 242.891 188.014 242.891 187.229V186.443L244.578 186.374L246.242 186.304L246.311 185.542C246.381 184.872 246.45 184.802 247.189 184.802C247.929 184.802 247.975 184.756 247.975 184.017V183.231L249.708 183.069L251.441 182.908V182.122C251.441 181.382 251.487 181.336 252.25 181.336C253.012 181.336 253.059 181.29 253.059 180.551C253.059 179.788 253.105 179.742 253.937 179.672C254.746 179.603 254.792 179.557 254.861 178.725L254.93 177.87H256.548H258.142V176.946C258.142 176.045 258.165 176.021 258.951 176.021C259.714 176.021 259.76 175.975 259.76 175.213C259.76 174.427 259.783 174.404 260.684 174.404H261.608V173.48C261.608 172.578 261.632 172.555 262.394 172.555C263.134 172.555 263.203 172.486 263.272 171.793C263.342 171.123 263.411 171.053 264.22 170.984C265.028 170.915 265.075 170.869 265.075 170.106C265.075 169.367 265.121 169.32 265.883 169.32C266.669 169.32 266.692 169.297 266.692 168.396C266.692 167.495 266.715 167.472 267.455 167.472H268.24L268.448 165.9C268.656 164.375 268.656 164.352 269.419 164.283C270.112 164.214 270.158 164.144 270.158 163.289C270.158 162.411 270.181 162.388 270.967 162.388C271.73 162.388 271.776 162.342 271.776 161.579C271.776 160.817 271.822 160.771 272.561 160.771H273.347L273.509 159.153L273.671 157.536H274.456C275.173 157.536 275.242 157.466 275.242 156.865C275.242 156.519 275.311 155.733 275.38 155.132C275.519 154.139 275.588 154.069 276.189 154.069C276.813 154.069 276.859 154 276.859 153.145V152.221H277.784H278.708V150.488V148.755H279.517H280.325V147.414C280.325 146.698 280.395 145.543 280.464 144.873C280.626 143.694 280.626 143.671 281.388 143.671H282.174V142.054V140.436H282.983H283.792V137.779V135.121H284.577H285.363L285.525 131.794L285.686 128.443L286.426 128.374L287.142 128.305L287.258 124.954L287.373 121.603L288.113 121.534L288.829 121.465L288.921 111.713C288.945 106.353 288.945 97.1558 288.898 91.2634L288.829 80.5877H288.043H287.281L287.212 77.9766L287.142 75.3885L286.426 75.3192L285.686 75.2499L285.525 71.8993C285.409 69.681 285.27 68.5719 285.086 68.5487C284.947 68.5256 284.623 68.5025 284.369 68.4794C283.93 68.4563 283.907 68.2715 283.838 65.0364L283.768 61.6396H282.983C282.243 61.6396 282.197 61.5934 282.128 60.7615C282.059 59.999 281.989 59.9066 281.342 59.8372C280.649 59.7679 280.603 59.6986 280.464 58.5663C280.395 57.8962 280.325 56.7639 280.325 56.0245V54.7074H279.517H278.708V53.0899V51.4723H277.922C277.16 51.4723 277.114 51.4261 277.044 50.5943C276.975 49.8086 276.906 49.7393 276.235 49.67L275.519 49.6006L275.357 47.8676L275.196 46.1576H274.41H273.624V44.5401V42.9226H272.7C271.799 42.9226 271.776 42.8995 271.776 42.1138C271.776 41.3513 271.73 41.3051 270.99 41.3051H270.204L270.043 39.5951L269.881 37.8852L268.425 37.7234L266.946 37.5848L266.785 35.9903L266.646 34.3959L265.791 34.3266C265.051 34.2573 264.959 34.188 264.89 33.5179C264.82 32.8015 264.797 32.8015 263.203 32.6398L261.608 32.478V30.8836V29.2892H260.684C259.783 29.2892 259.76 29.2661 259.76 28.5035V27.7179L258.142 27.5561L256.525 27.3944V26.6318C256.525 25.8924 256.479 25.8462 255.67 25.7769C254.884 25.7075 254.792 25.6382 254.722 24.9681C254.653 24.2518 254.63 24.2518 253.036 24.09L251.441 23.9283V23.1426C251.441 22.3801 251.418 22.357 250.517 22.357C249.616 22.357 249.593 22.3338 249.593 21.5713C249.593 20.8088 249.546 20.7625 248.738 20.6932C247.929 20.6239 247.86 20.5546 247.79 19.8845L247.721 19.1681L245.942 19.0064C244.971 18.9371 243.908 18.8446 243.585 18.8215C243.122 18.7753 242.984 18.6367 242.938 18.0128C242.868 17.3195 242.799 17.2733 241.944 17.2733C241.066 17.2733 241.043 17.2502 241.043 16.4877V15.702L239.448 15.5403C237.854 15.3785 237.831 15.3785 237.762 14.6622L237.692 13.9227L235.22 13.8534L232.724 13.7841V12.9984C232.724 12.2359 232.701 12.2128 231.754 12.1435C230.829 12.0741 230.76 12.0279 230.691 11.3578C230.621 10.6646 230.552 10.6184 229.42 10.4797C228.75 10.4104 227.664 10.3411 227.017 10.3411H225.792V9.53232V8.72356H223.135H220.477V7.9148V7.10604H219.345C218.744 7.10604 217.589 7.03672 216.803 6.96739C215.463 6.80564 215.394 6.78253 215.394 6.18174C215.394 5.60405 215.301 5.53473 214.192 5.39609C213.522 5.32676 211.65 5.25744 210.033 5.25744H207.075V4.44868V3.63992H204.025C202.338 3.63992 200.397 3.5706 199.75 3.50128C198.618 3.36263 198.525 3.29331 198.525 2.71562V2.09172L195.937 1.95308C194.504 1.86065 192.517 1.79132 191.547 1.79132H189.744V0.982564V0.173803H95.8125H1.88071V141.938ZM172.645 50.548C172.645 51.195 172.691 51.2413 173.638 51.2875C174.17 51.3106 174.932 51.3568 175.302 51.3799C175.695 51.403 177.936 51.4492 180.34 51.4492L184.661 51.4723V52.2811V53.0899H186.001C186.717 53.0899 187.873 53.1592 188.543 53.2285C189.652 53.3671 189.744 53.4365 189.744 54.0142C189.744 54.615 189.814 54.6381 191.154 54.7998C191.939 54.8691 193.141 54.9385 193.811 54.9385H195.059V55.7472V56.556H196.792H198.525V57.3416V58.1273L200.143 58.289C201.714 58.4508 201.76 58.4739 201.76 59.0978C201.76 59.7448 201.783 59.7448 203.493 59.9066L205.226 60.0683V60.854C205.226 61.6165 205.249 61.6396 206.151 61.6396C207.052 61.6396 207.075 61.6627 207.075 62.4253V63.2109L208.692 63.3727L210.31 63.5344V64.3201C210.31 65.0595 210.356 65.1057 211.096 65.1057C211.835 65.1057 211.904 65.1751 211.974 65.8452C212.043 66.5384 212.112 66.6077 212.921 66.677C213.753 66.7464 213.776 66.7695 213.776 67.6707C213.776 68.5487 213.799 68.5719 214.562 68.5719C215.324 68.5719 215.37 68.6181 215.44 69.4268C215.509 70.2356 215.578 70.3049 216.249 70.3742C216.988 70.4436 216.988 70.4436 217.15 72.0611L217.311 73.6555H218.074C218.837 73.6555 218.86 73.6786 218.86 74.5798C218.86 75.481 218.883 75.5041 219.668 75.5041H220.477V77.1216C220.477 78.8085 220.754 79.2706 221.656 79.0395C222.002 78.9471 222.095 79.1551 222.233 80.5646L222.395 82.2052H223.158H223.943V84.2618C223.943 85.371 224.013 86.9423 224.082 87.7279C224.244 89.0682 224.267 89.1375 224.868 89.1375H225.492L225.63 92.7653C225.838 97.4562 225.838 105.798 225.63 110.697L225.492 114.556H224.868C224.267 114.556 224.244 114.625 224.082 115.965C224.013 116.751 223.943 118.322 223.943 119.431V121.488H223.135H222.326V123.221V124.954H221.54H220.754L220.593 126.687C220.431 128.397 220.408 128.42 219.784 128.42C219.137 128.42 219.137 128.443 218.975 130.153L218.813 131.886H218.028C217.288 131.886 217.242 131.932 217.242 132.695C217.242 133.458 217.196 133.504 216.456 133.504H215.671L215.509 135.121L215.347 136.739H214.562C213.799 136.739 213.776 136.762 213.776 137.663V138.587H212.852C211.951 138.587 211.927 138.611 211.927 139.396C211.927 140.159 211.881 140.205 211.119 140.205C210.356 140.205 210.31 140.251 210.31 140.991C210.31 141.753 210.264 141.799 209.455 141.869C208.623 141.938 208.577 141.984 208.508 142.793L208.438 143.671H206.821H205.226V144.595V145.52H204.302C203.401 145.52 203.216 145.751 203.331 146.721C203.355 146.791 202.638 146.929 201.76 147.022L200.143 147.183V147.946V148.708L198.41 148.87C196.7 149.032 196.677 149.032 196.677 149.656C196.677 150.257 196.607 150.326 195.475 150.465C194.805 150.534 193.649 150.603 192.933 150.603H191.593V151.412C191.593 152.198 191.57 152.221 190.669 152.221C189.767 152.221 189.744 152.244 189.744 152.983V153.769L187.156 153.908C185.724 154 183.852 154.069 182.997 154.069H181.449L181.379 154.809L181.31 155.571L176.989 155.641L172.645 155.687V156.473V157.235L163.818 157.374C152.403 157.582 69.3545 157.582 65.9577 157.374L63.3465 157.235V156.449C63.3465 155.733 63.3003 155.687 62.584 155.687H61.7983L61.6597 153.076C61.4517 149.702 61.4517 57.1337 61.6366 53.9448L61.7983 51.4954L62.6302 51.4261C63.3696 51.3568 63.4621 51.2875 63.5314 50.6405L63.6007 49.9241L65.2644 49.8779C66.1656 49.8548 66.9282 49.8086 66.9513 49.7855C66.9744 49.7624 90.7751 49.7624 119.821 49.8086L172.645 49.8548V50.548Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5us39v\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:291,intrinsicWidth:348,svg:'<svg width=\"348\" height=\"291\" viewBox=\"0 0 348 291\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M138.859 1.90695C138.697 3.6169 138.697 3.64001 138.05 3.64001C137.403 3.64001 137.403 3.66312 137.241 5.37307L137.079 7.10613H136.294H135.508V8.72365V10.3412H134.722H133.937L133.775 12.0742C133.613 13.7842 133.613 13.8073 132.966 13.8073C132.319 13.8073 132.319 13.8304 132.157 15.5403L131.996 17.2734H131.21H130.448L130.378 18.9371L130.309 20.624L129.593 20.6933C128.899 20.7626 128.853 20.832 128.714 21.9642C128.645 22.6343 128.576 23.6973 128.576 24.3674C128.576 25.5459 128.576 25.569 127.836 25.6383L127.074 25.7076L127.005 27.3714L126.935 29.0582H126.15C125.364 29.0582 125.341 29.0813 125.341 29.9825C125.341 30.8837 125.318 30.9068 124.555 30.9068H123.793L123.631 32.3164C123.562 33.102 123.492 34.2574 123.492 34.8582V35.9904H122.683C121.898 35.9904 121.875 36.0135 121.875 36.9147C121.875 37.8159 121.852 37.839 121.089 37.839H120.303L120.142 39.5721C119.98 41.282 119.98 41.3052 119.356 41.3052C118.755 41.3052 118.686 41.3976 118.547 42.3681C118.478 42.9689 118.409 44.0549 118.409 44.7944V46.1577H117.6C116.814 46.1577 116.791 46.1808 116.791 47.082C116.791 47.9832 116.768 48.0063 116.005 48.0063H115.243L115.081 49.4159C115.012 50.2015 114.942 51.3569 114.942 51.9577V53.0899H114.134H113.325V54.823V56.5561H112.539H111.754L111.592 58.1505C111.43 59.7449 111.43 59.768 110.714 59.8373L109.974 59.9066L109.905 61.6859L109.836 63.4883H109.05H108.264L108.195 65.152L108.126 66.8389L107.386 66.9082C106.67 66.9775 106.67 67.0006 106.508 68.595L106.346 70.1895H105.561H104.775V71.9225C104.775 73.6556 104.775 73.6556 104.151 73.6787C103.782 73.7018 103.435 73.7018 103.342 73.6787C103.25 73.6787 103.181 74.3488 103.181 75.1576C103.181 75.9894 103.111 76.752 103.042 76.8906C102.973 77.0062 102.534 77.1217 102.095 77.1217H101.309V78.7392V80.3567H100.5H99.6915V81.8356C99.6915 82.6444 99.6222 83.7766 99.5529 84.3543C99.4142 85.3479 99.3449 85.4173 98.6748 85.4866C98.0278 85.5559 97.9585 85.6483 97.8891 86.4109C97.8198 87.1734 97.7505 87.2659 97.0804 87.3352L96.3409 87.4045L96.2716 89.877L96.2023 92.3726H95.4397H94.6541L94.4923 94.0826L94.3306 95.8156L93.6142 95.8849L92.8748 95.9543L92.8055 97.5025L92.7362 99.0738H91.9505H91.1649L91.0955 100.853L91.0262 102.655L90.2868 102.725C89.5704 102.794 89.5704 102.817 89.4087 104.388C89.2469 105.96 89.2469 105.983 88.5306 106.052L87.7912 106.122L87.7218 107.785L87.6525 109.472H86.8669H86.0581V111.205V112.938H85.2725H84.4868L84.3251 114.671L84.1633 116.404H83.4008H82.6613L82.4996 118.022C82.3378 119.593 82.3147 119.639 81.6908 119.639C81.0669 119.639 81.0438 119.686 80.882 121.049C80.8127 121.835 80.7434 122.967 80.7434 123.591C80.7434 124.677 80.7203 124.7 80.004 124.769C79.3107 124.839 79.2414 124.908 79.1721 125.694C79.1028 126.525 79.0566 126.572 78.294 126.572H77.5084V128.305V130.038H76.6765C75.8908 130.038 75.8677 130.061 75.9139 130.823C75.9602 131.262 75.9139 131.701 75.8215 131.794C75.7291 131.886 75.6598 132.672 75.6598 133.55V135.121H74.851C74.0653 135.121 74.0422 135.144 74.0422 136.046C74.0422 136.947 74.0191 136.97 73.2335 136.97H72.4247V138.172C72.4247 138.842 72.3554 139.928 72.2861 140.598C72.1474 141.73 72.1012 141.799 71.408 141.869L70.6917 141.938L70.6223 143.602L70.553 145.289H69.7674C68.9817 145.289 68.9586 145.312 68.9586 146.213C68.9586 147.114 68.9355 147.137 68.1729 147.137H67.4104L67.2486 148.547C67.1793 149.332 67.11 150.488 67.11 151.089V152.221H66.3012C65.5156 152.221 65.4925 152.244 65.4925 153.145C65.4925 154.046 65.4694 154.07 64.6837 154.07H63.875V155.271C63.875 155.941 63.8056 157.027 63.7363 157.697C63.5977 158.83 63.5515 158.899 62.8582 158.968L62.1419 159.038L62.0726 160.817L62.0033 162.619H61.2407H60.4551L60.2933 164.237C60.1316 165.808 60.1084 165.854 59.4845 165.854C58.8375 165.854 58.8375 165.877 58.6758 167.587L58.514 169.32H57.7284H56.9427V171.053V172.787H56.1571H55.3714L55.2097 174.404C55.0479 175.998 55.0479 176.022 54.3778 176.022C53.8001 176.022 53.7077 176.114 53.6846 176.645C53.6615 177.015 53.6384 177.385 53.5921 177.524C53.569 177.639 53.5228 178.517 53.5228 179.418L53.4766 181.105H52.6678C51.8822 181.105 51.8591 181.128 51.8591 182.03C51.8591 182.931 51.836 182.954 51.0734 182.954H50.2878L50.126 184.687L49.9643 186.42H49.1786H48.393V188.962V191.504H47.6073C46.8448 191.504 46.7986 191.55 46.7292 192.359C46.6599 193.144 46.5906 193.237 45.9205 193.306C45.2041 193.375 45.2041 193.398 45.0193 195.039C44.9269 195.963 44.8806 197.049 44.9037 197.442C44.95 198.159 44.9037 198.205 44.1412 198.205H43.3324L43.2631 199.984L43.1938 201.786L42.4544 201.856C41.738 201.925 41.738 201.948 41.5763 203.543L41.4145 205.137H40.6289H39.8432V206.87V208.603H39.0345H38.2488L38.1795 210.267L38.1102 211.954L37.2552 212.023L36.3771 212.092V213.71V215.304H35.5683H34.7827L34.7134 217.084L34.644 218.886L33.9046 218.955C33.1883 219.025 33.1883 219.048 33.0265 220.642L32.8648 222.236H32.0791H31.2935V223.97V225.703H30.4847H29.6759V227.436V229.169H28.8903H28.1046L27.9429 230.902L27.7811 232.635H26.9955H26.2098V233.998C26.2098 234.738 26.1405 235.824 26.0712 236.424C25.9325 237.395 25.8632 237.487 25.2855 237.487C24.6616 237.487 24.6385 237.534 24.4768 239.197L24.315 240.93L23.5987 241C22.9286 241.069 22.8592 241.138 22.7899 241.924C22.7206 242.756 22.6744 242.802 21.9118 242.802H21.1262V244.119C21.1262 244.859 21.0569 246.014 20.9875 246.661C20.8489 247.816 20.7796 247.886 20.1788 247.886C19.5549 247.886 19.5549 247.909 19.3931 249.619L19.2314 251.352H18.4457C17.6832 251.352 17.6601 251.375 17.6601 252.276C17.6601 253.177 17.637 253.2 16.8513 253.2H16.0425V254.402C16.0425 255.072 15.9732 256.158 15.9039 256.828C15.7652 257.961 15.719 258.03 15.0258 258.099L14.3095 258.169L14.2402 259.832L14.1708 261.519H13.4083H12.6226L12.4609 263.252C12.2991 264.962 12.2991 264.985 11.6521 264.985C11.0051 264.985 11.0051 265.008 10.8434 266.718L10.6816 268.451H9.89596H9.1103V270.184V271.917H8.32465H7.539L7.37724 273.651C7.21549 275.337 7.19239 275.384 6.56848 275.384C5.9908 275.384 5.92148 275.453 5.78283 276.585C5.71351 277.255 5.64419 278.364 5.64419 279.011V280.236H4.83543C4.04977 280.236 4.02666 280.259 4.02666 281.16C4.02666 282.062 4.00356 282.085 3.24101 282.085H2.45536L2.29361 283.818L2.13185 285.551H1.3462H0.560547V287.284V289.017H1.36931C2.13185 289.017 2.17807 289.063 2.17807 289.826V290.635H32.1022H62.0264V289.71C62.0264 288.809 62.0495 288.786 62.812 288.786H63.5977L63.7594 287.168L63.9212 285.551H64.7068H65.4925V283.818V282.085H66.2781H67.0638L67.2255 280.352C67.3873 278.642 67.3873 278.619 68.0343 278.619C68.6813 278.619 68.6813 278.596 68.8431 276.886L69.0048 275.153H69.7905H70.5761L70.5992 273.466C70.6454 270.97 70.8072 270.439 71.5235 270.346C72.1012 270.277 72.1474 270.184 72.3092 268.544L72.4709 266.834H73.2566C74.0191 266.834 74.0422 266.811 74.0422 265.91C74.0422 265.008 74.0653 264.985 74.851 264.985H75.6598V263.645C75.6598 262.929 75.7291 261.773 75.7984 261.103C75.9602 259.925 75.9602 259.902 76.7227 259.902H77.5084V258.169V256.435H78.294H79.0566L79.2183 254.818C79.3801 253.224 79.4032 253.2 80.0502 253.2C80.6972 253.2 80.6972 253.2 80.8589 251.352C81.0207 249.526 81.0207 249.503 81.6677 249.503C82.2916 249.503 82.3147 249.457 82.4765 247.886L82.6382 246.268H83.4239C84.1864 246.268 84.2095 246.245 84.2095 245.344C84.2095 244.443 84.2326 244.42 85.0183 244.42C85.7808 244.42 85.827 244.373 85.827 243.611V242.802H174.652H263.477L263.639 244.535L263.801 246.268H264.586H265.372V247.886V249.503H266.158H266.943L267.105 251.236L267.267 252.969H268.052H268.838V254.702V256.435H269.624H270.409L270.571 258.169L270.733 259.902H271.519H272.304V261.635V263.368H273.113H273.922V265.101V266.834H274.707H275.493L275.655 268.428C275.816 270.023 275.816 270.046 276.533 270.115L277.272 270.184L277.342 271.848L277.411 273.535H278.197H279.005V274.852C279.005 275.592 279.075 276.747 279.144 277.394C279.306 278.596 279.306 278.619 280.068 278.619C280.831 278.619 280.854 278.642 280.854 279.543C280.854 280.444 280.877 280.467 281.663 280.467H282.471V282.894V285.32H283.257C284.043 285.32 284.066 285.343 284.135 286.313C284.205 287.215 284.251 287.284 284.944 287.353C285.591 287.423 285.683 287.515 285.753 288.162C285.822 288.832 285.891 288.901 286.7 288.971C287.509 289.04 287.555 289.086 287.555 289.849V290.635H317.479H347.403V288.347C347.403 287.099 347.334 285.597 347.265 285.019C347.126 284.026 347.057 283.956 346.387 283.887C345.74 283.818 345.67 283.725 345.601 282.94C345.532 282.131 345.485 282.085 344.723 282.085H343.937V280.352V278.619H343.128H342.32V277.278C342.32 276.562 342.25 275.407 342.181 274.737C342.019 273.558 342.019 273.535 341.257 273.535C340.494 273.535 340.471 273.512 340.471 272.611C340.471 271.71 340.448 271.686 339.662 271.686H338.877L338.807 270L338.738 268.336L337.999 268.267C337.236 268.197 337.236 268.174 337.236 266.996C337.236 266.325 337.167 265.239 337.097 264.569C336.936 263.391 336.936 263.368 336.173 263.368C335.411 263.368 335.388 263.345 335.388 262.443C335.388 261.542 335.364 261.519 334.579 261.519H333.77V260.387C333.77 259.786 333.701 258.631 333.631 257.845L333.47 256.435H332.707C331.944 256.435 331.921 256.412 331.921 255.511C331.921 254.61 331.898 254.587 331.113 254.587H330.304V252.969V251.352H329.495H328.686V250.012C328.686 249.295 328.617 248.14 328.548 247.47C328.386 246.291 328.386 246.268 327.623 246.268C326.861 246.268 326.838 246.245 326.838 245.344C326.838 244.443 326.815 244.42 326.029 244.42H325.243L325.174 242.733L325.105 241.069L324.388 241C323.695 240.93 323.649 240.861 323.51 239.729C323.441 239.059 323.372 237.973 323.372 237.303V236.101H322.563C321.777 236.101 321.754 236.078 321.754 235.177C321.754 234.275 321.731 234.252 320.968 234.252H320.183L320.021 232.519C319.859 230.809 319.859 230.786 319.235 230.786C318.635 230.786 318.565 230.717 318.427 229.562C318.357 228.915 318.288 227.759 318.288 227.02V225.703H317.479C316.717 225.703 316.67 225.656 316.67 224.894C316.67 224.131 316.624 224.085 315.885 224.085H315.122L314.961 222.676C314.891 221.89 314.822 220.734 314.822 220.134V219.001H314.013C313.227 219.001 313.204 218.978 313.204 218.077C313.204 217.176 313.181 217.153 312.419 217.153H311.633L311.471 215.42C311.31 213.71 311.31 213.687 310.686 213.687C310.085 213.687 310.016 213.617 309.877 212.462C309.808 211.815 309.738 210.66 309.738 209.92V208.603H308.953C308.19 208.603 308.144 208.557 308.074 207.725C308.005 206.962 307.936 206.87 307.266 206.801C306.549 206.731 306.549 206.708 306.388 205.114C306.226 203.566 306.203 203.519 305.579 203.519C305.001 203.519 304.932 203.45 304.793 202.295C304.724 201.648 304.655 200.492 304.655 199.753V198.436H303.869C303.106 198.436 303.06 198.39 302.991 197.558C302.922 196.795 302.852 196.703 302.205 196.633C301.512 196.564 301.466 196.495 301.327 195.363C301.258 194.692 301.188 193.606 301.188 192.936V191.735H300.38C299.64 191.735 299.571 191.665 299.571 191.065C299.571 190.718 299.502 189.932 299.432 189.355C299.294 188.361 299.224 188.292 298.554 188.222C297.907 188.153 297.838 188.061 297.769 187.275C297.699 186.466 297.653 186.42 296.89 186.42H296.105V183.878V181.336H295.296C294.51 181.336 294.487 181.313 294.487 180.412C294.487 179.511 294.464 179.488 293.702 179.488H292.916L292.754 177.755L292.593 176.022H291.807H291.021V174.658C291.021 173.919 290.952 172.833 290.883 172.232C290.744 171.238 290.675 171.169 290.074 171.169C289.45 171.169 289.404 171.1 289.404 170.245C289.404 169.344 289.381 169.32 288.618 169.32H287.832L287.671 167.587L287.509 165.854H286.723H285.938V164.514C285.938 163.798 285.868 162.642 285.799 161.972C285.637 160.794 285.637 160.771 284.875 160.771C284.158 160.771 284.112 160.724 284.043 159.893C283.973 159.107 283.904 159.038 283.234 158.968L282.471 158.899V156.473V154.07H281.686H280.9L280.738 152.336L280.577 150.603H279.791C279.028 150.603 279.005 150.58 279.005 149.679C279.005 148.778 278.982 148.755 278.197 148.755H277.388V147.623C277.388 147.022 277.318 145.866 277.249 145.081L277.087 143.671H276.325C275.562 143.671 275.539 143.648 275.539 142.747C275.539 141.846 275.516 141.823 274.73 141.823H273.922V140.205V138.588H273.113H272.304V137.247C272.304 136.531 272.235 135.399 272.166 134.729C272.027 133.596 271.981 133.527 271.287 133.458L270.571 133.388L270.502 131.701L270.432 130.038H269.67H268.884L268.723 128.305C268.561 126.595 268.561 126.572 267.914 126.572C267.267 126.572 267.267 126.549 267.105 124.839L266.943 123.106H266.158C265.418 123.106 265.372 123.059 265.372 122.297C265.372 121.534 265.326 121.488 264.563 121.488H263.754V120.148C263.754 119.431 263.685 118.276 263.616 117.606C263.477 116.474 263.408 116.404 262.807 116.404C262.183 116.404 262.183 116.381 262.021 114.671L261.86 112.938H261.074C260.335 112.938 260.311 112.892 260.242 111.945C260.173 110.997 260.15 110.974 259.433 111.043L258.671 111.136V109.98C258.671 109.357 258.601 108.201 258.532 107.416L258.37 106.006H257.608H256.822V104.388V102.771H256.037H255.251L255.089 101.038L254.927 99.3048H254.142H253.356V97.5718V95.8387H252.57H251.808L251.646 94.2443C251.484 92.6268 251.484 92.6268 250.745 92.5575L250.005 92.4881L249.936 90.8244L249.867 89.1607L249.127 89.0914L248.388 89.022L248.319 87.3352L248.249 85.6715H247.464C246.678 85.6715 246.655 85.6483 246.655 84.7472C246.655 83.846 246.632 83.8229 245.869 83.8229C245.107 83.8229 245.107 83.7997 244.945 82.5982C244.876 81.9512 244.806 80.7958 244.806 80.0563V78.7392H243.998H243.189V77.1217C243.189 75.5966 243.166 75.5042 242.68 75.4811C242.38 75.458 241.987 75.4349 241.802 75.4117C241.571 75.3886 241.433 75.0882 241.386 74.5106C241.317 73.748 241.248 73.6556 240.67 73.6556C240.046 73.6556 240 73.5863 239.861 72.4309C239.792 71.7839 239.723 70.5823 239.723 69.7735V68.3409H238.914H238.105V66.7233V65.1058H237.319H236.534L236.372 63.3728L236.21 61.6397H235.425H234.639V59.9066V58.1736H233.853H233.068L232.906 56.5561L232.744 54.9385H231.959H231.173V53.2055V51.4724H230.364H229.555V49.7394V48.0063H228.77H227.984L227.822 46.2733L227.661 44.5402H226.875H226.089V42.8071V41.0741H225.281H224.495L224.426 39.3872L224.356 37.7235L223.501 37.6542L222.623 37.5849V35.9673V34.3729H221.814H221.006V32.6399V30.9068H220.22H219.434L219.273 29.1737L219.111 27.4407H218.325H217.54V25.7076V23.9746H216.731H215.945L215.876 22.2877L215.806 20.624L215.067 20.5547C214.328 20.4853 214.328 20.4853 214.166 18.8678L214.004 17.2734H213.242H212.456V15.5403V13.8073H211.67H210.885L210.723 12.0742L210.561 10.3412H209.775H208.99V8.72365V7.10613H208.204H207.418L207.257 5.37307C207.095 3.66312 207.095 3.64001 206.448 3.64001C205.801 3.64001 205.801 3.6169 205.639 1.90695L205.477 0.173893H172.249H139.02L138.859 1.90695ZM173.173 62.6795C173.173 63.4421 173.219 63.4883 173.982 63.4883C174.745 63.4883 174.791 63.5345 174.791 64.2971C174.791 65.0596 174.837 65.1058 175.576 65.1058H176.362L176.524 66.7233L176.686 68.3409H177.471H178.257V70.0739V71.807H179.042H179.828L179.99 73.6556C180.152 75.5042 180.152 75.5042 180.799 75.5042C181.446 75.5042 181.469 75.5273 181.631 77.1217L181.792 78.7392H182.555H183.317L183.387 80.403L183.456 82.0898L184.172 82.1591C184.912 82.2284 184.912 82.2284 185.074 83.9615C185.235 85.6483 185.235 85.6715 185.882 85.6715C186.506 85.6715 186.529 85.7177 186.691 87.289L186.853 88.9065H187.638H188.401L188.47 90.6858L188.54 92.4881L189.279 92.5575L189.995 92.6268L190.157 94.3599L190.319 96.0698H191.105H191.89V97.6873V99.3048H192.676H193.462L193.623 101.038C193.785 102.748 193.808 102.771 194.432 102.771C195.079 102.771 195.079 102.794 195.241 104.504L195.403 106.237H196.188H196.974V107.855V109.472H197.76H198.522L198.684 110.882C198.753 111.667 198.822 112.823 198.822 113.423V114.556H199.631C200.417 114.556 200.44 114.579 200.44 115.48C200.44 116.381 200.463 116.404 201.226 116.404H202.011L202.173 118.137C202.335 119.824 202.358 119.87 202.982 119.87C203.559 119.87 203.629 119.94 203.767 121.072C203.837 121.742 203.906 122.851 203.906 123.498V124.723H204.715C205.501 124.723 205.524 124.746 205.524 125.647C205.524 126.549 205.547 126.572 206.309 126.572C207.072 126.572 207.072 126.595 207.234 127.773C207.303 128.443 207.372 129.599 207.372 130.315V131.655H208.181H208.99V133.388V135.121H209.775C210.538 135.121 210.584 135.168 210.653 135.976C210.723 136.762 210.792 136.854 211.439 136.924C212.109 136.993 212.179 137.062 212.317 138.056C212.387 138.634 212.456 139.766 212.456 140.575V142.054H213.242H214.004L214.166 143.648C214.328 145.266 214.328 145.266 215.067 145.335L215.806 145.404L215.876 147.068L215.945 148.755H216.731H217.54V150.488V152.221H218.325H219.111L219.273 153.954L219.434 155.687H220.22H221.006V157.42V159.153H221.814H222.6L222.669 160.817L222.739 162.504L223.478 162.573C224.218 162.642 224.218 162.642 224.379 164.26L224.541 165.854H225.304H226.089V167.587V169.32H226.875H227.661L227.822 171.053L227.984 172.787H228.77H229.555V174.404V176.022H230.364H231.15L231.219 177.801L231.288 179.603L232.028 179.673C232.744 179.742 232.744 179.765 232.906 181.359L233.068 182.954H233.853H234.639V184.687V186.42H235.448H236.257V189.747V193.098L235.402 193.167C234.593 193.237 234.523 193.306 234.454 193.976C234.385 194.692 234.316 194.739 233.53 194.762C228.4 194.831 113.672 194.692 113.533 194.6C113.417 194.531 113.325 194.23 113.325 193.93C113.325 193.468 113.186 193.375 112.47 193.306C111.638 193.237 111.592 193.19 111.523 192.359C111.453 191.573 111.384 191.504 110.76 191.504C110.021 191.504 110.067 191.573 109.997 189.424L109.974 188.153L110.737 188.084C111.407 188.014 111.476 187.945 111.476 187.206C111.476 186.443 111.499 186.42 112.401 186.42H113.325V183.878V181.336H114.111H114.896L115.058 179.603L115.22 177.87H116.005H116.791V176.137V174.404H117.6H118.409V173.064C118.409 172.347 118.478 171.192 118.547 170.522C118.709 169.344 118.709 169.32 119.471 169.32C120.211 169.32 120.257 169.274 120.257 168.512C120.257 167.749 120.303 167.703 121.066 167.703H121.875V165.854V164.006H122.683H123.492V162.781C123.492 162.134 123.562 161.025 123.631 160.355C123.793 159.176 123.793 159.153 124.555 159.153C125.318 159.153 125.341 159.13 125.341 158.229C125.341 157.328 125.364 157.305 126.15 157.305H126.958V155.964C126.958 155.248 127.028 154.093 127.097 153.422C127.236 152.29 127.305 152.221 127.906 152.221C128.53 152.221 128.53 152.198 128.691 150.488L128.853 148.755H129.639H130.424V147.137V145.52H131.21H131.996L132.157 143.671C132.319 141.846 132.319 141.823 132.966 141.823C133.59 141.823 133.613 141.776 133.775 140.205L133.937 138.588H134.722H135.485L135.554 136.901L135.624 135.237L136.363 135.168L137.079 135.098L137.241 133.365C137.403 131.678 137.426 131.655 138.05 131.655C138.674 131.655 138.697 131.609 138.859 130.038L139.02 128.42H139.806H140.569L140.638 126.618L140.707 124.839L141.47 124.769C142.209 124.7 142.209 124.677 142.209 123.498C142.209 122.828 142.279 121.742 142.348 121.072C142.51 119.894 142.51 119.87 143.272 119.87C144.012 119.87 144.035 119.824 144.104 118.877C144.173 117.929 144.196 117.906 144.936 117.976L145.675 118.068V116.913C145.675 116.289 145.745 115.133 145.814 114.348L145.976 112.938H146.738H147.524V111.205V109.472H148.31C149.072 109.472 149.118 109.426 149.188 108.594C149.257 107.831 149.326 107.739 149.973 107.67C150.667 107.6 150.713 107.531 150.851 106.399C150.921 105.729 150.99 104.596 150.99 103.857V102.54H151.799H152.608V100.922V99.3048H153.393H154.179L154.341 97.5718L154.502 95.8387H155.288H156.074V93.2969V90.7551H156.859C157.622 90.7551 157.668 90.7089 157.737 89.877C157.807 89.0914 157.876 89.022 158.546 88.9527L159.263 88.8834L159.424 87.1503L159.586 85.4404H160.372H161.157V83.0141V80.5878H161.966C162.752 80.5878 162.775 80.5647 162.775 79.6635C162.775 78.7623 162.798 78.7392 163.561 78.7392C164.323 78.7392 164.323 78.7161 164.485 77.5145C164.554 76.8675 164.623 75.7121 164.623 74.9727V73.6556H165.409H166.195L166.357 71.9225C166.518 70.2126 166.518 70.1895 167.165 70.1895C167.789 70.1895 167.812 70.1432 167.974 68.5719L168.136 66.9544H168.921H169.707V65.2445V63.5114L170.585 63.4421C171.371 63.3728 171.44 63.3034 171.509 62.6102C171.579 61.9401 171.648 61.8708 172.388 61.8708C173.127 61.8708 173.173 61.917 173.173 62.6795Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5yigd\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m8izvi\",\"data-framer-name\":\"bitgo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ehco2h\",\"data-framer-name\":\"BITGO LOGO\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 114 29\"><path d=\"M 12.138 28.98 C 12.138 28.98 24.275 24.769 24.275 9.281 L 24.275 3.711 C 24.275 3.109 23.819 2.605 23.231 2.566 C 21.027 2.469 15.804 2.003 12.138 0.004 C 8.472 2.003 3.249 2.469 1.045 2.566 C 0.456 2.605 0.001 3.109 0.001 3.711 L 0.001 9.281 C 0.001 24.769 12.138 28.98 12.138 28.98 Z\" fill=\"rgb(120, 120, 120)\"></path><path d=\"M 17.038 11.319 C 16.886 9.63 15.481 9.048 13.676 8.873 L 13.676 6.506 L 12.271 6.506 L 12.271 8.796 C 11.91 8.796 11.511 8.796 11.131 8.796 L 11.131 6.486 L 9.725 6.486 L 9.745 8.835 C 9.441 8.835 6.933 8.854 6.933 8.854 L 6.933 10.348 L 8.719 10.348 L 8.719 17.898 L 7.142 17.898 L 7.123 19.626 C 7.123 19.626 9.346 19.606 9.669 19.626 L 9.669 21.993 L 11.055 21.993 L 11.055 19.645 C 11.435 19.664 11.815 19.664 12.176 19.664 L 12.176 21.993 L 13.581 21.993 L 13.581 19.626 C 15.937 19.509 17.57 18.907 17.798 16.656 C 17.969 14.851 17.152 14.017 15.823 13.687 C 16.639 13.298 17.152 12.561 17.038 11.319 Z M 15.044 16.365 C 15.025 18.131 12.081 17.918 11.15 17.918 L 11.15 14.774 C 12.081 14.774 15.063 14.521 15.044 16.365 Z M 14.417 11.94 C 14.398 13.551 11.948 13.357 11.169 13.337 L 11.169 10.484 C 11.948 10.484 14.436 10.251 14.417 11.94 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 48.379 19.218 C 48.379 20.46 48.132 21.489 47.657 22.323 C 47.182 23.158 46.536 23.837 45.758 24.342 C 44.96 24.847 44.067 25.215 43.06 25.448 C 42.054 25.662 41.009 25.778 39.964 25.778 L 31.17 25.778 L 31.17 3.206 L 39.964 3.206 C 40.819 3.206 41.693 3.303 42.586 3.478 C 43.478 3.653 44.295 3.963 45.017 4.41 C 45.739 4.856 46.327 5.438 46.802 6.176 C 47.258 6.913 47.486 7.864 47.486 9.009 C 47.486 10.271 47.163 11.3 46.479 12.115 C 45.815 12.93 44.941 13.532 43.858 13.881 L 43.858 13.939 C 44.485 14.056 45.074 14.25 45.625 14.541 C 46.176 14.832 46.65 15.201 47.049 15.647 C 47.448 16.093 47.771 16.617 48.018 17.219 C 48.246 17.801 48.379 18.461 48.379 19.218 Z M 42.32 9.747 C 42.32 8.99 42.035 8.427 41.465 8.078 C 40.895 7.729 40.04 7.554 38.92 7.554 L 36.299 7.554 L 36.299 12.212 L 39.167 12.212 C 40.173 12.212 40.933 11.998 41.484 11.591 C 42.054 11.164 42.32 10.543 42.32 9.747 Z M 43.042 18.694 C 43.042 17.763 42.7 17.103 42.016 16.753 C 41.332 16.385 40.42 16.21 39.262 16.21 L 36.299 16.21 L 36.299 21.372 L 39.3 21.372 C 39.718 21.372 40.154 21.334 40.591 21.256 C 41.028 21.178 41.446 21.042 41.807 20.868 C 42.168 20.674 42.472 20.402 42.7 20.053 C 42.928 19.703 43.042 19.257 43.042 18.694 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 55.464 4.837 C 55.464 5.244 55.388 5.613 55.236 5.962 C 55.084 6.312 54.875 6.622 54.609 6.875 C 54.343 7.127 54.039 7.321 53.678 7.476 C 53.318 7.631 52.938 7.69 52.539 7.69 C 51.703 7.69 51.019 7.418 50.449 6.836 C 49.88 6.273 49.614 5.594 49.614 4.817 C 49.614 4.429 49.69 4.06 49.842 3.711 C 49.994 3.362 50.202 3.051 50.468 2.799 C 50.734 2.546 51.057 2.333 51.399 2.178 C 51.76 2.022 52.14 1.945 52.558 1.945 C 52.957 1.945 53.337 2.022 53.697 2.158 C 54.058 2.314 54.381 2.508 54.628 2.76 C 54.894 3.012 55.103 3.323 55.255 3.672 C 55.388 4.041 55.464 4.429 55.464 4.837 Z M 49.975 9.902 L 55.103 9.902 L 55.103 25.778 L 49.975 25.778 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 64.372 13.783 L 64.372 19.858 C 64.372 20.615 64.505 21.158 64.79 21.547 C 65.075 21.915 65.569 22.11 66.31 22.11 C 66.557 22.11 66.822 22.09 67.107 22.051 C 67.392 22.012 67.62 21.954 67.81 21.857 L 67.867 25.681 C 67.506 25.816 67.069 25.914 66.518 26.011 C 65.968 26.108 65.436 26.146 64.885 26.146 C 63.84 26.146 62.967 26.011 62.264 25.739 C 61.561 25.467 60.991 25.098 60.555 24.594 C 60.136 24.089 59.813 23.507 59.624 22.808 C 59.433 22.11 59.339 21.353 59.339 20.499 L 59.339 13.783 L 56.888 13.783 L 56.888 9.902 L 59.358 9.902 L 59.358 5.729 L 64.391 5.729 L 64.391 9.902 L 68.038 9.902 L 68.038 13.783 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 86.557 25.816 C 85.114 26.185 83.537 26.36 81.828 26.36 C 80.061 26.36 78.428 26.069 76.946 25.506 C 75.465 24.924 74.173 24.128 73.109 23.08 C 72.046 22.032 71.191 20.79 70.602 19.334 C 69.994 17.879 69.69 16.248 69.69 14.463 C 69.69 12.658 69.994 11.027 70.621 9.552 C 71.229 8.077 72.084 6.835 73.166 5.807 C 74.249 4.778 75.521 3.982 76.965 3.439 C 78.428 2.895 79.985 2.604 81.676 2.604 C 83.423 2.604 85.038 2.876 86.538 3.419 C 88.039 3.963 89.255 4.681 90.185 5.613 L 86.823 9.533 C 86.311 8.912 85.608 8.407 84.772 8.019 C 83.917 7.631 82.949 7.437 81.866 7.437 C 80.935 7.437 80.061 7.612 79.283 7.961 C 78.485 8.31 77.801 8.795 77.231 9.436 C 76.642 10.057 76.186 10.814 75.882 11.668 C 75.559 12.522 75.389 13.473 75.389 14.482 C 75.389 15.53 75.54 16.481 75.825 17.355 C 76.11 18.228 76.547 18.985 77.117 19.606 C 77.687 20.227 78.39 20.732 79.245 21.081 C 80.08 21.43 81.049 21.605 82.132 21.605 C 82.758 21.605 83.347 21.566 83.917 21.469 C 84.468 21.372 85 21.217 85.475 21.003 L 85.475 16.889 L 81.258 16.889 L 81.258 12.444 L 90.375 12.444 L 90.375 24.4 C 89.255 24.982 88.001 25.448 86.557 25.816 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 109.578 17.782 C 109.578 19.082 109.35 20.247 108.894 21.314 C 108.439 22.362 107.812 23.255 107.014 23.992 C 106.216 24.73 105.304 25.293 104.26 25.7 C 103.215 26.108 102.114 26.302 100.917 26.302 C 99.758 26.302 98.637 26.108 97.593 25.7 C 96.548 25.293 95.617 24.73 94.839 23.992 C 94.06 23.255 93.433 22.362 92.977 21.314 C 92.521 20.266 92.293 19.082 92.293 17.782 C 92.293 16.481 92.521 15.317 92.977 14.269 C 93.433 13.221 94.06 12.347 94.839 11.629 C 95.617 10.911 96.529 10.348 97.593 9.98 C 98.637 9.591 99.758 9.397 100.917 9.397 C 102.095 9.397 103.215 9.591 104.26 9.98 C 105.304 10.368 106.216 10.911 107.014 11.629 C 107.812 12.347 108.42 13.24 108.894 14.269 C 109.35 15.317 109.578 16.481 109.578 17.782 Z M 104.658 17.782 C 104.658 17.277 104.583 16.772 104.412 16.287 C 104.241 15.802 104.013 15.375 103.69 14.987 C 103.386 14.618 102.987 14.308 102.531 14.075 C 102.076 13.842 101.544 13.725 100.936 13.725 C 100.328 13.725 99.796 13.842 99.34 14.075 C 98.884 14.308 98.505 14.618 98.201 14.987 C 97.897 15.356 97.668 15.783 97.517 16.287 C 97.365 16.772 97.289 17.277 97.289 17.782 C 97.289 18.286 97.365 18.791 97.517 19.276 C 97.668 19.761 97.897 20.208 98.22 20.596 C 98.523 20.984 98.922 21.314 99.378 21.547 C 99.834 21.78 100.366 21.896 100.974 21.896 C 101.581 21.896 102.114 21.78 102.569 21.547 C 103.025 21.314 103.405 21.003 103.728 20.596 C 104.032 20.208 104.279 19.761 104.431 19.276 C 104.583 18.791 104.658 18.286 104.658 17.782 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 112.18 22.672 C 113.149 22.672 113.966 23.448 113.966 24.477 C 113.966 25.525 113.13 26.301 112.18 26.301 C 111.212 26.301 110.376 25.525 110.376 24.477 C 110.376 23.429 111.193 22.672 112.18 22.672 Z M 112.18 22.963 C 111.364 22.963 110.718 23.623 110.718 24.477 C 110.718 25.37 111.364 25.991 112.18 25.991 C 112.997 25.991 113.624 25.35 113.624 24.477 C 113.624 23.604 112.979 22.963 112.18 22.963 Z M 111.801 25.525 L 111.478 25.525 L 111.478 23.429 L 112.257 23.429 C 112.75 23.429 112.979 23.623 112.979 24.031 C 112.979 24.399 112.75 24.574 112.446 24.613 L 113.035 25.525 L 112.694 25.525 L 112.142 24.613 L 111.782 24.613 L 111.782 25.525 Z M 111.801 24.361 L 112.18 24.361 C 112.56 24.361 112.694 24.244 112.694 24.011 C 112.694 23.817 112.599 23.701 112.237 23.701 L 111.82 23.701 L 111.82 24.361 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:12601135787,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5yigd\",\"data-framer-name\":\"Line\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-12bmyo9\",\"data-framer-name\":\"How it works\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g7tsq2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q833m4\",\"data-framer-name\":\"Tittle\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"We bring structure to \"}),\"unstructured credit markets,\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\" globally.\"})]})})},wSb1Hb6bJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"We bring structure to \"}),\"unstructured credit markets,\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\" globally.\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"We bring structure to \"}),\"unstructured credit markets,\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\" globally.\"})]})}),className:\"framer-9vqbjz\",fonts:[\"FS;Poppins-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tyzp56\",\"data-framer-name\":\"Values\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-doerpw\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6f4pmb\",\"data-framer-name\":\"List Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1esnlrs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\"25 bps\"})}),fonts:[\"Inter-Medium\"]},wSb1Hb6bJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\"25 bps\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\"25 bps\"})}),className:\"framer-1m4r32i\",\"data-framer-name\":\"Number\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:\"annual savings\"})}),fonts:[\"Inter-Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"annual cost savings\"})}),className:\"framer-17s3j6f\",\"data-framer-name\":\"Number\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.5)\"},children:\"Cut out payment agents. Savings based on a $150mm warehouse.\"})}),className:\"framer-1nfmo1h\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vqclo4\",\"data-framer-name\":\"List Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b3ou9h\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\"90%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\"90%\"})}),className:\"framer-1csxprc\",\"data-framer-name\":\"Number\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:\"time reduction\"})}),fonts:[\"FS;Poppins-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"time reduction\"})}),className:\"framer-1e18igq\",\"data-framer-name\":\"Number\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.5)\"},children:\"Streamline borrowing base calculations & reconciliation.\"})}),className:\"framer-1u243a8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4109ho\",\"data-framer-name\":\"List Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p21zsp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\"100%\"})}),fonts:[\"Inter-Medium\"]},wSb1Hb6bJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\"100%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\"100%\"})}),className:\"framer-idtbwz\",\"data-framer-name\":\"Number\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:\"auditable\"})}),fonts:[\"Inter-Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"auditable\"})}),className:\"framer-1pyinrg\",\"data-framer-name\":\"Number\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.5)\"},children:\"Verify all loan + deal data on our immutable ledger.\"})}),className:\"framer-vpqmqv\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1rq3tlw\",\"data-framer-name\":\"How it works\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xfxmy6\",\"data-framer-name\":\"Tittle\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e6q3vc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:\"Embedded end-to-end, \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"from origination to waterfalls.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:\" \"})]})})},wSb1Hb6bJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:\"Embedded end-to-end, \"}),\"from origination to waterfalls.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:\" \"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:\"Embedded end-to-end, \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"from origination to waterfalls.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:\" \"})]})}),className:\"framer-1uov5e5\",fonts:[\"FS;Poppins-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{height:536.5,width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1280px)`,y:(componentViewport?.y||0)+0+1448+64+0+0+106.4},wSb1Hb6bJ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 22px)`,y:(componentViewport?.y||0)+0+2569.3999999999996+64+0+0+76.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:946,width:`min(${componentViewport?.width||\"100vw\"} - 240px, 1280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rfggmx-container\",nodeId:\"bkzpCQAV5\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(OCPDesktop3,{height:\"100%\",id:\"bkzpCQAV5\",layoutId:\"bkzpCQAV5\",style:{width:\"100%\"},variant:\"ortJ1nGDk\",width:\"100%\"})})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-176unpe hidden-z9qddy hidden-n41s1c\",\"data-framer-name\":\"Our Numbers\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1re0b98\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-664ol4\",\"data-framer-name\":\"Content\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13qji50\",\"data-framer-name\":\"Main Statistics\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bwckuh\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Metrics to Date\"})}),className:\"framer-1qp93k6\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1las5so\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1792bwl\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lfgj29\",\"data-framer-name\":\"Card Counter\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19xf0te\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 33 37\"><path d=\"M 23.833 1.85 L 31.167 9.25 M 31.167 9.25 L 23.833 16.65 M 31.167 9.25 L 1.833 9.25 M 9.167 35.15 L 1.833 27.75 M 1.833 27.75 L 9.167 20.35 M 1.833 27.75 L 31.167 27.75\" fill=\"transparent\" stroke-width=\"3.67\" stroke=\"rgb(21, 127, 254)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9412387313,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bb4ywm\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14tfipl-container\",isAuthoredByUser:true,nodeId:\"MjUWMXU8g\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(LoanDataDisplay,{apiUrl:\"https://api.lucidfinance.xyz/api/v0/public/aggregates/loans?currency=USD\",decimalPlaces:2,fontColor:\"rgb(0, 0, 0)\",fontSize:46,fontStyle:\"normal\",fontWeight:\"normal\",height:\"100%\",id:\"MjUWMXU8g\",includeDollarSignInDecimals:false,layoutId:\"MjUWMXU8g\",parameterName:\"count\",useAbbreviation:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.55em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Loan Count\"})}),className:\"framer-sm44as\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iu5339\",\"data-framer-name\":\"Card Counter\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSb1Hb6bJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:94.5,intrinsicWidth:103.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5695.8+64+0+0+84.8+0+901.8333333333333+0+451.25+32+0),pixelHeight:189,pixelWidth:207,src:\"https://framerusercontent.com/images/dN6H3F6hszwaY8x5fFnfVt3TRY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:94.5,intrinsicWidth:103.5,pixelHeight:189,pixelWidth:207,src:\"https://framerusercontent.com/images/dN6H3F6hszwaY8x5fFnfVt3TRY.png\"},className:\"framer-1j4cpf6\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-57tb3f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n583uh-container\",isAuthoredByUser:true,nodeId:\"v1SFtixOk\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(LoanDataDisplay,{apiUrl:\"https://api.lucidfinance.xyz/api/v0/public/aggregates/borrowers\",decimalPlaces:2,fontColor:\"rgb(0, 0, 0)\",fontSize:46,fontStyle:\"normal\",fontWeight:\"normal\",height:\"100%\",id:\"v1SFtixOk\",includeDollarSignInDecimals:false,layoutId:\"v1SFtixOk\",parameterName:\"borrowerCount\",useAbbreviation:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.55em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Borrowers Reached\"})}),className:\"framer-1s3cnol\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-detqa9\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7ztt4z\",\"data-framer-name\":\"Card Counter\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSb1Hb6bJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:66,intrinsicWidth:54,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5695.8+64+0+0+84.8+0+0+0+0+32+0),pixelHeight:132,pixelWidth:108,src:\"https://framerusercontent.com/images/QRQhezNi2b0AWqt4uIz6IbQc2EU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:66,intrinsicWidth:54,pixelHeight:132,pixelWidth:108,src:\"https://framerusercontent.com/images/QRQhezNi2b0AWqt4uIz6IbQc2EU.png\"},className:\"framer-sg9kug\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5kmtyt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.55em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Loans Originated\"})}),className:\"framer-1or184g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19dop9m-container\",isAuthoredByUser:true,nodeId:\"AHummzYmV\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(LoanDataDisplay,{apiUrl:\"https://api.lucidfinance.xyz/api/v0/public/aggregates/loans?currency=USD\",decimalPlaces:2,fontColor:\"rgb(0, 0, 0)\",fontSize:46,fontStyle:\"normal\",fontWeight:\"normal\",height:\"100%\",id:\"AHummzYmV\",includeDollarSignInDecimals:true,layoutId:\"AHummzYmV\",parameterName:\"principal\",useAbbreviation:true,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-po6na0\",\"data-framer-name\":\"Card Counter\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-y6gahy\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"20\" viewBox=\"-1 -1 22 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11 2C11 3.10457 8.53757 4 5.5 4C2.46243 4 0 3.10457 0 2M11 2C11 0.895431 8.53757 0 5.5 0C2.46243 0 0 0.895431 0 2M11 2V3.5M0 2V14C0 15.1046 2.46243 16 5.5 16M5.5 8C5.33145 8 5.16468 7.99724 5 7.99185C2.19675 7.89999 0 7.04328 0 6M5.5 12C2.46243 12 0 11.1046 0 10M20 8.5C20 9.60457 17.5376 10.5 14.5 10.5C11.4624 10.5 9 9.60457 9 8.5M20 8.5C20 7.39543 17.5376 6.5 14.5 6.5C11.4624 6.5 9 7.39543 9 8.5M20 8.5V16C20 17.1046 17.5376 18 14.5 18C11.4624 18 9 17.1046 9 16V8.5M20 12.25C20 13.3546 17.5376 14.25 14.5 14.25C11.4624 14.25 9 13.3546 9 12.25\" stroke=\"#137FFF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4852bi\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jpmsdf-container\",isAuthoredByUser:true,nodeId:\"KKWx67S5k\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(LoanDataDisplay,{apiUrl:\"https://api.lucidfinance.xyz/api/v0/public/aggregates/principal-payments\",decimalPlaces:2,fontColor:\"rgb(0, 0, 0)\",fontSize:46,fontStyle:\"normal\",fontWeight:\"normal\",height:\"100%\",id:\"KKWx67S5k\",includeDollarSignInDecimals:true,layoutId:\"KKWx67S5k\",parameterName:\"totalPrincipalPayments\",useAbbreviation:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.55em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Total Repaid Principal\"})}),className:\"framer-lbmp3i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-9a69ym\",\"data-framer-name\":\"Feature\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rs9rq7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oulrx4\",\"data-framer-name\":\"Feature 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nq5rwz\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o0o0c4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gx8qa2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u2b0ow\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:[\"The Cross-Border\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\"Credit OS\"})]})})},wSb1Hb6bJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(7, 8, 6)\"},children:[\"The Cross-Border \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(2, 121, 250))\"},children:\"Credit OS\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:[\"The Cross-Border\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:\"Credit OS\"})]})}),className:\"framer-m535dv\",fonts:[\"FS;Poppins-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-523cd71c-7cfb-490d-83ed-fc88ab945944, rgb(106, 107, 106))\"},children:\"Enabling institutions to originate, securitize, and manage loans globally with ease. Our automated, compliant platform streamlines workflows for seamless, transparent credit operations anywhere.\"})}),className:\"framer-1q3avkk\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14azidm\",\"data-framer-name\":\"card2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1012,intrinsicWidth:1159,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2218.9+135+0+0+0+0+-64),pixelHeight:2024,pixelWidth:2318,sizes:\"664px\",src:\"https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=512 512w,https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png 2318w\"}},wSb1Hb6bJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1012,intrinsicWidth:1159,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3720.2+64+0+0+0+0+297.2+-64),pixelHeight:2024,pixelWidth:2318,sizes:\"490px\",src:\"https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=512 512w,https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png 2318w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1012,intrinsicWidth:1159,pixelHeight:2024,pixelWidth:2318,sizes:\"664px\",src:\"https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=512 512w,https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rgkrMn69LqgJO3pC1lk0rAX68.png 2318w\"},className:\"framer-19yms8a\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-obgunu\",\"data-framer-name\":\"Feature 3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{height:413,width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1280px) - 64px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2218.9+135+0+0+527+0},wSb1Hb6bJ:{height:276,width:`min(${componentViewport?.width||\"100vw\"} - 44px, 1280px)`,y:(componentViewport?.y||0)+0+3720.2+64+0+0+637.2+0+297.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:442,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1280px) - 100px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18s1nuc-container\",isModuleExternal:true,nodeId:\"dWpYL4bq1\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Card2,{height:\"100%\",id:\"dWpYL4bq1\",layoutId:\"dWpYL4bq1\",pFwOoUbug:addImageAlt({src:\"https://framerusercontent.com/images/tiohFX6DljatySJQh4eOmcbYM.png\",srcSet:\"https://framerusercontent.com/images/tiohFX6DljatySJQh4eOmcbYM.png?scale-down-to=512 512w,https://framerusercontent.com/images/tiohFX6DljatySJQh4eOmcbYM.png 687w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pdcqwg\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oulkbc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tdz1xl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"Combine the  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Data & Transaction Layers\"]})})},wSb1Hb6bJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"Combine the  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Data & Transaction Layers\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"Combine the  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Data & Transaction Layers\"]})}),className:\"framer-cudqxh\",fonts:[\"FS;Poppins-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-523cd71c-7cfb-490d-83ed-fc88ab945944, rgb(106, 107, 106))\"},children:\"Integrate data and transactions to automate key lending functions like borrowing base updates and payment redirection. Enforce limits, manage collateral, and ensure compliance seamlessly through one unified, transparent system.\"})}),className:\"framer-tymzle\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f9y0yc\",\"data-framer-name\":\"Feature 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vcjjkl\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ypf6b0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kvzfi6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"Move Loans\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Like They are Cash\"]})})},wSb1Hb6bJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"Move Loans\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Like They are Cash\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 120, 250))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"Move Loans\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Like They are Cash\"]})}),className:\"framer-kcr9ww\",fonts:[\"FS;Poppins-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-523cd71c-7cfb-490d-83ed-fc88ab945944, rgb(106, 107, 106))\"},children:\"Transfer, restructure, or reassign loans as easily as moving funds. Our platform brings the agility of money movement to the loan market, allowing you to seamlessly transfer assets, manage ownership changes, and adjust terms in real time while seamlessly tracking accruals.\"})}),className:\"framer-pjkvtu\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{height:413,width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1280px) - 64px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2218.9+135+0+0+1025+0},wSb1Hb6bJ:{height:276,width:`min(${componentViewport?.width||\"100vw\"} - 44px, 1280px)`,y:(componentViewport?.y||0)+0+3720.2+64+0+0+1274.4+0+297.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:442,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1280px) - 100px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m8jrbm-container\",isModuleExternal:true,nodeId:\"WXHF85gUw\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Card2,{height:\"100%\",id:\"WXHF85gUw\",layoutId:\"WXHF85gUw\",pFwOoUbug:addImageAlt({src:\"https://framerusercontent.com/images/RMqekECks4MN8DELCx7G9pOwrJQ.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-npr67a hidden-qw2hku\",\"data-framer-name\":\"Our Numbers\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-j5pvx0\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eoth5r\",\"data-framer-name\":\"Content\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-160145d\",\"data-framer-name\":\"Main Statistics\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tmp5cd\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Metrics to Date\"})}),className:\"framer-1tc48z1\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bg3308\",\"data-framer-name\":\"Extra Statistics\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ml32fq\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oky6ap\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ostr7l\",\"data-framer-name\":\"Card Counter\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:66,intrinsicWidth:54,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3926.9+64.00000000000006+0+0+123.6+0+0+0+0+0+32+0),pixelHeight:132,pixelWidth:108,src:\"https://framerusercontent.com/images/QRQhezNi2b0AWqt4uIz6IbQc2EU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:66,intrinsicWidth:54,pixelHeight:132,pixelWidth:108,src:\"https://framerusercontent.com/images/QRQhezNi2b0AWqt4uIz6IbQc2EU.png\"},className:\"framer-c07z5p\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l6zee6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mablez-container\",isAuthoredByUser:true,nodeId:\"fQuyeCiWi\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(LoanDataDisplay,{apiUrl:\"https://api.lucidfinance.xyz/api/v0/public/aggregates/loans?currency=USD\",decimalPlaces:2,fontColor:\"rgb(0, 0, 0)\",fontSize:46,fontStyle:\"normal\",fontWeight:\"normal\",height:\"100%\",id:\"fQuyeCiWi\",includeDollarSignInDecimals:true,layoutId:\"fQuyeCiWi\",parameterName:\"principal\",useAbbreviation:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.55em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Loans Originated\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.65em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Loans Originated\"})}),className:\"framer-w5s7fz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r7kzz3\",\"data-framer-name\":\"Card Counter\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-w99f26\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"20\" viewBox=\"-1 -1 22 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11 2C11 3.10457 8.53757 4 5.5 4C2.46243 4 0 3.10457 0 2M11 2C11 0.895431 8.53757 0 5.5 0C2.46243 0 0 0.895431 0 2M11 2V3.5M0 2V14C0 15.1046 2.46243 16 5.5 16M5.5 8C5.33145 8 5.16468 7.99724 5 7.99185C2.19675 7.89999 0 7.04328 0 6M5.5 12C2.46243 12 0 11.1046 0 10M20 8.5C20 9.60457 17.5376 10.5 14.5 10.5C11.4624 10.5 9 9.60457 9 8.5M20 8.5C20 7.39543 17.5376 6.5 14.5 6.5C11.4624 6.5 9 7.39543 9 8.5M20 8.5V16C20 17.1046 17.5376 18 14.5 18C11.4624 18 9 17.1046 9 16V8.5M20 12.25C20 13.3546 17.5376 14.25 14.5 14.25C11.4624 14.25 9 13.3546 9 12.25\" stroke=\"#137FFF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gx6lgr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w33dlq-container\",isAuthoredByUser:true,nodeId:\"wHdVPgrGE\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(LoanDataDisplay,{apiUrl:\"https://api.lucidfinance.xyz/api/v0/public/aggregates/principal-payments\",decimalPlaces:2,fontColor:\"rgb(0, 0, 0)\",fontSize:46,fontStyle:\"normal\",fontWeight:\"normal\",height:\"100%\",id:\"wHdVPgrGE\",includeDollarSignInDecimals:true,layoutId:\"wHdVPgrGE\",parameterName:\"totalPrincipalPayments\",useAbbreviation:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.55em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Total Repaid Principal\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.65em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Total Repaid Principal\"})}),className:\"framer-v5womy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y6s83l\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-76csuw\",\"data-framer-name\":\"Card Counter\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-n0fgnr\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 33 37\"><path d=\"M 23.833 1.85 L 31.167 9.25 M 31.167 9.25 L 23.833 16.65 M 31.167 9.25 L 1.833 9.25 M 9.167 35.15 L 1.833 27.75 M 1.833 27.75 L 9.167 20.35 M 1.833 27.75 L 31.167 27.75\" fill=\"transparent\" stroke-width=\"3.67\" stroke=\"rgb(21, 127, 254)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9412387313,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a3w4cj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tx4rr7-container\",isAuthoredByUser:true,nodeId:\"Q4Dz4X0Ci\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(LoanDataDisplay,{apiUrl:\"https://api.lucidfinance.xyz/api/v0/public/aggregates/loans?currency=USD\",decimalPlaces:2,fontColor:\"rgb(0, 0, 0)\",fontSize:46,fontStyle:\"normal\",fontWeight:\"normal\",height:\"100%\",id:\"Q4Dz4X0Ci\",includeDollarSignInDecimals:false,layoutId:\"Q4Dz4X0Ci\",parameterName:\"count\",useAbbreviation:true,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.65em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Loan Count\"})}),className:\"framer-sf661f hidden-n41s1c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.55em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Loan Count\"})}),className:\"framer-1tuut1l hidden-z9qddy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ra58fu\",\"data-framer-name\":\"Card Counter\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:94.5,intrinsicWidth:103.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3926.9+64.00000000000006+0+0+123.6+0+0+0+454.5833333333333+2+32+0),pixelHeight:189,pixelWidth:207,src:\"https://framerusercontent.com/images/dN6H3F6hszwaY8x5fFnfVt3TRY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:94.5,intrinsicWidth:103.5,pixelHeight:189,pixelWidth:207,src:\"https://framerusercontent.com/images/dN6H3F6hszwaY8x5fFnfVt3TRY.png\"},className:\"framer-s5qc5k\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ur0au\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cck0gm-container\",isAuthoredByUser:true,nodeId:\"BpFS70H4w\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(LoanDataDisplay,{apiUrl:\"https://api.lucidfinance.xyz/api/v0/public/aggregates/borrowers\",decimalPlaces:2,fontColor:\"rgb(0, 0, 0)\",fontSize:46,fontStyle:\"normal\",fontWeight:\"normal\",height:\"100%\",id:\"BpFS70H4w\",includeDollarSignInDecimals:false,layoutId:\"BpFS70H4w\",parameterName:\"borrowerCount\",useAbbreviation:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.55em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Borrowers Reached\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.65em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"Borrowers Reached\"})}),className:\"framer-11z8ajj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19xvm87\",\"data-framer-name\":\"Full stack\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kwc5bm\",\"data-framer-name\":\"Frame 3784\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{y:(componentViewport?.y||0)+0+5100.333333333334+64+0+0+0},wSb1Hb6bJ:{y:(componentViewport?.y||0)+0+7700.933333333333+64+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9hit3l-container\",isModuleExternal:true,nodeId:\"rvMaqWynK\",rendersWithMotion:true,scopeId:\"YSW3s7nAi\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MiniCard1,{height:\"100%\",id:\"rvMaqWynK\",isAHbpQQ9:\"DOCUMENTATION\",layoutId:\"rvMaqWynK\",variant:\"P5AYg2uJQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wngeyq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"49px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(21, 127, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Built to support \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Modern fintech organizations.\"]})})},wSb1Hb6bJ:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(21, 127, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Built to support \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"Modern fintech organizations.\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(21, 127, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Built to support \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Modern fintech organizations.\"]})}),className:\"framer-12mnz8p\",\"data-framer-name\":\"Access to high-yield bonds Globally\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19a92u6\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-irigc7\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10dp27t\",\"data-framer-name\":\"Group 3366\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h42zke\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"FOR DATA\"})}),className:\"framer-1tlpp2d\",\"data-framer-name\":\"Access top fintechs products in emerging markets and earn reliable yield.\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"API Docs\"})}),className:\"framer-19peezr\",\"data-framer-name\":\"API Docs\",fonts:[\"FR;InterDisplay-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15cssrv\",\"data-framer-name\":\"Frame 3734\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yozDjrE7B\"},implicitPathVariables:undefined},{href:{webPageId:\"yozDjrE7B\"},implicitPathVariables:undefined},{href:{webPageId:\"yozDjrE7B\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 64px) / 3, 1px) - 60px, 1px)`,y:(componentViewport?.y||0)+0+5100.333333333334+64+0+0+411+0+30+0+0+210.39999999999998+0},wSb1Hb6bJ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 44px, 1200px) - 60px, 1px)`,y:(componentViewport?.y||0)+0+7700.933333333333+64+0+0+313+0+0+30+0+0+210.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 270px, 1200px) - 64px) / 3, 1px) - 60px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iggrpu-container\",isModuleExternal:true,nodeId:\"Sxr1xMMAj\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{Y_702M6GH:resolvedLinks[1]},wSb1Hb6bJ:{Y_702M6GH:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(RequestAccess,{height:\"100%\",id:\"Sxr1xMMAj\",layoutId:\"Sxr1xMMAj\",style:{width:\"100%\"},variant:\"gjcvohT9j\",width:\"100%\",Y_702M6GH:resolvedLinks[0]})})})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17tiykl\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w5er4u\",\"data-framer-name\":\"Group 3366\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16k0xxa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"FOR EXECUTION\"})}),className:\"framer-oxzk34\",\"data-framer-name\":\"Access top fintechs products in emerging markets and earn reliable yield.\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SDK Docs\"})}),className:\"framer-q9y6u1\",\"data-framer-name\":\"API Docs\",fonts:[\"FR;InterDisplay-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rkusr1\",\"data-framer-name\":\"Frame 3734\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yozDjrE7B\"},implicitPathVariables:undefined},{href:{webPageId:\"yozDjrE7B\"},implicitPathVariables:undefined},{href:{webPageId:\"yozDjrE7B\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 64px) / 3, 1px) - 60px, 1px)`,y:(componentViewport?.y||0)+0+5100.333333333334+64+0+0+411+0+30+0+0+210.39999999999998+0},wSb1Hb6bJ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 44px, 1200px) - 60px, 1px)`,y:(componentViewport?.y||0)+0+7700.933333333333+64+0+0+313+0+352.4+30+0+0+210.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 270px, 1200px) - 64px) / 3, 1px) - 60px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-47d0oc-container\",isModuleExternal:true,nodeId:\"l_CYZE1j9\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{Y_702M6GH:resolvedLinks1[1]},wSb1Hb6bJ:{Y_702M6GH:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(RequestAccess,{height:\"100%\",id:\"l_CYZE1j9\",layoutId:\"l_CYZE1j9\",style:{width:\"100%\"},variant:\"gjcvohT9j\",width:\"100%\",Y_702M6GH:resolvedLinks1[0]})})})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xcknn\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-birii0\",\"data-framer-name\":\"Group 3366\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-710fre\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"FOR CUSTOM SOLUTIONS\"})}),className:\"framer-juo46z\",\"data-framer-name\":\"Access top fintechs products in emerging markets and earn reliable yield.\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Whitelabel\"})}),className:\"framer-prwfuy\",\"data-framer-name\":\"API Docs\",fonts:[\"FR;InterDisplay-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1skka5p\",\"data-framer-name\":\"Frame 3734\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yozDjrE7B\"},implicitPathVariables:undefined},{href:{webPageId:\"yozDjrE7B\"},implicitPathVariables:undefined},{href:{webPageId:\"yozDjrE7B\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 64px) / 3, 1px) - 60px, 1px)`,y:(componentViewport?.y||0)+0+5100.333333333334+64+0+0+411+0+30+0+0+210.4+0},wSb1Hb6bJ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 44px, 1200px) - 60px, 1px)`,y:(componentViewport?.y||0)+0+7700.933333333333+64+0+0+313+0+704.8+30+0+0+210.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 270px, 1200px) - 64px) / 3, 1px) - 60px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12tvrbu-container\",isModuleExternal:true,nodeId:\"VhXJlo55m\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{Y_702M6GH:resolvedLinks2[1]},wSb1Hb6bJ:{Y_702M6GH:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(RequestAccess,{height:\"100%\",id:\"VhXJlo55m\",layoutId:\"VhXJlo55m\",style:{width:\"100%\"},variant:\"gjcvohT9j\",width:\"100%\",Y_702M6GH:resolvedLinks2[0]})})})})})})})]})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1qygc45\",\"data-framer-name\":\"CTA section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12w3k37\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-655euv\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oupmcj\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ruvg4o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Schedule a 15 minute demo.\"})})},wSb1Hb6bJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Schedule a \",/*#__PURE__*/_jsx(\"br\",{}),\"15 minute demo.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Schedule a 15 minute demo.\"})}),className:\"framer-pq18ah\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fc67e90e-48dc-4f80-982e-70997b015a08, rgb(198, 199, 198))\"},children:\"Join the growing list of originators and capital providers using Pact Labs to bring efficiency and transparency to the world of private credit.\"})}),className:\"framer-7u4f8v\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{y:(componentViewport?.y||0)+0+5959.733333333334+0+0+80+236.4},wSb1Hb6bJ:{y:(componentViewport?.y||0)+0+9167.133333333333+32+0+0+294.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1orphce-container\",id:\"1orphce\",nodeId:\"H7I6c1CAL\",scopeId:\"YSW3s7nAi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSb1Hb6bJ:{variant:\"o2gv6XStd\"}},children:/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"H7I6c1CAL\",iEOAdS_HW:iEOAdS_HW3bnx0g({overlay:overlay1}),layoutId:\"H7I6c1CAL\",PI9Hk9WtQ:\"Book a demo\",variant:\"waINVxrTv\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-oidyq1\"),\"data-framer-portal-id\":\"1orphce\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"Hvyk4hgoZ\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1jggrgp-container\"),\"data-framer-portal-id\":\"1orphce\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"luKVlyYht\",rendersWithMotion:true,scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(Calendly,{calendar:\"eric-lucidfinance\",height:\"100%\",hideGdprBanner:true,hideLandingPageDetails:true,id:\"luKVlyYht\",layoutId:\"luKVlyYht\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{y:(componentViewport?.y||0)+0+6466.133333333333},wSb1Hb6bJ:{y:(componentViewport?.y||0)+0+9571.533333333333}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1etk7aw-container\",nodeId:\"oMAEKzv7r\",scopeId:\"YSW3s7nAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kInq1lCXA:{variant:\"tqFI5xXvq\"},wSb1Hb6bJ:{variant:\"yFMSuPgth\"}},children:/*#__PURE__*/_jsx(Footer2,{height:\"100%\",id:\"oMAEKzv7r\",layoutId:\"oMAEKzv7r\",style:{width:\"100%\"},variant:\"v7hxLzOCt\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bIv6D.framer-1rppm8h, .framer-bIv6D .framer-1rppm8h { display: block; }\",\".framer-bIv6D.framer-z9qddy { align-content: center; align-items: center; background-color: var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, #070806); cursor: default; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-bIv6D .framer-1munc6p-container { flex: none; height: auto; left: 22px; position: fixed; right: 22px; top: 20px; z-index: 9; }\",\".framer-bIv6D .framer-1jvvyx3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 180px 0px 51px 135px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-2nsnbw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-bIv6D .framer-wxk2vf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 20px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1ced4xr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-13mn97n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-bIv6D .framer-15pcctv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-bIv6D .framer-la0jcq-container, .framer-bIv6D .framer-14tfipl-container, .framer-bIv6D .framer-n583uh-container, .framer-bIv6D .framer-19dop9m-container, .framer-bIv6D .framer-1jpmsdf-container, .framer-bIv6D .framer-mablez-container, .framer-bIv6D .framer-1w33dlq-container, .framer-bIv6D .framer-tx4rr7-container, .framer-bIv6D .framer-cck0gm-container, .framer-bIv6D .framer-9hit3l-container, .framer-bIv6D .framer-1orphce-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-bIv6D.framer-7fems, .framer-bIv6D.framer-oidyq1 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-bIv6D.framer-5nsac3-container, .framer-bIv6D.framer-1jggrgp-container { bottom: 62px; flex: none; left: 32px; position: fixed; right: 32px; top: 64px; z-index: 9; }\",\".framer-bIv6D .framer-1rtliyd { align-content: center; align-items: center; aspect-ratio: 1.56 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 502px); justify-content: center; overflow: visible; padding: 0px 0px 100px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-bIv6D .framer-100srbh { aspect-ratio: 1.56 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 3.695130016998155px 1.1757231872266858px 14.735139251241133px 0px rgba(76, 78, 252, 0.02), 8.758110608760035px 2.7866715573327383px 34.92488188621044px 0px rgba(76, 78, 252, 0.03981), 15.975699034490388px 5.083176965519669px 63.70659457887538px 0px rgba(76, 78, 252, 0.07262), 26.559567574149696px 8.450771500865812px 105.9120855984862px 0px rgba(76, 78, 252, 0.12073), 42.89153598830453px 13.647306905369623px 171.03938226258177px 0px rgba(76, 78, 252, 0.19496), 70.20918873632908px 22.339287325195617px 279.97449832277334px 0px rgba(76, 78, 252, 0.31913), 120.89548187940963px 38.46674423435761px 482.097179840557px 0px rgba(76, 78, 252, 0.54952), 220px 70px 877.2981249267548px 0px rgba(76, 78, 252, 1); flex: none; height: var(--framer-aspect-ratio-supported, 401px); max-width: 1440px; overflow: visible; position: relative; transform-style: preserve-3d; width: 626px; z-index: 1; }\",\".framer-bIv6D .framer-11puppq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 2000px; overflow: hidden; padding: 0px 175px 80px 175px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-3ff1e5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-18qqlve { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bIv6D .framer-111s9jq-container { flex: none; height: 92px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1i5yigd { background-color: rgba(255, 255, 255, 0.2); height: 51px; overflow: hidden; position: relative; width: 1px; }\",\".framer-bIv6D .framer-1o5kw68 { aspect-ratio: 3.347560975609756 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 139px; }\",\".framer-bIv6D .framer-ow4qhn, .framer-bIv6D .framer-1ca4q6j { height: 25px; overflow: hidden; position: relative; width: 95px; }\",\".framer-bIv6D .framer-x6wdhx { flex: none; height: 23px; left: 0px; position: absolute; top: 0px; width: 93px; }\",\".framer-bIv6D .framer-xpv32b { aspect-ratio: 2.717948717948718 / 1; height: var(--framer-aspect-ratio-supported, 51px); position: relative; width: 139px; }\",\".framer-bIv6D .framer-1ljvc93 { aspect-ratio: 3.236559139784946 / 1; height: var(--framer-aspect-ratio-supported, 34px); overflow: visible; position: relative; width: 108px; }\",\".framer-bIv6D .framer-1ab7pc7 { flex: none; height: 22px; left: 0px; position: absolute; top: calc(48.00000000000002% - 22px / 2); width: 94px; }\",\".framer-bIv6D .framer-1eflso7 { height: 43px; overflow: visible; position: relative; width: 127px; }\",\".framer-bIv6D .framer-1whx90b { flex: none; height: 32px; left: 0px; position: absolute; top: 3px; width: 32px; }\",\".framer-bIv6D .framer-1q4los9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 42px; position: absolute; top: -1px; white-space: pre-wrap; width: 87px; word-break: break-word; word-wrap: break-word; }\",\".framer-bIv6D .framer-1urk6fq { --framer-paragraph-spacing: 0px; bottom: 7px; flex: none; height: auto; left: 43px; position: absolute; white-space: pre; width: auto; }\",\".framer-bIv6D .framer-mhghbp { height: 29px; overflow: visible; position: relative; width: 208px; }\",\".framer-bIv6D .framer-fzb885 { flex: none; height: 29px; left: calc(50.24630541871924% - 205px / 2); position: absolute; top: calc(48.275862068965544% - 29px / 2); width: 205px; }\",\".framer-bIv6D .framer-1y84okh { height: 18px; overflow: hidden; position: relative; width: 127px; }\",\".framer-bIv6D .framer-61ptqx { bottom: 0px; flex: none; height: 15px; left: 49px; position: absolute; width: 16px; }\",\".framer-bIv6D .framer-vhlm6 { bottom: 0px; flex: none; height: 15px; left: 67px; position: absolute; width: 16px; }\",\".framer-bIv6D .framer-1tnni2a { bottom: 0px; flex: none; height: 15px; left: 90px; position: absolute; width: 16px; }\",\".framer-bIv6D .framer-1fkjgi0 { bottom: 0px; flex: none; height: 15px; left: 31px; position: absolute; width: 17px; }\",\".framer-bIv6D .framer-gqqci8 { bottom: 0px; flex: none; height: 15px; left: 85px; position: absolute; width: 4px; }\",\".framer-bIv6D .framer-1t843j6 { bottom: 0px; flex: none; height: 15px; left: 0px; position: absolute; width: 15px; }\",\".framer-bIv6D .framer-rnyelx { bottom: 0px; flex: none; height: 15px; left: 17px; position: absolute; width: 14px; }\",\".framer-bIv6D .framer-5us39v { bottom: 0px; flex: none; height: 15px; left: 106px; position: absolute; width: 17px; }\",\".framer-bIv6D .framer-m8izvi { height: 29px; overflow: hidden; position: relative; width: 114px; }\",\".framer-bIv6D .framer-1ehco2h { flex: none; height: 29px; left: 0px; position: absolute; top: 0px; width: 114px; }\",\".framer-bIv6D .framer-12bmyo9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 120px 135px 120px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1g7tsq2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-q833m4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-9vqbjz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bIv6D .framer-tyzp56 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-doerpw { display: grid; flex: none; gap: 48px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-6f4pmb { align-content: center; align-items: center; align-self: start; background-color: #f7f7f7; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; justify-self: start; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1esnlrs, .framer-bIv6D .framer-b3ou9h, .framer-bIv6D .framer-p21zsp { 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-bIv6D .framer-1m4r32i, .framer-bIv6D .framer-17s3j6f, .framer-bIv6D .framer-1nfmo1h, .framer-bIv6D .framer-1csxprc, .framer-bIv6D .framer-1e18igq, .framer-bIv6D .framer-1u243a8, .framer-bIv6D .framer-idtbwz, .framer-bIv6D .framer-1pyinrg, .framer-bIv6D .framer-vpqmqv, .framer-bIv6D .framer-1tlpp2d, .framer-bIv6D .framer-oxzk34, .framer-bIv6D .framer-juo46z { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bIv6D .framer-1vqclo4, .framer-bIv6D .framer-4109ho { align-content: center; align-items: center; align-self: start; background-color: #f7f7f7; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1rq3tlw { align-content: center; align-items: center; background-color: var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, #070806); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 135px 120px 135px 120px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-xfxmy6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1e6q3vc, .framer-bIv6D .framer-1oupmcj, .framer-bIv6D .framer-1ruvg4o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1uov5e5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bIv6D .framer-rfggmx-container, .framer-bIv6D .framer-1etk7aw-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-bIv6D .framer-176unpe { align-content: center; align-items: center; background-color: #157ffe; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 22px 72px 22px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1re0b98 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1019px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bIv6D .framer-664ol4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1281px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bIv6D .framer-13qji50, .framer-bIv6D .framer-160145d { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 95px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-bwckuh, .framer-bIv6D .framer-tmp5cd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bIv6D .framer-1qp93k6, .framer-bIv6D .framer-sm44as, .framer-bIv6D .framer-1s3cnol, .framer-bIv6D .framer-1or184g, .framer-bIv6D .framer-lbmp3i, .framer-bIv6D .framer-m535dv, .framer-bIv6D .framer-1q3avkk, .framer-bIv6D .framer-cudqxh, .framer-bIv6D .framer-tymzle, .framer-bIv6D .framer-kcr9ww, .framer-bIv6D .framer-pjkvtu, .framer-bIv6D .framer-1tc48z1, .framer-bIv6D .framer-w5s7fz, .framer-bIv6D .framer-v5womy, .framer-bIv6D .framer-sf661f, .framer-bIv6D .framer-1tuut1l, .framer-bIv6D .framer-11z8ajj, .framer-bIv6D .framer-pq18ah, .framer-bIv6D .framer-7u4f8v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bIv6D .framer-1las5so { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1792bwl, .framer-bIv6D .framer-detqa9, .framer-bIv6D .framer-gx8qa2, .framer-bIv6D .framer-oulkbc, .framer-bIv6D .framer-ypf6b0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1lfgj29, .framer-bIv6D .framer-1iu5339, .framer-bIv6D .framer-7ztt4z, .framer-bIv6D .framer-po6na0 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0.6021873017743928px 0.84306222248415px -0.8333333333333333px rgba(0, 0, 0, 0.07), 0px 2.288533303243457px 3.20394662454084px -1.6666666666666665px rgba(0, 0, 0, 0.07), 0px 10px 14px -2.5px rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bIv6D .framer-19xf0te, .framer-bIv6D .framer-n0fgnr { flex: none; height: 37px; position: relative; width: 33px; }\",\".framer-bIv6D .framer-bb4ywm, .framer-bIv6D .framer-57tb3f, .framer-bIv6D .framer-5kmtyt, .framer-bIv6D .framer-4852bi, .framer-bIv6D .framer-l6zee6, .framer-bIv6D .framer-gx6lgr, .framer-bIv6D .framer-a3w4cj, .framer-bIv6D .framer-15ur0au { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1j4cpf6, .framer-bIv6D .framer-s5qc5k { aspect-ratio: 1.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 36px; }\",\".framer-bIv6D .framer-sg9kug { aspect-ratio: 0.8181818181818182 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 33px; }\",\".framer-bIv6D .framer-y6gahy, .framer-bIv6D .framer-w99f26 { aspect-ratio: 1.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 36px; }\",\".framer-bIv6D .framer-9a69ym { align-content: center; align-items: center; background-color: var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 135px 120px 135px 120px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1rs9rq7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-oulrx4, .framer-bIv6D .framer-obgunu, .framer-bIv6D .framer-f9y0yc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1nq5rwz, .framer-bIv6D .framer-pdcqwg, .framer-bIv6D .framer-1vcjjkl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-bIv6D .framer-1o0o0c4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1u2b0ow, .framer-bIv6D .framer-tdz1xl, .framer-bIv6D .framer-kvzfi6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-14azidm { background-color: #17171a; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; flex: 1 0 0px; height: 442px; overflow: visible; position: relative; width: 1px; }\",\".framer-bIv6D .framer-19yms8a { aspect-ratio: 1.1452569169960474 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 580px); left: 53px; overflow: visible; position: absolute; top: -64px; width: 664px; }\",\".framer-bIv6D .framer-18s1nuc-container, .framer-bIv6D .framer-m8jrbm-container { flex: 1 0 0px; height: 442px; position: relative; width: 1px; }\",\".framer-bIv6D .framer-npr67a { align-content: center; align-items: center; background-color: #157ffe; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 135px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-j5pvx0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bIv6D .framer-eoth5r { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; max-width: 1281px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bIv6D .framer-1bg3308 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1ml32fq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1oky6ap, .framer-bIv6D .framer-1y6s83l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bIv6D .framer-ostr7l { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0.6021873017743928px 0.84306222248415px -0.8333333333333333px rgba(0, 0, 0, 0.07), 0px 2.288533303243457px 3.20394662454084px -1.6666666666666665px rgba(0, 0, 0, 0.07), 0px 10px 14px -2.5px rgba(0, 0, 0, 0.07); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bIv6D .framer-c07z5p { aspect-ratio: 0.8181818181818182 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); overflow: visible; position: relative; width: 33px; }\",\".framer-bIv6D .framer-r7kzz3, .framer-bIv6D .framer-ra58fu { align-content: center; align-items: center; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0.6021873017743928px 0.84306222248415px -0.8333333333333333px rgba(0, 0, 0, 0.07), 0px 2.288533303243457px 3.20394662454084px -1.6666666666666665px rgba(0, 0, 0, 0.07), 0px 10px 14px -2.5px rgba(0, 0, 0, 0.07); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bIv6D .framer-76csuw { align-content: center; align-items: center; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0.6021873017743928px 0.84306222248415px -0.8333333333333333px rgba(0, 0, 0, 0.07), 0px 2.288533303243457px 3.20394662454084px -1.6666666666666665px rgba(0, 0, 0, 0.07), 0px 10px 14px -2.5px rgba(0, 0, 0, 0.07); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: center; overflow: hidden; padding: 32px 32px 32px 34px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bIv6D .framer-19xvm87 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 53px; height: min-content; justify-content: center; overflow: visible; padding: 120px 135px 0px 135px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1kwc5bm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1wngeyq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-12mnz8p { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bIv6D .framer-19a92u6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-irigc7 { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #42bbff; border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: auto; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 1px; }\",\".framer-bIv6D .framer-10dp27t, .framer-bIv6D .framer-1w5er4u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-h42zke, .framer-bIv6D .framer-16k0xxa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-19peezr, .framer-bIv6D .framer-q9y6u1, .framer-bIv6D .framer-prwfuy { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bIv6D .framer-15cssrv, .framer-bIv6D .framer-rkusr1, .framer-bIv6D .framer-1skka5p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-iggrpu-container, .framer-bIv6D .framer-47d0oc-container, .framer-bIv6D .framer-12tvrbu-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-bIv6D .framer-17tiykl { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #157fff; border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: auto; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 1px; }\",\".framer-bIv6D .framer-1xcknn { align-content: flex-start; align-items: flex-start; background-color: #4751a6; border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: visible; padding: 30px; position: relative; width: 1px; }\",\".framer-bIv6D .framer-birii0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-710fre { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bIv6D .framer-1qygc45 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 135px 135px 135px; position: relative; width: 100%; }\",'.framer-bIv6D .framer-12w3k37 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, #0078fa) /* {\"name\":\"Main color\"} */ 0%, rgba(0, 0, 0, 0.05) 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }',\".framer-bIv6D .framer-655euv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 83%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bIv6D.framer-z9qddy, .framer-bIv6D .framer-1jvvyx3, .framer-bIv6D .framer-2nsnbw, .framer-bIv6D .framer-wxk2vf, .framer-bIv6D .framer-1ced4xr, .framer-bIv6D .framer-1rtliyd, .framer-bIv6D .framer-11puppq, .framer-bIv6D .framer-3ff1e5, .framer-bIv6D .framer-12bmyo9, .framer-bIv6D .framer-1g7tsq2, .framer-bIv6D .framer-q833m4, .framer-bIv6D .framer-tyzp56, .framer-bIv6D .framer-6f4pmb, .framer-bIv6D .framer-1esnlrs, .framer-bIv6D .framer-1vqclo4, .framer-bIv6D .framer-b3ou9h, .framer-bIv6D .framer-4109ho, .framer-bIv6D .framer-p21zsp, .framer-bIv6D .framer-1rq3tlw, .framer-bIv6D .framer-xfxmy6, .framer-bIv6D .framer-1e6q3vc, .framer-bIv6D .framer-176unpe, .framer-bIv6D .framer-1re0b98, .framer-bIv6D .framer-664ol4, .framer-bIv6D .framer-13qji50, .framer-bIv6D .framer-bwckuh, .framer-bIv6D .framer-1las5so, .framer-bIv6D .framer-1792bwl, .framer-bIv6D .framer-1lfgj29, .framer-bIv6D .framer-bb4ywm, .framer-bIv6D .framer-1iu5339, .framer-bIv6D .framer-57tb3f, .framer-bIv6D .framer-detqa9, .framer-bIv6D .framer-7ztt4z, .framer-bIv6D .framer-5kmtyt, .framer-bIv6D .framer-po6na0, .framer-bIv6D .framer-4852bi, .framer-bIv6D .framer-9a69ym, .framer-bIv6D .framer-1rs9rq7, .framer-bIv6D .framer-oulrx4, .framer-bIv6D .framer-1nq5rwz, .framer-bIv6D .framer-1o0o0c4, .framer-bIv6D .framer-gx8qa2, .framer-bIv6D .framer-1u2b0ow, .framer-bIv6D .framer-obgunu, .framer-bIv6D .framer-pdcqwg, .framer-bIv6D .framer-oulkbc, .framer-bIv6D .framer-tdz1xl, .framer-bIv6D .framer-f9y0yc, .framer-bIv6D .framer-1vcjjkl, .framer-bIv6D .framer-ypf6b0, .framer-bIv6D .framer-kvzfi6, .framer-bIv6D .framer-npr67a, .framer-bIv6D .framer-j5pvx0, .framer-bIv6D .framer-eoth5r, .framer-bIv6D .framer-160145d, .framer-bIv6D .framer-tmp5cd, .framer-bIv6D .framer-1bg3308, .framer-bIv6D .framer-1ml32fq, .framer-bIv6D .framer-1oky6ap, .framer-bIv6D .framer-ostr7l, .framer-bIv6D .framer-l6zee6, .framer-bIv6D .framer-r7kzz3, .framer-bIv6D .framer-gx6lgr, .framer-bIv6D .framer-1y6s83l, .framer-bIv6D .framer-76csuw, .framer-bIv6D .framer-a3w4cj, .framer-bIv6D .framer-ra58fu, .framer-bIv6D .framer-15ur0au, .framer-bIv6D .framer-19xvm87, .framer-bIv6D .framer-1kwc5bm, .framer-bIv6D .framer-1wngeyq, .framer-bIv6D .framer-19a92u6, .framer-bIv6D .framer-irigc7, .framer-bIv6D .framer-10dp27t, .framer-bIv6D .framer-h42zke, .framer-bIv6D .framer-15cssrv, .framer-bIv6D .framer-17tiykl, .framer-bIv6D .framer-1w5er4u, .framer-bIv6D .framer-16k0xxa, .framer-bIv6D .framer-rkusr1, .framer-bIv6D .framer-1xcknn, .framer-bIv6D .framer-birii0, .framer-bIv6D .framer-710fre, .framer-bIv6D .framer-1skka5p, .framer-bIv6D .framer-1qygc45, .framer-bIv6D .framer-12w3k37, .framer-bIv6D .framer-655euv, .framer-bIv6D .framer-1oupmcj, .framer-bIv6D .framer-1ruvg4o { gap: 0px; } .framer-bIv6D.framer-z9qddy > *, .framer-bIv6D .framer-1esnlrs > *, .framer-bIv6D .framer-b3ou9h > *, .framer-bIv6D .framer-p21zsp > *, .framer-bIv6D .framer-h42zke > *, .framer-bIv6D .framer-16k0xxa > *, .framer-bIv6D .framer-710fre > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bIv6D.framer-z9qddy > :first-child, .framer-bIv6D .framer-2nsnbw > :first-child, .framer-bIv6D .framer-wxk2vf > :first-child, .framer-bIv6D .framer-1ced4xr > :first-child, .framer-bIv6D .framer-11puppq > :first-child, .framer-bIv6D .framer-3ff1e5 > :first-child, .framer-bIv6D .framer-12bmyo9 > :first-child, .framer-bIv6D .framer-1g7tsq2 > :first-child, .framer-bIv6D .framer-q833m4 > :first-child, .framer-bIv6D .framer-tyzp56 > :first-child, .framer-bIv6D .framer-6f4pmb > :first-child, .framer-bIv6D .framer-1esnlrs > :first-child, .framer-bIv6D .framer-1vqclo4 > :first-child, .framer-bIv6D .framer-b3ou9h > :first-child, .framer-bIv6D .framer-4109ho > :first-child, .framer-bIv6D .framer-p21zsp > :first-child, .framer-bIv6D .framer-1rq3tlw > :first-child, .framer-bIv6D .framer-xfxmy6 > :first-child, .framer-bIv6D .framer-1e6q3vc > :first-child, .framer-bIv6D .framer-664ol4 > :first-child, .framer-bIv6D .framer-bwckuh > :first-child, .framer-bIv6D .framer-1las5so > :first-child, .framer-bIv6D .framer-1792bwl > :first-child, .framer-bIv6D .framer-1lfgj29 > :first-child, .framer-bIv6D .framer-bb4ywm > :first-child, .framer-bIv6D .framer-1iu5339 > :first-child, .framer-bIv6D .framer-57tb3f > :first-child, .framer-bIv6D .framer-detqa9 > :first-child, .framer-bIv6D .framer-7ztt4z > :first-child, .framer-bIv6D .framer-5kmtyt > :first-child, .framer-bIv6D .framer-po6na0 > :first-child, .framer-bIv6D .framer-4852bi > :first-child, .framer-bIv6D .framer-9a69ym > :first-child, .framer-bIv6D .framer-1rs9rq7 > :first-child, .framer-bIv6D .framer-1nq5rwz > :first-child, .framer-bIv6D .framer-1o0o0c4 > :first-child, .framer-bIv6D .framer-gx8qa2 > :first-child, .framer-bIv6D .framer-1u2b0ow > :first-child, .framer-bIv6D .framer-pdcqwg > :first-child, .framer-bIv6D .framer-oulkbc > :first-child, .framer-bIv6D .framer-tdz1xl > :first-child, .framer-bIv6D .framer-1vcjjkl > :first-child, .framer-bIv6D .framer-ypf6b0 > :first-child, .framer-bIv6D .framer-kvzfi6 > :first-child, .framer-bIv6D .framer-eoth5r > :first-child, .framer-bIv6D .framer-tmp5cd > :first-child, .framer-bIv6D .framer-1bg3308 > :first-child, .framer-bIv6D .framer-ostr7l > :first-child, .framer-bIv6D .framer-l6zee6 > :first-child, .framer-bIv6D .framer-r7kzz3 > :first-child, .framer-bIv6D .framer-gx6lgr > :first-child, .framer-bIv6D .framer-76csuw > :first-child, .framer-bIv6D .framer-a3w4cj > :first-child, .framer-bIv6D .framer-ra58fu > :first-child, .framer-bIv6D .framer-15ur0au > :first-child, .framer-bIv6D .framer-19xvm87 > :first-child, .framer-bIv6D .framer-1kwc5bm > :first-child, .framer-bIv6D .framer-irigc7 > :first-child, .framer-bIv6D .framer-10dp27t > :first-child, .framer-bIv6D .framer-h42zke > :first-child, .framer-bIv6D .framer-17tiykl > :first-child, .framer-bIv6D .framer-1w5er4u > :first-child, .framer-bIv6D .framer-16k0xxa > :first-child, .framer-bIv6D .framer-1xcknn > :first-child, .framer-bIv6D .framer-birii0 > :first-child, .framer-bIv6D .framer-710fre > :first-child, .framer-bIv6D .framer-1qygc45 > :first-child, .framer-bIv6D .framer-12w3k37 > :first-child, .framer-bIv6D .framer-655euv > :first-child, .framer-bIv6D .framer-1oupmcj > :first-child, .framer-bIv6D .framer-1ruvg4o > :first-child { margin-top: 0px; } .framer-bIv6D.framer-z9qddy > :last-child, .framer-bIv6D .framer-2nsnbw > :last-child, .framer-bIv6D .framer-wxk2vf > :last-child, .framer-bIv6D .framer-1ced4xr > :last-child, .framer-bIv6D .framer-11puppq > :last-child, .framer-bIv6D .framer-3ff1e5 > :last-child, .framer-bIv6D .framer-12bmyo9 > :last-child, .framer-bIv6D .framer-1g7tsq2 > :last-child, .framer-bIv6D .framer-q833m4 > :last-child, .framer-bIv6D .framer-tyzp56 > :last-child, .framer-bIv6D .framer-6f4pmb > :last-child, .framer-bIv6D .framer-1esnlrs > :last-child, .framer-bIv6D .framer-1vqclo4 > :last-child, .framer-bIv6D .framer-b3ou9h > :last-child, .framer-bIv6D .framer-4109ho > :last-child, .framer-bIv6D .framer-p21zsp > :last-child, .framer-bIv6D .framer-1rq3tlw > :last-child, .framer-bIv6D .framer-xfxmy6 > :last-child, .framer-bIv6D .framer-1e6q3vc > :last-child, .framer-bIv6D .framer-664ol4 > :last-child, .framer-bIv6D .framer-bwckuh > :last-child, .framer-bIv6D .framer-1las5so > :last-child, .framer-bIv6D .framer-1792bwl > :last-child, .framer-bIv6D .framer-1lfgj29 > :last-child, .framer-bIv6D .framer-bb4ywm > :last-child, .framer-bIv6D .framer-1iu5339 > :last-child, .framer-bIv6D .framer-57tb3f > :last-child, .framer-bIv6D .framer-detqa9 > :last-child, .framer-bIv6D .framer-7ztt4z > :last-child, .framer-bIv6D .framer-5kmtyt > :last-child, .framer-bIv6D .framer-po6na0 > :last-child, .framer-bIv6D .framer-4852bi > :last-child, .framer-bIv6D .framer-9a69ym > :last-child, .framer-bIv6D .framer-1rs9rq7 > :last-child, .framer-bIv6D .framer-1nq5rwz > :last-child, .framer-bIv6D .framer-1o0o0c4 > :last-child, .framer-bIv6D .framer-gx8qa2 > :last-child, .framer-bIv6D .framer-1u2b0ow > :last-child, .framer-bIv6D .framer-pdcqwg > :last-child, .framer-bIv6D .framer-oulkbc > :last-child, .framer-bIv6D .framer-tdz1xl > :last-child, .framer-bIv6D .framer-1vcjjkl > :last-child, .framer-bIv6D .framer-ypf6b0 > :last-child, .framer-bIv6D .framer-kvzfi6 > :last-child, .framer-bIv6D .framer-eoth5r > :last-child, .framer-bIv6D .framer-tmp5cd > :last-child, .framer-bIv6D .framer-1bg3308 > :last-child, .framer-bIv6D .framer-ostr7l > :last-child, .framer-bIv6D .framer-l6zee6 > :last-child, .framer-bIv6D .framer-r7kzz3 > :last-child, .framer-bIv6D .framer-gx6lgr > :last-child, .framer-bIv6D .framer-76csuw > :last-child, .framer-bIv6D .framer-a3w4cj > :last-child, .framer-bIv6D .framer-ra58fu > :last-child, .framer-bIv6D .framer-15ur0au > :last-child, .framer-bIv6D .framer-19xvm87 > :last-child, .framer-bIv6D .framer-1kwc5bm > :last-child, .framer-bIv6D .framer-irigc7 > :last-child, .framer-bIv6D .framer-10dp27t > :last-child, .framer-bIv6D .framer-h42zke > :last-child, .framer-bIv6D .framer-17tiykl > :last-child, .framer-bIv6D .framer-1w5er4u > :last-child, .framer-bIv6D .framer-16k0xxa > :last-child, .framer-bIv6D .framer-1xcknn > :last-child, .framer-bIv6D .framer-birii0 > :last-child, .framer-bIv6D .framer-710fre > :last-child, .framer-bIv6D .framer-1qygc45 > :last-child, .framer-bIv6D .framer-12w3k37 > :last-child, .framer-bIv6D .framer-655euv > :last-child, .framer-bIv6D .framer-1oupmcj > :last-child, .framer-bIv6D .framer-1ruvg4o > :last-child { margin-bottom: 0px; } .framer-bIv6D .framer-1jvvyx3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-bIv6D .framer-1jvvyx3 > :first-child, .framer-bIv6D .framer-1rtliyd > :first-child, .framer-bIv6D .framer-176unpe > :first-child, .framer-bIv6D .framer-1re0b98 > :first-child, .framer-bIv6D .framer-13qji50 > :first-child, .framer-bIv6D .framer-oulrx4 > :first-child, .framer-bIv6D .framer-obgunu > :first-child, .framer-bIv6D .framer-f9y0yc > :first-child, .framer-bIv6D .framer-npr67a > :first-child, .framer-bIv6D .framer-j5pvx0 > :first-child, .framer-bIv6D .framer-160145d > :first-child, .framer-bIv6D .framer-1ml32fq > :first-child, .framer-bIv6D .framer-1oky6ap > :first-child, .framer-bIv6D .framer-1y6s83l > :first-child, .framer-bIv6D .framer-1wngeyq > :first-child, .framer-bIv6D .framer-19a92u6 > :first-child, .framer-bIv6D .framer-15cssrv > :first-child, .framer-bIv6D .framer-rkusr1 > :first-child, .framer-bIv6D .framer-1skka5p > :first-child { margin-left: 0px; } .framer-bIv6D .framer-1jvvyx3 > :last-child, .framer-bIv6D .framer-1rtliyd > :last-child, .framer-bIv6D .framer-176unpe > :last-child, .framer-bIv6D .framer-1re0b98 > :last-child, .framer-bIv6D .framer-13qji50 > :last-child, .framer-bIv6D .framer-oulrx4 > :last-child, .framer-bIv6D .framer-obgunu > :last-child, .framer-bIv6D .framer-f9y0yc > :last-child, .framer-bIv6D .framer-npr67a > :last-child, .framer-bIv6D .framer-j5pvx0 > :last-child, .framer-bIv6D .framer-160145d > :last-child, .framer-bIv6D .framer-1ml32fq > :last-child, .framer-bIv6D .framer-1oky6ap > :last-child, .framer-bIv6D .framer-1y6s83l > :last-child, .framer-bIv6D .framer-1wngeyq > :last-child, .framer-bIv6D .framer-19a92u6 > :last-child, .framer-bIv6D .framer-15cssrv > :last-child, .framer-bIv6D .framer-rkusr1 > :last-child, .framer-bIv6D .framer-1skka5p > :last-child { margin-right: 0px; } .framer-bIv6D .framer-2nsnbw > *, .framer-bIv6D .framer-wxk2vf > *, .framer-bIv6D .framer-664ol4 > *, .framer-bIv6D .framer-1nq5rwz > *, .framer-bIv6D .framer-1o0o0c4 > *, .framer-bIv6D .framer-pdcqwg > *, .framer-bIv6D .framer-1vcjjkl > *, .framer-bIv6D .framer-10dp27t > *, .framer-bIv6D .framer-1w5er4u > *, .framer-bIv6D .framer-birii0 > *, .framer-bIv6D .framer-12w3k37 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-bIv6D .framer-1ced4xr > *, .framer-bIv6D .framer-1e6q3vc > *, .framer-bIv6D .framer-1oupmcj > *, .framer-bIv6D .framer-1ruvg4o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bIv6D .framer-1rtliyd > *, .framer-bIv6D .framer-176unpe > *, .framer-bIv6D .framer-1re0b98 > *, .framer-bIv6D .framer-npr67a > *, .framer-bIv6D .framer-j5pvx0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bIv6D .framer-11puppq > *, .framer-bIv6D .framer-1g7tsq2 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-bIv6D .framer-3ff1e5 > *, .framer-bIv6D .framer-q833m4 > *, .framer-bIv6D .framer-6f4pmb > *, .framer-bIv6D .framer-1vqclo4 > *, .framer-bIv6D .framer-4109ho > *, .framer-bIv6D .framer-1las5so > *, .framer-bIv6D .framer-1792bwl > *, .framer-bIv6D .framer-detqa9 > *, .framer-bIv6D .framer-gx8qa2 > *, .framer-bIv6D .framer-oulkbc > *, .framer-bIv6D .framer-ypf6b0 > *, .framer-bIv6D .framer-ostr7l > *, .framer-bIv6D .framer-r7kzz3 > *, .framer-bIv6D .framer-76csuw > *, .framer-bIv6D .framer-ra58fu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-bIv6D .framer-12bmyo9 > *, .framer-bIv6D .framer-1rq3tlw > *, .framer-bIv6D .framer-1qygc45 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-bIv6D .framer-tyzp56 > *, .framer-bIv6D .framer-xfxmy6 > *, .framer-bIv6D .framer-655euv > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-bIv6D .framer-13qji50 > *, .framer-bIv6D .framer-160145d > * { margin: 0px; margin-left: calc(95px / 2); margin-right: calc(95px / 2); } .framer-bIv6D .framer-bwckuh > *, .framer-bIv6D .framer-tmp5cd > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-bIv6D .framer-1lfgj29 > *, .framer-bIv6D .framer-1iu5339 > *, .framer-bIv6D .framer-7ztt4z > *, .framer-bIv6D .framer-po6na0 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-bIv6D .framer-bb4ywm > *, .framer-bIv6D .framer-57tb3f > *, .framer-bIv6D .framer-5kmtyt > *, .framer-bIv6D .framer-4852bi > *, .framer-bIv6D .framer-l6zee6 > *, .framer-bIv6D .framer-gx6lgr > *, .framer-bIv6D .framer-a3w4cj > *, .framer-bIv6D .framer-15ur0au > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-bIv6D .framer-9a69ym > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-bIv6D .framer-1rs9rq7 > * { margin: 0px; margin-bottom: calc(85px / 2); margin-top: calc(85px / 2); } .framer-bIv6D .framer-oulrx4 > *, .framer-bIv6D .framer-obgunu > *, .framer-bIv6D .framer-f9y0yc > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-bIv6D .framer-1u2b0ow > *, .framer-bIv6D .framer-tdz1xl > *, .framer-bIv6D .framer-kvzfi6 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-bIv6D .framer-eoth5r > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-bIv6D .framer-1bg3308 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-bIv6D .framer-1ml32fq > *, .framer-bIv6D .framer-1oky6ap > *, .framer-bIv6D .framer-1y6s83l > *, .framer-bIv6D .framer-15cssrv > *, .framer-bIv6D .framer-rkusr1 > *, .framer-bIv6D .framer-1skka5p > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-bIv6D .framer-19xvm87 > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-bIv6D .framer-1kwc5bm > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-bIv6D .framer-1wngeyq > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-bIv6D .framer-19a92u6 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-bIv6D .framer-irigc7 > *, .framer-bIv6D .framer-17tiykl > *, .framer-bIv6D .framer-1xcknn > * { margin: 0px; margin-bottom: calc(7.5px / 2); margin-top: calc(7.5px / 2); } }\",\"@media (min-width: 820px) and (max-width: 1279px) { .framer-bIv6D.framer-z9qddy { width: 820px; } .framer-bIv6D .framer-1munc6p-container { left: 37px; order: 1; right: 37px; } .framer-bIv6D .framer-1jvvyx3 { gap: 32px; order: 0; padding: 120px 40px 0px 40px; } .framer-bIv6D .framer-2nsnbw { order: 0; } .framer-bIv6D .framer-1rtliyd { aspect-ratio: unset; height: 405px; order: 1; } .framer-bIv6D .framer-100srbh { aspect-ratio: 1.560655737704918 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 227px); max-width: 400px; width: 1px; } .framer-bIv6D .framer-11puppq { order: 2; padding: 0px 40px 80px 40px; } .framer-bIv6D .framer-18qqlve, .framer-bIv6D .framer-9vqbjz, .framer-bIv6D .framer-655euv { max-width: 100%; } .framer-bIv6D .framer-12bmyo9 { order: 3; padding: 64px 32px 64px 32px; } .framer-bIv6D .framer-doerpw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; } .framer-bIv6D .framer-6f4pmb { align-self: unset; flex: 1 0 0px; height: min-content; justify-content: flex-start; width: 1px; } .framer-bIv6D .framer-1m4r32i, .framer-bIv6D .framer-1csxprc, .framer-bIv6D .framer-idtbwz { width: 198px; } .framer-bIv6D .framer-1vqclo4, .framer-bIv6D .framer-4109ho { align-self: stretch; flex: 1 0 0px; height: auto; width: 1px; } .framer-bIv6D .framer-1rq3tlw { align-content: flex-start; align-items: flex-start; justify-content: flex-start; order: 4; padding: 64px 0px 64px 32px; } .framer-bIv6D .framer-xfxmy6 { max-width: unset; overflow: visible; } .framer-bIv6D .framer-rfggmx-container { height: 537px; max-width: 1280px; } .framer-bIv6D .framer-9a69ym { order: 6; padding: 135px 32px 135px 32px; } .framer-bIv6D .framer-oulrx4, .framer-bIv6D .framer-obgunu, .framer-bIv6D .framer-f9y0yc { gap: 64px; } .framer-bIv6D .framer-18s1nuc-container, .framer-bIv6D .framer-m8jrbm-container { height: auto; } .framer-bIv6D .framer-npr67a { order: 7; padding: 64px 32px 96px 32px; } .framer-bIv6D .framer-1ml32fq { flex-direction: column; } .framer-bIv6D .framer-1oky6ap, .framer-bIv6D .framer-1y6s83l { flex: none; width: 100%; } .framer-bIv6D .framer-ostr7l { gap: 14px; } .framer-bIv6D .framer-r7kzz3, .framer-bIv6D .framer-76csuw, .framer-bIv6D .framer-ra58fu { align-self: unset; gap: 14px; height: min-content; } .framer-bIv6D .framer-19xvm87 { order: 8; padding: 64px 32px 64px 32px; } .framer-bIv6D .framer-1qygc45 { order: 9; padding: 0px 32px 64px 32px; } .framer-bIv6D .framer-1etk7aw-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bIv6D .framer-1jvvyx3, .framer-bIv6D .framer-doerpw, .framer-bIv6D .framer-oulrx4, .framer-bIv6D .framer-obgunu, .framer-bIv6D .framer-f9y0yc, .framer-bIv6D .framer-1ml32fq, .framer-bIv6D .framer-ostr7l, .framer-bIv6D .framer-r7kzz3, .framer-bIv6D .framer-76csuw, .framer-bIv6D .framer-ra58fu { gap: 0px; } .framer-bIv6D .framer-1jvvyx3 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-bIv6D .framer-1jvvyx3 > :first-child, .framer-bIv6D .framer-doerpw > :first-child, .framer-bIv6D .framer-oulrx4 > :first-child, .framer-bIv6D .framer-obgunu > :first-child, .framer-bIv6D .framer-f9y0yc > :first-child { margin-left: 0px; } .framer-bIv6D .framer-1jvvyx3 > :last-child, .framer-bIv6D .framer-doerpw > :last-child, .framer-bIv6D .framer-oulrx4 > :last-child, .framer-bIv6D .framer-obgunu > :last-child, .framer-bIv6D .framer-f9y0yc > :last-child { margin-right: 0px; } .framer-bIv6D .framer-doerpw > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-bIv6D .framer-oulrx4 > *, .framer-bIv6D .framer-obgunu > *, .framer-bIv6D .framer-f9y0yc > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-bIv6D .framer-1ml32fq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-bIv6D .framer-1ml32fq > :first-child, .framer-bIv6D .framer-ostr7l > :first-child, .framer-bIv6D .framer-r7kzz3 > :first-child, .framer-bIv6D .framer-76csuw > :first-child, .framer-bIv6D .framer-ra58fu > :first-child { margin-top: 0px; } .framer-bIv6D .framer-1ml32fq > :last-child, .framer-bIv6D .framer-ostr7l > :last-child, .framer-bIv6D .framer-r7kzz3 > :last-child, .framer-bIv6D .framer-76csuw > :last-child, .framer-bIv6D .framer-ra58fu > :last-child { margin-bottom: 0px; } .framer-bIv6D .framer-ostr7l > *, .framer-bIv6D .framer-r7kzz3 > *, .framer-bIv6D .framer-76csuw > *, .framer-bIv6D .framer-ra58fu > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }}\",\"@media (max-width: 819px) { .framer-bIv6D.framer-z9qddy { width: 375px; } .framer-bIv6D .framer-1munc6p-container, .framer-bIv6D .framer-rfggmx-container, .framer-bIv6D .framer-1792bwl, .framer-bIv6D .framer-1or184g { order: 1; } .framer-bIv6D .framer-1jvvyx3 { background-color: var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, #070806); flex-direction: column; gap: 11px; order: 0; padding: 149px 22px 0px 22px; } .framer-bIv6D .framer-2nsnbw, .framer-bIv6D .framer-1nq5rwz, .framer-bIv6D .framer-pdcqwg, .framer-bIv6D .framer-1vcjjkl { flex: none; order: 0; width: 100%; } .framer-bIv6D .framer-wxk2vf { align-content: center; align-items: center; padding: 0px 0px 1px 20px; } .framer-bIv6D .framer-1ced4xr { align-content: center; align-items: center; } .framer-bIv6D .framer-13mn97n, .framer-bIv6D .framer-15pcctv { max-width: 100%; width: auto; } .framer-bIv6D .framer-1rtliyd { flex: none; height: var(--framer-aspect-ratio-supported, 128px); order: 1; padding: 0px 0px 100px 60px; width: 100%; will-change: unset; } .framer-bIv6D .framer-100srbh { box-shadow: 3.1912486510438614px 0.6718418212723919px 16.306010690539754px 0px rgba(76, 78, 252, 0.01), 7.563822798474575px 1.592383747047279px 38.648124574351634px 0px rgba(76, 78, 252, 0.02428), 13.797194620696244px 2.904672551725525px 70.49817409587943px 0px rgba(76, 78, 252, 0.0443), 22.93780835949292px 4.829012286209036px 117.20307291163286px 0px rgba(76, 78, 252, 0.07364), 37.04269017171755px 7.798461088782642px 189.2734061160678px 0px rgba(76, 78, 252, 0.11893), 60.63520845410238px 12.765307042968923px 309.8217862002978px 0px rgba(76, 78, 252, 0.19467), 104.40973435039923px 21.980996705347206px 533.4921940216517px 0px rgba(76, 78, 252, 0.33521), 190px 40px 970.82439194738px 0px rgba(76, 78, 252, 0.61); height: var(--framer-aspect-ratio-supported, 275px); width: 430px; z-index: 2; } .framer-bIv6D .framer-11puppq { order: 2; padding: 0px 20px 40px 20px; } .framer-bIv6D .framer-18qqlve, .framer-bIv6D .framer-9vqbjz { max-width: 100%; } .framer-bIv6D .framer-12bmyo9 { order: 3; padding: 64px 22px 64px 22px; } .framer-bIv6D .framer-doerpw { gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(100px, 1fr)); grid-template-rows: repeat(1, min-content); } .framer-bIv6D .framer-6f4pmb { height: min-content; order: 1; } .framer-bIv6D .framer-1vqclo4 { height: min-content; order: 0; } .framer-bIv6D .framer-4109ho { height: min-content; order: 2; } .framer-bIv6D .framer-1rq3tlw { order: 4; padding: 64px 0px 64px 0px; } .framer-bIv6D .framer-xfxmy6 { align-content: center; align-items: center; gap: 32px; overflow: visible; padding: 0px 0px 0px 22px; } .framer-bIv6D .framer-1e6q3vc { flex-direction: row; order: 0; padding: 0px 22px 0px 0px; } .framer-bIv6D .framer-1uov5e5 { flex: 1 0 0px; max-width: unset; width: 1px; } .framer-bIv6D .framer-176unpe { order: 6; } .framer-bIv6D .framer-detqa9, .framer-bIv6D .framer-19dop9m-container { order: 0; } .framer-bIv6D .framer-9a69ym { order: 5; padding: 64px 22px 64px 22px; } .framer-bIv6D .framer-1rs9rq7 { gap: 64px; order: 1; } .framer-bIv6D .framer-oulrx4, .framer-bIv6D .framer-obgunu, .framer-bIv6D .framer-f9y0yc { flex-direction: column; gap: 48px; } .framer-bIv6D .framer-14azidm, .framer-bIv6D .framer-18s1nuc-container, .framer-bIv6D .framer-m8jrbm-container { flex: none; height: 276px; order: 1; width: 100%; } .framer-bIv6D .framer-19yms8a { height: var(--framer-aspect-ratio-supported, 428px); left: 44px; width: 490px; } .framer-bIv6D .framer-19xvm87 { order: 8; padding: 64px 22px 64px 22px; } .framer-bIv6D .framer-1kwc5bm { gap: 32px; } .framer-bIv6D .framer-19a92u6 { flex-direction: column; } .framer-bIv6D .framer-irigc7, .framer-bIv6D .framer-17tiykl { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-bIv6D .framer-10dp27t, .framer-bIv6D .framer-h42zke, .framer-bIv6D .framer-1w5er4u, .framer-bIv6D .framer-16k0xxa { flex: none; height: min-content; } .framer-bIv6D .framer-1xcknn { flex: none; width: 100%; } .framer-bIv6D .framer-1qygc45 { order: 9; padding: 32px 22px 32px 22px; } .framer-bIv6D .framer-12w3k37 { padding: 0px; } .framer-bIv6D .framer-655euv { gap: 32px; max-width: unset; padding: 32px; } .framer-bIv6D .framer-1etk7aw-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bIv6D .framer-1jvvyx3, .framer-bIv6D .framer-doerpw, .framer-bIv6D .framer-xfxmy6, .framer-bIv6D .framer-1e6q3vc, .framer-bIv6D .framer-1rs9rq7, .framer-bIv6D .framer-oulrx4, .framer-bIv6D .framer-obgunu, .framer-bIv6D .framer-f9y0yc, .framer-bIv6D .framer-1kwc5bm, .framer-bIv6D .framer-19a92u6, .framer-bIv6D .framer-655euv { gap: 0px; } .framer-bIv6D .framer-1jvvyx3 > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-bIv6D .framer-1jvvyx3 > :first-child, .framer-bIv6D .framer-xfxmy6 > :first-child, .framer-bIv6D .framer-1rs9rq7 > :first-child, .framer-bIv6D .framer-oulrx4 > :first-child, .framer-bIv6D .framer-obgunu > :first-child, .framer-bIv6D .framer-f9y0yc > :first-child, .framer-bIv6D .framer-1kwc5bm > :first-child, .framer-bIv6D .framer-19a92u6 > :first-child, .framer-bIv6D .framer-655euv > :first-child { margin-top: 0px; } .framer-bIv6D .framer-1jvvyx3 > :last-child, .framer-bIv6D .framer-xfxmy6 > :last-child, .framer-bIv6D .framer-1rs9rq7 > :last-child, .framer-bIv6D .framer-oulrx4 > :last-child, .framer-bIv6D .framer-obgunu > :last-child, .framer-bIv6D .framer-f9y0yc > :last-child, .framer-bIv6D .framer-1kwc5bm > :last-child, .framer-bIv6D .framer-19a92u6 > :last-child, .framer-bIv6D .framer-655euv > :last-child { margin-bottom: 0px; } .framer-bIv6D .framer-doerpw > *, .framer-bIv6D .framer-doerpw > :first-child, .framer-bIv6D .framer-doerpw > :last-child { margin: 0px; } .framer-bIv6D .framer-xfxmy6 > *, .framer-bIv6D .framer-1kwc5bm > *, .framer-bIv6D .framer-19a92u6 > *, .framer-bIv6D .framer-655euv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-bIv6D .framer-1e6q3vc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bIv6D .framer-1e6q3vc > :first-child { margin-left: 0px; } .framer-bIv6D .framer-1e6q3vc > :last-child { margin-right: 0px; } .framer-bIv6D .framer-1rs9rq7 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-bIv6D .framer-oulrx4 > *, .framer-bIv6D .framer-obgunu > *, .framer-bIv6D .framer-f9y0yc > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6633\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kInq1lCXA\":{\"layout\":[\"fixed\",\"auto\"]},\"wSb1Hb6bJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"pFH6KwbE3\":{\"pattern\":\":pFH6KwbE3\",\"name\":\"\"},\"N_QstTVuU\":{\"pattern\":\":N_QstTVuU\",\"name\":\"howitworks\"},\"O3y_CEqBL\":{\"pattern\":\":O3y_CEqBL\",\"name\":\"statistics\"},\"dve3hkVmJ\":{\"pattern\":\":dve3hkVmJ\",\"name\":\"main-statistics\"},\"zJPgZAL8U\":{\"pattern\":\":zJPgZAL8U\",\"name\":\"feature\"},\"p6qJBBLQU\":{\"pattern\":\":p6qJBBLQU\",\"name\":\"statistics\"},\"OyzeLagx3\":{\"pattern\":\":OyzeLagx3\",\"name\":\"main-statistics\"}}\n * @framerResponsiveScreen\n */const FramerYSW3s7nAi=withCSS(Component,css,\"framer-bIv6D\");export default FramerYSW3s7nAi;FramerYSW3s7nAi.displayName=\"Page\";FramerYSW3s7nAi.defaultProps={height:6633,width:1280};addFonts(FramerYSW3s7nAi,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"},{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\"},{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v8/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx04jHgP6LR0Y.woff2\",weight:\"500\"},{family:\"Roboto Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPRu-5Ip2sSQ.woff2\",weight:\"500\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]},...NavbarDarkFonts,...Button1Fonts,...CalendlyFonts,...TickerFonts,...OCPDesktop3Fonts,...LoanDataDisplayFonts,...Card2Fonts,...MiniCard1Fonts,...RequestAccessFonts,...Footer2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYSW3s7nAi\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kInq1lCXA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wSb1Hb6bJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"pFH6KwbE3\\\":{\\\"pattern\\\":\\\":pFH6KwbE3\\\",\\\"name\\\":\\\"\\\"},\\\"N_QstTVuU\\\":{\\\"pattern\\\":\\\":N_QstTVuU\\\",\\\"name\\\":\\\"howitworks\\\"},\\\"O3y_CEqBL\\\":{\\\"pattern\\\":\\\":O3y_CEqBL\\\",\\\"name\\\":\\\"statistics\\\"},\\\"dve3hkVmJ\\\":{\\\"pattern\\\":\\\":dve3hkVmJ\\\",\\\"name\\\":\\\"main-statistics\\\"},\\\"zJPgZAL8U\\\":{\\\"pattern\\\":\\\":zJPgZAL8U\\\",\\\"name\\\":\\\"feature\\\"},\\\"p6qJBBLQU\\\":{\\\"pattern\\\":\\\":p6qJBBLQU\\\",\\\"name\\\":\\\"statistics\\\"},\\\"OyzeLagx3\\\":{\\\"pattern\\\":\\\":OyzeLagx3\\\",\\\"name\\\":\\\"main-statistics\\\"}}\",\"framerIntrinsicHeight\":\"6633\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1280\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "pFwOoUbug", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "FramerEiruAAGp1", "withCSS", "EiruAAGp1_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image2", "image3", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "S8hsels7f", "JDSvZxy_S", "Dw19PQwtK", "pCyd3P5O4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "RichText2", "css", "FramerAigDOvEBP", "withCSS", "AigDOvEBP_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image2", "image3", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "S8hsels7f", "JDSvZxy_S", "Dw19PQwtK", "pCyd3P5O4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "RichText2", "css", "FramerT_hMsbvaZ", "withCSS", "T_hMsbvaZ_default", "addPropertyControls", "ControlType", "addFonts", "Button4Fonts", "getFonts", "LpqNmc8Xi_default", "Card2Fonts", "T_hMsbvaZ_default", "CardFonts", "AigDOvEBP_default", "CarouselFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "BFzuXvATU1eajbg8", "args", "BFzuXvATU1xmdxfv", "BFzuXvATUn4wkia", "BFzuXvATU5e0hp1", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerPSaeh7tMX", "withCSS", "PSaeh7tMX_default", "addPropertyControls", "ControlType", "addFonts", "formatNumber", "value", "useAbbreviation", "includeDollarSignInDecimals", "LoanDataDisplay", "apiUrl", "parameterName", "decimalPlaces", "fontColor", "fontSize", "fontStyle", "fontFamily", "fontWeight", "loanData", "setLoanData", "ye", "ue", "response", "data", "error", "p", "addPropertyControls", "ControlType", "NavbarDarkFonts", "getFonts", "GEXWl8zTX_default", "ContainerWithFX", "withFX", "Container", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "Button1Fonts", "ZaGdVHgHf_default", "CalendlyFonts", "Calendly", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextWithFX", "TickerFonts", "Ticker", "MotionDivWithFX", "OCPDesktop3Fonts", "PSaeh7tMX_default", "LoanDataDisplayFonts", "LoanDataDisplay", "Card2Fonts", "EiruAAGp1_default", "MiniCard1Fonts", "kUq3kaWx5_default", "RequestAccessFonts", "Z68e4W1tn_default", "Footer2Fonts", "CXLsBhDlW_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition4", "animation4", "animation5", "animation6", "animation7", "transition5", "animation8", "animation9", "transition6", "transition7", "transition8", "transition9", "animation10", "addImageAlt", "image", "alt", "transition10", "animation11", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "iEOAdS_HW3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed1", "elementId5", "ref6", "elementId6", "ref7", "isDisplayed2", "isDisplayed3", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "l", "AnimatePresence", "Ga", "getLoadingLazyAtYPosition", "Image2", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "overlay1", "css", "FramerYSW3s7nAi", "withCSS", "YSW3s7nAi_default", "addFonts", "__FramerMetadata__"]
}
