{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framer.com/m/framer/useConstant.js@^1.0.0", "ssg:https://framer.com/m/framer/randomID.js@^2.0.0", "ssg:https://framerusercontent.com/modules/upHscEcqDQ8iVzrOfuEk/iHEJIWt3POCR8hWv8Fip/dSMVdIqsz.js", "ssg:https://framer.com/m/iconoir-icons/Home.js@0.0.11", "ssg:https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js", "ssg:https://framerusercontent.com/modules/9ob9alfzzqTUkF3nAvkr/oTj0ic5yEqwaIFyUjzxh/d5mUaLKFR.js", "ssg:https://framerusercontent.com/modules/TV126eAT83cFVltCEAcv/FAoLUrziluK3oX7zvLij/gpL2QkbKN.js", "ssg:https://framerusercontent.com/modules/q5ShDVTcuhkxkAYY2X5C/lfDXN2z8z53goaC5CO4Y/IcUqZrLcn.js", "ssg:https://framerusercontent.com/modules/neeHdasdak6wBfotDoeh/xGRIOjZO62OLcS2Sdkt1/lwXOSftra.js", "ssg:https://framerusercontent.com/modules/5YU89KiLEDXpia7vM5Jq/EIocdO7XjQcFEZi9nC47/N7IQk2aB6.js", "ssg:https://framerusercontent.com/modules/JqKQWb6r6KHOzzfiCWWo/zivx986Dbb8H2H0uaGEL/MVa2IZwRI.js", "ssg:https://framerusercontent.com/modules/j1wdQED7yo2fREPWPwBD/gZtq2EBZ3iuB9CCLoQ2a/Si40Pcgkz.js", "ssg:https://framerusercontent.com/modules/P2bwYR9t4gaaMtZLSY8Z/eiq7uravrwNuT56rv1H3/MotionText.js", "ssg:https://framerusercontent.com/modules/JfgUcVGxyKt9sVHOoak1/DHXmyI00DYcfRTjEKT3O/FsyjeqdGR.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}from\"framer-motion\";import{resize}from\"@motionone/dom\";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;const numChildren=Children.count(slots);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 = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.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 isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on.\n * By using `useConstant` you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map", "import { useConstant } from \"https://framer.com/m/framer/useConstant.js@^1.0.0\";\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n/**\n * Generates a random string of BASE62 characters.\n */ export function randomID(length = 5) {\n    return Array(length).fill(0).map(()=>BASE62[Math.floor(Math.random() * BASE62.length)]\n    ).join(\"\");\n}\nexport function useRandomID(length = 5) {\n    return useConstant(()=>randomID(length)\n    );\n}\nconst defaultStorageKey = \"$$FramerRandomID\";\n/**\n * `randomID` but cached in localStorage.\n */ export function useCachedRandomID(storageKey = defaultStorageKey) {\n    return useConstant(()=>{\n        const storage = getLocalStorage();\n        if (!storage) return randomID(8);\n        const cachedValue = storage.getItem(storageKey);\n        if (cachedValue) return cachedValue;\n        const newID = randomID(8);\n        storage.setItem(storageKey, newID);\n        return newID;\n    });\n}\nfunction getLocalStorage() {\n    if (typeof window === undefined) return undefined;\n    try {\n        return window.localStorage;\n    } catch (err) {\n        return undefined;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCachedRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./randomID.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";// Generated by Framer (24dff6d)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{Image,addFonts,withCSS,addPropertyControls,ControlType,cx,useAddVariantProps,useVariantState,RichText}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"s58Y_r8Ez\",\"vRzgmGWpd\",\"FVETXFjb1\"];const variantClassNames={\"s58Y_r8Ez\":\"framer-v-3v9zgb\",\"FVETXFjb1\":\"framer-v-3hetrw\",\"vRzgmGWpd\":\"framer-v-14lsyg\"};const humanReadableVariantMap={\"Photo\":\"s58Y_r8Ez\",\"Placeholder\":\"vRzgmGWpd\",\"Initials\":\"FVETXFjb1\"};const transitions={\"default\":{\"type\":\"spring\",\"ease\":[0.44,0,0.56,1],\"duration\":0.3,\"delay\":0,\"stiffness\":500,\"damping\":60,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({style:externalStyle={},className,width,height,layoutId,variant:outerVariant=\"s58Y_r8Ez\",image:xmIvQmf4p=new URL(\"assets/512/3FLphn4nNQcp8m6DWDVn5OAPXI.jpg\",\"https://framerusercontent.com/modules/upHscEcqDQ8iVzrOfuEk/iHEJIWt3POCR8hWv8Fip/dSMVdIqsz.js\").href,initials:nk9VMvIfG=\"HC\",radius:VqLXyQmbq=100,accent:v407kujy9=\"rgb(255, 255, 255)\",background:etbl5ORQn=\"rgb(97, 51, 237)\",indicator:ApbJ0qlLr=true,indicator1:rxuSom06d=\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152)) /* {\\\"name\\\":\\\"Green\\\"} */\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"s58Y_r8Ez\",variant,transitions,variantClassNames,cycleOrder});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const variantProps=React.useMemo(()=>({\"FVETXFjb1\":{\"s58Y_r8Ez\":{\"data-framer-name\":\"Initials\"},\"zPXPmOECM\":{\"html\":\"<p style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\"><span style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\">HC</span></p>\",\"__htmlStructure\":\"<p style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\"><span style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\">{{ text-placeholder }}</span></p>\",\"fonts\":[\"GF;Be Vietnam Pro-600\"]}},\"vRzgmGWpd\":{\"s58Y_r8Ez\":{\"data-framer-name\":\"Placeholder\"}}}),[v407kujy9]);const addVariantProps=useAddVariantProps(baseVariant,gestureVariant,variantProps);const isDisplayed1=()=>{if(baseVariant===\"vRzgmGWpd\")return false;return true;};const isDisplayed2=()=>{if([\"FVETXFjb1\",\"vRzgmGWpd\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"vRzgmGWpd\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"vRzgmGWpd\")return true;return false;};const defaultLayoutId=useRandomID();const{pointerEvents,...style}=externalStyle;return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{\"data-framer-generated\":true,initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-oTphn\",classNames),style:{\"display\":\"contents\",\"pointerEvents\":pointerEvents!==null&&pointerEvents!==void 0?pointerEvents:undefined},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,layoutId:\"s58Y_r8Ez\",className:cx(\"framer-3v9zgb\",className),style:{\"borderBottomLeftRadius\":VqLXyQmbq,\"borderBottomRightRadius\":VqLXyQmbq,\"borderTopRightRadius\":VqLXyQmbq,\"borderTopLeftRadius\":VqLXyQmbq,\"backgroundColor\":etbl5ORQn,...style},\"data-framer-name\":\"Photo\",transition:transition,layoutDependency:layoutDependency,ref:ref,...addVariantProps(\"s58Y_r8Ez\"),children:[isDisplayed1()&&/*#__PURE__*/ _jsx(RichText,{fonts:[\"GF;Be Vietnam Pro-600\"],style:{\"--variable-reference-v407kujy9\":v407kujy9,\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},withExternalLayout:true,verticalAlignment:\"top\",center:true,__fromCanvasComponent:true,layoutId:\"zPXPmOECM\",className:\"framer-1c9qosn\",html:\"<p style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\"><span style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\">HC</span></p>\",__htmlStructure:\"<p style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\"><span style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\">{{ text-placeholder }}</span></p>\",text:nk9VMvIfG,transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"zPXPmOECM\")}),isDisplayed2()&&/*#__PURE__*/ _jsx(Image,{layoutId:\"QsbvWmrdZ\",className:\"framer-16ah2q\",style:{\"borderBottomLeftRadius\":VqLXyQmbq,\"borderBottomRightRadius\":VqLXyQmbq,\"borderTopRightRadius\":VqLXyQmbq,\"borderTopLeftRadius\":VqLXyQmbq},background:{\"src\":xmIvQmf4p,\"pixelWidth\":512,\"pixelHeight\":512,\"intrinsicWidth\":512,\"intrinsicHeight\":512,\"fit\":\"fill\"},\"data-framer-name\":\"Avatar\",alt:\"\",transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"QsbvWmrdZ\"),children:ApbJ0qlLr&&/*#__PURE__*/ _jsx(motion.div,{layoutId:\"SCsTp1y2E\",className:\"framer-16cyh4v\",style:{\"borderBottomLeftRadius\":\"50%\",\"borderBottomRightRadius\":\"50%\",\"borderTopRightRadius\":\"50%\",\"borderTopLeftRadius\":\"50%\",\"backgroundColor\":\"rgb(255, 255, 255)\"},\"data-framer-name\":\"Indicator\",transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"SCsTp1y2E\"),children:/*#__PURE__*/ _jsx(motion.div,{layoutId:\"X1jq3J_Fl\",className:\"framer-1owj0hl\",style:{\"borderBottomLeftRadius\":\"50%\",\"borderBottomRightRadius\":\"50%\",\"borderTopRightRadius\":\"50%\",\"borderTopLeftRadius\":\"50%\",\"backgroundColor\":rxuSom06d},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"X1jq3J_Fl\")})})}),isDisplayed3()&&/*#__PURE__*/ _jsx(motion.div,{layoutId:\"MWzMqWFtB\",className:\"framer-nkdrr7\",style:{\"borderBottomLeftRadius\":\"50%\",\"borderBottomRightRadius\":\"50%\",\"borderTopRightRadius\":\"50%\",\"borderTopLeftRadius\":\"50%\",\"backgroundColor\":v407kujy9},\"data-framer-name\":\"Placeholder body\",transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"MWzMqWFtB\")}),isDisplayed4()&&/*#__PURE__*/ _jsx(motion.div,{layoutId:\"oLkkfmJK2\",className:\"framer-g5wxn5\",style:{\"borderBottomLeftRadius\":\"50%\",\"borderBottomRightRadius\":\"50%\",\"borderTopRightRadius\":\"50%\",\"borderTopLeftRadius\":\"50%\",\"backgroundColor\":v407kujy9},\"data-framer-name\":\"Placeholder head\",transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"oLkkfmJK2\")})]})})}));});const css=[\".framer-oTphn [data-border=\\\"true\\\"]::after { content: \\\"\\\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none;}\",\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oTphn * { box-sizing: border-box; }\",\".framer-oTphn .framer-3v9zgb { position: relative; overflow: visible; width: 30px; height: 30px; }\",\".framer-oTphn .framer-1c9qosn { position: absolute; width: auto; height: auto; left: 50%; top: 50%; flex: none; white-space: pre; }\",\".framer-oTphn .framer-16ah2q { position: absolute; overflow: visible; right: 0px; bottom: 0px; left: 0px; top: 0px; flex: none; }\",\".framer-oTphn .framer-16cyh4v { position: absolute; overflow: visible; width: 27%; height: 27%; right: 0px; bottom: 0px; flex: none; }\",\".framer-oTphn .framer-1owj0hl { position: absolute; overflow: visible; width: 75%; height: 75%; left: calc(50.00000000000002% - 75%/2); top: calc(50.00000000000002% - 75%/2); flex: none; }\",\".framer-oTphn .framer-nkdrr7 { position: absolute; overflow: visible; width: 27%; height: 27%; left: calc(50.00000000000002% - 26.666666666666668%/2); top: calc(36.666666666666686% - 26.666666666666668%/2); flex: none; }\",\".framer-oTphn .framer-g5wxn5 { position: absolute; overflow: visible; width: 53%; height: 30%; left: calc(50.00000000000002% - 53.333333333333336%/2); top: calc(70.00000000000001% - 30%/2); flex: none; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}, \"FVETXFjb1\": {\"layout\": [\"fixed\", \"fixed\"]}, \"vRzgmGWpd\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n * @framerVariables {\"xmIvQmf4p\": \"image\", \"nk9VMvIfG\": \"initials\", \"VqLXyQmbq\": \"radius\", \"v407kujy9\": \"accent\", \"etbl5ORQn\": \"background\", \"ApbJ0qlLr\": \"indicator\", \"rxuSom06d\": \"indicator1\"}\n */ const FramerdSMVdIqsz=withCSS(Component,css);export default FramerdSMVdIqsz;FramerdSMVdIqsz.displayName=\"Elements / Avatar\";FramerdSMVdIqsz.defaultProps={\"width\":30,\"height\":30};addPropertyControls(FramerdSMVdIqsz,{\"variant\":{\"type\":ControlType.Enum,\"title\":\"Variant\",\"options\":[\"s58Y_r8Ez\",\"vRzgmGWpd\",\"FVETXFjb1\"],\"optionTitles\":[\"Photo\",\"Placeholder\",\"Initials\"]},\"xmIvQmf4p\":{\"type\":ControlType.Image,\"title\":\"Image\",\"__defaultAssetReference\":\"data:framer/asset-reference,3FLphn4nNQcp8m6DWDVn5OAPXI.jpg?originalFilename=unknown.jpg&preferredSize=small\"},\"nk9VMvIfG\":{\"type\":ControlType.String,\"title\":\"Initials\",\"defaultValue\":\"HC\",\"displayTextArea\":false},\"VqLXyQmbq\":{\"type\":ControlType.Number,\"title\":\"Radius\",\"defaultValue\":100,\"min\":0,\"max\":200},\"v407kujy9\":{\"type\":ControlType.Color,\"title\":\"Accent\",\"defaultValue\":\"rgb(255, 255, 255)\"},\"etbl5ORQn\":{\"type\":ControlType.Color,\"title\":\"Background\",\"defaultValue\":\"rgb(97, 51, 237)\"},\"ApbJ0qlLr\":{\"type\":ControlType.Boolean,\"title\":\"Indicator\",\"defaultValue\":true},\"rxuSom06d\":{\"type\":ControlType.Color,\"title\":\"Indicator\",\"defaultValue\":\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152)) /* {\\\"name\\\":\\\"Green\\\"} */\"}});addFonts(FramerdSMVdIqsz,[{\"url\":\"https://fonts.gstatic.com/s/bevietnampro/v8/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf\",\"family\":\"Be Vietnam Pro\",\"style\":\"normal\",\"weight\":\"600\",\"moduleAsset\":{\"url\":\"https://fonts.gstatic.com/s/bevietnampro/v8/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf\",\"localModuleIdentifier\":\"local-module:canvasComponent/dSMVdIqsz:default\"}}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdSMVdIqsz\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"30\",\"framerIntrinsicHeight\":\"30\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"FVETXFjb1\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"vRzgmGWpd\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"xmIvQmf4p\\\": \\\"image\\\", \\\"nk9VMvIfG\\\": \\\"initials\\\", \\\"VqLXyQmbq\\\": \\\"radius\\\", \\\"v407kujy9\\\": \\\"accent\\\", \\\"etbl5ORQn\\\": \\\"background\\\", \\\"ApbJ0qlLr\\\": \\\"indicator\\\", \\\"rxuSom06d\\\": \\\"indicator1\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dSMVdIqsz.map", "let e;var f=r=>{if(!e){let o=function(t,n){return r.createElement(\"svg\",{width:\"100%\",height:\"1.5em\",strokeWidth:1.5,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",color:\"currentColor\",ref:n,...t},r.createElement(\"path\",{d:\"M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 01-.6.6H5.6a.6.6 0 01-.6-.6V13\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))};e=r.forwardRef(o)}return e};export{f as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/iconoir-icons/Home.js@0.0.11\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"Accessibility\",\"AccessibilitySign\",\"AccessibilityTech\",\"Activity\",\"AddCircledOutline\",\"AddDatabaseScript\",\"AddFolder\",\"AddFrame\",\"AddHexagon\",\"AddKeyframe\",\"AddKeyframeAlt\",\"AddKeyframes\",\"AddLens\",\"AddPage\",\"AddPinAlt\",\"AddSelection\",\"AddSquare\",\"AddToCart\",\"AddUser\",\"Airplane\",\"AirplaneHelix\",\"AirplaneHelix45Deg\",\"AirplaneOff\",\"AirplaneRotation\",\"Airplay\",\"Alarm\",\"Album\",\"AlbumCarousel\",\"AlbumList\",\"AlbumOpen\",\"AlignBottomBox\",\"AlignCenter\",\"AlignJustify\",\"AlignLeft\",\"AlignLeftBox\",\"AlignRight\",\"AlignRightBox\",\"AlignTopBox\",\"Antenna\",\"AntennaOff\",\"AntennaSignal\",\"AppNotification\",\"Apple\",\"AppleHalf\",\"AppleHalfAlt\",\"AppleImac2021\",\"AppleImac2021Side\",\"AppleSwift\",\"ArSymbol\",\"Archery\",\"Archive\",\"AreaSearch\",\"ArrowArchery\",\"ArrowDown\",\"ArrowDownCircled\",\"ArrowLeft\",\"ArrowLeftCircled\",\"ArrowRight\",\"ArrowRightCircled\",\"ArrowSeparate\",\"ArrowUnion\",\"ArrowUnionVertical\",\"ArrowUp\",\"ArrowUpCircled\",\"Asana\",\"Attachment\",\"AutoFlash\",\"Bag\",\"BasketBall\",\"BasketBallAlt\",\"BasketballField\",\"Battery25\",\"Battery50\",\"Battery75\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryIndicator\",\"BatteryWarning\",\"BeachBag\",\"BeachBagBig\",\"Bell\",\"BellNotification\",\"BellOff\",\"Bicycle\",\"Bin\",\"BinAdd\",\"BinFull\",\"BinHalf\",\"BinMinus\",\"Bluetooth\",\"Bold\",\"BoldSquareOutline\",\"BookmarkCircled\",\"BookmarkEmpty\",\"BorderBl\",\"BorderBottom\",\"BorderBr\",\"BorderInner\",\"BorderLeft\",\"BorderOut\",\"BorderRight\",\"BorderTl\",\"BorderTop\",\"BorderTr\",\"BounceLeft\",\"BounceRight\",\"BowlingBall\",\"Box\",\"BoxIso\",\"BoxingGlove\",\"BubbleDownload\",\"BubbleError\",\"BubbleIncome\",\"BubbleOutcome\",\"BubbleSearch\",\"BubbleStar\",\"BubbleUpload\",\"BubbleWarning\",\"Building\",\"BusOutline\",\"BusStop\",\"Calculator\",\"Calendar\",\"Camera\",\"Cancel\",\"CarOutline\",\"Cart\",\"CartAlt\",\"Cash\",\"Cell4X4\",\"CenterAlign\",\"ChatAdd\",\"ChatBubble\",\"ChatBubbleCheck\",\"ChatBubbleCheck1\",\"ChatBubbleEmpty\",\"ChatBubbleError\",\"ChatBubbleQuestion\",\"ChatBubbleTranslate\",\"ChatBubbleWarning\",\"ChatLines\",\"ChatRemove\",\"Check\",\"CheckCircledOutline\",\"Chocolate\",\"Chromecast\",\"ChromecastActive\",\"Church\",\"ChurchAlt\",\"CinemaOld\",\"Circle\",\"City\",\"ClockOutline\",\"Closet\",\"Cloud\",\"CloudBookAlt\",\"CloudCheck\",\"CloudDesync\",\"CloudDownload\",\"CloudError\",\"CloudSunny\",\"CloudSync\",\"CloudUpload\",\"Code\",\"Codepen\",\"Coin\",\"CollageFrame\",\"Collapse\",\"ColorFilter\",\"ColorPicker\",\"ColorPickerEmpty\",\"Combine\",\"CompactDisc\",\"Compress\",\"CompressLines\",\"Computer\",\"ControlSlider\",\"Copy\",\"Copyright\",\"CornerBottomLeft\",\"CornerBottomRight\",\"CornerTopLeft\",\"CornerTopRight\",\"Cpu\",\"CpuWarning\",\"CrackedEgg\",\"CreativeCommons\",\"CreditCard\",\"CreditCard2\",\"Crop\",\"CropRotateBl\",\"CropRotateBr\",\"CropRotateTl\",\"CropRotateTr\",\"Css3\",\"CursorPointer\",\"Cut\",\"CutAlt\",\"Cycling\",\"DashFlag\",\"Dashboard\",\"DashboardDots\",\"DashboardSpeed\",\"DataTransferBoth\",\"DataTransferCheck\",\"DataTransferDown\",\"DataTransferUp\",\"DataTransferWarning\",\"DatabaseBackup\",\"DatabaseExport\",\"DatabaseMonitor\",\"DatabaseRestore\",\"DatabaseScript\",\"DatabaseSettings\",\"DatabaseStar\",\"DatabaseStats\",\"Db\",\"DbCheck\",\"DbError\",\"DbSearch\",\"DbStar\",\"DbWarning\",\"DeCompress\",\"DeleteCircledOutline\",\"DesignPencil\",\"Dialpad\",\"Display4K\",\"DivideSelection1\",\"DivideSelection2\",\"DocSearch\",\"DocSearchAlt\",\"DocStar\",\"DocStarAlt\",\"Dollar\",\"DomoticIssue\",\"Donate\",\"DoubleCheck\",\"DownRoundArrow\",\"Download\",\"DragHandGesture\",\"Drawer\",\"Dribbble\",\"Droplet\",\"DropletHalf\",\"EaseIn\",\"EaseInControlPoint\",\"EaseInOut\",\"EaseOut\",\"EaseOutControlPoint\",\"Edit\",\"EditPencil\",\"Egg\",\"Eject\",\"ElectronicsChip\",\"Emoji\",\"EmojiBall\",\"EmojiBlinkLeft\",\"EmojiBlinkRight\",\"EmojiLookBottom\",\"EmojiLookLeft\",\"EmojiLookRight\",\"EmojiLookTop\",\"EmojiQuite\",\"EmojiReally\",\"EmojiSad\",\"EmojiSatisfied\",\"EmojiSingLeft\",\"EmojiSingLeftNote\",\"EmojiSingRight\",\"EmojiSingRightNote\",\"EmojiSurprise\",\"EmojiSurpriseAlt\",\"EmojiTalkingAngry\",\"EmojiTalkingHappy\",\"EmojiThinkLeft\",\"EmojiThinkRight\",\"EmptyPage\",\"Enlarge\",\"EnlargeRoundArrow\",\"Euro\",\"EuroSquare\",\"EvCharge\",\"EvChargeAlt\",\"EvPlug\",\"EvPlugCharging\",\"EvPlugError\",\"EvStation\",\"Exclude\",\"Expand\",\"ExpandLines\",\"EyeAlt\",\"EyeClose\",\"EyeEmpty\",\"EyeOff\",\"FaceId\",\"Facebook\",\"FacebookSquared\",\"Farm\",\"FastArrowDown\",\"FastArrowDownBox\",\"FastArrowLeft\",\"FastArrowLeftBox\",\"FastArrowRight\",\"FastArrowRightBox\",\"FastArrowTop\",\"FastArrowUpBox\",\"FastBottomCircle\",\"FastLeftCircle\",\"FastRightCircle\",\"FastTopCircle\",\"Female\",\"Figma\",\"FileNotFound\",\"Filter\",\"FilterAlt\",\"Finder\",\"Fingerprint\",\"FingerprintCircled\",\"FingerprintCircledOk\",\"FingerprintPhone\",\"FingerprintScan\",\"FingerprintSquared\",\"Fishing\",\"Flare\",\"Flash\",\"FlashOff\",\"Flip\",\"FlipReverse\",\"Flower\",\"Fog\",\"Folder\",\"FolderAlert\",\"FontSize\",\"Football\",\"FootballBall\",\"ForwardOutline\",\"Frame\",\"FrameAlt\",\"FrameAltEmpty\",\"FrameSelect\",\"FrameSimple\",\"FrameTool\",\"Fridge\",\"Fx\",\"Garage\",\"Gas\",\"GasTank\",\"GasTankDrop\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitHub\",\"GitHubOutline\",\"GitLabFull\",\"GitMerge\",\"GlassEmpty\",\"GlassHalf\",\"GlassHalfAlt\",\"Glasses\",\"Golf\",\"Google\",\"GoogleCircled\",\"GoogleDocs\",\"GoogleDrive\",\"GoogleDriveCheck\",\"GoogleDriveSync\",\"GoogleDriveWarning\",\"GoogleHome\",\"GoogleOne\",\"Gps\",\"GraphDown\",\"GraphUp\",\"GridAdd\",\"GridMinus\",\"GridRemove\",\"Group\",\"Gym\",\"HalfMoon\",\"HandBrake\",\"Handbag\",\"HardDrive\",\"Hat\",\"Hd\",\"Hdr\",\"Headset\",\"HeadsetCharge\",\"HeadsetHelp\",\"HeadsetIssue\",\"HealthShield\",\"Healthcare\",\"Heart\",\"HeavyRain\",\"Heptagon\",\"HerSlips\",\"HesaWarningOutline\",\"Hexagon\",\"HexagonAlt\",\"HighPriority\",\"HistoricShield\",\"HistoricShieldAlt\",\"Home\",\"HomeAlt\",\"HomeAltSlim\",\"HomeAltSlimHoriz\",\"HomeHospital\",\"HomeSimple\",\"HomeSimpleDoor\",\"HomeUser\",\"Hospital\",\"HospitalSign\",\"Hourglass\",\"Html5\",\"Iconoir\",\"Import\",\"Industry\",\"InfoEmpty\",\"InputField\",\"InputSearch\",\"Instagram\",\"Intersect\",\"IntersectAlt\",\"IosSettings\",\"IrisScan\",\"Italic\",\"ItalicSquareOutline\",\"Journal\",\"JournalPage\",\"KeyAlt\",\"KeyAltBack\",\"KeyAltMinus\",\"KeyAltPlus\",\"KeyAltRemove\",\"Keyframe\",\"KeyframeAlignCenter\",\"KeyframePosition\",\"Keyframes\",\"KeyframesCouple\",\"LabelOutline\",\"Lamp\",\"Language\",\"Laptop\",\"LaptopCharging\",\"LaptopFix\",\"LaptopIssue\",\"LargeSuitcase\",\"LayoutLeft\",\"LayoutRight\",\"Leaderboard\",\"LeaderboardStar\",\"LeftRoundArrow\",\"Lens\",\"Lifebelt\",\"LightBulb\",\"LightBulbOff\",\"LightBulbOn\",\"LineSpace\",\"Linear\",\"Link\",\"LinkedIn\",\"List\",\"LoadActionFloppy\",\"Lock\",\"LockKey\",\"LogDenied\",\"LogIn\",\"LogOut\",\"LongArrowDownLeft\",\"LongArrowDownRight\",\"LongArrowLeftDown\",\"LongArrowLeftUp\",\"LongArrowRightDown\",\"LongArrowRightUp\",\"LongArrowRightUp1\",\"LongArrowUpLeft\",\"LongArrowUpRight\",\"LotOfCash\",\"MacControlKey\",\"MacDock\",\"MacOptionKey\",\"MacOsWindow\",\"Mail\",\"MailOpened\",\"Male\",\"Map\",\"MapIssue\",\"MapsArrow\",\"MapsArrowDiagonal\",\"MapsArrowIssue\",\"MapsGoStraight\",\"MapsTurnBack\",\"MapsTurnLeft\",\"MapsTurnRight\",\"MaskSquare\",\"Maximize\",\"Medal\",\"Medal1St\",\"Medium\",\"Megaphone\",\"Menu\",\"MenuScale\",\"Message\",\"MessageAlert\",\"MessageText\",\"Metro\",\"Mic\",\"MicAdd\",\"MicCheck\",\"MicMute\",\"MicRemove\",\"MicSpeaking\",\"MicWarning\",\"Minus\",\"Minus1\",\"MinusHexagon\",\"MinusPinAlt\",\"MinusSquare\",\"MissingFont\",\"ModernTv\",\"ModernTv4K\",\"MoneySquare\",\"MoonSat\",\"MoreHoriz\",\"MoreVert\",\"MouseButtonLeft\",\"MouseButtonRight\",\"MouseScrollWheel\",\"MoveDown\",\"MoveLeft\",\"MoveRight\",\"MoveRuler\",\"MoveUp\",\"Movie\",\"MultiBubble\",\"MultiMacOsWindow\",\"MultiWindow\",\"MultiplePages\",\"MultiplePagesAdd\",\"MultiplePagesDelete\",\"MultiplePagesEmpty\",\"MultiplePagesRemove\",\"Music1\",\"Music1Add\",\"Music2\",\"Music2Add\",\"NavArrowDown\",\"NavArrowLeft\",\"NavArrowRight\",\"NavArrowUp\",\"Navigator\",\"NavigatorAlt\",\"Network\",\"NetworkAlt\",\"NetworkLeft\",\"NetworkRight\",\"NoBattery\",\"NoCoin\",\"NoCreditCard\",\"NoLock\",\"NoSmoking\",\"Notes\",\"Octagon\",\"OilIndustry\",\"OpenInBrowser\",\"OpenInWindow\",\"OpenVpn\",\"OrangeHalf\",\"OrangeSlice\",\"OrangeSliceAlt\",\"Page\",\"PageFlip\",\"PageSearch\",\"PageStar\",\"Palette\",\"PanoramaEnlarge\",\"PanoramaReduce\",\"Pants\",\"PantsAlt\",\"PasswordCursor\",\"PasswordError\",\"PasswordPass\",\"PauseOutline\",\"PcMouse\",\"PenConnectBluetooth\",\"PenConnectWifi\",\"PenTablet\",\"PenTabletConnectUsb\",\"PenTabletConnectWifi\",\"Pentagon\",\"Percentage\",\"PercentageRound\",\"PercentageSquare\",\"PharmacyCircledCross\",\"PharmacySquaredCross\",\"Phone\",\"PhoneAdd\",\"PhoneDelete\",\"PhoneDisabled\",\"PhoneIncome\",\"PhoneOutcome\",\"PhonePaused\",\"PhoneRemove\",\"Pin\",\"PinAlt\",\"PizzaSlice\",\"Planet\",\"PlanetAlt\",\"PlanetSat\",\"PlayOutline\",\"Playlist\",\"PlaylistAdd\",\"PlaylistPlay\",\"PlugTypeA\",\"PlugTypeC\",\"PlugTypeG\",\"PlugTypeL\",\"Plus\",\"Pocket\",\"Position\",\"PositionAlign\",\"Pound\",\"PrecisionTool\",\"Printer\",\"PrinterAlt\",\"PrintingPage\",\"PriorityDown\",\"PriorityUp\",\"ProfileCircled\",\"Prohibition\",\"QuestionMark\",\"QuestionMarkCircle\",\"Rain\",\"ReceiveDollars\",\"ReceiveEuros\",\"ReceivePounds\",\"ReceiveYens\",\"Redo\",\"RedoAction\",\"RedoCircle\",\"Reduce\",\"ReduceRoundArrow\",\"Refresh\",\"RefreshCircular\",\"RefreshDouble\",\"ReminderHandGesture\",\"RemoveDatabaseScript\",\"RemoveEmpty\",\"RemoveFolder\",\"RemoveFrame\",\"RemoveFromCart\",\"RemoveKeyframe\",\"RemoveKeyframeAlt\",\"RemoveKeyframes\",\"RemovePage\",\"RemovePinAlt\",\"RemoveSelection\",\"RemoveSquare\",\"RemoveUser\",\"Repeat\",\"RepeatOnce\",\"ReportColumns\",\"Reports\",\"RewindOutline\",\"Rhombus\",\"RightRoundArrow\",\"Rings\",\"RotateCameraLeft\",\"RotateCameraRight\",\"RssFeed\",\"RssFeedSquared\",\"Ruler\",\"RulerAdd\",\"RulerCombine\",\"RulerRemove\",\"Running\",\"Sandals\",\"SaveActionFloppy\",\"SaveFloppyDisk\",\"ScaleFrameEnlarge\",\"ScaleFrameReduce\",\"Scanning\",\"Scarf\",\"Scissor\",\"ScissorAlt\",\"SeaAndSun\",\"SeaWaves\",\"Search\",\"SearchFont\",\"SecurityPass\",\"Selection\",\"SelectiveTool\",\"SendDollars\",\"SendEuros\",\"SendPounds\",\"SendYens\",\"Server\",\"ServerConnection\",\"Settings\",\"SettingsCloud\",\"SettingsProfiles\",\"ShareAndroid\",\"ShareIos\",\"Shield\",\"ShieldAdd\",\"ShieldAlert\",\"ShieldAlt\",\"ShieldBroken\",\"ShieldCheck\",\"ShieldCross\",\"ShieldDownload\",\"ShieldEye\",\"ShieldLoading\",\"ShieldMinus\",\"ShieldQuestion\",\"ShieldSearch\",\"ShieldUpload\",\"Shop\",\"ShopAlt\",\"ShoppingBag\",\"ShoppingBagAdd\",\"ShoppingBagAlt\",\"ShoppingBagArrowDown\",\"ShoppingBagArrowUp\",\"ShoppingBagCheck\",\"ShoppingBagIssue\",\"ShoppingBagRemove\",\"ShoppingCode\",\"ShoppingCodeCheck\",\"ShoppingCodeError\",\"ShortPants\",\"ShortPantsAlt\",\"Shuffle\",\"SimpleCart\",\"SingleTapGesture\",\"Skateboard\",\"Skateboarding\",\"SkipNextOutline\",\"SkipPrevOutline\",\"SmallShop\",\"SmallShopAlt\",\"SmartphoneDevice\",\"Smoking\",\"Snow\",\"SnowFlake\",\"Soap\",\"SoccerBall\",\"SortDown\",\"SortUp\",\"SoundHigh\",\"SoundLow\",\"SoundMin\",\"SoundOff\",\"SpockHandGesture\",\"Square\",\"StarDashed\",\"StarHalfDashed\",\"StarOutline\",\"StatDown\",\"StatUp\",\"StatsReport\",\"StatsSquareDown\",\"StatsSquareUp\",\"Stretching\",\"StyleBorder\",\"Substract\",\"Suggestion\",\"SunLight\",\"Swimming\",\"SwipeDownGesture\",\"SwipeLeftGesture\",\"SwipeRightGesture\",\"SwipeUpGesture\",\"SwitchOffOutline\",\"SwitchOnOutline\",\"SystemRestart\",\"SystemShut\",\"Table\",\"Table2Columns\",\"TableRows\",\"Telegram\",\"TelegramCircled\",\"TennisBall\",\"TennisBallAlt\",\"TerminalOutline\",\"TerminalSimple\",\"Text\",\"TextAlt\",\"TextSize\",\"ThreeStars\",\"Thunderstorm\",\"TikTok\",\"Timer\",\"TimerOff\",\"Tower\",\"TowerCheck\",\"TowerNoAccess\",\"TowerWarning\",\"Trademark\",\"TrainOutline\",\"Tram\",\"TransitionBottom\",\"TransitionLeft\",\"TransitionRight\",\"TransitionTop\",\"Translate\",\"Trash\",\"Treadmill\",\"Trekking\",\"Trello\",\"Triangle\",\"TriangleFlag\",\"TriangleFlagCircle\",\"TriangleFlagFull\",\"Trophy\",\"Tunnel\",\"Tv\",\"TvFix\",\"TvIssue\",\"Twitter\",\"TwitterVerifiedBadge\",\"Type\",\"UmbrellaFull\",\"Underline\",\"Undo\",\"UndoAction\",\"UndoCircle\",\"Union\",\"UnionAlt\",\"UnionHorizAlt\",\"Unity\",\"Unity5\",\"UpRoundArrow\",\"Upload\",\"UploadSquareOutline\",\"Usb\",\"User\",\"UserBag\",\"UserCart\",\"UserCircleAlt\",\"UserScan\",\"UserSquareAlt\",\"VerifiedBadge\",\"VerifiedUser\",\"VideoCamera\",\"VideoCameraOff\",\"ViewColumns2\",\"ViewColumns3\",\"ViewGrid\",\"ViewStructureDown\",\"ViewStructureUp\",\"Voice\",\"VoiceCircled\",\"VoiceCircledLock\",\"VoiceError\",\"VoiceOk\",\"VoicePhone\",\"VoiceScan\",\"VoiceSquared\",\"VrSymbol\",\"Waist\",\"Walking\",\"WarningSquareOutline\",\"WebWindow\",\"WebWindowClose\",\"Weight\",\"WeightAlt\",\"WhiteFlag\",\"Wifi\",\"WifiIssue\",\"WifiOff\",\"WifiSignalNone\",\"Wind\",\"WrapText\",\"Wristwatch\",\"Yen\",\"YenSquare\",\"Yoga\",\"YouTube\",\"ZoomIn\",\"ZoomOut\",];const moduleBaseUrl=\"https://framer.com/m/iconoir-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * ICONOIR\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.11`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{size:\"100$%\",style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Iconoir\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Iconoir site](https://iconoir.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Iconoir.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bgLrRjBuPtFrPt0jD4qP/LdwpcwOglixRTALBnHaH/kxUW6TIQi.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ugMJbEHcgBGT3LoEywEx/AXooJHHh1sIi0uyziW7n/soq3skx9b.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={sx77sjQLD:{hover:true}};const serializationHash=\"framer-78r3E\";const variantClassNames={sx77sjQLD:\"framer-v-eskslf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:52,delay:.5,mass:1,stiffness:238,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const 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({defaultVariant:\"sx77sjQLD\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"sx77sjQLD-hover\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-eskslf\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"sx77sjQLD\",ref:refBinding,style:{backgroundColor:\"rgb(237, 216, 248)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"sx77sjQLD-hover\":{backgroundColor:\"rgb(111, 53, 153)\"}},...addPropertyOverrides({\"sx77sjQLD-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gfepnk\",layoutDependency:layoutDependency,layoutId:\"FwzwvTlcv\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19rff3l\",layoutDependency:layoutDependency,layoutId:\"n5sAFAewo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(111, 53, 153))\"},children:\"Private and Secure\"})}),className:\"framer-cwqf20\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Y71sBty9b\",style:{\"--extracted-1lwpl3i\":\"rgb(111, 53, 153)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"sx77sjQLD-hover\":{\"--extracted-1lwpl3i\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"sx77sjQLD-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(255, 255, 255))\"},children:\"Private and Secure\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"Unlike other loan apps, we respect your privacy and never involve third parties.  Your trust matters to us\"})}),className:\"framer-9ghsuw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EUjOscs67\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"sx77sjQLD-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"sx77sjQLD-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Unlike other loan apps, we respect your privacy and never involve third parties.  Your trust matters to us\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nxkoum\",layoutDependency:layoutDependency,layoutId:\"rrELvCvTl\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-m3ar4s\",layoutDependency:layoutDependency,layoutId:\"vjvg7EXvI\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s6dzol\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",layoutDependency:layoutDependency,layoutId:\"Icne4eKCk\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+277+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-74qx29\",\"data-framer-name\":\"shadow\",layoutDependency:layoutDependency,layoutId:\"cYpdZ97rH\",style:{opacity:.7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+277+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-1exlf4x\",\"data-framer-name\":\"main\",layoutDependency:layoutDependency,layoutId:\"GhUbWAtx5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Safe and secure without BVN\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+277+0+7),sizes:\"154px\",src:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png\",srcSet:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png 1804w\"},className:\"framer-14shlwq\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\",layoutDependency:layoutDependency,layoutId:\"bkiUwSAsW\"})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-78r3E.framer-1tcnxvs, .framer-78r3E .framer-1tcnxvs { display: block; }\",\".framer-78r3E.framer-eskslf { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 97px; height: 488px; justify-content: flex-start; overflow: hidden; padding: 32px 32px 0px 32px; position: relative; width: 500px; will-change: var(--framer-will-change-override, transform); }\",\".framer-78r3E .framer-1gfepnk { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-78r3E .framer-19rff3l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-78r3E .framer-cwqf20, .framer-78r3E .framer-9ghsuw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-78r3E .framer-nxkoum { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 263px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-78r3E .framer-m3ar4s { flex: 1 0 0px; height: 120px; overflow: hidden; position: relative; width: 1px; }\",\".framer-78r3E .framer-s6dzol { flex: none; height: 100%; overflow: visible; position: relative; width: 165px; }\",\".framer-78r3E .framer-74qx29 { flex: none; height: 347px; left: 0px; position: absolute; top: 0px; width: 165px; }\",\".framer-78r3E .framer-1exlf4x { flex: none; height: 350px; left: 0px; position: absolute; top: 0px; width: 165px; }\",\".framer-78r3E .framer-14shlwq { flex: none; height: 334px; left: 5px; position: absolute; top: 7px; width: 154px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-78r3E.framer-eskslf, .framer-78r3E .framer-1gfepnk, .framer-78r3E .framer-19rff3l, .framer-78r3E .framer-nxkoum { gap: 0px; } .framer-78r3E.framer-eskslf > * { margin: 0px; margin-bottom: calc(97px / 2); margin-top: calc(97px / 2); } .framer-78r3E.framer-eskslf > :first-child, .framer-78r3E .framer-19rff3l > :first-child { margin-top: 0px; } .framer-78r3E.framer-eskslf > :last-child, .framer-78r3E .framer-19rff3l > :last-child { margin-bottom: 0px; } .framer-78r3E .framer-1gfepnk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-78r3E .framer-1gfepnk > :first-child, .framer-78r3E .framer-nxkoum > :first-child { margin-left: 0px; } .framer-78r3E .framer-1gfepnk > :last-child, .framer-78r3E .framer-nxkoum > :last-child { margin-right: 0px; } .framer-78r3E .framer-19rff3l > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-78r3E .framer-nxkoum > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 488\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"i3pQwR0tD\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerd5mUaLKFR=withCSS(Component,css,\"framer-78r3E\");export default Framerd5mUaLKFR;Framerd5mUaLKFR.displayName=\"Private and Secure\";Framerd5mUaLKFR.defaultProps={height:488,width:500};addFonts(Framerd5mUaLKFR,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerd5mUaLKFR\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"500\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"488\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i3pQwR0tD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./d5mUaLKFR.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bgLrRjBuPtFrPt0jD4qP/LdwpcwOglixRTALBnHaH/kxUW6TIQi.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ugMJbEHcgBGT3LoEywEx/AXooJHHh1sIi0uyziW7n/soq3skx9b.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={k5CQYydq5:{hover:true}};const serializationHash=\"framer-0mKGZ\";const variantClassNames={k5CQYydq5:\"framer-v-1ynw5wj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:47,delay:0,mass:1,stiffness:174,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const 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({defaultVariant:\"k5CQYydq5\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"k5CQYydq5-hover\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1ynw5wj\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"k5CQYydq5\",ref:refBinding,style:{backgroundColor:\"rgb(250, 222, 215)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"k5CQYydq5-hover\":{backgroundColor:\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\"}},...addPropertyOverrides({\"k5CQYydq5-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-h2f5cy\",layoutDependency:layoutDependency,layoutId:\"NYBg2V_Gj\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y3kw7g\",layoutDependency:layoutDependency,layoutId:\"QI8Hi3rbV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7)))\"},children:\"Flexible Loan Duration\"})}),className:\"framer-1e5lf7j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JWqu8gNez\",style:{\"--extracted-1lwpl3i\":\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"k5CQYydq5-hover\":{\"--extracted-1lwpl3i\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"k5CQYydq5-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(255, 255, 255))\"},children:\"Flexible Loan Duration\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"Choose your convenient repayment plan and pay in up to 12 months with the best interest rates\"})}),className:\"framer-aq1nks\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nh8ucNxyI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"k5CQYydq5-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"k5CQYydq5-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Choose your convenient repayment plan and pay in up to 12 months with the best interest rates\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t4yrpl\",layoutDependency:layoutDependency,layoutId:\"PQjGKV_dm\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-53bqsj\",layoutDependency:layoutDependency,layoutId:\"RZjZH2WjB\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r0wadr\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",layoutDependency:layoutDependency,layoutId:\"ik1Ap12wS\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+257+0+0),sizes:\"164px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-1spewgg\",\"data-framer-name\":\"shadow\",layoutDependency:layoutDependency,layoutId:\"O1Yhd1eoK\",style:{opacity:.7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+257+0+0),sizes:\"171px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-8buso1\",\"data-framer-name\":\"main\",layoutDependency:layoutDependency,layoutId:\"nZThbH9yb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"No collateral\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+257+0+6.7864),sizes:\"159.4557px\",src:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png\",srcSet:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png?scale-down-to=2048 947w,https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png 1804w\"},className:\"framer-1rfmugp\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\",layoutDependency:layoutDependency,layoutId:\"a3QI0XeT8\"})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0mKGZ.framer-ygfp0c, .framer-0mKGZ .framer-ygfp0c { display: block; }\",\".framer-0mKGZ.framer-1ynw5wj { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 77px; height: 488px; justify-content: flex-start; overflow: hidden; padding: 32px 32px 0px 32px; position: relative; width: 468px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0mKGZ .framer-h2f5cy { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0mKGZ .framer-1y3kw7g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0mKGZ .framer-1e5lf7j, .framer-0mKGZ .framer-aq1nks { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0mKGZ .framer-t4yrpl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 361px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0mKGZ .framer-53bqsj { flex: 1 0 0px; height: 120px; overflow: hidden; position: relative; width: 1px; }\",\".framer-0mKGZ .framer-r0wadr { flex: none; height: 361px; overflow: visible; position: relative; width: 171px; }\",\".framer-0mKGZ .framer-1spewgg { bottom: -5px; flex: none; left: 0px; position: absolute; top: 0px; width: 164px; }\",\".framer-0mKGZ .framer-8buso1 { bottom: 0px; flex: none; left: 0px; position: absolute; top: 0px; width: 171px; }\",\".framer-0mKGZ .framer-1rfmugp { flex: none; height: 344px; left: 5px; position: absolute; top: calc(49.58448753462606% - 344.4271457085828px / 2); width: 159px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0mKGZ.framer-1ynw5wj, .framer-0mKGZ .framer-h2f5cy, .framer-0mKGZ .framer-1y3kw7g, .framer-0mKGZ .framer-t4yrpl { gap: 0px; } .framer-0mKGZ.framer-1ynw5wj > * { margin: 0px; margin-bottom: calc(77px / 2); margin-top: calc(77px / 2); } .framer-0mKGZ.framer-1ynw5wj > :first-child, .framer-0mKGZ .framer-1y3kw7g > :first-child { margin-top: 0px; } .framer-0mKGZ.framer-1ynw5wj > :last-child, .framer-0mKGZ .framer-1y3kw7g > :last-child { margin-bottom: 0px; } .framer-0mKGZ .framer-h2f5cy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0mKGZ .framer-h2f5cy > :first-child, .framer-0mKGZ .framer-t4yrpl > :first-child { margin-left: 0px; } .framer-0mKGZ .framer-h2f5cy > :last-child, .framer-0mKGZ .framer-t4yrpl > :last-child { margin-right: 0px; } .framer-0mKGZ .framer-1y3kw7g > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-0mKGZ .framer-t4yrpl > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 488\n * @framerIntrinsicWidth 468\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UCljgF6zq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergpL2QkbKN=withCSS(Component,css,\"framer-0mKGZ\");export default FramergpL2QkbKN;FramergpL2QkbKN.displayName=\"Flexible Loan Duration\";FramergpL2QkbKN.defaultProps={height:488,width:468};addFonts(FramergpL2QkbKN,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergpL2QkbKN\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"488\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UCljgF6zq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"468\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gpL2QkbKN.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bgLrRjBuPtFrPt0jD4qP/LdwpcwOglixRTALBnHaH/kxUW6TIQi.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ugMJbEHcgBGT3LoEywEx/AXooJHHh1sIi0uyziW7n/soq3skx9b.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={hxkIaGRrB:{hover:true}};const serializationHash=\"framer-6dC8M\";const variantClassNames={hxkIaGRrB:\"framer-v-1v3p356\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:47,delay:0,mass:1,stiffness:174,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const 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({defaultVariant:\"hxkIaGRrB\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"hxkIaGRrB-hover\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1v3p356\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hxkIaGRrB\",ref:refBinding,style:{backgroundColor:\"rgb(245, 245, 245)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"hxkIaGRrB-hover\":{backgroundColor:\"rgb(36, 36, 36)\"}},...addPropertyOverrides({\"hxkIaGRrB-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-197q6wm\",layoutDependency:layoutDependency,layoutId:\"G6h2aIvg9\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1upltii\",layoutDependency:layoutDependency,layoutId:\"aJrEBukNT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",children:\"Quick and Easy Repayment\"})}),className:\"framer-5zd6qn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g0mRabUyI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"hxkIaGRrB-hover\":{\"--extracted-1lwpl3i\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"hxkIaGRrB-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(255, 255, 255))\"},children:\"Quick and Easy Repayment\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"You can make repayment using multiple channels including; In-app bank repayment, USSD, or bank transfer\"})}),className:\"framer-cu484s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MXLPA3hCH\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"hxkIaGRrB-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"hxkIaGRrB-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"You can make repayment using multiple channels including; In-app bank repayment, USSD, or bank transfer\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iynly3\",layoutDependency:layoutDependency,layoutId:\"Aln_hVM1S\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ap3l7u\",layoutDependency:layoutDependency,layoutId:\"WPtSr5e6E\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ycz9q8\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",layoutDependency:layoutDependency,layoutId:\"vp88fmwPK\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+250+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-1qz8dbo\",\"data-framer-name\":\"shadow\",layoutDependency:layoutDependency,layoutId:\"vE0kahVZH\",style:{opacity:.7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+250+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-pgsrgy\",\"data-framer-name\":\"main\",layoutDependency:layoutDependency,layoutId:\"TEmGOdLHN\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Quick Loan\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+250+0+362-354.3014),sizes:\"169.7663px\",src:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png\",srcSet:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png 1804w\"},className:\"framer-11o76zi\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\",layoutDependency:layoutDependency,layoutId:\"Q05yyQaHk\"})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6dC8M.framer-2ysvp0, .framer-6dC8M .framer-2ysvp0 { display: block; }\",\".framer-6dC8M.framer-1v3p356 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: 488px; justify-content: flex-start; overflow: hidden; padding: 32px 32px 0px 32px; position: relative; width: 468px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6dC8M .framer-197q6wm { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6dC8M .framer-1upltii { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-6dC8M .framer-5zd6qn, .framer-6dC8M .framer-cu484s { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6dC8M .framer-iynly3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 362px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6dC8M .framer-ap3l7u { flex: 1 0 0px; height: 120px; overflow: hidden; position: relative; width: 1px; }\",\".framer-6dC8M .framer-ycz9q8 { flex: none; height: 100%; overflow: visible; position: relative; width: 180px; }\",\".framer-6dC8M .framer-1qz8dbo { bottom: -32px; flex: none; left: 0px; position: absolute; top: 0px; width: 182px; }\",\".framer-6dC8M .framer-pgsrgy { bottom: -22px; flex: none; left: 0px; position: absolute; top: 0px; width: 182px; }\",\".framer-6dC8M .framer-11o76zi { bottom: -12px; flex: none; height: 366px; left: 5px; position: absolute; width: 170px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6dC8M.framer-1v3p356, .framer-6dC8M .framer-197q6wm, .framer-6dC8M .framer-1upltii, .framer-6dC8M .framer-iynly3 { gap: 0px; } .framer-6dC8M.framer-1v3p356 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-6dC8M.framer-1v3p356 > :first-child, .framer-6dC8M .framer-1upltii > :first-child { margin-top: 0px; } .framer-6dC8M.framer-1v3p356 > :last-child, .framer-6dC8M .framer-1upltii > :last-child { margin-bottom: 0px; } .framer-6dC8M .framer-197q6wm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6dC8M .framer-197q6wm > :first-child, .framer-6dC8M .framer-iynly3 > :first-child { margin-left: 0px; } .framer-6dC8M .framer-197q6wm > :last-child, .framer-6dC8M .framer-iynly3 > :last-child { margin-right: 0px; } .framer-6dC8M .framer-1upltii > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-6dC8M .framer-iynly3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 488\n * @framerIntrinsicWidth 468\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"irVPfnD2z\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIcUqZrLcn=withCSS(Component,css,\"framer-6dC8M\");export default FramerIcUqZrLcn;FramerIcUqZrLcn.displayName=\"Easy Repayment\";FramerIcUqZrLcn.defaultProps={height:488,width:468};addFonts(FramerIcUqZrLcn,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIcUqZrLcn\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"488\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"irVPfnD2z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"468\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IcUqZrLcn.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bgLrRjBuPtFrPt0jD4qP/LdwpcwOglixRTALBnHaH/kxUW6TIQi.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ugMJbEHcgBGT3LoEywEx/AXooJHHh1sIi0uyziW7n/soq3skx9b.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={r0dwxctqY:{hover:true}};const serializationHash=\"framer-wrqsa\";const variantClassNames={r0dwxctqY:\"framer-v-1i2li57\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:52,delay:.5,mass:1,stiffness:238,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const 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({defaultVariant:\"r0dwxctqY\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"r0dwxctqY-hover\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1i2li57\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"r0dwxctqY\",ref:refBinding,style:{backgroundColor:\"rgb(235, 247, 254)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"r0dwxctqY-hover\":{backgroundColor:\"rgb(15, 125, 195)\"}},...addPropertyOverrides({\"r0dwxctqY-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pflhr8\",layoutDependency:layoutDependency,layoutId:\"VV8Zt4Z2J\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16mgrv9\",layoutDependency:layoutDependency,layoutId:\"v8cxk6bPU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(15, 125, 195))\"},children:\"Instant Loan Disbursal\"})}),className:\"framer-12yw7o4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"d4JEMWQ_t\",style:{\"--extracted-1lwpl3i\":\"rgb(15, 125, 195)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"r0dwxctqY-hover\":{\"--extracted-1lwpl3i\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"r0dwxctqY-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(255, 255, 255))\"},children:\"Instant Loan Disbursal\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"Experience credit alerts in under 5 minutes. Our commitment to a fast loan process is powered by AI.\"})}),className:\"framer-1ekrsnp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xj130AUEf\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"r0dwxctqY-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"r0dwxctqY-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Experience credit alerts in under 5 minutes. Our commitment to a fast loan process is powered by AI.\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5zv7yw\",layoutDependency:layoutDependency,layoutId:\"eIbw3HeTJ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vhk1w4\",layoutDependency:layoutDependency,layoutId:\"SsUG90IRa\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-52yvce\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",layoutDependency:layoutDependency,layoutId:\"a5PpqEnTi\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ukjp9c\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",layoutDependency:layoutDependency,layoutId:\"xtHwmr9YG\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+257+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png\",srcSet:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png 967w\"},className:\"framer-tdbxkd\",\"data-framer-name\":\"shadow\",layoutDependency:layoutDependency,layoutId:\"csB5Gnna6\",style:{opacity:.7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+257+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png\",srcSet:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png 967w\"},className:\"framer-qohi5a\",\"data-framer-name\":\"main\",layoutDependency:layoutDependency,layoutId:\"gl4hmkqem\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Instant online loan\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+257+0+0+6.5),sizes:\"151px\",src:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png\",srcSet:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png?scale-down-to=2048 947w,https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png 1804w\"},className:\"framer-1j2k66b\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\",layoutDependency:layoutDependency,layoutId:\"TkiF64pJp\"})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wrqsa.framer-1yuyek4, .framer-wrqsa .framer-1yuyek4 { display: block; }\",\".framer-wrqsa.framer-1i2li57 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 77px; height: 488px; justify-content: flex-start; overflow: hidden; padding: 32px 32px 0px 32px; position: relative; width: 500px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wrqsa .framer-pflhr8 { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wrqsa .framer-16mgrv9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-wrqsa .framer-12yw7o4, .framer-wrqsa .framer-1ekrsnp { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wrqsa .framer-5zv7yw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 343px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wrqsa .framer-1vhk1w4 { flex: 1 0 0px; height: 120px; overflow: hidden; position: relative; width: 1px; }\",\".framer-wrqsa .framer-52yvce { flex: none; height: 343px; overflow: visible; position: relative; width: 162px; }\",\".framer-wrqsa .framer-1ukjp9c { flex: none; height: 344px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 162px; }\",\".framer-wrqsa .framer-tdbxkd { flex: none; height: 344px; left: 0px; position: absolute; top: 0px; width: 162px; }\",\".framer-wrqsa .framer-qohi5a { flex: none; height: 343px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-wrqsa .framer-1j2k66b { flex: none; height: 327px; left: calc(49.382716049382736% - 151px / 2); position: absolute; top: calc(49.41860465116281% - 327px / 2); width: 151px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wrqsa.framer-1i2li57, .framer-wrqsa .framer-pflhr8, .framer-wrqsa .framer-16mgrv9, .framer-wrqsa .framer-5zv7yw { gap: 0px; } .framer-wrqsa.framer-1i2li57 > * { margin: 0px; margin-bottom: calc(77px / 2); margin-top: calc(77px / 2); } .framer-wrqsa.framer-1i2li57 > :first-child, .framer-wrqsa .framer-16mgrv9 > :first-child { margin-top: 0px; } .framer-wrqsa.framer-1i2li57 > :last-child, .framer-wrqsa .framer-16mgrv9 > :last-child { margin-bottom: 0px; } .framer-wrqsa .framer-pflhr8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wrqsa .framer-pflhr8 > :first-child, .framer-wrqsa .framer-5zv7yw > :first-child { margin-left: 0px; } .framer-wrqsa .framer-pflhr8 > :last-child, .framer-wrqsa .framer-5zv7yw > :last-child { margin-right: 0px; } .framer-wrqsa .framer-16mgrv9 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-wrqsa .framer-5zv7yw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 488\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"h7FItmm00\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlwXOSftra=withCSS(Component,css,\"framer-wrqsa\");export default FramerlwXOSftra;FramerlwXOSftra.displayName=\"Instant Disbursal\";FramerlwXOSftra.defaultProps={height:488,width:500};addFonts(FramerlwXOSftra,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlwXOSftra\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"500\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h7FItmm00\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"488\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lwXOSftra.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/y3dcb6rndVcgYQhAsmKp/EucElg3aatmAFhp7n7WZ/hEYoRGBeN.js\";const enabledGestures={HPTeVVbro:{hover:true}};const cycleOrder=[\"HPTeVVbro\",\"RL1vbmSLD\"];const serializationHash=\"framer-Q70l6\";const variantClassNames={HPTeVVbro:\"framer-v-frnsay\",RL1vbmSLD:\"framer-v-71u0qh\"};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 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??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={\"Variant 1\":\"HPTeVVbro\",\"Variant 2\":\"RL1vbmSLD\"};const getProps=({blogImage,height,id,title,width,...props})=>{return{...props,CEOIfZTqk:blogImage??props.CEOIfZTqk??{alt:\"List of Loan Apps Approved by CBN: Top Trusted Options\",src:\"https://framerusercontent.com/images/PEUzcHxtVkldJGgjo3n6kkQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PEUzcHxtVkldJGgjo3n6kkQ.png?scale-down-to=1024 900w,https://framerusercontent.com/images/PEUzcHxtVkldJGgjo3n6kkQ.png?scale-down-to=2048 1801w,https://framerusercontent.com/images/PEUzcHxtVkldJGgjo3n6kkQ.png 1891w\"},Io3FopVMU:title??props.Io3FopVMU??\"List of Loan Apps Approved by CBN: Top Trusted Options\",variant:humanReadableVariantMap[props.variant]??props.variant??\"HPTeVVbro\"};};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,Io3FopVMU,CEOIfZTqk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HPTeVVbro\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Yd6TNP9T7:\"managing-debt-tips-for-repaying-business-loans-in-time\"},unresolvedPathSlugs:{Yd6TNP9T7:{collectionId:\"TI61buf51\",collectionItemId:\"f4ansqnVT\"}},webPageId:\"lxxwdS_OD\"},motionChild:true,nodeId:\"HPTeVVbro\",scopeId:\"N7IQk2aB6\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-frnsay\",className,classNames)} framer-1iodown`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"HPTeVVbro\",ref:refBinding,style:{backgroundColor:\"rgb(250, 250, 250)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.055), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.055), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.055), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.055)\",...style},...addPropertyOverrides({\"HPTeVVbro-hover\":{\"data-framer-name\":undefined},RL1vbmSLD:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||366)-0-395)/2+0+0)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(CEOIfZTqk)},className:\"framer-vfrenn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IwxWw6mo7\",style:{borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({\"HPTeVVbro-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-395)/2+0+0)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(CEOIfZTqk)}},RL1vbmSLD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-395)/2+0+0)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(CEOIfZTqk)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fdaxoa\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"SUtzJdf2D\",style:{backgroundColor:\"rgba(255, 255, 255, 0.25)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Managing debts. Tips for reapaying business loans\"})}),className:\"framer-wfqogk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C_VlQVJFL\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Io3FopVMU,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Q70l6.framer-1iodown, .framer-Q70l6 .framer-1iodown { display: block; }\",\".framer-Q70l6.framer-frnsay { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 293px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q70l6 .framer-vfrenn { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q70l6 .framer-1fdaxoa { 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 16px 9px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q70l6 .framer-wfqogk { flex: none; height: auto; overflow: visible; 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-Q70l6.framer-frnsay, .framer-Q70l6 .framer-vfrenn, .framer-Q70l6 .framer-1fdaxoa { gap: 0px; } .framer-Q70l6.framer-frnsay > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Q70l6.framer-frnsay > :first-child, .framer-Q70l6 .framer-vfrenn > :first-child, .framer-Q70l6 .framer-1fdaxoa > :first-child { margin-top: 0px; } .framer-Q70l6.framer-frnsay > :last-child, .framer-Q70l6 .framer-vfrenn > :last-child, .framer-Q70l6 .framer-1fdaxoa > :last-child { margin-bottom: 0px; } .framer-Q70l6 .framer-vfrenn > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Q70l6 .framer-1fdaxoa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-Q70l6.framer-v-71u0qh.framer-frnsay { cursor: unset; }\",\".framer-Q70l6.framer-v-frnsay.hover.framer-frnsay { width: 297px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 366\n * @framerIntrinsicWidth 293\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RL1vbmSLD\":{\"layout\":[\"fixed\",\"auto\"]},\"BfFiNWs7s\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Io3FopVMU\":\"title\",\"CEOIfZTqk\":\"blogImage\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerN7IQk2aB6=withCSS(Component,css,\"framer-Q70l6\");export default FramerN7IQk2aB6;FramerN7IQk2aB6.displayName=\"Cards\";FramerN7IQk2aB6.defaultProps={height:366,width:293};addPropertyControls(FramerN7IQk2aB6,{variant:{options:[\"HPTeVVbro\",\"RL1vbmSLD\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},Io3FopVMU:{defaultValue:\"List of Loan Apps Approved by CBN: Top Trusted Options\",displayTextArea:false,title:\"Title\",type:ControlType.String},CEOIfZTqk:{__defaultAssetReference:\"data:framer/asset-reference,PEUzcHxtVkldJGgjo3n6kkQ.png?originalFilename=image%402x.png&preferredSize=auto\",__vekterDefault:{alt:\"List of Loan Apps Approved by CBN: Top Trusted Options\",assetReference:\"data:framer/asset-reference,PEUzcHxtVkldJGgjo3n6kkQ.png?originalFilename=image%402x.png&preferredSize=auto\"},title:\"Blog image\",type:ControlType.ResponsiveImage}});addFonts(FramerN7IQk2aB6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerN7IQk2aB6\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RL1vbmSLD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BfFiNWs7s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"Io3FopVMU\\\":\\\"title\\\",\\\"CEOIfZTqk\\\":\\\"blogImage\\\"}\",\"framerIntrinsicHeight\":\"366\",\"framerIntrinsicWidth\":\"293\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./N7IQk2aB6.map", "// Generated by Framer (6124c77)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ldg6yjEDpLM1DCpOdN40/T1GwKDv6qpWyWlGzs5MJ/jwjYLr32c.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/oNdZZBCDzqXyed2bjz5T/ylb8VFOcOCYWMyAmLvCz/kVDZzSmOG.js\";const cycleOrder=[\"IuXjXXS_E\",\"FBRJxqbF_\"];const serializationHash=\"framer-hJseK\";const variantClassNames={FBRJxqbF_:\"framer-v-1di3075\",IuXjXXS_E:\"framer-v-1o3vhah\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"IuXjXXS_E\",Open:\"FBRJxqbF_\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"IuXjXXS_E\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IuXjXXS_E\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapjotzzk=activeVariantCallback(async(...args)=>{setVariant(\"FBRJxqbF_\");});const onTap17ef3ft=activeVariantCallback(async(...args)=>{setVariant(\"IuXjXXS_E\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"FBRJxqbF_\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1o3vhah\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"IuXjXXS_E\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({FBRJxqbF_:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dgco5e\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yyYX35eqv\",onTap:onTapjotzzk,...addPropertyOverrides({FBRJxqbF_:{onTap:onTap17ef3ft}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kuv6w3\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"DnNinZpsr\",style:{opacity:.3,rotate:0},variants:{FBRJxqbF_:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-j5b97s\",layoutDependency:layoutDependency,layoutId:\"MPDj9uzWs\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hdb4ee\",layoutDependency:layoutDependency,layoutId:\"ISLldxz5W\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-zc36zg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Tm37n9YHh\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-q14vl7\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"veImZW6S7\",style:{opacity:0},variants:{FBRJxqbF_:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1gtn5x0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r4AB4dAes\",style:{opacity:.6},text:T8rQFvSBR,variants:{FBRJxqbF_:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hJseK.framer-kegyq4, .framer-hJseK .framer-kegyq4 { display: block; }\",\".framer-hJseK.framer-1o3vhah { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 452px; }\",\".framer-hJseK .framer-dgco5e { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-hJseK .framer-kuv6w3 { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-hJseK .framer-j5b97s { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-hJseK .framer-1hdb4ee { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-hJseK .framer-zc36zg { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hJseK .framer-q14vl7 { 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: flex-start; overflow: visible; padding: 0px 20px 8px 40px; position: relative; width: 100%; }\",\".framer-hJseK .framer-1gtn5x0 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; 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-hJseK.framer-1o3vhah, .framer-hJseK .framer-dgco5e, .framer-hJseK .framer-q14vl7 { gap: 0px; } .framer-hJseK.framer-1o3vhah > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hJseK.framer-1o3vhah > :first-child, .framer-hJseK .framer-q14vl7 > :first-child { margin-top: 0px; } .framer-hJseK.framer-1o3vhah > :last-child, .framer-hJseK .framer-q14vl7 > :last-child { margin-bottom: 0px; } .framer-hJseK .framer-dgco5e > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-hJseK .framer-dgco5e > :first-child { margin-left: 0px; } .framer-hJseK .framer-dgco5e > :last-child { margin-right: 0px; } .framer-hJseK .framer-q14vl7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 452\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FBRJxqbF_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMVa2IZwRI=withCSS(Component,css,\"framer-hJseK\");export default FramerMVa2IZwRI;FramerMVa2IZwRI.displayName=\"Row Copy 6\";FramerMVa2IZwRI.defaultProps={height:88,width:452};addPropertyControls(FramerMVa2IZwRI,{variant:{options:[\"IuXjXXS_E\",\"FBRJxqbF_\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerMVa2IZwRI,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMVa2IZwRI\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"452\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FBRJxqbF_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"88\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MVa2IZwRI.map", "// Generated by Framer (58a021c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFonts,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import RowCopy6 from\"https://framerusercontent.com/modules/JqKQWb6r6KHOzzfiCWWo/zivx986Dbb8H2H0uaGEL/MVa2IZwRI.js\";const RowCopy6Fonts=getFonts(RowCopy6);const cycleOrder=[\"imUdoK97b\"];const variantClassNames={imUdoK97b:\"framer-v-luel8y\"};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 humanReadableVariantMap={};const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,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 Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"imUdoK97b\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"imUdoK97b\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-i8Eov\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-luel8y\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"imUdoK97b\",ref:ref,style:{backgroundColor:\"rgb(251, 232, 229)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-175pxdb-container\",layoutDependency:layoutDependency,layoutId:\"GKuig7iGu-container\",children:/*#__PURE__*/_jsx(RowCopy6,{answer:\"All applications MUST be completed on your android device . Download the QuickCheck app from the Google Playstore and sign in with your email address and password and fill the provided fields correctly.\",height:\"100%\",id:\"GKuig7iGu\",layoutId:\"GKuig7iGu\",question:\"How do I apply?\",style:{width:\"100%\"},variant:\"IuXjXXS_E\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gq06iz\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"PofyfXN5o\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-42rkx2-container\",layoutDependency:layoutDependency,layoutId:\"nbZcQ4i8F-container\",children:/*#__PURE__*/_jsx(RowCopy6,{answer:\"Your loan cap increases as you pay your loans on time and build trust with the system.\",height:\"100%\",id:\"nbZcQ4i8F\",layoutId:\"nbZcQ4i8F\",question:\"When can I apply for higher amount?\",style:{width:\"100%\"},variant:\"IuXjXXS_E\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xsqeo7\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"WQnXEup6_\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r2knp8-container\",layoutDependency:layoutDependency,layoutId:\"JHOOE1Wrc-container\",children:/*#__PURE__*/_jsx(RowCopy6,{answer:\"Once your application is submitted, an email notification is sent. If you do not receive any notification, this means that the email address provided is incorrect.\",height:\"100%\",id:\"JHOOE1Wrc\",layoutId:\"JHOOE1Wrc\",question:\"Why did I not get notification about my application status?\",style:{width:\"100%\"},variant:\"IuXjXXS_E\",width:\"100%\"})})]})})})});});const css=['.framer-i8Eov [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-i8Eov .framer-780tei { display: block; }\",\".framer-i8Eov .framer-luel8y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: transform; }\",\".framer-i8Eov .framer-175pxdb-container, .framer-i8Eov .framer-42rkx2-container, .framer-i8Eov .framer-r2knp8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-i8Eov .framer-1gq06iz, .framer-i8Eov .framer-xsqeo7 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-i8Eov .framer-luel8y { gap: 0px; } .framer-i8Eov .framer-luel8y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-i8Eov .framer-luel8y > :first-child { margin-top: 0px; } .framer-i8Eov .framer-luel8y > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 194\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n */const FramerSi40Pcgkz=withCSS(Component,css,\"framer-i8Eov\");export default FramerSi40Pcgkz;FramerSi40Pcgkz.displayName=\"Accordion Copy 7\";FramerSi40Pcgkz.defaultProps={height:194,width:1e3};addFonts(FramerSi40Pcgkz,[...RowCopy6Fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSi40Pcgkz\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1000\",\"framerIntrinsicHeight\":\"194\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as e}from\"react/jsx-runtime\";import{useState as t,useContext as i,useEffect as n,useRef as a}from\"react\";import{addPropertyControls as l,ControlType as r,RenderTarget as p}from\"framer\";import{motion as o,MotionContext as s,useMotionValue as d}from\"framer-motion\";import{SplitText as u}from\"@cyriacbr/react-split-text\";let f={opacity:1,x:0,y:0,scale:1,rotate:0,rotateX:0,rotateY:0};function y(e){return e?\"visible\":\"hidden\";}/**\n * Motion Text\n * By Benjamin den Boer & Adam Seckel\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */export default function m(i){let{opacity:l,x:r,y:s,scale:m,rotate:c,rotateX:h,rotateY:x}=i.effectOptions,b=p.current()===p.canvas,S=d(b?1:0),V=\"spring\"===i.transitionOptions.type,v=a(),[T,w]=t(()=>b?\"visible\":y(!i.variant)),O=a({});n(()=>{// If the type of animation changes,\n// reset the ref so that we don't confuse old indexes with new ones.\nO.current={};},[i.type]),// Animate the text after React renders,\n// and an animation frame has passed run the animation in the browser.\nn(()=>{b||requestAnimationFrame(()=>{S.set(1),w(y(i.variant));});},[]),// If the variant changes, trigger the animation if the variant boolean has changed.\nn(()=>{b||(v.current!==i.variant&&(O.current={},w(y(i.variant))),v.current=i.variant);},[i.variant]);let W={type:i.transitionOptions.type,stiffness:i.transitionOptions.stiffness,damping:i.transitionOptions.damping,mass:i.transitionOptions.mass},N={type:i.transitionOptions.type,duration:i.transitionOptions.duration,ease:i.transitionOptions.ease},H={hidden:{opacity:l,x:r,y:s,scale:m,rotate:c,rotateX:h,rotateY:x},visible:f},A=V?W:N,L=i.transitionOptions.delay,P=\"letter\"===i.type,z=\"word\"===i.type,B=\"line\"===i.type;return /*#__PURE__*/e(o.div,{style:{width:\"100%\",height:\"100%\",// display: \"inline-block\",\nposition:\"relative\",overflow:i.overflow?\"visible\":\"hidden\",fontSize:i.font.fontSize,fontFamily:i.font.font,fontWeight:i.font.fontWeight,letterSpacing:i.font.letterSpacing,lineHeight:i.font.lineHeightType?i.font.lineHeight:`${i.font.lineHeightPixels}px`,textAlign:i.font.textAlign,whiteSpace:i.font.whiteSpace,color:i.color,left:`${i.font.offset}%`,margin:0,padding:0,opacity:S},initial:b?\"visible\":\"hidden\",animate:T,children:b?i.text:/*#__PURE__*/e(u,{style:{display:\"contents\"},...function({isLetter:t,isWord:n,isLine:a}){let l={type:i.type,variants:H,filteredTransition:A,delay:L,stagger:i.stagger,perWord:i.perWord,hasIndexAnimatedRef:O};return t?{LetterWrapper:t=>/*#__PURE__*/e(g,{...t,...l})}:a?{LineWrapper:t=>/*#__PURE__*/e(g,{...t,...l})}:{WordWrapper:t=>/*#__PURE__*/e(g,{...t,...l})};}({isLetter:P,isWord:z,isLine:B}),children:i.text})});}let c=(e,t,i,n=0,a=0,l=0,r=0,p)=>e?p?a:n:t?n:r,g=({type:t,countIndex:n=0,letterIndex:a=0,wordIndex:l=0,lineIndex:r=0,variants:p,isCanvas:d,filteredTransition:u,delay:f,stagger:y,children:m,perWord:g,hasIndexAnimatedRef:h})=>{let x=c(\"letter\"===t,\"word\"===t,\"line\"===t,n,a,l,r,g),{animate:b}=i(s),S={};return!0===h.current[x]&&(S.initial=b),/*#__PURE__*/e(o.span,{...S,onAnimationComplete:()=>h.current[x]=!0,style:{perspective:1200,display:\"inline-block\",whiteSpace:\"pre\",margin:0,padding:0,willChange:\"transform\"},variants:p,transition:{...u,delay:f+y*(x+1)},children:m});};m.displayName=\"Motion Text\",m.defaultProps={text:\"Hello World\",stagger:.05,variant:!0,newTab:!0,tag:\"heading1\",effectOptions:{x:0,y:100,rotate:0,rotateX:0,rotateY:0},transitionOptions:{type:\"spring\",stiffness:400,damping:30,mass:1,delay:.05},overflow:!1,font:{font:\"Inter\",fontSize:32,fontWeight:400,textAlign:\"center\",lineHeight:1.2,lineHeightType:!0,lineHeightPixels:100,letterSpacing:0,offset:0,whiteSpace:\"nowrap\"}},/* Property Controls */l(m,{text:{type:r.String,title:\"Text\",defaultValue:\"Hello World\",displayTextArea:!0},type:{title:\"Type\",type:r.Enum,options:[\"letter\",\"word\",\"line\"],optionTitles:[\"Letter\",\"Word\",\"Line\"],defaultValue:\"letter\"},// link: { type: ControlType.Link, title: \"Link\" },\n// newTab: { type: ControlType.Boolean, title: \"New Tab\", defaultValue: true },\nperWord:{type:r.Boolean,title:\"Per Word\",defaultValue:!1,hidden:e=>\"letter\"!==e.type},variant:{title:\"Animate\",type:r.Boolean,defaultValue:!0,enabledTitle:\"In\",disabledTitle:\"Out\"},overflow:{title:\"Overflow\",type:r.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:!1},stagger:{title:\"Stagger\",type:r.Number,step:.01,defaultValue:.05,displayStepper:!0},effectOptions:{title:\"From\",type:r.Object,controls:{opacity:{title:\"Opacity\",type:r.Number,min:0,max:1,step:.01,defaultValue:0},x:{title:\"X\",type:r.Number,min:-200,max:200,unit:\"%\",step:1,defaultValue:0,displayStepper:!0},y:{title:\"Y\",type:r.Number,min:-200,max:200,unit:\"%\",step:1,defaultValue:100,displayStepper:!0},scale:{title:\"Scale\",type:r.Number,min:0,max:5,step:.01,defaultValue:1,displayStepper:!0},rotate:{title:\"Rotate\",type:r.Number,min:-360,max:360,unit:\"\\xb0\",step:1,defaultValue:0},rotateX:{title:\"Rotate X\",type:r.Number,min:-360,max:360,unit:\"\\xb0\",step:1,defaultValue:0},rotateY:{title:\"Rotate Y\",type:r.Number,min:-360,max:360,unit:\"\\xb0\",step:1,defaultValue:0}}},transitionOptions:{type:r.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30,mass:1,delay:.05}},color:{type:r.Color,defaultValue:\"#888\"},font:{type:r.Object,controls:{font:{type:r.String,placeholder:\"Inter\",defaultValue:\"Inter\"},fontSize:{title:\"Size\",type:r.Number,min:0,max:500,step:.5,defaultValue:32},fontWeight:{type:r.Enum,options:[100,200,300,400,500,600,700,800,900],defaultValue:400,title:\"Weight\"},textAlign:{type:r.Enum,displaySegmentedControl:!0,title:\"Align\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\"},letterSpacing:{title:\"Letter\",type:r.Number,defaultValue:0,step:.1,displayStepper:!0},offset:{type:r.Number,title:\"Offset\",min:-100,max:100,displayStepper:!0,step:.25,defaultValue:0,unit:\"%\"},whiteSpace:{type:r.Enum,title:\"Space\",options:[\"normal\",\"nowrap\",\"pre\",\"pre-wrap\",\"preline\",\"break-spaces\"],optionTitles:[\"Normal\",\"No Wrap\",\"Pre\",\"Pre Wrap\",\"Preline\",\"Break Spaces\"],defaultValue:\"center\"},lineHeight:{type:r.Number,title:\"Line\",min:-500,max:500,displayStepper:!0,step:.1,defaultValue:1.2,hidden:e=>!e.lineHeightType},lineHeightPixels:{type:r.Number,title:\"Line\",min:-500,max:500,displayStepper:!0,step:.1,defaultValue:100,hidden:e=>e.lineHeightType},lineHeightType:{type:r.Boolean,title:\" \",enabledTitle:\"em\",disabledTitle:\"px\",defaultValue:!0}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"MotionText\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MotionText.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import ElementsAvatar from\"https://framerusercontent.com/modules/upHscEcqDQ8iVzrOfuEk/iHEJIWt3POCR8hWv8Fip/dSMVdIqsz.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import PrivateAndSecure from\"#framer/local/canvasComponent/d5mUaLKFR/d5mUaLKFR.js\";import FlexibleLoanDuration from\"#framer/local/canvasComponent/gpL2QkbKN/gpL2QkbKN.js\";import EasyRepayment from\"#framer/local/canvasComponent/IcUqZrLcn/IcUqZrLcn.js\";import InstantDisbursal from\"#framer/local/canvasComponent/lwXOSftra/lwXOSftra.js\";import Cards from\"#framer/local/canvasComponent/N7IQk2aB6/N7IQk2aB6.js\";import NavbarDarkCopy from\"#framer/local/canvasComponent/nS0pQ7KMU/nS0pQ7KMU.js\";import FooterDark from\"#framer/local/canvasComponent/oPQNrPgA7/oPQNrPgA7.js\";import AccordionCopy7 from\"#framer/local/canvasComponent/Si40Pcgkz/Si40Pcgkz.js\";import PlaystoreButton from\"#framer/local/canvasComponent/zg3e9F4KM/zg3e9F4KM.js\";import MotionText from\"#framer/local/codeFile/I1CskLv/MotionText.js\";import*as sharedStyle10 from\"#framer/local/css/e8L9LR0do/e8L9LR0do.js\";import*as sharedStyle8 from\"#framer/local/css/hEYoRGBeN/hEYoRGBeN.js\";import*as sharedStyle3 from\"#framer/local/css/HTngTInJQ/HTngTInJQ.js\";import*as sharedStyle6 from\"#framer/local/css/jwjYLr32c/jwjYLr32c.js\";import*as sharedStyle from\"#framer/local/css/kVDZzSmOG/kVDZzSmOG.js\";import*as sharedStyle1 from\"#framer/local/css/kxUW6TIQi/kxUW6TIQi.js\";import*as sharedStyle11 from\"#framer/local/css/oGAdN4BPw/oGAdN4BPw.js\";import*as sharedStyle9 from\"#framer/local/css/puKVzR1fK/puKVzR1fK.js\";import*as sharedStyle2 from\"#framer/local/css/s6pi0m0RV/s6pi0m0RV.js\";import*as sharedStyle7 from\"#framer/local/css/ShP2s4cbE/ShP2s4cbE.js\";import*as sharedStyle5 from\"#framer/local/css/soq3skx9b/soq3skx9b.js\";import*as sharedStyle4 from\"#framer/local/css/X9uK9vBZy/X9uK9vBZy.js\";import metadataProvider from\"#framer/local/webPageMetadata/FsyjeqdGR/FsyjeqdGR.js\";const MotionTextFonts=getFonts(MotionText);const PlaystoreButtonFonts=getFonts(PlaystoreButton);const IconoirFonts=getFonts(Iconoir);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const InstantDisbursalFonts=getFonts(InstantDisbursal);const FlexibleLoanDurationFonts=getFonts(FlexibleLoanDuration);const EasyRepaymentFonts=getFonts(EasyRepayment);const PrivateAndSecureFonts=getFonts(PrivateAndSecure);const YouTubeFonts=getFonts(YouTube);const ElementsAvatarFonts=getFonts(ElementsAvatar);const CarouselFonts=getFonts(Carousel);const TickerFonts=getFonts(Ticker);const CardsFonts=getFonts(Cards);const AccordionCopy7Fonts=getFonts(AccordionCopy7);const NavbarDarkCopyFonts=getFonts(NavbarDarkCopy);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const FooterDarkFonts=getFonts(FooterDark);const breakpoints={DvkSPpaHO:\"(min-width: 390px) and (max-width: 799px)\",e4M1Dw9FX:\"(min-width: 360px) and (max-width: 383px)\",Lvn7Y3AXc:\"(min-width: 1200px)\",PckjIwRYk:\"(min-width: 810px) and (max-width: 1199px)\",rFNYG_3Bu:\"(min-width: 800px) and (max-width: 809px)\",Sgj5dkty5:\"(min-width: 384px) and (max-width: 389px)\",w26RXKWOR:\"(max-width: 359px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-6rPDi\";const variantClassNames={DvkSPpaHO:\"framer-v-q8bk69\",e4M1Dw9FX:\"framer-v-1byztda\",Lvn7Y3AXc:\"framer-v-1sdcd6k\",PckjIwRYk:\"framer-v-zrl0y7\",rFNYG_3Bu:\"framer-v-11nr6f4\",Sgj5dkty5:\"framer-v-3k4tzq\",w26RXKWOR:\"framer-v-9my2zq\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:47,delay:0,mass:1,stiffness:174,type:\"spring\"};const transition2={damping:52,delay:.5,mass:1,stiffness:238,type:\"spring\"};const transition3={damping:52,delay:1,mass:1,stiffness:212,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition4={damping:56,delay:0,mass:1,stiffness:264,type:\"spring\"};const transition5={damping:29,delay:0,mass:1,stiffness:289,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,transition:transition5};const transition6={damping:46,delay:0,mass:1,stiffness:161,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\" Semi Tab\":\"rFNYG_3Bu\",\"Andriod small\":\"e4M1Dw9FX\",Desktop:\"Lvn7Y3AXc\",Phone:\"DvkSPpaHO\",Small:\"Sgj5dkty5\",Tablet:\"PckjIwRYk\",XXS:\"w26RXKWOR\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Lvn7Y3AXc\"};};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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"EOfT8G29j\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"DvkSPpaHO\",\"e4M1Dw9FX\",\"Sgj5dkty5\",\"rFNYG_3Bu\",\"w26RXKWOR\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"DvkSPpaHO\",\"e4M1Dw9FX\",\"Sgj5dkty5\",\"rFNYG_3Bu\",\"w26RXKWOR\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"w26RXKWOR\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Sgj5dkty5\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"DvkSPpaHO\")return true;return false;};const isDisplayed5=()=>{if(!isBrowser())return true;if([\"DvkSPpaHO\",\"e4M1Dw9FX\",\"Sgj5dkty5\",\"w26RXKWOR\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(!isBrowser())return true;if(baseVariant===\"DvkSPpaHO\")return false;return true;};const isDisplayed7=()=>{if(!isBrowser())return true;if([\"rFNYG_3Bu\",\"w26RXKWOR\"].includes(baseVariant))return false;return true;};const isDisplayed8=()=>{if(!isBrowser())return true;if([\"DvkSPpaHO\",\"e4M1Dw9FX\",\"Sgj5dkty5\"].includes(baseVariant))return false;return true;};const isDisplayed9=()=>{if(!isBrowser())return true;if([\"e4M1Dw9FX\",\"Sgj5dkty5\",\"rFNYG_3Bu\",\"w26RXKWOR\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"iAI7IuNYP\");const ref2=React.useRef(null);const isDisplayed10=()=>{if(!isBrowser())return true;if(baseVariant===\"PckjIwRYk\")return false;return true;};const isDisplayed11=()=>{if(!isBrowser())return true;if(baseVariant===\"PckjIwRYk\")return true;return false;};const isDisplayed12=()=>{if(!isBrowser())return true;if([\"PckjIwRYk\",\"DvkSPpaHO\",\"e4M1Dw9FX\",\"Sgj5dkty5\",\"rFNYG_3Bu\",\"w26RXKWOR\"].includes(baseVariant))return false;return true;};const elementId2=useRouteElementId(\"L8MXLMtLf\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"I56EVfzHp\");const ref4=React.useRef(null);const isDisplayed13=()=>{if(!isBrowser())return true;if(baseVariant===\"rFNYG_3Bu\")return false;return true;};const isDisplayed14=()=>{if(!isBrowser())return true;if(baseVariant===\"rFNYG_3Bu\")return true;return false;};const elementId4=useRouteElementId(\"rWLNAaHXa\");const ref5=React.useRef(null);const isDisplayed15=()=>{if(!isBrowser())return true;if(baseVariant===\"w26RXKWOR\")return false;return true;};const elementId5=useRouteElementId(\"y6ZKN_BmR\");const ref6=React.useRef(null);const isDisplayed16=()=>{if(!isBrowser())return true;if([\"e4M1Dw9FX\",\"rFNYG_3Bu\"].includes(baseVariant))return true;return false;};const isDisplayed17=()=>{if(!isBrowser())return true;if([\"DvkSPpaHO\",\"e4M1Dw9FX\",\"Sgj5dkty5\",\"rFNYG_3Bu\"].includes(baseVariant))return false;return true;};const isDisplayed18=()=>{if(!isBrowser())return true;if([\"DvkSPpaHO\",\"Sgj5dkty5\"].includes(baseVariant))return true;return false;};const isDisplayed19=()=>{if(!isBrowser())return true;if([\"e4M1Dw9FX\",\"rFNYG_3Bu\"].includes(baseVariant))return false;return true;};const elementId6=useRouteElementId(\"sBzmHaDGU\");const ref7=React.useRef(null);const isDisplayed20=()=>{if(!isBrowser())return true;if([\"DvkSPpaHO\",\"Sgj5dkty5\",\"w26RXKWOR\"].includes(baseVariant))return false;return true;};const isDisplayed21=()=>{if(!isBrowser())return true;if([\"DvkSPpaHO\",\"Sgj5dkty5\",\"w26RXKWOR\"].includes(baseVariant))return true;return false;};const isDisplayed22=()=>{if(!isBrowser())return true;if(baseVariant===\"e4M1Dw9FX\")return true;return false;};const elementId7=useRouteElementId(\"dDBILMcvm\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"ZqhIPWGTp\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"nnhFLYFfs\");const ref10=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Lvn7Y3AXc\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1sdcd6k\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+0),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+0),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}},rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+0),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+0),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+0),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"},className:\"framer-pexnfp\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w2mibg\",children:/*#__PURE__*/_jsxs(\"header\",{className:\"framer-7a27ed\",\"data-framer-name\":\"Content\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ijwjsg-container hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-11nr6f4 hidden-9my2zq\",isAuthoredByUser:true,nodeId:\"nLsRpSycF\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PckjIwRYk:{font:{font:\"Noto sans\",fontSize:39,fontWeight:700,letterSpacing:-2,lineHeight:1.2,lineHeightPixels:1.5,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"}}},children:/*#__PURE__*/_jsx(MotionText,{color:\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\",effectOptions:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:100},font:{font:\"Noto sans\",fontSize:64,fontWeight:600,letterSpacing:-2,lineHeight:1.2,lineHeightPixels:1.5,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"},height:\"100%\",id:\"nLsRpSycF\",layoutId:\"nLsRpSycF\",overflow:false,perWord:false,stagger:.01,style:{width:\"100%\"},text:\"Get Your \\nBusiness Loans \\nWith QuickCheck App\",transitionOptions:{damping:30,delay:.05,mass:1,stiffness:148,type:\"spring\"},type:\"letter\",variant:true,width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Entrepreneurs\u2019\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"favorite\"}),\" banking experience. \"]}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"Branchless. Responsible.\"})]})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wihtjx\",\"data-styles-preset\":\"s6pi0m0RV\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Entrepreneurs\u2019\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"favorite\"}),\" banking experience. \"]}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"Branchless. Responsible.\"})]})})},rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wihtjx\",\"data-styles-preset\":\"s6pi0m0RV\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Entrepreneurs\u2019\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"favorite\"}),\" banking experience. \"]}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"Branchless. Responsible.\"})]})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Entrepreneurs\u2019\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"favorite\"}),\" banking experience. \"]}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"Branchless. Responsible.\"})]})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wihtjx\",\"data-styles-preset\":\"s6pi0m0RV\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Entrepreneurs\u2019\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"favorite\"}),\" banking experience. \"]}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"Branchless. Responsible.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Entrepreneurs\u2019\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"favorite\"}),\" banking experience. \",/*#__PURE__*/_jsx(\"br\",{}),\"Branchless. Responsible.\"]})}),className:\"framer-8o4zqx\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{y:(componentViewport?.y||0)+94+0+0+0+0+0+220},e4M1Dw9FX:{y:(componentViewport?.y||0)+94+0+0+0+0+0+200},rFNYG_3Bu:{y:(componentViewport?.y||0)+94+0+52.5+0+0+200},Sgj5dkty5:{y:(componentViewport?.y||0)+94+0+0+0+0+0+220},w26RXKWOR:{y:(componentViewport?.y||0)+94+0+0+0+0+0+200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vf4xn2-container\",nodeId:\"xb5OPAhR3\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(PlaystoreButton,{height:\"100%\",id:\"xb5OPAhR3\",layoutId:\"xb5OPAhR3\",variant:\"rzDUfPRpH\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Get Your \",/*#__PURE__*/_jsx(\"br\",{}),\"Business Loans With QuickCheck App\"]})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Get Your \",/*#__PURE__*/_jsx(\"br\",{}),\"Business Loans \",/*#__PURE__*/_jsx(\"br\",{}),\"With QuickCheck App\"]})})},rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",children:[\"Get Your \",/*#__PURE__*/_jsx(\"br\",{}),\"Business Loans \",/*#__PURE__*/_jsx(\"br\",{}),\"With QuickCheck App\"]})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Get Your \",/*#__PURE__*/_jsx(\"br\",{}),\"Business Loans With QuickCheck App\"]})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Get Your \",/*#__PURE__*/_jsx(\"br\",{}),\"Business Loans \",/*#__PURE__*/_jsx(\"br\",{}),\"With QuickCheck App\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-17arq34\",\"data-styles-preset\":\"HTngTInJQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:[\"Get your \",/*#__PURE__*/_jsx(\"br\",{}),\"business loans with QuickCheck\"]})}),className:\"framer-1urqfve hidden-1sdcd6k hidden-zrl0y7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"Instant online loan for urgent 20k, 30k up to 200k\",fit:\"fill\",intrinsicHeight:1312.6666666666667,intrinsicWidth:834,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+0+0+319),pixelHeight:1969,pixelWidth:1251,src:\"https://framerusercontent.com/images/SSpRU1gEzIB6qwXNExHPQZIsMM.png\"}},e4M1Dw9FX:{background:{alt:\"Instant online loan for urgent 20k, 30k up to 200k\",fit:\"fill\",intrinsicHeight:1312.6666666666667,intrinsicWidth:834,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+0+0+291),pixelHeight:1969,pixelWidth:1251,src:\"https://framerusercontent.com/images/SSpRU1gEzIB6qwXNExHPQZIsMM.png\"}},rFNYG_3Bu:{background:{alt:\"Instant online loan for urgent 20k, 30k up to 200k\",fit:\"fill\",intrinsicHeight:1312.6666666666667,intrinsicWidth:834,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+0+0),pixelHeight:1969,pixelWidth:1251,src:\"https://framerusercontent.com/images/SSpRU1gEzIB6qwXNExHPQZIsMM.png\"}},Sgj5dkty5:{background:{alt:\"Instant online loan for urgent 20k, 30k up to 200k\",fit:\"fill\",intrinsicHeight:1312.6666666666667,intrinsicWidth:834,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+0+0+319),pixelHeight:1969,pixelWidth:1251,src:\"https://framerusercontent.com/images/SSpRU1gEzIB6qwXNExHPQZIsMM.png\"}},w26RXKWOR:{background:{alt:\"Instant online loan for urgent 20k, 30k up to 200k\",fit:\"fill\",intrinsicHeight:1312.6666666666667,intrinsicWidth:834,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+0+0+295),pixelHeight:1969,pixelWidth:1251,src:\"https://framerusercontent.com/images/SSpRU1gEzIB6qwXNExHPQZIsMM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Instant online loan for urgent 20k, 30k up to 200k\",fit:\"fill\",intrinsicHeight:1312.6666666666667,intrinsicWidth:834,pixelHeight:1969,pixelWidth:1251,src:\"https://framerusercontent.com/images/SSpRU1gEzIB6qwXNExHPQZIsMM.png\"},className:\"framer-w1wrca\",\"data-framer-name\":\"Home_page_banner_ds\"})})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3},className:\"framer-17gob5t hidden-1sdcd6k hidden-zrl0y7 hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-11nr6f4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-105sroj\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-1xypgxy\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-1eesawa\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w26RXKWOR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:682.6666666666666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+679+13+1),pixelHeight:648,pixelWidth:1024,sizes:\"41px\",src:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png\",srcSet:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:682.6666666666666,pixelHeight:648,pixelWidth:1024,sizes:\"41px\",src:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png\",srcSet:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png 1024w\"},className:\"framer-13x9ik6\",\"data-framer-name\":\"transparent_bg_min_1024x648\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-igz72n\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-1cv8uh7\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w26RXKWOR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.66666666666667,intrinsicWidth:154.66666666666666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+679+12+1),pixelHeight:118,pixelWidth:232,src:\"https://framerusercontent.com/images/RCMFlnl02KCW03yNkktUUkNvyFQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.66666666666667,intrinsicWidth:154.66666666666666,pixelHeight:118,pixelWidth:232,src:\"https://framerusercontent.com/images/RCMFlnl02KCW03yNkktUUkNvyFQ.png\"},className:\"framer-177guvg\",\"data-framer-name\":\"Frame_187\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w26RXKWOR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+679+14),pixelHeight:380,pixelWidth:1110,sizes:\"76px\",src:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg 1110w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740,pixelHeight:380,pixelWidth:1110,sizes:\"76px\",src:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg 1110w\"},className:\"framer-1546nnu\",\"data-framer-name\":\"NDPC\"})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3},className:\"framer-1hdjwje hidden-1sdcd6k hidden-zrl0y7 hidden-q8bk69 hidden-1byztda hidden-11nr6f4 hidden-9my2zq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9boy3d\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-1mexo3q\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-1wlbggj\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:682.6666666666666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+797+13+1),pixelHeight:648,pixelWidth:1024,sizes:\"41px\",src:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png\",srcSet:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:682.6666666666666,pixelHeight:648,pixelWidth:1024,sizes:\"41px\",src:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png\",srcSet:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png 1024w\"},className:\"framer-qgblu8\",\"data-framer-name\":\"transparent_bg_min_1024x648\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yhh4dk\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-1njrkfw\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.66666666666667,intrinsicWidth:154.66666666666666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+797+12+1),pixelHeight:118,pixelWidth:232,src:\"https://framerusercontent.com/images/RCMFlnl02KCW03yNkktUUkNvyFQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.66666666666667,intrinsicWidth:154.66666666666666,pixelHeight:118,pixelWidth:232,src:\"https://framerusercontent.com/images/RCMFlnl02KCW03yNkktUUkNvyFQ.png\"},className:\"framer-12bi796\",\"data-framer-name\":\"Frame_187\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+797+14),pixelHeight:380,pixelWidth:1110,sizes:\"76px\",src:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg 1110w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740,pixelHeight:380,pixelWidth:1110,sizes:\"76px\",src:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg 1110w\"},className:\"framer-19oasc0\",\"data-framer-name\":\"NDPC\"})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3},className:\"framer-1yizcvp hidden-1sdcd6k hidden-zrl0y7 hidden-1byztda hidden-3k4tzq hidden-11nr6f4 hidden-9my2zq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lzwt36\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-ok9yed\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-156tjhz\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:682.6666666666666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+797+13+1),pixelHeight:648,pixelWidth:1024,sizes:\"41px\",src:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png\",srcSet:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:682.6666666666666,pixelHeight:648,pixelWidth:1024,sizes:\"41px\",src:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png\",srcSet:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png 1024w\"},className:\"framer-cjamrc\",\"data-framer-name\":\"transparent_bg_min_1024x648\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gnkuic\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-gsfp7b\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.66666666666667,intrinsicWidth:154.66666666666666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+797+12+1),pixelHeight:118,pixelWidth:232,src:\"https://framerusercontent.com/images/RCMFlnl02KCW03yNkktUUkNvyFQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.66666666666667,intrinsicWidth:154.66666666666666,pixelHeight:118,pixelWidth:232,src:\"https://framerusercontent.com/images/RCMFlnl02KCW03yNkktUUkNvyFQ.png\"},className:\"framer-2g0v8f\",\"data-framer-name\":\"Frame_187\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+797+14),pixelHeight:380,pixelWidth:1110,sizes:\"76px\",src:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg 1110w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740,pixelHeight:380,pixelWidth:1110,sizes:\"76px\",src:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg 1110w\"},className:\"framer-oizs4s\",\"data-framer-name\":\"NDPC\"})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3},className:\"framer-1c0izcn hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-9my2zq\",\"data-framer-name\":\"Recognition\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sfoqw3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+376+12+0),pixelHeight:380,pixelWidth:1110,sizes:\"166px\",src:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg 1110w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740,pixelHeight:380,pixelWidth:1110,sizes:\"166px\",src:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg 1110w\"},className:\"framer-1vnmwcp\",\"data-framer-name\":\"NDPC\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nhj7jk\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-1hkqkj0\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:682.6666666666666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+376+12+-1),pixelHeight:648,pixelWidth:1024,sizes:\"93.2346px\",src:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png\",srcSet:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:682.6666666666666,pixelHeight:648,pixelWidth:1024,sizes:\"93.2346px\",src:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png\",srcSet:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png 1024w\"},className:\"framer-61ruh\",\"data-framer-name\":\"transparent_bg_min_1024x648\",transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y9gsew\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-d58zzv\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.66666666666667,intrinsicWidth:154.66666666666666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+376+12+1),pixelHeight:118,pixelWidth:232,src:\"https://framerusercontent.com/images/RCMFlnl02KCW03yNkktUUkNvyFQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.66666666666667,intrinsicWidth:154.66666666666666,pixelHeight:118,pixelWidth:232,src:\"https://framerusercontent.com/images/RCMFlnl02KCW03yNkktUUkNvyFQ.png\"},className:\"framer-18nmdbh\",\"data-framer-name\":\"Frame_187\",transformTemplate:transformTemplate1})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wo18hz hidden-1sdcd6k hidden-zrl0y7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1733cjb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Numbers don't lie\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Numbers don't lie\"})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Numbers don't lie\"})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Numbers don't lie\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Numbers don't lie\"})}),className:\"framer-17hmabl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Don't just take our words for it. \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"you can always rely on the numbers\"})]})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e4c35ca4-8450-417d-9ee4-0b2b9d783b37, rgb(237, 237, 237))\"},children:[\"Don't just take our words for it. \",/*#__PURE__*/_jsx(\"br\",{}),\"you can always rely on the numbers\"]})}),className:\"framer-1t0d22z\",fonts:[\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mbynzm\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11gd7oe\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g141wn\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oq2koo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"3M+\"})}),fonts:[\"Inter\"]},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"3M+\"})}),fonts:[\"Inter\"]},rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:\"3M+\"})}),fonts:[\"Inter\"]},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"3M+\"})}),fonts:[\"Inter\"]},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"3M+\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ecac1045-9d9a-4fda-a7d6-7e332b556b11, rgb(245, 77, 7))\"},children:\"1M+\"})}),className:\"framer-1ovojrg\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"App Downloads\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"App downloads\"})})},rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:\"App downloads\"})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"App Downloads\"})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"App Downloads\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:\"Downlaods\"})}),className:\"framer-12owc3r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sb1dg6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jk1r7h-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Pl8DhTFZh\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\",height:\"100%\",iconSearch:\"Download\",iconSelection:\"Home\",id:\"Pl8DhTFZh\",layoutId:\"Pl8DhTFZh\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1km9eby\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3p4bcn\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18sv6s1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"200k\"})}),fonts:[\"Inter\"]},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"200k\"})}),fonts:[\"Inter\"]},rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:\"200k\"})}),fonts:[\"Inter\"]},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"200k\"})}),fonts:[\"Inter\"]},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"200k\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ecac1045-9d9a-4fda-a7d6-7e332b556b11, rgb(245, 77, 7))\"},children:\"176k\"})}),className:\"framer-1tcugy2\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Playstore Reviews\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Playstore reviews\"})})},rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:\"Playstore reviews\"})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Playstore Reviews\"})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Playstore Reviews\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:\"Playstore reveiws\"})}),className:\"framer-1p2q400\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z3vfmc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cjp4gx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yj8yK5nH6\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(15, 125, 195)\",height:\"100%\",iconSearch:\"Star\",iconSelection:\"Home\",id:\"yj8yK5nH6\",layoutId:\"yj8yK5nH6\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wz9r9l\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rbhsnl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11n4s6o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"1M+\"})}),fonts:[\"Inter\"]},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"1M+\"})}),fonts:[\"Inter\"]},rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:\"1M+\"})}),fonts:[\"Inter\"]},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"1M+\"})}),fonts:[\"Inter\"]},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:\"1M+\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ecac1045-9d9a-4fda-a7d6-7e332b556b11, rgb(245, 77, 7))\"},children:\"$10B\"})}),className:\"framer-r6ot4k\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unique Customers\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unique customers\"})})},rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unique customers\"})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unique Customers\"})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unique Customers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:\"Loans disbursed\"})}),className:\"framer-af0kn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jh4qgl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a01fmb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Wl4uJglcF\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(111, 53, 153)\",height:\"100%\",iconSearch:\"profile\",iconSelection:\"Home\",id:\"Wl4uJglcF\",layoutId:\"Wl4uJglcF\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-erd6u1 hidden-1sdcd6k hidden-zrl0y7\",\"data-framer-name\":\"Unique selling propsition Mobile\",children:[isDisplayed6()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ljonnm hidden-q8bk69\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"Why QuickCheck?\"})})},rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"Why QuickCheck?\"})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"Why QuickCheck?\"})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"Why QuickCheck?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Why QuickCheck?\"})}),className:\"framer-170zyzg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wihtjx\",\"data-styles-preset\":\"s6pi0m0RV\",style:{\"--framer-text-alignment\":\"center\"},children:[\"We listen to entrepreneurs and design \",/*#__PURE__*/_jsx(\"br\",{}),\"products for entrepreneurs. \",/*#__PURE__*/_jsx(\"br\",{}),\"Our credit solutions are here to support you achieve your goals.\"]})}),fonts:[\"Inter\"]},rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:[\"We listen to entrepreneurs and design products for entrepreneurs. \",/*#__PURE__*/_jsx(\"br\",{}),\"Our credit solutions are here to support you achieve your goals.\"]})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wihtjx\",\"data-styles-preset\":\"s6pi0m0RV\",style:{\"--framer-text-alignment\":\"center\"},children:[\"We listen to entrepreneurs and design\",/*#__PURE__*/_jsx(\"br\",{}),\" products for entrepreneurs. \",/*#__PURE__*/_jsx(\"br\",{}),\"Our credit solutions are here to support\",/*#__PURE__*/_jsx(\"br\",{}),\" you achieve your goals.\"]})}),fonts:[\"Inter\"]},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wihtjx\",\"data-styles-preset\":\"s6pi0m0RV\",style:{\"--framer-text-alignment\":\"center\"},children:[\"We listen to entrepreneurs and design products for entrepreneurs. \",/*#__PURE__*/_jsx(\"br\",{}),\"Our credit solutions are here to support you achieve your goals.\"]})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e4c35ca4-8450-417d-9ee4-0b2b9d783b37, rgb(237, 237, 237))\"},children:\"We strive to make our customers lives better by supporting their micro-businesses or bridging the gap until their next pay\"})}),className:\"framer-svyidv\",fonts:[\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ydy2e hidden-11nr6f4 hidden-9my2zq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-878v9i\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vani5n\",\"data-framer-name\":\"Flexible Loan Duration\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-37si5q\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zmnck8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\"},children:\"Flexible Loan Duration\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\"},children:\"Flexible Loan Duration\"})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\"},children:\"Flexible Loan Duration\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\"},children:\"Flexible Loan Duration\"})}),className:\"framer-ylawtf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Choose your convenient repayment plan and pay in up to 12 months with the best interest rates\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Choose your convenient repayment plan and pay in up to 12 months with the best interest rates\"})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Choose your convenient repayment plan and pay in up to 12 months with the best interest rates\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"Choose your convenient repayment plan and pay in up to 12 months. Your satisfaction matters to us!\"})}),className:\"framer-1fe7ju8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v0hyw3\",children:[isDisplayed8()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ooyymz hidden-q8bk69 hidden-1byztda hidden-3k4tzq\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-er91qt\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+386+32+136+0+0),sizes:\"164px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+0+0+386+32+136+0+0),sizes:\"164px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+386+32+136+0+0),sizes:\"164px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"164px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-1q7gl9v\",\"data-framer-name\":\"shadow\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+386+32+136+0+0),sizes:\"171px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+0+0+386+32+136+0+0),sizes:\"171px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+386+32+136+0+0),sizes:\"171px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"171px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-1b88h58\",\"data-framer-name\":\"main\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+386+32+136+0+6.7864),sizes:\"159.4557px\",src:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png\",srcSet:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png?scale-down-to=2048 947w,https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png 1804w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+0+0+386+32+136+0+6.7864),sizes:\"159.4557px\",src:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png\",srcSet:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png?scale-down-to=2048 947w,https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png 1804w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+386+32+136+0+6.7864),sizes:\"159.4557px\",src:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png\",srcSet:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png?scale-down-to=2048 947w,https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png 1804w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"159.4557px\",src:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png\",srcSet:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png?scale-down-to=2048 947w,https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png 1804w\"},className:\"framer-y4iqm2\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-46v08g\",\"data-framer-name\":\"Instant Disbursal\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k5x5we\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hn9kqc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"rgb(15, 125, 195)\"},children:\"Instant Disbursal\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"rgb(15, 125, 195)\"},children:\"Instant Disbursal\"})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"rgb(15, 125, 195)\"},children:\"Instant Disbursal\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"rgb(15, 125, 195)\"},children:\"Instant Disbursal\"})}),className:\"framer-uyfx00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Experience credit alerts in under 5 minutes. Our commitment to a fast loan process is powered by AI.\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:[\"Experience credit alerts in under 5 minutes. Our \",/*#__PURE__*/_jsx(\"br\",{}),\"commitment to a fast loan process is powered by AI.\"]})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:[\"Experience credit alerts in under 5 minutes. Our \",/*#__PURE__*/_jsx(\"br\",{}),\"commitment to a fast loan process is powered by AI.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"Experience credit alerts in under 5 minutes. Our commitment to a fast loan process is powered by AI.\"})}),className:\"framer-p6yu29\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dyjv6k\",children:[isDisplayed8()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-76s70x hidden-q8bk69 hidden-1byztda hidden-3k4tzq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4djhnf\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-199dit4\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+0+32+136+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png\",srcSet:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png 967w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+0+0+0+32+136+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png\",srcSet:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png 967w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+0+32+136+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png\",srcSet:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"162px\",src:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png\",srcSet:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png 967w\"},className:\"framer-18g3ydi\",\"data-framer-name\":\"shadow\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+0+32+136+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png\",srcSet:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png 967w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+0+0+0+32+136+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png\",srcSet:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png 967w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+0+32+136+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png\",srcSet:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"162px\",src:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png\",srcSet:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png 967w\"},className:\"framer-6b9kz8\",\"data-framer-name\":\"main\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+0+32+136+0+0+6.5),sizes:\"151px\",src:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png\",srcSet:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png?scale-down-to=2048 947w,https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png 1804w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+0+0+0+32+136+0+0+6.5),sizes:\"151px\",src:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png\",srcSet:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png?scale-down-to=2048 947w,https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png 1804w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+0+0+0+32+136+0+0+6.5),sizes:\"151px\",src:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png\",srcSet:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png?scale-down-to=2048 947w,https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png 1804w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"151px\",src:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png\",srcSet:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png?scale-down-to=2048 947w,https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png 1804w\"},className:\"framer-1js9nix\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})})]})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-138t9sx\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k443fd\",\"data-framer-name\":\"Easy Repayment\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vpeq8j\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r165gx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",children:\"Quick and Easy Repayment\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",children:\"Quick and Easy Repayment\"})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",children:\"Quick and Easy Repayment\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",children:\"Easy Repayment\"})}),className:\"framer-k6wtyz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"You can make repayment using multiple channels including; In-app bank repayment, USSD, or bank transfer\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"You can make repayment using multiple channels including; In-app bank repayment, USSD, or bank transfer\"})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:[\"You can make repayment using multiple channels including; \",/*#__PURE__*/_jsx(\"br\",{}),\"In-app bank repayment, USSD, or bank transfer\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"You can make repayment using multiple channels including; In-app bank repayment, USSD, or bank transfer\"})}),className:\"framer-1ln279t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ups8h\",children:[isDisplayed8()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3t0m95 hidden-q8bk69 hidden-1byztda hidden-3k4tzq\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1in2ujv\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+0+32+136+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+772+0+0+32+136+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+0+32+136+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"182px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-1hgs7ov\",\"data-framer-name\":\"shadow\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+0+32+136+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+772+0+0+32+136+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+0+32+136+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"182px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-3770h3\",\"data-framer-name\":\"main\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+0+32+136+0+362-354.3014),sizes:\"169.7663px\",src:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png\",srcSet:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png 1804w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+772+0+0+32+136+0+362-354.3014),sizes:\"169.7663px\",src:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png\",srcSet:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png 1804w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+0+32+136+0+362-354.3014),sizes:\"169.7663px\",src:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png\",srcSet:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png 1804w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"169.7663px\",src:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png\",srcSet:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png 1804w\"},className:\"framer-1fsq515\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lqnzd8\",\"data-framer-name\":\"Private and Secure\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wc012y\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-197raig\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"rgb(111, 53, 153)\"},children:\"Private and Secure\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"rgb(111, 53, 153)\"},children:\"Private and Secure\"})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"rgb(111, 53, 153)\"},children:\"Private and Secure\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"rgb(111, 53, 153)\"},children:\"Private and Secure\"})}),className:\"framer-1sze89u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Unlike other loan apps, we respect your privacy and never involve third parties.  Your trust matters to us\"})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:[\"Unlike other loan apps, we respect your privacy and \",/*#__PURE__*/_jsx(\"br\",{}),\"never involve third parties.  Your trust matters to us\"]})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:[\"Unlike other loan apps, we respect your privacy and \",/*#__PURE__*/_jsx(\"br\",{}),\"never involve third parties.  Your trust matters to us\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"Unlike other loan apps, we respect your privacy and never involve third parties.  Your trust matters to us\"})}),className:\"framer-f4ez26\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aimsio\",children:[isDisplayed8()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zu4x6 hidden-q8bk69 hidden-1byztda hidden-3k4tzq\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eocq2n\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+386+32+136+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+772+0+386+32+136+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+386+32+136+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"165px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-oaf3z7\",\"data-framer-name\":\"shadow\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+386+32+136+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+772+0+386+32+136+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+386+32+136+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"165px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-cxgh7z\",\"data-framer-name\":\"main\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+386+32+136+0+7),sizes:\"154px\",src:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png\",srcSet:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png 1804w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1686+32+200+0+772+0+386+32+136+0+7),sizes:\"154px\",src:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png\",srcSet:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png 1804w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1757+32+200+0+772+0+386+32+136+0+7),sizes:\"154px\",src:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png\",srcSet:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png 1804w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"154px\",src:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png\",srcSet:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png 1804w\"},className:\"framer-db36qy\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})})]})]})]})]})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j7oaf2 hidden-1byztda hidden-3k4tzq hidden-11nr6f4 hidden-9my2zq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"Why QuickCheck?\"})}),className:\"framer-yshz9f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1wihtjx\",\"data-styles-preset\":\"s6pi0m0RV\",style:{\"--framer-text-alignment\":\"center\"},children:[\"We listen to entrepreneurs and design \",/*#__PURE__*/_jsx(\"br\",{}),\"products for entrepreneurs. \",/*#__PURE__*/_jsx(\"br\",{}),\"Our credit solutions are here to support you \",/*#__PURE__*/_jsx(\"br\",{}),\"achieve your goals.\"]})}),className:\"framer-ubyslx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed8()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ofxe2 hidden-q8bk69 hidden-1byztda hidden-3k4tzq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e2t05d\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5kj3ek\",\"data-framer-name\":\"Flexible Loan Duration\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tj9dqq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4t9g74\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\"},children:\"Flexible Loan Duration\"})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\"},children:\"Flexible Loan Duration\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\"},children:\"Flexible Loan Duration\"})}),className:\"framer-1d71f52\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Choose your convenient repayment plan and pay in \",/*#__PURE__*/_jsx(\"br\",{}),\"up to 12 months with the best interest rates\"]})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Choose your convenient repayment plan and pay in up to 12 months with the best interest rates\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"Choose your convenient repayment plan and pay in up to 12 months. Your satisfaction matters to us!\"})}),className:\"framer-kjts1u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7wpbr6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u8l6nd\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+0+0+423+32+204+0+0),sizes:\"164px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+0+0+386+32+136+0+0),sizes:\"164px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"164px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-1k3y04l\",\"data-framer-name\":\"shadow\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+0+0+423+32+204+0+0),sizes:\"171px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+0+0+386+32+136+0+0),sizes:\"171px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"171px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-1lqm1gv\",\"data-framer-name\":\"main\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+0+0+423+32+204+0+6.7864),sizes:\"159.4557px\",src:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png\",srcSet:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png?scale-down-to=2048 947w,https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png 1804w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+0+0+386+32+136+0+6.7864),sizes:\"159.4557px\",src:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png\",srcSet:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png?scale-down-to=2048 947w,https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png 1804w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"159.4557px\",src:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png\",srcSet:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png?scale-down-to=2048 947w,https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png 1804w\"},className:\"framer-1t1nji0\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13f4s1s\",\"data-framer-name\":\"Instant Disbursal\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-of2lww\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s8476e\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(15, 125, 195)\"},children:\"Instant Disbursal\"})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"rgb(15, 125, 195)\"},children:\"Instant Disbursal\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"rgb(15, 125, 195)\"},children:\"Instant Disbursal\"})}),className:\"framer-jzyz82\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Experience credit alerts in under 5 minutes. Our \",/*#__PURE__*/_jsx(\"br\",{}),\"commitment to a fast loan process is powered by AI.\"]})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Experience credit alerts in under 5 minutes. Our commitment to a fast loan process is powered by AI.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"Experience credit alerts in under 5 minutes. Our commitment to a fast loan process is powered by AI.\"})}),className:\"framer-12n4yw4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qkittu\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-p8e10p\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vq0i3p\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+0+0+0+32+204+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png\",srcSet:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png 967w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+0+0+0+32+136+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png\",srcSet:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"162px\",src:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png\",srcSet:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png 967w\"},className:\"framer-1du5uvw\",\"data-framer-name\":\"shadow\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+0+0+0+32+204+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png\",srcSet:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png 967w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+0+0+0+32+136+0+0+0),sizes:\"162px\",src:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png\",srcSet:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"162px\",src:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png\",srcSet:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png 967w\"},className:\"framer-18j2n4b\",\"data-framer-name\":\"main\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+0+0+0+32+204+0+0+6.5),sizes:\"151px\",src:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png\",srcSet:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png?scale-down-to=2048 947w,https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png 1804w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+0+0+0+32+136+0+0+6.5),sizes:\"151px\",src:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png\",srcSet:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png?scale-down-to=2048 947w,https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png 1804w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"151px\",src:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png\",srcSet:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png?scale-down-to=2048 947w,https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png 1804w\"},className:\"framer-6z02uz\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})})]})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jn0jhe\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4f6tq2\",\"data-framer-name\":\"Easy Repayment\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-182rkfy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vg6fg9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:\"Quick and Easy Repayment\"})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",children:\"Quick and Easy Repayment\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",children:\"Easy Repayment\"})}),className:\"framer-jo9k37\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:[\"You can make repayment using multiple channels including; \",/*#__PURE__*/_jsx(\"br\",{}),\"In-app bank repayment, USSD, or bank transfer\"]})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"You can make repayment using multiple channels including; In-app bank repayment, USSD, or bank transfer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"You can make repayment using multiple channels including; In-app bank repayment, USSD, or bank transfer\"})}),className:\"framer-1a4dj5i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-896qts\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mc8w4e\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+846+0+0+32+204+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+772+0+0+32+136+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"182px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-1p1wki0\",\"data-framer-name\":\"shadow\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+846+0+0+32+204+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+772+0+0+32+136+0+0),sizes:\"182px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"182px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-1xolgmi\",\"data-framer-name\":\"main\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+846+0+0+32+204+0+362-354.3014),sizes:\"169.7663px\",src:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png\",srcSet:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png 1804w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+772+0+0+32+136+0+362-354.3014),sizes:\"169.7663px\",src:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png\",srcSet:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png 1804w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"169.7663px\",src:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png\",srcSet:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png 1804w\"},className:\"framer-1rdj98z\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10gi0eq\",\"data-framer-name\":\"Private and Secure\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u88jwz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aavd3x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 53, 153)\"},children:\"Private and Secure\"})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1atcirq\",\"data-styles-preset\":\"jwjYLr32c\",style:{\"--framer-text-color\":\"rgb(111, 53, 153)\"},children:\"Private and Secure\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-color\":\"rgb(111, 53, 153)\"},children:\"Private and Secure\"})}),className:\"framer-19b9mdq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Unlike other loan apps, we respect your privacy and \",/*#__PURE__*/_jsx(\"br\",{}),\"never involve third parties.  Your trust matters to us\"]})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Unlike other loan apps, we respect your privacy and never involve third parties.  Your trust matters to us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"Unlike other loan apps, we respect your privacy and never involve third parties.  Your trust matters to us\"})}),className:\"framer-1xrq1iv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ec50s0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18k8w4\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+846+0+423+32+204+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+772+0+423+32+136+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"165px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-itv7ns\",\"data-framer-name\":\"shadow\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+846+0+423+32+204+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+772+0+423+32+136+0+0),sizes:\"165px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"165px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-1gwrgjs\",\"data-framer-name\":\"main\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+995+32+248+0+846+0+423+32+204+0+7),sizes:\"154px\",src:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png\",srcSet:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png 1804w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+1693+32+200+0+772+0+423+32+136+0+7),sizes:\"154px\",src:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png\",srcSet:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png 1804w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"154px\",src:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png\",srcSet:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png 1804w\"},className:\"framer-103hfc8\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})})]})})]})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l1k66s hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-11nr6f4 hidden-9my2zq\",\"data-framer-name\":\"Numbers don't lie\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vnl1yd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14cf4kw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Y07JrsfBF\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<script>\\n\twindow.fwSettings={\\n\t'widget_id':44000004222\\n\t};\\n\t!function(){if(\\\"function\\\"!=typeof window.FreshworksWidget){var n=function(){n.q.push(arguments)};n.q=[],window.FreshworksWidget=n}}() \\n</script>\\n<script type='text/javascript' src='https://widget.freshworks.com/widgets/44000004222.js' async defer></script>\",id:\"Y07JrsfBF\",layoutId:\"Y07JrsfBF\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18g4j14\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17arq34\",\"data-styles-preset\":\"HTngTInJQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Numbers don't lie\"})}),className:\"framer-1j3ydp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e4c35ca4-8450-417d-9ee4-0b2b9d783b37, rgb(237, 237, 237))\"},children:[\"Don't just take our words for it. \",/*#__PURE__*/_jsx(\"br\",{}),\"You can always rely on the numbers\"]})}),className:\"framer-1buiu6z\",fonts:[\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14er9qz\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-121c04z\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p0zsrr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a4p7td-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ITz5Gtek0\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\",height:\"100%\",iconSearch:\"Download\",iconSelection:\"Home\",id:\"ITz5Gtek0\",layoutId:\"ITz5Gtek0\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o32vk1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p98ka1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PckjIwRYk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:\"3M+\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"3M+\"})}),className:\"framer-1vk5gfx\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PckjIwRYk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"App Downloads\"})}),fonts:[\"GF;Noto Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"App Downloads\"})}),className:\"framer-l6aido\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kysw7y\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[isDisplayed10()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zuwl21 hidden-zrl0y7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nuqesb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hbswKfBGe\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(15, 125, 195)\",height:\"100%\",iconSearch:\"Star\",iconSelection:\"Home\",id:\"hbswKfBGe\",layoutId:\"hbswKfBGe\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pusnju\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18dsx6e\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PckjIwRYk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:\"200k\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"200k\"})}),className:\"framer-1i37k38\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PckjIwRYk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"Playstore Reviews\"})}),fonts:[\"GF;Noto Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Playstore Reviews\"})}),className:\"framer-181ph7p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed11()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-yz9c37 hidden-1sdcd6k\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17jedhh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MAi0Ok9AR\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(15, 125, 195)\",height:\"100%\",iconSearch:\"Star\",iconSelection:\"Home\",id:\"MAi0Ok9AR\",layoutId:\"MAi0Ok9AR\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b0tws7\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-f6uh80\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2r146p-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IQ8GUUCxH\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(111, 53, 153)\",height:\"100%\",iconSearch:\"profile\",iconSelection:\"Home\",id:\"IQ8GUUCxH\",layoutId:\"IQ8GUUCxH\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t7c448\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13w29d\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PckjIwRYk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:\"1M+\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"1M+\"})}),className:\"framer-10wvff6\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PckjIwRYk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"Unique Customers\"})}),fonts:[\"GF;Noto Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iqrgym\",\"data-styles-preset\":\"kVDZzSmOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unique Customers\"})}),className:\"framer-1vnngeh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})]})}),isDisplayed12()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rba6yi hidden-zrl0y7 hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-11nr6f4 hidden-9my2zq\",\"data-framer-name\":\"Testimonials\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-q0nv5a\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uullo0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ldvsq\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-144of4o\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17arq34\",\"data-styles-preset\":\"HTngTInJQ\",style:{\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"Why QuickCheck?\"})}),className:\"framer-hnqzkl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:[\"We listen to entrepreneurs and design our products for entrepreneurs. \",/*#__PURE__*/_jsx(\"br\",{}),\"Our credit solutions are here to support you achieve your goals.\"]})}),className:\"framer-b73q8h\",fonts:[\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ql5fuz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hwtr1y\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:488,width:\"468px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-64cp8p-container\",nodeId:\"wKT9Dw1s7\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(InstantDisbursal,{height:\"100%\",id:\"wKT9Dw1s7\",layoutId:\"wKT9Dw1s7\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:488,width:\"468px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4t49md-container\",nodeId:\"h6wRfRhj_\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(FlexibleLoanDuration,{height:\"100%\",id:\"h6wRfRhj_\",layoutId:\"h6wRfRhj_\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e1u33t\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:488,width:\"468px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q3m71i-container\",nodeId:\"FYQLGqzhy\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(EasyRepayment,{height:\"100%\",id:\"FYQLGqzhy\",layoutId:\"FYQLGqzhy\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:488,width:\"468px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i5k89k-container\",nodeId:\"sanbouq0J\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(PrivateAndSecure,{height:\"100%\",id:\"sanbouq0J\",layoutId:\"sanbouq0J\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+3541),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}},e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+3470),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}},rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+2975),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+3541),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+3514),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"},className:\"framer-1wl103i\",\"data-framer-name\":\"Video\",id:elementId3,ref:ref4,children:[isDisplayed13()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nhfg3p-container hidden-11nr6f4\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HZM31uqQH\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,topLeftRadius:8,topRightRadius:8},e4M1Dw9FX:{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,topLeftRadius:8,topRightRadius:8},PckjIwRYk:{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,topLeftRadius:8,topRightRadius:8},Sgj5dkty5:{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,topLeftRadius:8,topRightRadius:8},w26RXKWOR:{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,topLeftRadius:8,topRightRadius:8}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"HZM31uqQH\",isMixedBorderRadius:false,isRed:true,layoutId:\"HZM31uqQH\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://youtu.be/c3RAfw_o2VU\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{y:(componentViewport?.y||0)+94+3541+32+284},e4M1Dw9FX:{y:(componentViewport?.y||0)+94+3470+32+284},rFNYG_3Bu:{y:(componentViewport?.y||0)+94+2975+32+439},Sgj5dkty5:{y:(componentViewport?.y||0)+94+3541+32+284},w26RXKWOR:{y:(componentViewport?.y||0)+94+3514+32+284}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bf7sp4-container\",nodeId:\"bJLNu6ZAN\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(PlaystoreButton,{height:\"100%\",id:\"bJLNu6ZAN\",layoutId:\"bJLNu6ZAN\",variant:\"aDviLiUiZ\",width:\"100%\"})})})}),isDisplayed14()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mssk5k-container hidden-1sdcd6k hidden-zrl0y7 hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-9my2zq\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ChGMdl7TZ\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"ChGMdl7TZ\",isMixedBorderRadius:false,isRed:true,layoutId:\"ChGMdl7TZ\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:8,topRightRadius:8,url:\"https://youtu.be/c3RAfw_o2VU\",width:\"100%\"})})})]})}),isDisplayed11()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a0yp30 hidden-1sdcd6k hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-11nr6f4 hidden-9my2zq\",\"data-framer-name\":\"Unique selling proposition Tablet\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-grbuj\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ktvcex\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a6mdmz\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17arq34\",\"data-styles-preset\":\"HTngTInJQ\",style:{\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"Why QuickCheck?\"})}),className:\"framer-1q3z6zc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:[\"We listen to entrepreneurs and design products for entrepreneurs. \",/*#__PURE__*/_jsx(\"br\",{}),\"Our credit solutions are here to support you achieve your goals.\"]})}),className:\"framer-5k2g6z\",fonts:[\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z8ne79\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d7or1g\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a5cmxe\",\"data-framer-name\":\"Flexible Loan Duration\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q9iqu7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-epvwzr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, rgb(245, 77, 7))\"},children:\"Flexible Loan Duration\"})}),className:\"framer-6no28s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Choose your convenient repayment plan and pay in \",/*#__PURE__*/_jsx(\"br\",{}),\"up to 12 months with the best interest rates\"]})}),className:\"framer-ho5wel\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ll8vfc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nvkm6g\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"164px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-vo648w\",\"data-framer-name\":\"shadow\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"171px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-185evsp\",\"data-framer-name\":\"main\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"159.4557px\",src:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png\",srcSet:\"https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png?scale-down-to=2048 947w,https://framerusercontent.com/images/1IDeTemCo1PRCGKlDDWFMiVvzg.png 1804w\"},className:\"framer-nrpkbi\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o4l3v2\",\"data-framer-name\":\"Instant Disbursal\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wjr0j0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ww854r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(15, 125, 195)\"},children:\"Instant Disbursal\"})}),className:\"framer-17kykzo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Experience credit alerts in under 5 minutes. Our \",/*#__PURE__*/_jsx(\"br\",{}),\"commitment to a fast loan process is powered by AI.\"]})}),className:\"framer-6bxiiz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12w3hkz\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-176382h\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wg2fev\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"162px\",src:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png\",srcSet:\"https://framerusercontent.com/images/ROJ4i7MsFaWPJZl0s8VkJ1lFTg.png 967w\"},className:\"framer-1vingzx\",\"data-framer-name\":\"shadow\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"162px\",src:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png\",srcSet:\"https://framerusercontent.com/images/qMqWJTXC07sIyepHJezxTfNU7fo.png 967w\"},className:\"framer-1sb3jzx\",\"data-framer-name\":\"main\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"151px\",src:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png\",srcSet:\"https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png?scale-down-to=2048 947w,https://framerusercontent.com/images/WFtNbUXuY5THmd15wO6Qzwo9SJU.png 1804w\"},className:\"framer-1jyehq\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})]})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fjsngl\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k3az1b\",\"data-framer-name\":\"Easy Repayment\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1irm6a2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ql01p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:\"Quick and Easy Repayment\"})}),className:\"framer-1whzpmd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:[\"You can make repayment using multiple channels including; \",/*#__PURE__*/_jsx(\"br\",{}),\"In-app bank repayment, USSD, or bank transfer\"]})}),className:\"framer-8jtnje\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-143d92k\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d1nte1\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"182px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-1cdfmq1\",\"data-framer-name\":\"shadow\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"182px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-3klf5p\",\"data-framer-name\":\"main\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"169.7663px\",src:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png\",srcSet:\"https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rkQvAP3rr8D2AimpTg9grqEVbEc.png 1804w\"},className:\"framer-19g9v3b\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qqev2b\",\"data-framer-name\":\"Private and Secure\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nyfvxe\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u1wzxr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(111, 53, 153)\"},children:\"Private and Secure\"})}),className:\"framer-5p2rs6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Unlike other loan apps, we respect your privacy and \",/*#__PURE__*/_jsx(\"br\",{}),\"never involve third parties.  Your trust matters to us\"]})}),className:\"framer-1uctkb2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gqaslb\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ljnn3r\",\"data-framer-name\":\"Pixel 7 Pro Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"165px\",src:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png\",srcSet:\"https://framerusercontent.com/images/MD509LXzOq2xDsFoAqDX99cIjbo.png 967w\"},className:\"framer-1qi4666\",\"data-framer-name\":\"shadow\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"165px\",src:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png\",srcSet:\"https://framerusercontent.com/images/7Z4eDZ8MkB7WErPkxyRLdG2TGRg.png 967w\"},className:\"framer-n0ilq8\",\"data-framer-name\":\"main\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"154px\",src:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png\",srcSet:\"https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png?scale-down-to=2048 947w,https://framerusercontent.com/images/rhE4sECSdjslUeCaeZBEpnsDza4.png 1804w\"},className:\"framer-1l6mu2\",\"data-framer-name\":\"Pixel 7 Pro Mockup label\"})]})})]})]})]})]}),isDisplayed15()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19zef2t hidden-9my2zq\",\"data-framer-name\":\"Testimonial\",id:elementId5,ref:ref6,children:[isDisplayed16()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f3hz7l-container hidden-1sdcd6k hidden-zrl0y7 hidden-q8bk69 hidden-3k4tzq\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WDvUwGXVE\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},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:\"WDvUwGXVE\",layoutId:\"WDvUwGXVE\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cxhvxn\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u2a0s2\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ty8h8m\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jfq95l\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ijgc1x\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-1ike5kx\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-19cqszb\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m1isv1\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v6e9t9\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uumx7g\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 16\"><path d=\"M 17.195 2.5 C 16.931 3.637 16.652 4.865 16.358 6.182 C 16.065 7.499 15.8 8.786 15.565 10.043 C 15.33 11.3 15.14 12.452 14.993 13.5 L 10.808 13.5 L 10.5 13.006 C 10.764 11.959 11.102 10.836 11.513 9.639 C 11.924 8.412 12.379 7.184 12.878 5.957 C 13.378 4.73 13.862 3.578 14.332 2.5 Z M 9.046 2.5 C 8.782 3.637 8.503 4.865 8.209 6.182 C 7.916 7.499 7.651 8.786 7.416 10.043 C 7.182 11.3 6.991 12.452 6.844 13.5 L 2.703 13.5 L 2.439 13.006 C 2.703 11.959 3.041 10.836 3.452 9.639 C 3.863 8.412 4.304 7.184 4.774 5.957 C 5.273 4.73 5.757 3.578 6.227 2.5 Z\" fill=\"#212121\"></path></svg>',svgContentId:10288557446,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\"})}),className:\"framer-1x8v7z8\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c3ek87\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vo23fl-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"JIv0iDeaw\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"JIv0iDeaw\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"JIv0iDeaw\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Akhagbemhe Joshua\"})}),className:\"framer-1q7b8gz\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6qtule\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ox3cfy\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aa1bhx\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jza5op\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ln8zm3\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-1dpxk24\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-13chdvx\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ve84rb\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-123juq2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zmwq6k\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 18\"><path d=\"M 19.897 2.685 C 19.591 3.906 19.269 5.224 18.929 6.638 C 18.589 8.053 18.283 9.435 18.011 10.785 C 17.74 12.135 17.519 13.372 17.349 14.497 L 12.507 14.497 L 12.15 13.967 C 12.456 12.842 12.846 11.636 13.322 10.351 C 13.798 9.033 14.325 7.715 14.902 6.397 C 15.48 5.079 16.04 3.842 16.584 2.685 Z M 10.468 2.685 C 10.162 3.906 9.839 5.224 9.499 6.638 C 9.16 8.053 8.854 9.435 8.582 10.785 C 8.31 12.135 8.089 13.372 7.919 14.497 L 3.128 14.497 L 2.822 13.967 C 3.128 12.842 3.519 11.636 3.995 10.351 C 4.47 9.033 4.98 7.715 5.524 6.397 C 6.101 5.079 6.662 3.842 7.206 2.685 Z\" fill=\"#212121\"></path></svg>',svgContentId:11159924837,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Wonderful experience! Thats all I will say. The best loan app for me so far with NO STRESS. Especially because of the long periods of time for repayment unlike all other apps. Very professional & ethical with their reminders.\"})}),className:\"framer-db86z2\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ca4g4l\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xp3j2l-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"VFdvD816n\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"VFdvD816n\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"VFdvD816n\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Timi Ade\"})}),className:\"framer-4me94u\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ivo3qm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xyrnnd\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c50bmw\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1diafah\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zneg13\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-4ou9mi\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-54mnfw\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cumdhx\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dbuxqv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-59ajju\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 19\"><path d=\"M 20.634 2.969 C 20.317 4.319 19.982 5.777 19.63 7.341 C 19.277 8.905 18.96 10.433 18.678 11.926 C 18.397 13.419 18.167 14.787 17.991 16.031 L 12.97 16.031 L 12.6 15.445 C 12.917 14.201 13.322 12.868 13.816 11.446 C 14.309 9.989 14.855 8.531 15.454 7.074 C 16.053 5.617 16.635 4.248 17.198 2.969 Z M 10.855 2.969 C 10.538 4.319 10.204 5.777 9.851 7.341 C 9.499 8.905 9.182 10.433 8.9 11.926 C 8.618 13.419 8.389 14.787 8.213 16.031 L 3.244 16.031 L 2.927 15.445 C 3.244 14.201 3.649 12.868 4.143 11.446 C 4.636 9.989 5.164 8.531 5.728 7.074 C 6.327 5.617 6.909 4.248 7.473 2.969 Z\" fill=\"#212121\"></path></svg>',svgContentId:11016904721,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"So I've tried dozens of loan apps and this is actually the best. The app is so easy to use and so friendly. For the first time I applied for a loan, the limit was unbelievable and mind blowing. Very low interest rate with so much time to pay. The exact money I applied for was disbursed into my account in few minutes. This is actually the best. 5 star for u guys.\"})}),className:\"framer-1jvitmp\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1arndhp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13xoooh-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"ij_NusAiy\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"ij_NusAiy\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"ij_NusAiy\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Love Marvy\"})}),className:\"framer-c3ovnw\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bljbds\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11eeqol\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ephsso\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11op79i\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nnvjar\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-xrndps\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-z3xdco\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1afioyo\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jykjb6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b6urr2\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 19\"><path d=\"M 20.634 2.969 C 20.317 4.319 19.982 5.777 19.63 7.341 C 19.277 8.905 18.96 10.433 18.678 11.926 C 18.397 13.419 18.167 14.787 17.991 16.031 L 12.97 16.031 L 12.6 15.445 C 12.917 14.201 13.322 12.868 13.816 11.446 C 14.309 9.989 14.855 8.531 15.454 7.074 C 16.053 5.617 16.635 4.248 17.198 2.969 Z M 10.855 2.969 C 10.538 4.319 10.204 5.777 9.851 7.341 C 9.499 8.905 9.182 10.433 8.9 11.926 C 8.618 13.419 8.389 14.787 8.213 16.031 L 3.244 16.031 L 2.927 15.445 C 3.244 14.201 3.649 12.868 4.143 11.446 C 4.636 9.989 5.164 8.531 5.728 7.074 C 6.327 5.617 6.909 4.248 7.473 2.969 Z\" fill=\"#212121\"></path></svg>',svgContentId:11016904721,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"This loan app is the best and most legit loan app I've tried so far \uD83D\uDE0D\uD83D\uDE18 Interest rate- perfect\uD83D\uDC4C. Disbursement- Flash\uD83D\uDE80 User interface- super friendly, the developers did a great job. If you're looking for loan app that has a high loan limit,long repayment time and extremely low interest rate.... You gotta try this one out \uD83D\uDCAF.\"})}),className:\"framer-lo4ry6\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1um4sy0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gia60m-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"xAjf8A8W2\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"xAjf8A8W2\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"xAjf8A8W2\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Tiana\"})}),className:\"framer-brc1gl\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10g6qyf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zcdlcr\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cpoe2p\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ghsaos\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jo50ap\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-qe7zqw\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-2k999j\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1s18x3x\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qr75m\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1usgtgd\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 19\"><path d=\"M 20.634 2.969 C 20.317 4.319 19.982 5.777 19.63 7.341 C 19.277 8.905 18.96 10.433 18.678 11.926 C 18.397 13.419 18.167 14.787 17.991 16.031 L 12.97 16.031 L 12.6 15.445 C 12.917 14.201 13.322 12.868 13.816 11.446 C 14.309 9.989 14.855 8.531 15.454 7.074 C 16.053 5.617 16.635 4.248 17.198 2.969 Z M 10.855 2.969 C 10.538 4.319 10.204 5.777 9.851 7.341 C 9.499 8.905 9.182 10.433 8.9 11.926 C 8.618 13.419 8.389 14.787 8.213 16.031 L 3.244 16.031 L 2.927 15.445 C 3.244 14.201 3.649 12.868 4.143 11.446 C 4.636 9.989 5.164 8.531 5.728 7.074 C 6.327 5.617 6.909 4.248 7.473 2.969 Z\" fill=\"#212121\"></path></svg>',svgContentId:11016904721,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"The very best loan app I have personally experienced. Infact If I could I would give them 10stars. The app is very user friendly , fantastically low interest rates and have no hidden charges . I highly recommend to anybody looking for a quick loan .\"})}),className:\"framer-1mk1nph\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ijxynn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cgw2hi-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"OZ1Jk40Va\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"OZ1Jk40Va\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"OZ1Jk40Va\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Michael Nwosu\"})}),className:\"framer-wu9j2j\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16vw5v7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fp56hb\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gya3dc\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-175tdl3\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uav6zr\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-1qmzaqm\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-rxoxqn\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-giov5s\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m6he5h\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qbbd59\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 19\"><path d=\"M 20.634 2.969 C 20.317 4.319 19.982 5.777 19.63 7.341 C 19.277 8.905 18.96 10.433 18.678 11.926 C 18.397 13.419 18.167 14.787 17.991 16.031 L 12.97 16.031 L 12.6 15.445 C 12.917 14.201 13.322 12.868 13.816 11.446 C 14.309 9.989 14.855 8.531 15.454 7.074 C 16.053 5.617 16.635 4.248 17.198 2.969 Z M 10.855 2.969 C 10.538 4.319 10.204 5.777 9.851 7.341 C 9.499 8.905 9.182 10.433 8.9 11.926 C 8.618 13.419 8.389 14.787 8.213 16.031 L 3.244 16.031 L 2.927 15.445 C 3.244 14.201 3.649 12.868 4.143 11.446 C 4.636 9.989 5.164 8.531 5.728 7.074 C 6.327 5.617 6.909 4.248 7.473 2.969 Z\" fill=\"#212121\"></path></svg>',svgContentId:11016904721,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Very wonderful app fast and easy to access they give you so much time to repay. Their repayment tenure is the most considerate. I add 1 more \uD83C\uDF1F for them 6star. I recommend that other user should try this app, you will be amazed. Nice work keep it up\"})}),className:\"framer-1cuf5sq\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bz143v\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r8ed9r-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"A0iamyvOm\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"A0iamyvOm\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"A0iamyvOm\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Jimmy Okpe\"})}),className:\"framer-12467jp\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aqorkq\",\"data-framer-name\":\"Testimonials 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Customers Love us Here's \",/*#__PURE__*/_jsx(\"br\",{}),\"What They are Saying\"]})})},e4M1Dw9FX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Customers love us here's\",/*#__PURE__*/_jsx(\"br\",{}),\"what they are saying\"]})})},rFNYG_3Bu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Customers love us here's\",/*#__PURE__*/_jsx(\"br\",{}),\"what they are saying\"]})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Customers Love us Here's \",/*#__PURE__*/_jsx(\"br\",{}),\"What They are Saying\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Customers Love us \",/*#__PURE__*/_jsx(\"br\",{}),\"Here's What They are Saying\"]})}),className:\"framer-1yx7mv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed17()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yjbygh-container hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-11nr6f4\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"okrp0bktz\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.35,fadeContent:true,fadeInset:100,fadeWidth:0,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"okrp0bktz\",layoutId:\"okrp0bktz\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dmxc5i\",\"data-framer-name\":\"Card 1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f9llmf\",\"data-framer-name\":\"Frame 152\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1k7c3x2\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 41 32\"><path d=\"M 35.25 5 C 34.708 7.275 34.136 9.729 33.534 12.363 C 32.932 14.997 32.39 17.571 31.909 20.086 C 31.427 22.6 31.036 24.905 30.735 27 L 22.157 27 L 21.525 26.012 C 22.066 23.917 22.759 21.672 23.601 19.278 C 24.444 16.823 25.377 14.369 26.401 11.914 C 27.424 9.46 28.417 7.155 29.381 5 Z M 18.545 5 C 18.003 7.275 17.431 9.729 16.829 12.363 C 16.227 14.997 15.685 17.571 15.204 20.086 C 14.722 22.6 14.331 24.905 14.03 27 L 5.542 27 L 5 26.012 C 5.542 23.917 6.234 21.672 7.077 19.278 C 7.92 16.823 8.823 14.369 9.786 11.914 C 10.809 9.46 11.802 7.155 12.766 5 Z\" fill=\"#212121\"></path></svg>',svgContentId:10932454783,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4q5kkw\",\"data-framer-name\":\"Frame 151\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\"})}),className:\"framer-17veya7\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b4tkjc\",\"data-framer-name\":\"Frame 169\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y05x6f-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"ScaCoqFi8\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"ScaCoqFi8\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"ScaCoqFi8\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i8x4if\",\"data-framer-name\":\"Frame 150\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10aosv9\",\"data-styles-preset\":\"puKVzR1fK\",children:\"Akhagbemhe Joshua\"})}),className:\"framer-1ddqhfz\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zx3j89\",\"data-framer-name\":\"Frame 167\",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7isll\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dt3rdw\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c9ld1x\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-14jox9o\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-pd89mh\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1veaflz\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 115 11.849 C 115.78 11.279 115.377 10.042 114.409 10.042 L 109.614 10.042 C 109.179 10.042 108.794 9.761 108.661 9.347 L 107.174 4.695 C 106.877 3.768 105.565 3.768 105.269 4.695 L 103.781 9.347 C 103.649 9.761 103.264 10.042 102.829 10.042 L 98.002 10.042 C 97.038 10.042 96.632 11.272 97.407 11.846 L 101.335 14.755 C 101.678 15.009 101.822 15.453 101.693 15.86 L 100.216 20.525 C 99.923 21.449 100.985 22.207 101.764 21.63 L 105.626 18.77 C 105.98 18.509 106.463 18.509 106.816 18.77 L 110.666 21.622 C 111.447 22.199 112.51 21.438 112.214 20.513 L 110.716 15.829 C 110.585 15.419 110.731 14.971 111.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:12814297881,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k1ua2h\",\"data-framer-name\":\"Card 4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5ft7wy\",\"data-framer-name\":\"Frame 152\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ujxvwo\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 41 32\"><path d=\"M 35.25 5 C 34.708 7.275 34.136 9.729 33.534 12.363 C 32.932 14.997 32.39 17.571 31.909 20.086 C 31.427 22.6 31.036 24.905 30.735 27 L 22.157 27 L 21.525 26.012 C 22.066 23.917 22.759 21.672 23.601 19.278 C 24.444 16.823 25.377 14.369 26.401 11.914 C 27.424 9.46 28.417 7.155 29.381 5 Z M 18.545 5 C 18.003 7.275 17.431 9.729 16.829 12.363 C 16.227 14.997 15.685 17.571 15.204 20.086 C 14.722 22.6 14.331 24.905 14.03 27 L 5.542 27 L 5 26.012 C 5.542 23.917 6.234 21.672 7.077 19.278 C 7.92 16.823 8.823 14.369 9.786 11.914 C 10.809 9.46 11.802 7.155 12.766 5 Z\" fill=\"#212121\"></path></svg>',svgContentId:10932454783,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ed8czt\",\"data-framer-name\":\"Frame 151\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"This loan app is the best and most legit loan app I've tried so far \uD83D\uDE0D\uD83D\uDE18 Interest rate- perfect\uD83D\uDC4C. Disbursement- Flash\uD83D\uDE80 User interface- super friendly, the developers did a great job. If you're looking for loan app that has a high loan limit,long repayment time and extremely low interest rate.... You gotta try this one out \uD83D\uDCAF.\"})}),className:\"framer-3dabeq\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e8mhzf\",\"data-framer-name\":\"Frame 169\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ug9sk4-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"nDPFWB4Hr\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"nDPFWB4Hr\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"nDPFWB4Hr\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1561klk\",\"data-framer-name\":\"Frame 150\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10aosv9\",\"data-styles-preset\":\"puKVzR1fK\",children:\"Tiana\"})}),className:\"framer-1gyl51k\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15mr5z4\",\"data-framer-name\":\"Frame 167\",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hfghce\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1adi9bj\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7zhu9k\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-p25aue\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-nic7m4\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13y8xm9\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 115 11.849 C 115.78 11.279 115.377 10.042 114.409 10.042 L 109.614 10.042 C 109.179 10.042 108.794 9.761 108.661 9.347 L 107.174 4.695 C 106.877 3.768 105.565 3.768 105.269 4.695 L 103.781 9.347 C 103.649 9.761 103.264 10.042 102.829 10.042 L 98.002 10.042 C 97.038 10.042 96.632 11.272 97.407 11.846 L 101.335 14.755 C 101.678 15.009 101.822 15.453 101.693 15.86 L 100.216 20.525 C 99.923 21.449 100.985 22.207 101.764 21.63 L 105.626 18.77 C 105.98 18.509 106.463 18.509 106.816 18.77 L 110.666 21.622 C 111.447 22.199 112.51 21.438 112.214 20.513 L 110.716 15.829 C 110.585 15.419 110.731 14.971 111.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:12814297881,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ovjn5\",\"data-framer-name\":\"Card 2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r5qfuj\",\"data-framer-name\":\"Frame 152\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ezbbjj\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 41 32\"><path d=\"M 35.25 5 C 34.708 7.275 34.136 9.729 33.534 12.363 C 32.932 14.997 32.39 17.571 31.909 20.086 C 31.427 22.6 31.036 24.905 30.735 27 L 22.157 27 L 21.525 26.012 C 22.066 23.917 22.759 21.672 23.601 19.278 C 24.444 16.823 25.377 14.369 26.401 11.914 C 27.424 9.46 28.417 7.155 29.381 5 Z M 18.545 5 C 18.003 7.275 17.431 9.729 16.829 12.363 C 16.227 14.997 15.685 17.571 15.204 20.086 C 14.722 22.6 14.331 24.905 14.03 27 L 5.542 27 L 5 26.012 C 5.542 23.917 6.234 21.672 7.077 19.278 C 7.92 16.823 8.823 14.369 9.786 11.914 C 10.809 9.46 11.802 7.155 12.766 5 Z\" fill=\"#212121\"></path></svg>',svgContentId:10932454783,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kxhqa\",\"data-framer-name\":\"Frame 151\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"Wonderful experience! Thats all I will say. The best loan app for me so far with NO STRESS. Especially because of the long periods of time for repayment unlike all other apps. Very professional & ethical with their reminders.\"})}),className:\"framer-dbfe6e\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3ou2ne\",\"data-framer-name\":\"Frame 169\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ci8625-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"gINCZ65v1\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"gINCZ65v1\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"gINCZ65v1\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18f3uv0\",\"data-framer-name\":\"Frame 150\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10aosv9\",\"data-styles-preset\":\"puKVzR1fK\",children:\"Timi Ade\"})}),className:\"framer-e97ogu\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c4qb3l\",\"data-framer-name\":\"Frame 167\",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1due89c\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-n6hal7\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v0xwde\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-1v0ec5q\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-1iuh9un\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q2djdw\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 117 11.849 C 117.78 11.279 117.377 10.042 116.409 10.042 L 111.614 10.042 C 111.179 10.042 110.794 9.761 110.661 9.347 L 109.174 4.695 C 108.877 3.768 107.565 3.768 107.269 4.695 L 105.781 9.347 C 105.649 9.761 105.264 10.042 104.829 10.042 L 100.002 10.042 C 99.038 10.042 98.632 11.272 99.407 11.846 L 103.335 14.755 C 103.678 15.009 103.822 15.453 103.693 15.86 L 102.216 20.525 C 101.923 21.449 102.985 22.207 103.764 21.63 L 107.626 18.77 C 107.98 18.509 108.463 18.509 108.816 18.77 L 112.666 21.622 C 113.447 22.199 114.51 21.438 114.214 20.513 L 112.716 15.829 C 112.585 15.419 112.731 14.971 113.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:9580608605,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4zjh1v\",\"data-framer-name\":\"Card 5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-136ttmu\",\"data-framer-name\":\"Frame 152\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wys5ah\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 41 32\"><path d=\"M 35.25 5 C 34.708 7.275 34.136 9.729 33.534 12.363 C 32.932 14.997 32.39 17.571 31.909 20.086 C 31.427 22.6 31.036 24.905 30.735 27 L 22.157 27 L 21.525 26.012 C 22.066 23.917 22.759 21.672 23.601 19.278 C 24.444 16.823 25.377 14.369 26.401 11.914 C 27.424 9.46 28.417 7.155 29.381 5 Z M 18.545 5 C 18.003 7.275 17.431 9.729 16.829 12.363 C 16.227 14.997 15.685 17.571 15.204 20.086 C 14.722 22.6 14.331 24.905 14.03 27 L 5.542 27 L 5 26.012 C 5.542 23.917 6.234 21.672 7.077 19.278 C 7.92 16.823 8.823 14.369 9.786 11.914 C 10.809 9.46 11.802 7.155 12.766 5 Z\" fill=\"#212121\"></path></svg>',svgContentId:10932454783,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ouzsvp\",\"data-framer-name\":\"Frame 151\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"The very best loan app I have personally experienced. Infact If I could I would give them 10stars. The app is very user friendly , fantastically low interest rates and have no hidden charges . I highly recommend to anybody looking for a quick loan .\"})}),className:\"framer-45qlos\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cjpx8t\",\"data-framer-name\":\"Frame 169\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16xdrxb-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"iVZkPHXhu\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"iVZkPHXhu\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"iVZkPHXhu\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lf0pry\",\"data-framer-name\":\"Frame 150\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10aosv9\",\"data-styles-preset\":\"puKVzR1fK\",children:\"Michael Nwosu\"})}),className:\"framer-i3m5ic\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-svk294\",\"data-framer-name\":\"Frame 167\",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yxyh8a\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-v7hye3\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t5oncx\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-todnar\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-13wgv65\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1npysuh\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 115 11.849 C 115.78 11.279 115.377 10.042 114.409 10.042 L 109.614 10.042 C 109.179 10.042 108.794 9.761 108.661 9.347 L 107.174 4.695 C 106.877 3.768 105.565 3.768 105.269 4.695 L 103.781 9.347 C 103.649 9.761 103.264 10.042 102.829 10.042 L 98.002 10.042 C 97.038 10.042 96.632 11.272 97.407 11.846 L 101.335 14.755 C 101.678 15.009 101.822 15.453 101.693 15.86 L 100.216 20.525 C 99.923 21.449 100.985 22.207 101.764 21.63 L 105.626 18.77 C 105.98 18.509 106.463 18.509 106.816 18.77 L 110.666 21.622 C 111.447 22.199 112.51 21.438 112.214 20.513 L 110.716 15.829 C 110.585 15.419 110.731 14.971 111.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:12814297881,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sgwet8\",\"data-framer-name\":\"Card 3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dk8wm6\",\"data-framer-name\":\"Frame 152\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-z54t5h\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 41 32\"><path d=\"M 35.25 5 C 34.708 7.275 34.136 9.729 33.534 12.363 C 32.932 14.997 32.39 17.571 31.909 20.086 C 31.427 22.6 31.036 24.905 30.735 27 L 22.157 27 L 21.525 26.012 C 22.066 23.917 22.759 21.672 23.601 19.278 C 24.444 16.823 25.377 14.369 26.401 11.914 C 27.424 9.46 28.417 7.155 29.381 5 Z M 18.545 5 C 18.003 7.275 17.431 9.729 16.829 12.363 C 16.227 14.997 15.685 17.571 15.204 20.086 C 14.722 22.6 14.331 24.905 14.03 27 L 5.542 27 L 5 26.012 C 5.542 23.917 6.234 21.672 7.077 19.278 C 7.92 16.823 8.823 14.369 9.786 11.914 C 10.809 9.46 11.802 7.155 12.766 5 Z\" fill=\"#212121\"></path></svg>',svgContentId:10932454783,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ah7gib\",\"data-framer-name\":\"Frame 151\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"So I've tried dozens of loan apps and this is actually the best. The app is so easy to use and so friendly. For the first time I applied for a loan, the limit was unbelievable and mind blowing. Very low interest rate with so much time to pay. The exact money I applied for was disbursed into my account in few minutes. This is actually the best. 5 star for u guys.\"})}),className:\"framer-1w571ry\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ofyb32\",\"data-framer-name\":\"Frame 169\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mi0vd7-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"sAMuA79p5\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"sAMuA79p5\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"sAMuA79p5\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l43wiv\",\"data-framer-name\":\"Frame 150\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10aosv9\",\"data-styles-preset\":\"puKVzR1fK\",children:\"Love Marvy\"})}),className:\"framer-12zahyd\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j7wh9s\",\"data-framer-name\":\"Frame 167\",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13063i5\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1c7bvyd\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g2n4qp\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-7u1a7u\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-g06g0x\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n33twn\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 115 11.849 C 115.78 11.279 115.377 10.042 114.409 10.042 L 109.614 10.042 C 109.179 10.042 108.794 9.761 108.661 9.347 L 107.174 4.695 C 106.877 3.768 105.565 3.768 105.269 4.695 L 103.781 9.347 C 103.649 9.761 103.264 10.042 102.829 10.042 L 98.002 10.042 C 97.038 10.042 96.632 11.272 97.407 11.846 L 101.335 14.755 C 101.678 15.009 101.822 15.453 101.693 15.86 L 100.216 20.525 C 99.923 21.449 100.985 22.207 101.764 21.63 L 105.626 18.77 C 105.98 18.509 106.463 18.509 106.816 18.77 L 110.666 21.622 C 111.447 22.199 112.51 21.438 112.214 20.513 L 110.716 15.829 C 110.585 15.419 110.731 14.971 111.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:12814297881,withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tn66xa\",\"data-framer-name\":\"Card 6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hzs1fu\",\"data-framer-name\":\"Frame 152\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ynuc1b\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 41 32\"><path d=\"M 35.25 5 C 34.708 7.275 34.136 9.729 33.534 12.363 C 32.932 14.997 32.39 17.571 31.909 20.086 C 31.427 22.6 31.036 24.905 30.735 27 L 22.157 27 L 21.525 26.012 C 22.066 23.917 22.759 21.672 23.601 19.278 C 24.444 16.823 25.377 14.369 26.401 11.914 C 27.424 9.46 28.417 7.155 29.381 5 Z M 18.545 5 C 18.003 7.275 17.431 9.729 16.829 12.363 C 16.227 14.997 15.685 17.571 15.204 20.086 C 14.722 22.6 14.331 24.905 14.03 27 L 5.542 27 L 5 26.012 C 5.542 23.917 6.234 21.672 7.077 19.278 C 7.92 16.823 8.823 14.369 9.786 11.914 C 10.809 9.46 11.802 7.155 12.766 5 Z\" fill=\"#212121\"></path></svg>',svgContentId:10932454783,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qt3gct\",\"data-framer-name\":\"Frame 151\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c6qdyl\",\"data-styles-preset\":\"kxUW6TIQi\",children:\"Very wonderful app fast and easy to access they give you so much time to repay. Their repayment tenure is the most considerate. I add 1 more \uD83C\uDF1F for them 6star. I recommend that other user should try this app, you will be amazed. Nice work keep it up\"})}),className:\"framer-12j87yv\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mcrcic\",\"data-framer-name\":\"Frame 169\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qxwbdx-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"oknWW30jl\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"oknWW30jl\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"oknWW30jl\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tp6v4e\",\"data-framer-name\":\"Frame 150\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10aosv9\",\"data-styles-preset\":\"puKVzR1fK\",children:\"Jimmy Okpe\"})}),className:\"framer-14kybqn\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gy1jeq\",\"data-framer-name\":\"Frame 167\",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a6904r\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qwcyyt\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m5hn5a\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-1bc287h\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-flfpba\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xainb0\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 115 11.849 C 115.78 11.279 115.377 10.042 114.409 10.042 L 109.614 10.042 C 109.179 10.042 108.794 9.761 108.661 9.347 L 107.174 4.695 C 106.877 3.768 105.565 3.768 105.269 4.695 L 103.781 9.347 C 103.649 9.761 103.264 10.042 102.829 10.042 L 98.002 10.042 C 97.038 10.042 96.632 11.272 97.407 11.846 L 101.335 14.755 C 101.678 15.009 101.822 15.453 101.693 15.86 L 100.216 20.525 C 99.923 21.449 100.985 22.207 101.764 21.63 L 105.626 18.77 C 105.98 18.509 106.463 18.509 106.816 18.77 L 110.666 21.622 C 111.447 22.199 112.51 21.438 112.214 20.513 L 110.716 15.829 C 110.585 15.419 110.731 14.971 111.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:12814297881,withExternalLayout:true})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed18()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-exrzme-container hidden-1sdcd6k hidden-zrl0y7 hidden-1byztda hidden-11nr6f4\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jw5upfa4A\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true}},Sgj5dkty5:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",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:2,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"jw5upfa4A\",layoutId:\"jw5upfa4A\",padding:6,paddingBottom:6,paddingLeft:16,paddingPerSide:true,paddingRight:6,paddingTop:6,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fm47mc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iizxz2\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mdhvef\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12loxbe\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yuqe8o\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-13z65e4\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-16rnrjv\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ks0uul\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 115 11.849 C 115.78 11.279 115.377 10.042 114.409 10.042 L 109.614 10.042 C 109.179 10.042 108.794 9.761 108.661 9.347 L 107.174 4.695 C 106.877 3.768 105.565 3.768 105.269 4.695 L 103.781 9.347 C 103.649 9.761 103.264 10.042 102.829 10.042 L 98.002 10.042 C 97.038 10.042 96.632 11.272 97.407 11.846 L 101.335 14.755 C 101.678 15.009 101.822 15.453 101.693 15.86 L 100.216 20.525 C 99.923 21.449 100.985 22.207 101.764 21.63 L 105.626 18.77 C 105.98 18.509 106.463 18.509 106.816 18.77 L 110.666 21.622 C 111.447 22.199 112.51 21.438 112.214 20.513 L 110.716 15.829 C 110.585 15.419 110.731 14.971 111.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:12814297881,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vud7ck\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gplqy1\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 25\"><path d=\"M 20.802 2.93 C 20.482 4.263 20.145 5.701 19.789 7.244 C 19.434 8.787 19.114 10.296 18.83 11.769 C 18.546 13.242 18.315 14.593 18.138 15.82 L 13.075 15.82 L 12.702 15.242 C 13.022 14.014 13.43 12.698 13.928 11.295 C 14.425 9.857 14.976 8.419 15.58 6.981 C 16.184 5.543 16.77 4.192 17.338 2.93 Z M 10.944 2.93 C 10.624 4.263 10.287 5.701 9.931 7.244 C 9.576 8.787 9.256 10.296 8.972 11.769 C 8.688 13.242 8.457 14.593 8.279 15.82 L 3.27 15.82 L 2.951 15.242 C 3.27 14.014 3.679 12.698 4.176 11.295 C 4.674 9.857 5.206 8.419 5.775 6.981 C 6.379 5.543 6.965 4.192 7.533 2.93 Z\" fill=\"#212121\"></path></svg>',svgContentId:12521903312,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\"})}),className:\"framer-sz5ytr\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cz7kup\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vwh6fq-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"qZMmxOb6i\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"qZMmxOb6i\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"qZMmxOb6i\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"Akhagbemhe Joshua\"})}),className:\"framer-ghe8za\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yw8qwe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19xzz70\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cl5j7h\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15bi13v\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1leu7q3\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-1ln7qhg\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-19e54uy\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1glwao4\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 115 11.849 C 115.78 11.279 115.377 10.042 114.409 10.042 L 109.614 10.042 C 109.179 10.042 108.794 9.761 108.661 9.347 L 107.174 4.695 C 106.877 3.768 105.565 3.768 105.269 4.695 L 103.781 9.347 C 103.649 9.761 103.264 10.042 102.829 10.042 L 98.002 10.042 C 97.038 10.042 96.632 11.272 97.407 11.846 L 101.335 14.755 C 101.678 15.009 101.822 15.453 101.693 15.86 L 100.216 20.525 C 99.923 21.449 100.985 22.207 101.764 21.63 L 105.626 18.77 C 105.98 18.509 106.463 18.509 106.816 18.77 L 110.666 21.622 C 111.447 22.199 112.51 21.438 112.214 20.513 L 110.716 15.829 C 110.585 15.419 110.731 14.971 111.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:12814297881,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ch1jns\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-44f2fu\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 25\"><path d=\"M 20.802 2.93 C 20.482 4.263 20.145 5.701 19.789 7.244 C 19.434 8.787 19.114 10.296 18.83 11.769 C 18.546 13.242 18.315 14.593 18.138 15.82 L 13.075 15.82 L 12.702 15.242 C 13.022 14.014 13.43 12.698 13.928 11.295 C 14.425 9.857 14.976 8.419 15.58 6.981 C 16.184 5.543 16.77 4.192 17.338 2.93 Z M 10.944 2.93 C 10.624 4.263 10.287 5.701 9.931 7.244 C 9.576 8.787 9.256 10.296 8.972 11.769 C 8.688 13.242 8.457 14.593 8.279 15.82 L 3.27 15.82 L 2.951 15.242 C 3.27 14.014 3.679 12.698 4.176 11.295 C 4.674 9.857 5.206 8.419 5.775 6.981 C 6.379 5.543 6.965 4.192 7.533 2.93 Z\" fill=\"#212121\"></path></svg>',svgContentId:12521903312,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Wonderful experience! Thats all I will say. The best loan app for me so far with NO STRESS. Especially because of the long periods of time for repayment unlike all other apps. Very professional & ethical with their reminders.\"})}),className:\"framer-1u33g0x\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17hjf53\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y5tq1k-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"Fte0iau4K\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"Fte0iau4K\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"Fte0iau4K\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"Timi Ade\"})}),className:\"framer-8hkd5\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bgidc9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ksi7z6\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-natwvt\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-go8ach\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u74can\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-1puzcfb\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-1kwwoy5\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6bowz5\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 115 11.849 C 115.78 11.279 115.377 10.042 114.409 10.042 L 109.614 10.042 C 109.179 10.042 108.794 9.761 108.661 9.347 L 107.174 4.695 C 106.877 3.768 105.565 3.768 105.269 4.695 L 103.781 9.347 C 103.649 9.761 103.264 10.042 102.829 10.042 L 98.002 10.042 C 97.038 10.042 96.632 11.272 97.407 11.846 L 101.335 14.755 C 101.678 15.009 101.822 15.453 101.693 15.86 L 100.216 20.525 C 99.923 21.449 100.985 22.207 101.764 21.63 L 105.626 18.77 C 105.98 18.509 106.463 18.509 106.816 18.77 L 110.666 21.622 C 111.447 22.199 112.51 21.438 112.214 20.513 L 110.716 15.829 C 110.585 15.419 110.731 14.971 111.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:12814297881,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18ygfpp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nm50x3\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 25\"><path d=\"M 20.802 2.93 C 20.482 4.263 20.145 5.701 19.789 7.244 C 19.434 8.787 19.114 10.296 18.83 11.769 C 18.546 13.242 18.315 14.593 18.138 15.82 L 13.075 15.82 L 12.702 15.242 C 13.022 14.014 13.43 12.698 13.928 11.295 C 14.425 9.857 14.976 8.419 15.58 6.981 C 16.184 5.543 16.77 4.192 17.338 2.93 Z M 10.944 2.93 C 10.624 4.263 10.287 5.701 9.931 7.244 C 9.576 8.787 9.256 10.296 8.972 11.769 C 8.688 13.242 8.457 14.593 8.279 15.82 L 3.27 15.82 L 2.951 15.242 C 3.27 14.014 3.679 12.698 4.176 11.295 C 4.674 9.857 5.206 8.419 5.775 6.981 C 6.379 5.543 6.965 4.192 7.533 2.93 Z\" fill=\"#212121\"></path></svg>',svgContentId:12521903312,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"So I've tried dozens of loan apps and this is actually the best. The app is so easy to use and so friendly. For the first time I applied for a loan, the limit was unbelievable and mind blowing. Very low interest rate with so much time to pay. The exact money I applied for was disbursed into my account in few minutes. This is actually the best. 5 star for u guys.\"})}),className:\"framer-1na5qmu\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vu9tsl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wm4d8j-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"jR9Y1xYPV\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"jR9Y1xYPV\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"jR9Y1xYPV\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"Love Marvy\"})}),className:\"framer-4kp1qg\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f64qbh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-otuwd0\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rurdib\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rf3ag\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1one3k9\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-3bb455\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-1t1cmez\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c82w15\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 115 11.849 C 115.78 11.279 115.377 10.042 114.409 10.042 L 109.614 10.042 C 109.179 10.042 108.794 9.761 108.661 9.347 L 107.174 4.695 C 106.877 3.768 105.565 3.768 105.269 4.695 L 103.781 9.347 C 103.649 9.761 103.264 10.042 102.829 10.042 L 98.002 10.042 C 97.038 10.042 96.632 11.272 97.407 11.846 L 101.335 14.755 C 101.678 15.009 101.822 15.453 101.693 15.86 L 100.216 20.525 C 99.923 21.449 100.985 22.207 101.764 21.63 L 105.626 18.77 C 105.98 18.509 106.463 18.509 106.816 18.77 L 110.666 21.622 C 111.447 22.199 112.51 21.438 112.214 20.513 L 110.716 15.829 C 110.585 15.419 110.731 14.971 111.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:12814297881,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xznvl4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16htxjq\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 25\"><path d=\"M 20.802 2.93 C 20.482 4.263 20.145 5.701 19.789 7.244 C 19.434 8.787 19.114 10.296 18.83 11.769 C 18.546 13.242 18.315 14.593 18.138 15.82 L 13.075 15.82 L 12.702 15.242 C 13.022 14.014 13.43 12.698 13.928 11.295 C 14.425 9.857 14.976 8.419 15.58 6.981 C 16.184 5.543 16.77 4.192 17.338 2.93 Z M 10.944 2.93 C 10.624 4.263 10.287 5.701 9.931 7.244 C 9.576 8.787 9.256 10.296 8.972 11.769 C 8.688 13.242 8.457 14.593 8.279 15.82 L 3.27 15.82 L 2.951 15.242 C 3.27 14.014 3.679 12.698 4.176 11.295 C 4.674 9.857 5.206 8.419 5.775 6.981 C 6.379 5.543 6.965 4.192 7.533 2.93 Z\" fill=\"#212121\"></path></svg>',svgContentId:12521903312,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"This loan app is the best and most legit loan app I've tried so far \uD83D\uDE0D\uD83D\uDE18 Interest rate- perfect\uD83D\uDC4C. Disbursement- Flash\uD83D\uDE80 User interface- super friendly, the developers did a great job. If you're looking for loan app that has a high loan limit,long repayment time and extremely low interest rate.... You gotta try this one out \uD83D\uDCAF.\"})}),className:\"framer-lzqdjj\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f3wmr1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hbkhx6-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"HrOFTOEXB\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"HrOFTOEXB\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"HrOFTOEXB\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"Tiana\"})}),className:\"framer-12uweiq\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-en4ixu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ieway1\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gbaoha\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-r4a7k3\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pbmihv\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-ccz9w5\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-1toxako\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wue12w\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 115 11.849 C 115.78 11.279 115.377 10.042 114.409 10.042 L 109.614 10.042 C 109.179 10.042 108.794 9.761 108.661 9.347 L 107.174 4.695 C 106.877 3.768 105.565 3.768 105.269 4.695 L 103.781 9.347 C 103.649 9.761 103.264 10.042 102.829 10.042 L 98.002 10.042 C 97.038 10.042 96.632 11.272 97.407 11.846 L 101.335 14.755 C 101.678 15.009 101.822 15.453 101.693 15.86 L 100.216 20.525 C 99.923 21.449 100.985 22.207 101.764 21.63 L 105.626 18.77 C 105.98 18.509 106.463 18.509 106.816 18.77 L 110.666 21.622 C 111.447 22.199 112.51 21.438 112.214 20.513 L 110.716 15.829 C 110.585 15.419 110.731 14.971 111.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:12814297881,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1316zlt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nc8h9c\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 25\"><path d=\"M 20.802 2.93 C 20.482 4.263 20.145 5.701 19.789 7.244 C 19.434 8.787 19.114 10.296 18.83 11.769 C 18.546 13.242 18.315 14.593 18.138 15.82 L 13.075 15.82 L 12.702 15.242 C 13.022 14.014 13.43 12.698 13.928 11.295 C 14.425 9.857 14.976 8.419 15.58 6.981 C 16.184 5.543 16.77 4.192 17.338 2.93 Z M 10.944 2.93 C 10.624 4.263 10.287 5.701 9.931 7.244 C 9.576 8.787 9.256 10.296 8.972 11.769 C 8.688 13.242 8.457 14.593 8.279 15.82 L 3.27 15.82 L 2.951 15.242 C 3.27 14.014 3.679 12.698 4.176 11.295 C 4.674 9.857 5.206 8.419 5.775 6.981 C 6.379 5.543 6.965 4.192 7.533 2.93 Z\" fill=\"#212121\"></path></svg>',svgContentId:12521903312,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"The very best loan app I have personally experienced. Infact If I could I would give them 10stars. The app is very user friendly , fantastically low interest rates and have no hidden charges . I highly recommend to anybody looking for a quick loan .\"})}),className:\"framer-6mmzut\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bvmney\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c2s7mm-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"zUv4kNjQd\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"zUv4kNjQd\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"zUv4kNjQd\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"Michael Nwosu\"})}),className:\"framer-179j5ae\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yr0iox\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12yvunq\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gl3iuy\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2qk3tb\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fi0dz8\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-157ntzj\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"ratings\"})}),className:\"framer-4udpqb\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yy05b3\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 25\"><path d=\"M 20.778 11.757 C 21.559 11.186 21.155 9.95 20.188 9.95 L 15.393 9.95 C 14.958 9.95 14.573 9.669 14.44 9.255 L 12.953 4.603 C 12.656 3.676 11.344 3.676 11.047 4.603 L 9.56 9.255 C 9.427 9.669 9.042 9.95 8.607 9.95 L 3.781 9.95 C 2.817 9.95 2.411 11.18 3.186 11.754 L 7.114 14.663 C 7.457 14.917 7.601 15.361 7.472 15.768 L 5.995 20.433 C 5.702 21.357 6.764 22.115 7.543 21.538 L 11.405 18.678 C 11.758 18.416 12.242 18.416 12.595 18.678 L 16.445 21.529 C 17.226 22.107 18.289 21.346 17.993 20.421 L 16.494 15.736 C 16.363 15.326 16.509 14.879 16.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 44.778 11.757 C 45.559 11.186 45.155 9.95 44.188 9.95 L 39.393 9.95 C 38.958 9.95 38.573 9.669 38.44 9.255 L 36.953 4.603 C 36.656 3.676 35.344 3.676 35.047 4.603 L 33.56 9.255 C 33.427 9.669 33.042 9.95 32.607 9.95 L 27.781 9.95 C 26.817 9.95 26.411 11.18 27.186 11.754 L 31.114 14.663 C 31.457 14.917 31.601 15.361 31.472 15.768 L 29.994 20.433 C 29.702 21.357 30.764 22.115 31.543 21.538 L 35.405 18.678 C 35.758 18.416 36.242 18.416 36.595 18.678 L 40.445 21.529 C 41.225 22.107 42.289 21.346 41.993 20.421 L 40.495 15.736 C 40.363 15.326 40.509 14.879 40.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 115 11.849 C 115.78 11.279 115.377 10.042 114.409 10.042 L 109.614 10.042 C 109.179 10.042 108.794 9.761 108.661 9.347 L 107.174 4.695 C 106.877 3.768 105.565 3.768 105.269 4.695 L 103.781 9.347 C 103.649 9.761 103.264 10.042 102.829 10.042 L 98.002 10.042 C 97.038 10.042 96.632 11.272 97.407 11.846 L 101.335 14.755 C 101.678 15.009 101.822 15.453 101.693 15.86 L 100.216 20.525 C 99.923 21.449 100.985 22.207 101.764 21.63 L 105.626 18.77 C 105.98 18.509 106.463 18.509 106.816 18.77 L 110.666 21.622 C 111.447 22.199 112.51 21.438 112.214 20.513 L 110.716 15.829 C 110.585 15.419 110.731 14.971 111.078 14.717 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 68.778 11.757 C 69.559 11.186 69.155 9.95 68.188 9.95 L 63.393 9.95 C 62.958 9.95 62.573 9.669 62.44 9.255 L 60.953 4.603 C 60.656 3.676 59.344 3.676 59.047 4.603 L 57.56 9.255 C 57.427 9.669 57.042 9.95 56.607 9.95 L 51.781 9.95 C 50.817 9.95 50.411 11.18 51.186 11.754 L 55.114 14.663 C 55.457 14.917 55.601 15.361 55.472 15.768 L 53.995 20.433 C 53.702 21.357 54.764 22.115 55.543 21.538 L 59.405 18.678 C 59.758 18.416 60.242 18.416 60.595 18.678 L 64.445 21.529 C 65.225 22.107 66.289 21.346 65.993 20.421 L 64.495 15.736 C 64.363 15.326 64.509 14.879 64.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 92.778 11.757 C 93.559 11.186 93.155 9.95 92.188 9.95 L 87.393 9.95 C 86.958 9.95 86.573 9.669 86.44 9.255 L 84.953 4.603 C 84.656 3.676 83.344 3.676 83.047 4.603 L 81.56 9.255 C 81.427 9.669 81.042 9.95 80.607 9.95 L 75.781 9.95 C 74.817 9.95 74.411 11.18 75.186 11.754 L 79.114 14.663 C 79.457 14.917 79.601 15.361 79.472 15.768 L 77.995 20.433 C 77.702 21.357 78.764 22.115 79.543 21.538 L 83.405 18.678 C 83.758 18.416 84.242 18.416 84.595 18.678 L 88.445 21.529 C 89.225 22.107 90.289 21.346 89.993 20.421 L 88.495 15.736 C 88.363 15.326 88.509 14.879 88.857 14.625 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:12814297881,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tshb6t\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u3osh8\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 25\"><path d=\"M 20.802 2.93 C 20.482 4.263 20.145 5.701 19.789 7.244 C 19.434 8.787 19.114 10.296 18.83 11.769 C 18.546 13.242 18.315 14.593 18.138 15.82 L 13.075 15.82 L 12.702 15.242 C 13.022 14.014 13.43 12.698 13.928 11.295 C 14.425 9.857 14.976 8.419 15.58 6.981 C 16.184 5.543 16.77 4.192 17.338 2.93 Z M 10.944 2.93 C 10.624 4.263 10.287 5.701 9.931 7.244 C 9.576 8.787 9.256 10.296 8.972 11.769 C 8.688 13.242 8.457 14.593 8.279 15.82 L 3.27 15.82 L 2.951 15.242 C 3.27 14.014 3.679 12.698 4.176 11.295 C 4.674 9.857 5.206 8.419 5.775 6.981 C 6.379 5.543 6.965 4.192 7.533 2.93 Z\" fill=\"#212121\"></path></svg>',svgContentId:12521903312,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Very wonderful app fast and easy to access they give you so much time to repay. Their repayment tenure is the most considerate. I add 1 more \uD83C\uDF1F for them 6star. I recommend that other user should try this app, you will be amazed. Nice work keep it up\"})}),className:\"framer-1j31oyy\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rok8r\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vwz0t8-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"H5NgrpRnn\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"H5NgrpRnn\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"H5NgrpRnn\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:\"Jimmy okpe\"})}),className:\"framer-sh531k\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed19()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+4256),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}},Sgj5dkty5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+4256),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}},w26RXKWOR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+4229),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"},className:\"framer-9fu5kk hidden-1byztda hidden-11nr6f4\",\"data-framer-name\":\"Grid 1\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h15xgf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Our Blog Post Keeps \",/*#__PURE__*/_jsx(\"br\",{}),\"you Financially Updated\"]})})},Sgj5dkty5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Our Blog Post Keeps \",/*#__PURE__*/_jsx(\"br\",{}),\"you Financially Updated\"]})})},w26RXKWOR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Our Blog Post Keeps \",/*#__PURE__*/_jsx(\"br\",{}),\"you Financially Updated\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Our Blog Keeps you \",/*#__PURE__*/_jsx(\"br\",{}),\"Financially Updated\"]})}),className:\"framer-5hhyds\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed20()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7lprn hidden-q8bk69 hidden-3k4tzq hidden-9my2zq\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.quickcheck.ng/blog/maximizing-the-impact-of-a-business-loan-smart-investment-strategies\",motionChild:true,nodeId:\"Z1_Oj0EBI\",openInNewTab:false,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-qmkwad framer-e83szg\",\"data-framer-name\":\"Cards\",whileHover:animation2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PckjIwRYk:{background:{alt:\"Are Loan Apps Legal? Discover CBN Approved Loan Apps for Urgent Loans in Nigeria. Never fall for illegal loan sharks anymore\",fit:\"fill\",intrinsicHeight:630,intrinsicWidth:480,pixelHeight:2150,pixelWidth:1788,positionX:\"right\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/JiDv1fvc2EQlngVwBgKzT9cJDzk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/JiDv1fvc2EQlngVwBgKzT9cJDzk.png?scale-down-to=1024 851w,https://framerusercontent.com/images/JiDv1fvc2EQlngVwBgKzT9cJDzk.png?scale-down-to=2048 1703w,https://framerusercontent.com/images/JiDv1fvc2EQlngVwBgKzT9cJDzk.png 1788w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Are Loan Apps Legal? Discover CBN Approved Loan Apps for Urgent Loans in Nigeria. Never fall for illegal loan sharks anymore\",fit:\"fill\",intrinsicHeight:630,intrinsicWidth:480,pixelHeight:2150,pixelWidth:1788,positionX:\"right\",positionY:\"center\",sizes:\"309.3333px\",src:\"https://framerusercontent.com/images/JiDv1fvc2EQlngVwBgKzT9cJDzk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/JiDv1fvc2EQlngVwBgKzT9cJDzk.png?scale-down-to=1024 851w,https://framerusercontent.com/images/JiDv1fvc2EQlngVwBgKzT9cJDzk.png?scale-down-to=2048 1703w,https://framerusercontent.com/images/JiDv1fvc2EQlngVwBgKzT9cJDzk.png 1788w\"},className:\"framer-boplow\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cuxw0\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"List of Loan Apps Approved by CBN: Top Trusted Options\"})}),className:\"framer-2luima\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Yd6TNP9T7:\"key-difference-between-business-and-personal-loans\"},unresolvedPathSlugs:{Yd6TNP9T7:{collectionId:\"TI61buf51\",collectionItemId:\"AEc6ZlwOL\"}},webPageId:\"lxxwdS_OD\"},motionChild:true,nodeId:\"VWGaTV7Pu\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1p3wn9b framer-e83szg\",\"data-framer-name\":\"Cards\",whileHover:animation2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PckjIwRYk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:3e3,pixelHeight:1296,pixelWidth:1702,sizes:`max((${componentViewport?.width||\"100vw\"} - 160px) / 3, 200px)`,src:\"https://framerusercontent.com/images/2nEmqrVyQfYbI2sdqiF8vcZLjgw.png\",srcSet:\"https://framerusercontent.com/images/2nEmqrVyQfYbI2sdqiF8vcZLjgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/2nEmqrVyQfYbI2sdqiF8vcZLjgw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2nEmqrVyQfYbI2sdqiF8vcZLjgw.png 1702w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:3e3,pixelHeight:1296,pixelWidth:1702,sizes:\"309.3333px\",src:\"https://framerusercontent.com/images/2nEmqrVyQfYbI2sdqiF8vcZLjgw.png\",srcSet:\"https://framerusercontent.com/images/2nEmqrVyQfYbI2sdqiF8vcZLjgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/2nEmqrVyQfYbI2sdqiF8vcZLjgw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2nEmqrVyQfYbI2sdqiF8vcZLjgw.png 1702w\"},className:\"framer-1rdkk1l\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ct4qk5\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PckjIwRYk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Key differences between business and personal loans\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Unlocking Opportunities: A Comprehensive Guide to Securing Business Loans in Nigeria\"})}),className:\"framer-ss208b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),isDisplayed11()&&/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Yd6TNP9T7:\"key-difference-between-business-and-personal-loans\"},unresolvedPathSlugs:{Yd6TNP9T7:{collectionId:\"TI61buf51\",collectionItemId:\"AEc6ZlwOL\"}},webPageId:\"lxxwdS_OD\"},motionChild:true,nodeId:\"fFZJgHloo\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-2xg4my hidden-1sdcd6k framer-e83szg\",\"data-framer-name\":\"Cards\",whileHover:animation2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PckjIwRYk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"167px\",src:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg\",srcSet:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,src:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg\",srcSet:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg 6000w\"},className:\"framer-cy50r3\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-40l706\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"How to maintain a good credit score\"})}),className:\"framer-1ivj8fv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed10()&&/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Yd6TNP9T7:\"how-to-maintain-good-credit-score\"},unresolvedPathSlugs:{Yd6TNP9T7:{collectionId:\"TI61buf51\",collectionItemId:\"rjkAkIkvR\"}},webPageId:\"lxxwdS_OD\"},motionChild:true,nodeId:\"IYVOry8hq\",openInNewTab:false,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-45bagc hidden-zrl0y7 framer-e83szg\",\"data-framer-name\":\"Cards\",whileHover:animation2,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"309.3333px\",src:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg\",srcSet:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg 6000w\"},className:\"framer-xc5grn\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vwepbu\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"How to maintain a good credit score\"})}),className:\"framer-5iooym\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),isDisplayed21()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k9xt7a-container hidden-1sdcd6k hidden-zrl0y7\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HdKujNVEs\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",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:16,height:\"100%\",id:\"HdKujNVEs\",layoutId:\"HdKujNVEs\",padding:10,paddingBottom:24,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:20,dotsInset:0,dotSize:17,dotsOpacity:.5,dotsPadding:5,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:366,width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1anx7mf-container\",inComponentSlot:true,nodeId:\"TknnsBGQm\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"TknnsBGQm\",Io3FopVMU:\"List of Loan Apps Approved by CBN: Top Trusted Options\",layoutId:\"TknnsBGQm\",style:{width:\"100%\"},variant:\"HPTeVVbro\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Yd6TNP9T7:\"key-difference-between-business-and-personal-loans\"},unresolvedPathSlugs:{Yd6TNP9T7:{collectionId:\"TI61buf51\",collectionItemId:\"AEc6ZlwOL\"}},webPageId:\"lxxwdS_OD\"},motionChild:true,nodeId:\"jZVxGY7lR\",openInNewTab:false,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1ptrzrd framer-e83szg\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:3e3,pixelHeight:1200,pixelWidth:3e3,sizes:\"200px\",src:\"https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg\",srcSet:\"https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg 3000w\"},className:\"framer-rz32x8\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ubj0o6\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Key difference between  business and personal loans\"})}),className:\"framer-4zv4u9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Yd6TNP9T7:\"how-to-maintain-good-credit-score\"},unresolvedPathSlugs:{Yd6TNP9T7:{collectionId:\"TI61buf51\",collectionItemId:\"rjkAkIkvR\"}},webPageId:\"lxxwdS_OD\"},motionChild:true,nodeId:\"A0oG6RNjR\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1bs4xpz framer-e83szg\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Nigerian Naira currency\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"200px\",src:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg\",srcSet:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg 6000w\"},className:\"framer-3oyz0y\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8rbcc7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"How to maintain a good credit score\"})}),className:\"framer-1wwlzxn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jjz9x6\"})]})]})})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{y:(componentViewport?.y||0)+94+4256+32+280},Sgj5dkty5:{y:(componentViewport?.y||0)+94+4256+32+280},w26RXKWOR:{y:(componentViewport?.y||0)+94+4229+32+280}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dfgoj2-container\",nodeId:\"vUbGx0iLo\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(PlaystoreButton,{height:\"100%\",id:\"vUbGx0iLo\",layoutId:\"vUbGx0iLo\",variant:\"rEej9LoSM\",width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xbs8s2 hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-11nr6f4 hidden-9my2zq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8zw4a1\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17arq34\",\"data-styles-preset\":\"HTngTInJQ\",style:{\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"FAQ\"})}),className:\"framer-us3gei\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s9wz72\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hc9fif-container\",nodeId:\"i75qndvyI\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(AccordionCopy7,{height:\"100%\",id:\"i75qndvyI\",layoutId:\"i75qndvyI\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-192f0009-f038-4230-bd5a-27066239e9e8, rgb(33, 33, 33))\"},children:\"Didn't see your question here?\"}),\" \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ACiWgqds0\"},motionChild:true,nodeId:\"WFnvuQXxT\",openInNewTab:false,scopeId:\"FsyjeqdGR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vxilts\",\"data-styles-preset\":\"oGAdN4BPw\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Read more\"})})}),/*#__PURE__*/_jsx(\"strong\",{children:\" or \"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jBR0xMkA5\"},motionChild:true,nodeId:\"WFnvuQXxT\",openInNewTab:false,scopeId:\"FsyjeqdGR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vxilts\",\"data-styles-preset\":\"oGAdN4BPw\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Get in touch\"})})})]})}),className:\"framer-1cp2x65\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:83,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-11vqibd-container\",\"data-framer-appear-id\":\"11vqibd\",initial:animation4,layoutScroll:true,nodeId:\"r2nYCzQHE\",optimized:true,rendersWithMotion:true,scopeId:\"FsyjeqdGR\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{variant:\"zsVD8uUU_\"},e4M1Dw9FX:{variant:\"zsVD8uUU_\"},PckjIwRYk:{variant:\"Li7JiZkSW\"},rFNYG_3Bu:{variant:\"Li7JiZkSW\"},Sgj5dkty5:{variant:\"zsVD8uUU_\"},w26RXKWOR:{variant:\"W93QhEGLQ\"}},children:/*#__PURE__*/_jsx(NavbarDarkCopy,{height:\"100%\",id:\"r2nYCzQHE\",layoutId:\"r2nYCzQHE\",style:{width:\"100%\"},variant:\"P2a_qDHWg\",width:\"100%\"})})})}),isDisplayed11()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13t6zzj-container hidden-1sdcd6k hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-11nr6f4 hidden-9my2zq\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PrwTyhHJT\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<script>\\n\twindow.fwSettings={\\n\t'widget_id':44000004222\\n\t};\\n\t!function(){if(\\\"function\\\"!=typeof window.FreshworksWidget){var n=function(){n.q.push(arguments)};n.q=[],window.FreshworksWidget=n}}() \\n</script>\\n<script type='text/javascript' src='https://widget.freshworks.com/widgets/44000004222.js' async defer></script>\",id:\"PrwTyhHJT\",layoutId:\"PrwTyhHJT\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),isDisplayed21()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-chn67i-container hidden-1sdcd6k hidden-zrl0y7 hidden-1byztda hidden-11nr6f4\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h5ykDP0Ue\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<script>\\n\twindow.fwSettings={\\n\t'widget_id':44000004222\\n\t};\\n\t!function(){if(\\\"function\\\"!=typeof window.FreshworksWidget){var n=function(){n.q.push(arguments)};n.q=[],window.FreshworksWidget=n}}() \\n</script>\\n<script type='text/javascript' src='https://widget.freshworks.com/widgets/44000004222.js' async defer></script>\",id:\"h5ykDP0Ue\",layoutId:\"h5ykDP0Ue\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),isDisplayed16()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19fun4y-container hidden-1sdcd6k hidden-zrl0y7 hidden-q8bk69 hidden-3k4tzq hidden-9my2zq\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vCJSE5lOf\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<script>\\n\twindow.fwSettings={\\n\t'widget_id':44000004222\\n\t};\\n\t!function(){if(\\\"function\\\"!=typeof window.FreshworksWidget){var n=function(){n.q.push(arguments)};n.q=[],window.FreshworksWidget=n}}() \\n</script>\\n<script type='text/javascript' src='https://widget.freshworks.com/widgets/44000004222.js' async defer></script>\",id:\"vCJSE5lOf\",layoutId:\"vCJSE5lOf\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),isDisplayed22()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+4185),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,pixelHeight:1600,pixelWidth:3e3,src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"},className:\"framer-1t3u76s hidden-1sdcd6k hidden-zrl0y7 hidden-q8bk69 hidden-3k4tzq hidden-11nr6f4 hidden-9my2zq\",\"data-framer-name\":\"Grid 1\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-25bdf4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Our blog post keeps \",/*#__PURE__*/_jsx(\"br\",{}),\"you financially updated\"]})}),className:\"framer-1jtai4n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16thnne-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kObypE8P6\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",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:16,height:\"100%\",id:\"kObypE8P6\",layoutId:\"kObypE8P6\",padding:10,paddingBottom:24,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:20,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:5,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:366,width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1anx7mf-container\",inComponentSlot:true,nodeId:\"TknnsBGQm\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"TknnsBGQm\",Io3FopVMU:\"List of Loan Apps Approved by CBN: Top Trusted Options\",layoutId:\"TknnsBGQm\",style:{width:\"100%\"},variant:\"HPTeVVbro\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Yd6TNP9T7:\"key-difference-between-business-and-personal-loans\"},unresolvedPathSlugs:{Yd6TNP9T7:{collectionId:\"TI61buf51\",collectionItemId:\"AEc6ZlwOL\"}},webPageId:\"lxxwdS_OD\"},motionChild:true,nodeId:\"jZVxGY7lR\",openInNewTab:false,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1ptrzrd framer-e83szg\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:3e3,pixelHeight:1200,pixelWidth:3e3,sizes:\"200px\",src:\"https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg\",srcSet:\"https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg 3000w\"},className:\"framer-rz32x8\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ubj0o6\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Key difference between  business and personal loans\"})}),className:\"framer-4zv4u9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Yd6TNP9T7:\"how-to-maintain-good-credit-score\"},unresolvedPathSlugs:{Yd6TNP9T7:{collectionId:\"TI61buf51\",collectionItemId:\"rjkAkIkvR\"}},webPageId:\"lxxwdS_OD\"},motionChild:true,nodeId:\"A0oG6RNjR\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1bs4xpz framer-e83szg\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Nigerian Naira currency\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"200px\",src:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg\",srcSet:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg 6000w\"},className:\"framer-3oyz0y\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8rbcc7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"How to maintain a good credit score\"})}),className:\"framer-1wwlzxn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jjz9x6\"})]})]})})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e4M1Dw9FX:{y:(componentViewport?.y||0)+94+4185+32+280}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1driom5-container\",nodeId:\"LdZhEfdTo\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(PlaystoreButton,{height:\"100%\",id:\"LdZhEfdTo\",layoutId:\"LdZhEfdTo\",variant:\"rEej9LoSM\",width:\"100%\"})})})})]})}),isDisplayed22()&&/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3},className:\"framer-1xhix4y hidden-1sdcd6k hidden-zrl0y7 hidden-q8bk69 hidden-3k4tzq hidden-11nr6f4 hidden-9my2zq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13vfe5o\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-90ip3w\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-1raslpe\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:682.6666666666666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+734+13+1),pixelHeight:648,pixelWidth:1024,sizes:\"41px\",src:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png\",srcSet:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:682.6666666666666,pixelHeight:648,pixelWidth:1024,sizes:\"41px\",src:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png\",srcSet:\"https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QeWWu60RiEfYorYTpzNwvxSPEk.png 1024w\"},className:\"framer-yc85yl\",\"data-framer-name\":\"transparent_bg_min_1024x648\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d7aoju\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740},className:\"framer-1isthn8\",\"data-framer-name\":\"NDPC\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.66666666666667,intrinsicWidth:154.66666666666666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+734+12+1),pixelHeight:118,pixelWidth:232,src:\"https://framerusercontent.com/images/RCMFlnl02KCW03yNkktUUkNvyFQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.66666666666667,intrinsicWidth:154.66666666666666,pixelHeight:118,pixelWidth:232,src:\"https://framerusercontent.com/images/RCMFlnl02KCW03yNkktUUkNvyFQ.png\"},className:\"framer-x2oatv\",\"data-framer-name\":\"Frame_187\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e4M1Dw9FX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+734+14),pixelHeight:380,pixelWidth:1110,sizes:\"76px\",src:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg 1110w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:253.33333333333334,intrinsicWidth:740,pixelHeight:380,pixelWidth:1110,sizes:\"76px\",src:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ssEqwAOV391ut6mIbMQYI4fk4Qw.jpg 1110w\"},className:\"framer-18r4jxg\",\"data-framer-name\":\"NDPC\"})})]}),isDisplayed14()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+3853),pixelHeight:1600,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:3e3,pixelHeight:1600,pixelWidth:3e3,src:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg\",srcSet:\"https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pmes3T0827hLQEcRMFbvMeYjNlk.jpg 3000w\"},className:\"framer-165uguz hidden-1sdcd6k hidden-zrl0y7 hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-9my2zq\",\"data-framer-name\":\"Grid 1\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4lbmm7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1p2ghov\",\"data-styles-preset\":\"X9uK9vBZy\",children:[\"Our Blog Keeps you \",/*#__PURE__*/_jsx(\"br\",{}),\"Financially Updated\"]})}),className:\"framer-1b3f4sf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ububqv\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Yd6TNP9T7:\"managing-debt-tips-for-repaying-business-loans-in-time\"},unresolvedPathSlugs:{Yd6TNP9T7:{collectionId:\"TI61buf51\",collectionItemId:\"f4ansqnVT\"}},webPageId:\"lxxwdS_OD\"},motionChild:true,nodeId:\"jbRByXzK7\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-g6uyol framer-e83szg\",\"data-framer-name\":\"Cards\",whileHover:animation2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"List of Loan Apps Approved by CBN: Top Trusted Options\",fit:\"fill\",intrinsicHeight:630,intrinsicWidth:554,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+3853+32+89.5+0+0+0+0),pixelHeight:2150,pixelWidth:1866,sizes:\"213px\",src:\"https://framerusercontent.com/images/OEe8xrQyYzOFIxhhZZMiQmG1W0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OEe8xrQyYzOFIxhhZZMiQmG1W0.png?scale-down-to=1024 888w,https://framerusercontent.com/images/OEe8xrQyYzOFIxhhZZMiQmG1W0.png?scale-down-to=2048 1777w,https://framerusercontent.com/images/OEe8xrQyYzOFIxhhZZMiQmG1W0.png 1866w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"List of Loan Apps Approved by CBN: Top Trusted Options\",fit:\"fill\",intrinsicHeight:630,intrinsicWidth:554,pixelHeight:2150,pixelWidth:1866,sizes:\"213px\",src:\"https://framerusercontent.com/images/OEe8xrQyYzOFIxhhZZMiQmG1W0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OEe8xrQyYzOFIxhhZZMiQmG1W0.png?scale-down-to=1024 888w,https://framerusercontent.com/images/OEe8xrQyYzOFIxhhZZMiQmG1W0.png?scale-down-to=2048 1777w,https://framerusercontent.com/images/OEe8xrQyYzOFIxhhZZMiQmG1W0.png 1866w\"},className:\"framer-q6xfa5\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1url1ib\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"List of Loan Apps Approved by CBN: Top Trusted Options\"})}),className:\"framer-10del87\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Yd6TNP9T7:\"key-difference-between-business-and-personal-loans\"},unresolvedPathSlugs:{Yd6TNP9T7:{collectionId:\"TI61buf51\",collectionItemId:\"AEc6ZlwOL\"}},webPageId:\"lxxwdS_OD\"},motionChild:true,nodeId:\"Jdnszg_u0\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1qouef9 framer-e83szg\",\"data-framer-name\":\"Cards\",whileHover:animation2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+3853+32+89.5+0+0+0+0),pixelHeight:1200,pixelWidth:3e3,sizes:`max((${componentViewport?.width||\"100vw\"} - 160px) / 3, 200px)`,src:\"https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg\",srcSet:\"https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:3e3,pixelHeight:1200,pixelWidth:3e3,src:\"https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg\",srcSet:\"https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GhlVEVxcNjr41NoyRPKzkinpA.jpg 3000w\"},className:\"framer-8ku3m6\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fb1soy\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Key differences between business and personal loans\"})}),className:\"framer-w3d21m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Yd6TNP9T7:\"key-difference-between-business-and-personal-loans\"},unresolvedPathSlugs:{Yd6TNP9T7:{collectionId:\"TI61buf51\",collectionItemId:\"AEc6ZlwOL\"}},webPageId:\"lxxwdS_OD\"},motionChild:true,nodeId:\"FcSsDsoR5\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1z002n3 framer-e83szg\",\"data-framer-name\":\"Cards\",whileHover:animation2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94+3853+32+89.5+0+0+0+0),pixelHeight:4e3,pixelWidth:6e3,sizes:\"214px\",src:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg\",srcSet:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"214px\",src:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg\",srcSet:\"https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/m07pxl6s40Ikl3QdHD82PPDRy8.jpg 6000w\"},className:\"framer-1981rzf\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1knulxl\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"How to maintain a good credit score\"})}),className:\"framer-pkuemi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rFNYG_3Bu:{y:(componentViewport?.y||0)+94+3853+32+488.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-enfarp-container\",nodeId:\"rr4sMPYtE\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(PlaystoreButton,{height:\"100%\",id:\"rr4sMPYtE\",layoutId:\"rr4sMPYtE\",variant:\"rEej9LoSM\",width:\"100%\"})})})})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c4alwg hidden-1sdcd6k hidden-zrl0y7 hidden-q8bk69 hidden-1byztda hidden-3k4tzq hidden-11nr6f4\",\"data-framer-name\":\"Testimonial\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8kl64i-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lk4djXQ_o\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},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:\"lk4djXQ_o\",layoutId:\"lk4djXQ_o\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cxhvxn\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u2a0s2\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ty8h8m\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jfq95l\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ijgc1x\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-1ike5kx\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-19cqszb\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m1isv1\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v6e9t9\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uumx7g\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 16\"><path d=\"M 17.195 2.5 C 16.931 3.637 16.652 4.865 16.358 6.182 C 16.065 7.499 15.8 8.786 15.565 10.043 C 15.33 11.3 15.14 12.452 14.993 13.5 L 10.808 13.5 L 10.5 13.006 C 10.764 11.959 11.102 10.836 11.513 9.639 C 11.924 8.412 12.379 7.184 12.878 5.957 C 13.378 4.73 13.862 3.578 14.332 2.5 Z M 9.046 2.5 C 8.782 3.637 8.503 4.865 8.209 6.182 C 7.916 7.499 7.651 8.786 7.416 10.043 C 7.182 11.3 6.991 12.452 6.844 13.5 L 2.703 13.5 L 2.439 13.006 C 2.703 11.959 3.041 10.836 3.452 9.639 C 3.863 8.412 4.304 7.184 4.774 5.957 C 5.273 4.73 5.757 3.578 6.227 2.5 Z\" fill=\"#212121\"></path></svg>',svgContentId:10288557446,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\"})}),className:\"framer-1x8v7z8\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c3ek87\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vo23fl-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"JIv0iDeaw\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"JIv0iDeaw\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"JIv0iDeaw\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Akhagbemhe Joshua\"})}),className:\"framer-1q7b8gz\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6qtule\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ox3cfy\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aa1bhx\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jza5op\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ln8zm3\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-1dpxk24\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-13chdvx\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ve84rb\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-123juq2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zmwq6k\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 18\"><path d=\"M 19.897 2.685 C 19.591 3.906 19.269 5.224 18.929 6.638 C 18.589 8.053 18.283 9.435 18.011 10.785 C 17.74 12.135 17.519 13.372 17.349 14.497 L 12.507 14.497 L 12.15 13.967 C 12.456 12.842 12.846 11.636 13.322 10.351 C 13.798 9.033 14.325 7.715 14.902 6.397 C 15.48 5.079 16.04 3.842 16.584 2.685 Z M 10.468 2.685 C 10.162 3.906 9.839 5.224 9.499 6.638 C 9.16 8.053 8.854 9.435 8.582 10.785 C 8.31 12.135 8.089 13.372 7.919 14.497 L 3.128 14.497 L 2.822 13.967 C 3.128 12.842 3.519 11.636 3.995 10.351 C 4.47 9.033 4.98 7.715 5.524 6.397 C 6.101 5.079 6.662 3.842 7.206 2.685 Z\" fill=\"#212121\"></path></svg>',svgContentId:11159924837,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Wonderful experience! Thats all I will say. The best loan app for me so far with NO STRESS. Especially because of the long periods of time for repayment unlike all other apps. Very professional & ethical with their reminders.\"})}),className:\"framer-db86z2\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ca4g4l\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xp3j2l-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"VFdvD816n\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"VFdvD816n\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"VFdvD816n\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Timi Ade\"})}),className:\"framer-4me94u\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ivo3qm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xyrnnd\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c50bmw\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1diafah\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zneg13\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-4ou9mi\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-54mnfw\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cumdhx\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dbuxqv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-59ajju\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 19\"><path d=\"M 20.634 2.969 C 20.317 4.319 19.982 5.777 19.63 7.341 C 19.277 8.905 18.96 10.433 18.678 11.926 C 18.397 13.419 18.167 14.787 17.991 16.031 L 12.97 16.031 L 12.6 15.445 C 12.917 14.201 13.322 12.868 13.816 11.446 C 14.309 9.989 14.855 8.531 15.454 7.074 C 16.053 5.617 16.635 4.248 17.198 2.969 Z M 10.855 2.969 C 10.538 4.319 10.204 5.777 9.851 7.341 C 9.499 8.905 9.182 10.433 8.9 11.926 C 8.618 13.419 8.389 14.787 8.213 16.031 L 3.244 16.031 L 2.927 15.445 C 3.244 14.201 3.649 12.868 4.143 11.446 C 4.636 9.989 5.164 8.531 5.728 7.074 C 6.327 5.617 6.909 4.248 7.473 2.969 Z\" fill=\"#212121\"></path></svg>',svgContentId:11016904721,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"So I've tried dozens of loan apps and this is actually the best. The app is so easy to use and so friendly. For the first time I applied for a loan, the limit was unbelievable and mind blowing. Very low interest rate with so much time to pay. The exact money I applied for was disbursed into my account in few minutes. This is actually the best. 5 star for u guys.\"})}),className:\"framer-1jvitmp\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1arndhp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13xoooh-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"ij_NusAiy\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"ij_NusAiy\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"ij_NusAiy\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Love Marvy\"})}),className:\"framer-c3ovnw\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bljbds\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11eeqol\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ephsso\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11op79i\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nnvjar\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-xrndps\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-z3xdco\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1afioyo\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jykjb6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b6urr2\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 19\"><path d=\"M 20.634 2.969 C 20.317 4.319 19.982 5.777 19.63 7.341 C 19.277 8.905 18.96 10.433 18.678 11.926 C 18.397 13.419 18.167 14.787 17.991 16.031 L 12.97 16.031 L 12.6 15.445 C 12.917 14.201 13.322 12.868 13.816 11.446 C 14.309 9.989 14.855 8.531 15.454 7.074 C 16.053 5.617 16.635 4.248 17.198 2.969 Z M 10.855 2.969 C 10.538 4.319 10.204 5.777 9.851 7.341 C 9.499 8.905 9.182 10.433 8.9 11.926 C 8.618 13.419 8.389 14.787 8.213 16.031 L 3.244 16.031 L 2.927 15.445 C 3.244 14.201 3.649 12.868 4.143 11.446 C 4.636 9.989 5.164 8.531 5.728 7.074 C 6.327 5.617 6.909 4.248 7.473 2.969 Z\" fill=\"#212121\"></path></svg>',svgContentId:11016904721,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"This loan app is the best and most legit loan app I've tried so far \uD83D\uDE0D\uD83D\uDE18 Interest rate- perfect\uD83D\uDC4C. Disbursement- Flash\uD83D\uDE80 User interface- super friendly, the developers did a great job. If you're looking for loan app that has a high loan limit,long repayment time and extremely low interest rate.... You gotta try this one out \uD83D\uDCAF.\"})}),className:\"framer-lo4ry6\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1um4sy0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gia60m-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"xAjf8A8W2\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"xAjf8A8W2\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"xAjf8A8W2\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Tiana\"})}),className:\"framer-brc1gl\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10g6qyf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zcdlcr\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cpoe2p\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ghsaos\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jo50ap\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-qe7zqw\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-2k999j\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1s18x3x\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qr75m\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1usgtgd\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 19\"><path d=\"M 20.634 2.969 C 20.317 4.319 19.982 5.777 19.63 7.341 C 19.277 8.905 18.96 10.433 18.678 11.926 C 18.397 13.419 18.167 14.787 17.991 16.031 L 12.97 16.031 L 12.6 15.445 C 12.917 14.201 13.322 12.868 13.816 11.446 C 14.309 9.989 14.855 8.531 15.454 7.074 C 16.053 5.617 16.635 4.248 17.198 2.969 Z M 10.855 2.969 C 10.538 4.319 10.204 5.777 9.851 7.341 C 9.499 8.905 9.182 10.433 8.9 11.926 C 8.618 13.419 8.389 14.787 8.213 16.031 L 3.244 16.031 L 2.927 15.445 C 3.244 14.201 3.649 12.868 4.143 11.446 C 4.636 9.989 5.164 8.531 5.728 7.074 C 6.327 5.617 6.909 4.248 7.473 2.969 Z\" fill=\"#212121\"></path></svg>',svgContentId:11016904721,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"The very best loan app I have personally experienced. Infact If I could I would give them 10stars. The app is very user friendly , fantastically low interest rates and have no hidden charges . I highly recommend to anybody looking for a quick loan .\"})}),className:\"framer-1mk1nph\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ijxynn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cgw2hi-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"OZ1Jk40Va\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"OZ1Jk40Va\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"OZ1Jk40Va\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Michael Nwosu\"})}),className:\"framer-wu9j2j\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16vw5v7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fp56hb\",\"data-framer-name\":\"Frame 167\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gya3dc\",\"data-framer-name\":\"Frame 166\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-175tdl3\",\"data-framer-name\":\"ion:logo-google-playstore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25 3.28849V21.7104C2.25012 21.7503 2.26204 21.7894 2.28427 21.8226C2.30649 21.8558 2.33803 21.8817 2.37492 21.8971C2.41182 21.9125 2.45243 21.9166 2.49166 21.909C2.5309 21.9014 2.56701 21.8823 2.59547 21.8543L12.1875 12.4999L2.59547 3.14458C2.56701 3.11652 2.5309 3.09749 2.49166 3.08987C2.45243 3.08225 2.41182 3.08638 2.37492 3.10175C2.33803 3.11712 2.30649 3.14304 2.28427 3.17626C2.26204 3.20948 2.25012 3.24852 2.25 3.28849ZM16.2094 8.65615L4.18219 2.0299L4.17469 2.02568C3.9675 1.91318 3.77062 2.19349 3.94031 2.35661L13.3683 11.3716L16.2094 8.65615ZM3.94125 22.6432C3.77062 22.8063 3.9675 23.0866 4.17562 22.9741L4.18312 22.9699L16.2094 16.3436L13.3683 13.6272L3.94125 22.6432ZM21.0647 11.328L17.7061 9.47833L14.5481 12.4999L17.7061 15.5201L21.0647 13.6718C21.9783 13.1669 21.9783 11.8329 21.0647 11.328Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uav6zr\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.13px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0em\"},children:\"5\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"/\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"5\"})]})}),className:\"framer-1qmzaqm\",\"data-framer-name\":\"4.5/5\",fonts:[\"GF;Noto Sans-600\",\"GF;Noto Sans-500\",\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"ratings\"})}),className:\"framer-rxoxqn\",\"data-framer-name\":\"ratings\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-giov5s\",\"data-framer-name\":\"Frame 84\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 13\"><path d=\"M 10.735 6.114 C 11.139 5.817 10.93 5.174 10.431 5.174 L 7.953 5.174 C 7.728 5.174 7.529 5.028 7.461 4.812 L 6.692 2.394 C 6.539 1.912 5.861 1.912 5.708 2.394 L 4.939 4.812 C 4.871 5.028 4.672 5.174 4.447 5.174 L 1.953 5.174 C 1.455 5.174 1.246 5.814 1.646 6.112 L 3.675 7.625 C 3.853 7.757 3.927 7.988 3.86 8.199 L 3.097 10.625 C 2.946 11.106 3.495 11.5 3.897 11.2 L 5.893 9.713 C 6.075 9.577 6.325 9.577 6.507 9.713 L 8.497 11.195 C 8.9 11.496 9.449 11.1 9.296 10.619 L 8.522 8.183 C 8.454 7.97 8.53 7.737 8.709 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 23.135 6.114 C 23.539 5.817 23.33 5.174 22.831 5.174 L 20.353 5.174 C 20.128 5.174 19.929 5.028 19.861 4.812 L 19.092 2.394 C 18.939 1.912 18.261 1.912 18.108 2.394 L 17.339 4.812 C 17.271 5.028 17.072 5.174 16.847 5.174 L 14.353 5.174 C 13.855 5.174 13.646 5.814 14.046 6.112 L 16.075 7.625 C 16.253 7.757 16.327 7.988 16.26 8.199 L 15.497 10.625 C 15.346 11.106 15.895 11.5 16.297 11.2 L 18.293 9.713 C 18.475 9.577 18.725 9.577 18.907 9.713 L 20.897 11.195 C 21.3 11.496 21.849 11.1 21.696 10.619 L 20.922 8.183 C 20.854 7.97 20.93 7.737 21.109 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 59.416 6.162 C 59.82 5.865 59.611 5.222 59.111 5.222 L 56.634 5.222 C 56.409 5.222 56.21 5.076 56.142 4.86 L 55.373 2.442 C 55.22 1.959 54.542 1.959 54.389 2.442 L 53.62 4.86 C 53.552 5.076 53.353 5.222 53.128 5.222 L 50.634 5.222 C 50.136 5.222 49.927 5.862 50.327 6.16 L 52.356 7.673 C 52.534 7.805 52.608 8.036 52.541 8.247 L 51.778 10.673 C 51.627 11.154 52.176 11.548 52.578 11.248 L 54.573 9.761 C 54.756 9.624 55.006 9.624 55.188 9.761 L 57.178 11.243 C 57.581 11.544 58.13 11.148 57.977 10.667 L 57.203 8.231 C 57.135 8.018 57.211 7.785 57.39 7.653 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 35.535 6.114 C 35.939 5.817 35.73 5.174 35.231 5.174 L 32.753 5.174 C 32.528 5.174 32.329 5.028 32.261 4.812 L 31.492 2.394 C 31.339 1.912 30.661 1.912 30.508 2.394 L 29.739 4.812 C 29.671 5.028 29.472 5.174 29.247 5.174 L 26.753 5.174 C 26.255 5.174 26.046 5.814 26.446 6.112 L 28.475 7.625 C 28.653 7.757 28.727 7.988 28.66 8.199 L 27.897 10.625 C 27.746 11.106 28.295 11.5 28.697 11.2 L 30.693 9.713 C 30.875 9.577 31.125 9.577 31.307 9.713 L 33.297 11.195 C 33.7 11.496 34.249 11.1 34.096 10.619 L 33.322 8.183 C 33.254 7.97 33.33 7.737 33.509 7.605 Z\" fill=\"rgb(234,185,28)\"></path><path d=\"M 47.935 6.114 C 48.339 5.817 48.13 5.174 47.631 5.174 L 45.153 5.174 C 44.928 5.174 44.729 5.028 44.661 4.812 L 43.892 2.394 C 43.739 1.912 43.061 1.912 42.908 2.394 L 42.139 4.812 C 42.071 5.028 41.872 5.174 41.647 5.174 L 39.153 5.174 C 38.655 5.174 38.446 5.814 38.846 6.112 L 40.875 7.625 C 41.053 7.757 41.127 7.988 41.06 8.199 L 40.297 10.625 C 40.146 11.106 40.695 11.5 41.097 11.2 L 43.093 9.713 C 43.275 9.577 43.525 9.577 43.707 9.713 L 45.697 11.195 C 46.1 11.496 46.649 11.1 46.496 10.619 L 45.722 8.183 C 45.654 7.97 45.73 7.737 45.909 7.605 Z\" fill=\"rgb(234,185,28)\"></path></svg>',svgContentId:8959623534,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m6he5h\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qbbd59\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 19\"><path d=\"M 20.634 2.969 C 20.317 4.319 19.982 5.777 19.63 7.341 C 19.277 8.905 18.96 10.433 18.678 11.926 C 18.397 13.419 18.167 14.787 17.991 16.031 L 12.97 16.031 L 12.6 15.445 C 12.917 14.201 13.322 12.868 13.816 11.446 C 14.309 9.989 14.855 8.531 15.454 7.074 C 16.053 5.617 16.635 4.248 17.198 2.969 Z M 10.855 2.969 C 10.538 4.319 10.204 5.777 9.851 7.341 C 9.499 8.905 9.182 10.433 8.9 11.926 C 8.618 13.419 8.389 14.787 8.213 16.031 L 3.244 16.031 L 2.927 15.445 C 3.244 14.201 3.649 12.868 4.143 11.446 C 4.636 9.989 5.164 8.531 5.728 7.074 C 6.327 5.617 6.909 4.248 7.473 2.969 Z\" fill=\"#212121\"></path></svg>',svgContentId:11016904721,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkgnk8\",\"data-styles-preset\":\"ShP2s4cbE\",children:\"Very wonderful app fast and easy to access they give you so much time to repay. Their repayment tenure is the most considerate. I add 1 more \uD83C\uDF1F for them 6star. I recommend that other user should try this app, you will be amazed. Nice work keep it up\"})}),className:\"framer-1cuf5sq\",\"data-framer-name\":\"This app is fantastic and super easy to use, the developers did an awesome job and I recommend it for anyone who wants a quick loan without any stress or hassles. There's also no sharing of personal information or data with third parties and I look forward for more easy access to even better loan contracts with quickcheck\uD83E\uDD29\uD83E\uDD29100%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bz143v\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r8ed9r-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"A0iamyvOm\",rendersWithMotion:true,scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"A0iamyvOm\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"A0iamyvOm\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"vRzgmGWpd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",children:\"Jimmy Okpe\"})}),className:\"framer-12467jp\",\"data-framer-name\":\"Akhagbemhe Joshua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mivgzl\",\"data-framer-name\":\"Testimonials 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-f48qwc\",\"data-styles-preset\":\"soq3skx9b\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Customers love us here's\",/*#__PURE__*/_jsx(\"br\",{}),\"what they are saying\"]})}),className:\"framer-19x8sxv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{y:(componentViewport?.y||0)+94+4655},e4M1Dw9FX:{y:(componentViewport?.y||0)+94+4584},rFNYG_3Bu:{y:(componentViewport?.y||0)+94+4486},Sgj5dkty5:{y:(componentViewport?.y||0)+94+4655},w26RXKWOR:{y:(componentViewport?.y||0)+94+4628}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:451,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-r2f1w7-container\",nodeId:\"anVf9yNUW\",scopeId:\"FsyjeqdGR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DvkSPpaHO:{variant:\"NS0Adpr9c\"},e4M1Dw9FX:{variant:\"NS0Adpr9c\"},PckjIwRYk:{variant:\"VPEXs_aMd\"},rFNYG_3Bu:{variant:\"f0Q308X_5\"},Sgj5dkty5:{variant:\"NS0Adpr9c\"},w26RXKWOR:{variant:\"EFsEtJrEB\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"anVf9yNUW\",layoutId:\"anVf9yNUW\",style:{width:\"100%\"},variant:\"XdeD7JEvE\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6rPDi.framer-e83szg, .framer-6rPDi .framer-e83szg { display: block; }\",\".framer-6rPDi.framer-1sdcd6k { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 94px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-6rPDi .framer-pexnfp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; overflow: hidden; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1w2mibg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 657px; }\",\".framer-6rPDi .framer-7a27ed { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 1px; }\",\".framer-6rPDi .framer-ijwjsg-container { flex: none; height: auto; min-width: 50px; position: relative; width: 657px; }\",\".framer-6rPDi .framer-8o4zqx { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 487px; word-break: break-word; word-wrap: break-word; }\",\".framer-6rPDi .framer-vf4xn2-container, .framer-6rPDi .framer-1bf7sp4-container, .framer-6rPDi .framer-dfgoj2-container, .framer-6rPDi .framer-1driom5-container, .framer-6rPDi .framer-enfarp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-6rPDi .framer-1urqfve, .framer-6rPDi .framer-ubyslx, .framer-6rPDi .framer-1buiu6z { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6rPDi .framer-w1wrca { aspect-ratio: 0.6353478923311325 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 477px); overflow: visible; position: relative; width: 303px; }\",\".framer-6rPDi .framer-17gob5t, .framer-6rPDi .framer-1xhix4y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-105sroj, .framer-6rPDi .framer-9boy3d, .framer-6rPDi .framer-lzwt36, .framer-6rPDi .framer-13vfe5o { background-color: #ffffff; flex: none; height: 28px; overflow: hidden; position: relative; width: 86px; }\",\".framer-6rPDi .framer-1xypgxy, .framer-6rPDi .framer-1mexo3q, .framer-6rPDi .framer-ok9yed, .framer-6rPDi .framer-90ip3w { aspect-ratio: 2.9210526315789473 / 1; bottom: -1px; flex: none; left: 49%; overflow: visible; position: absolute; top: 0px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 85px); }\",\".framer-6rPDi .framer-1eesawa, .framer-6rPDi .framer-1wlbggj, .framer-6rPDi .framer-156tjhz, .framer-6rPDi .framer-1raslpe { aspect-ratio: 2.9210526315789473 / 1; bottom: -1px; flex: none; left: 48%; overflow: visible; position: absolute; top: -1px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 88px); }\",\".framer-6rPDi .framer-13x9ik6, .framer-6rPDi .framer-qgblu8, .framer-6rPDi .framer-cjamrc, .framer-6rPDi .framer-yc85yl { aspect-ratio: 1.5802469135802468 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 51%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 41px; }\",\".framer-6rPDi .framer-igz72n, .framer-6rPDi .framer-1yhh4dk, .framer-6rPDi .framer-1gnkuic, .framer-6rPDi .framer-d7aoju { background-color: #ffffff; flex: none; height: 30px; overflow: hidden; position: relative; width: 87px; }\",\".framer-6rPDi .framer-1cv8uh7, .framer-6rPDi .framer-1njrkfw, .framer-6rPDi .framer-gsfp7b, .framer-6rPDi .framer-1isthn8 { aspect-ratio: 2.9210526315789473 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); width: 83px; }\",\".framer-6rPDi .framer-177guvg, .framer-6rPDi .framer-12bi796, .framer-6rPDi .framer-2g0v8f, .framer-6rPDi .framer-x2oatv { aspect-ratio: 1.966101694915254 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 55px; }\",\".framer-6rPDi .framer-1546nnu, .framer-6rPDi .framer-19oasc0, .framer-6rPDi .framer-oizs4s, .framer-6rPDi .framer-18r4jxg { aspect-ratio: 2.9210526315789473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 76px; }\",\".framer-6rPDi .framer-1hdjwje, .framer-6rPDi .framer-1yizcvp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; width: 360px; }\",\".framer-6rPDi .framer-1c0izcn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 120px 12px 120px; position: relative; width: 1200px; }\",\".framer-6rPDi .framer-1sfoqw3, .framer-6rPDi .framer-1nhj7jk, .framer-6rPDi .framer-y9gsew { background-color: #ffffff; flex: none; height: 57px; overflow: hidden; position: relative; width: 166px; }\",\".framer-6rPDi .framer-1vnmwcp, .framer-6rPDi .framer-1hkqkj0, .framer-6rPDi .framer-d58zzv { aspect-ratio: 2.9210526315789473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-6rPDi .framer-61ruh { aspect-ratio: 1.5802469135802468 / 1; bottom: -1px; flex: none; left: 52%; overflow: visible; position: absolute; top: -1px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 93px); }\",\".framer-6rPDi .framer-18nmdbh { aspect-ratio: 1.966101694915254 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); left: 50%; overflow: visible; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 111px; }\",\".framer-6rPDi .framer-1wo18hz { align-content: center; align-items: center; background-color: var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, #f54d07); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 16px 32px 16px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1733cjb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 126px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-6rPDi .framer-17hmabl, .framer-6rPDi .framer-170zyzg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 50px; overflow: visible; position: relative; white-space: pre-wrap; width: 358px; word-break: break-word; word-wrap: break-word; }\",\".framer-6rPDi .framer-1t0d22z { align-self: stretch; flex: 1 0 0px; height: 1px; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-6rPDi .framer-1mbynzm { 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: 358px; }\",\".framer-6rPDi .framer-11gd7oe { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 218px; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1g141wn, .framer-6rPDi .framer-3p4bcn, .framer-6rPDi .framer-rbhsnl, .framer-6rPDi .framer-o32vk1, .framer-6rPDi .framer-pusnju, .framer-6rPDi .framer-t7c448 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-oq2koo, .framer-6rPDi .framer-18sv6s1, .framer-6rPDi .framer-11n4s6o, .framer-6rPDi .framer-zmnck8, .framer-6rPDi .framer-hn9kqc, .framer-6rPDi .framer-r165gx, .framer-6rPDi .framer-197raig, .framer-6rPDi .framer-4t9g74, .framer-6rPDi .framer-s8476e, .framer-6rPDi .framer-1vg6fg9, .framer-6rPDi .framer-aavd3x, .framer-6rPDi .framer-p98ka1, .framer-6rPDi .framer-18dsx6e, .framer-6rPDi .framer-13w29d, .framer-6rPDi .framer-epvwzr, .framer-6rPDi .framer-1ww854r, .framer-6rPDi .framer-1ql01p, .framer-6rPDi .framer-u1wzxr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-6rPDi .framer-1ovojrg, .framer-6rPDi .framer-12owc3r, .framer-6rPDi .framer-1tcugy2, .framer-6rPDi .framer-1p2q400, .framer-6rPDi .framer-r6ot4k, .framer-6rPDi .framer-af0kn, .framer-6rPDi .framer-ylawtf, .framer-6rPDi .framer-1fe7ju8, .framer-6rPDi .framer-uyfx00, .framer-6rPDi .framer-p6yu29, .framer-6rPDi .framer-k6wtyz, .framer-6rPDi .framer-1ln279t, .framer-6rPDi .framer-1sze89u, .framer-6rPDi .framer-f4ez26, .framer-6rPDi .framer-yshz9f, .framer-6rPDi .framer-1d71f52, .framer-6rPDi .framer-kjts1u, .framer-6rPDi .framer-jzyz82, .framer-6rPDi .framer-12n4yw4, .framer-6rPDi .framer-jo9k37, .framer-6rPDi .framer-1a4dj5i, .framer-6rPDi .framer-19b9mdq, .framer-6rPDi .framer-1xrq1iv, .framer-6rPDi .framer-1j3ydp, .framer-6rPDi .framer-1vk5gfx, .framer-6rPDi .framer-l6aido, .framer-6rPDi .framer-1i37k38, .framer-6rPDi .framer-181ph7p, .framer-6rPDi .framer-10wvff6, .framer-6rPDi .framer-1vnngeh, .framer-6rPDi .framer-6no28s, .framer-6rPDi .framer-ho5wel, .framer-6rPDi .framer-17kykzo, .framer-6rPDi .framer-6bxiiz, .framer-6rPDi .framer-1whzpmd, .framer-6rPDi .framer-8jtnje, .framer-6rPDi .framer-5p2rs6, .framer-6rPDi .framer-1uctkb2, .framer-6rPDi .framer-2luima, .framer-6rPDi .framer-ss208b, .framer-6rPDi .framer-1ivj8fv, .framer-6rPDi .framer-4zv4u9, .framer-6rPDi .framer-1wwlzxn, .framer-6rPDi .framer-10del87, .framer-6rPDi .framer-w3d21m, .framer-6rPDi .framer-pkuemi, .framer-6rPDi .framer-19x8sxv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6rPDi .framer-sb1dg6, .framer-6rPDi .framer-p0zsrr { background-color: #fef1eb; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 60px; overflow: hidden; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-jk1r7h-container, .framer-6rPDi .framer-a01fmb-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 32px; }\",\".framer-6rPDi .framer-1km9eby, .framer-6rPDi .framer-wz9r9l { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 217px; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-z3vfmc, .framer-6rPDi .framer-zuwl21, .framer-6rPDi .framer-yz9c37 { background-color: #ebf7fe; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 60px; overflow: hidden; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-cjp4gx-container, .framer-6rPDi .framer-nuqesb-container, .framer-6rPDi .framer-17jedhh-container { flex: none; height: 44px; left: calc(50.00000000000002% - 44px / 2); position: absolute; top: calc(50.00000000000002% - 44px / 2); width: 44px; }\",\".framer-6rPDi .framer-jh4qgl, .framer-6rPDi .framer-f6uh80 { background-color: #fce8ff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 60px; overflow: hidden; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-erd6u1 { align-content: center; align-items: center; background-color: var(--token-59a9721c-81dd-48d0-9cac-659d0e29ecbb, #f54d07); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 16px 32px 16px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-ljonnm, .framer-6rPDi .framer-1a6mdmz { 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: min-content; }\",\".framer-6rPDi .framer-svyidv { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-6rPDi .framer-1ydy2e, .framer-6rPDi .framer-19ofxe2, .framer-6rPDi .framer-e2t05d, .framer-6rPDi .framer-jn0jhe, .framer-6rPDi .framer-z8ne79, .framer-6rPDi .framer-d7or1g, .framer-6rPDi .framer-fjsngl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-878v9i, .framer-6rPDi .framer-138t9sx, .framer-6rPDi .framer-hwtr1y, .framer-6rPDi .framer-1e1u33t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-vani5n { align-content: flex-end; align-items: flex-end; background-color: #faded7; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 77px; height: 488px; justify-content: flex-start; overflow: hidden; padding: 32px 32px 0px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-37si5q, .framer-6rPDi .framer-k5x5we, .framer-6rPDi .framer-vpeq8j, .framer-6rPDi .framer-1wc012y, .framer-6rPDi .framer-tj9dqq, .framer-6rPDi .framer-of2lww, .framer-6rPDi .framer-182rkfy, .framer-6rPDi .framer-u88jwz, .framer-6rPDi .framer-q9iqu7, .framer-6rPDi .framer-1wjr0j0, .framer-6rPDi .framer-1irm6a2, .framer-6rPDi .framer-nyfvxe { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-v0hyw3, .framer-6rPDi .framer-7wpbr6, .framer-6rPDi .framer-1ll8vfc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 361px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-ooyymz, .framer-6rPDi .framer-76s70x, .framer-6rPDi .framer-3t0m95, .framer-6rPDi .framer-zu4x6 { flex: 1 0 0px; height: 120px; overflow: hidden; position: relative; width: 1px; }\",\".framer-6rPDi .framer-er91qt, .framer-6rPDi .framer-u8l6nd, .framer-6rPDi .framer-nvkm6g { flex: none; height: 361px; overflow: visible; position: relative; width: 171px; }\",\".framer-6rPDi .framer-1q7gl9v, .framer-6rPDi .framer-1k3y04l, .framer-6rPDi .framer-vo648w { bottom: -5px; flex: none; left: 0px; opacity: 0.7; position: absolute; top: 0px; width: 164px; }\",\".framer-6rPDi .framer-1b88h58, .framer-6rPDi .framer-1lqm1gv, .framer-6rPDi .framer-185evsp { bottom: 0px; flex: none; left: 0px; position: absolute; top: 0px; width: 171px; }\",\".framer-6rPDi .framer-y4iqm2, .framer-6rPDi .framer-1t1nji0, .framer-6rPDi .framer-nrpkbi { flex: none; height: 344px; left: 5px; position: absolute; top: calc(49.58448753462606% - 344.4271457085828px / 2); width: 159px; }\",\".framer-6rPDi .framer-46v08g { align-content: flex-end; align-items: flex-end; background-color: #ebf7fe; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 77px; height: 488px; justify-content: flex-start; overflow: hidden; padding: 32px 32px 0px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-1dyjv6k, .framer-6rPDi .framer-1qkittu, .framer-6rPDi .framer-12w3hkz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 343px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-4djhnf, .framer-6rPDi .framer-p8e10p, .framer-6rPDi .framer-176382h { flex: none; height: 343px; overflow: visible; position: relative; width: 162px; }\",\".framer-6rPDi .framer-199dit4, .framer-6rPDi .framer-vq0i3p, .framer-6rPDi .framer-wg2fev { flex: none; height: 344px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 162px; }\",\".framer-6rPDi .framer-18g3ydi, .framer-6rPDi .framer-1du5uvw, .framer-6rPDi .framer-1vingzx { flex: none; height: 344px; left: 0px; opacity: 0.7; position: absolute; top: 0px; width: 162px; }\",\".framer-6rPDi .framer-6b9kz8, .framer-6rPDi .framer-18j2n4b, .framer-6rPDi .framer-1sb3jzx { flex: none; height: 343px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-6rPDi .framer-1js9nix, .framer-6rPDi .framer-6z02uz, .framer-6rPDi .framer-1jyehq { flex: none; height: 327px; left: calc(49.382716049382736% - 151px / 2); position: absolute; top: calc(49.41860465116281% - 327px / 2); width: 151px; }\",\".framer-6rPDi .framer-k443fd { align-content: flex-end; align-items: flex-end; background-color: #f5f5f5; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: 488px; justify-content: flex-start; overflow: hidden; padding: 32px 32px 0px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-9ups8h, .framer-6rPDi .framer-896qts, .framer-6rPDi .framer-143d92k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 362px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1in2ujv, .framer-6rPDi .framer-mc8w4e, .framer-6rPDi .framer-d1nte1 { flex: none; height: 100%; overflow: visible; position: relative; width: 180px; }\",\".framer-6rPDi .framer-1hgs7ov, .framer-6rPDi .framer-1p1wki0, .framer-6rPDi .framer-1cdfmq1 { bottom: -32px; flex: none; left: 0px; opacity: 0.7; position: absolute; top: 0px; width: 182px; }\",\".framer-6rPDi .framer-3770h3, .framer-6rPDi .framer-1xolgmi, .framer-6rPDi .framer-3klf5p { bottom: -22px; flex: none; left: 0px; position: absolute; top: 0px; width: 182px; }\",\".framer-6rPDi .framer-1fsq515, .framer-6rPDi .framer-1rdj98z, .framer-6rPDi .framer-19g9v3b { bottom: -12px; flex: none; height: 366px; left: 5px; position: absolute; width: 170px; }\",\".framer-6rPDi .framer-lqnzd8 { align-content: flex-end; align-items: flex-end; align-self: stretch; background-color: #edd8f8; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 97px; height: auto; justify-content: flex-start; overflow: hidden; padding: 32px 32px 0px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-aimsio, .framer-6rPDi .framer-ec50s0, .framer-6rPDi .framer-1gqaslb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 263px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1eocq2n, .framer-6rPDi .framer-18k8w4, .framer-6rPDi .framer-ljnn3r { flex: none; height: 100%; overflow: visible; position: relative; width: 165px; }\",\".framer-6rPDi .framer-oaf3z7, .framer-6rPDi .framer-itv7ns, .framer-6rPDi .framer-1qi4666 { flex: none; height: 347px; left: 0px; opacity: 0.7; position: absolute; top: 0px; width: 165px; }\",\".framer-6rPDi .framer-cxgh7z, .framer-6rPDi .framer-1gwrgjs, .framer-6rPDi .framer-n0ilq8 { flex: none; height: 350px; left: 0px; position: absolute; top: 0px; width: 165px; }\",\".framer-6rPDi .framer-db36qy, .framer-6rPDi .framer-103hfc8, .framer-6rPDi .framer-1l6mu2 { flex: none; height: 334px; left: 5px; position: absolute; top: 7px; width: 154px; }\",\".framer-6rPDi .framer-1j7oaf2, .framer-6rPDi .framer-144of4o { 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-6rPDi .framer-5kj3ek, .framer-6rPDi .framer-1a5cmxe { align-content: flex-end; align-items: flex-end; background-color: #faded7; 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: 24px; height: 399px; justify-content: flex-start; overflow: hidden; padding: 32px 16px 0px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-13f4s1s, .framer-6rPDi .framer-1o4l3v2 { align-content: flex-end; align-items: flex-end; background-color: #ebf7fe; 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: 24px; height: 399px; justify-content: flex-start; overflow: hidden; padding: 32px 16px 0px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-4f6tq2, .framer-6rPDi .framer-1k3az1b { align-content: flex-end; align-items: flex-end; background-color: #f5f5f5; 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: 24px; height: 399px; justify-content: flex-start; overflow: hidden; padding: 32px 16px 0px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-10gi0eq, .framer-6rPDi .framer-qqev2b { align-content: flex-end; align-items: flex-end; background-color: #edd8f8; 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: 24px; height: 399px; justify-content: flex-start; overflow: hidden; padding: 32px 16px 0px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-1l1k66s { align-content: center; align-items: center; background-color: var(--token-ecac1045-9d9a-4fda-a7d6-7e332b556b11, #f54d07); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1vnl1yd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-14cf4kw-container { flex: none; height: 108px; left: 1014px; position: absolute; top: -138px; width: 150px; z-index: 1; }\",\".framer-6rPDi .framer-18g4j14 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 144px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-14er9qz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 964px; }\",\".framer-6rPDi .framer-121c04z, .framer-6rPDi .framer-1kysw7y, .framer-6rPDi .framer-1b0tws7 { align-content: center; align-items: center; background-color: #fafafa; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 308px; }\",\".framer-6rPDi .framer-1a4p7td-container, .framer-6rPDi .framer-2r146p-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 44px; }\",\".framer-6rPDi .framer-1rba6yi { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 120px 32px 120px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-q0nv5a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1uullo0 { 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-6rPDi .framer-3ldvsq, .framer-6rPDi .framer-grbuj { align-content: center; align-items: center; 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-6rPDi .framer-hnqzkl, .framer-6rPDi .framer-1q3z6zc, .framer-6rPDi .framer-1yx7mv, .framer-6rPDi .framer-5hhyds, .framer-6rPDi .framer-us3gei, .framer-6rPDi .framer-1b3f4sf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-6rPDi .framer-b73q8h, .framer-6rPDi .framer-5k2g6z { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-6rPDi .framer-ql5fuz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 960px; }\",\".framer-6rPDi .framer-64cp8p-container, .framer-6rPDi .framer-4t49md-container, .framer-6rPDi .framer-1q3m71i-container { flex: 1 0 0px; height: 488px; position: relative; width: 1px; }\",\".framer-6rPDi .framer-1i5k89k-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-6rPDi .framer-1wl103i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 120px 64px 120px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-nhfg3p-container { flex: none; height: 528px; position: relative; width: 960px; }\",\".framer-6rPDi .framer-1mssk5k-container { flex: none; height: 407px; position: relative; width: 723px; }\",\".framer-6rPDi .framer-1a0yp30 { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 64px 32px 64px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1ktvcex { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-19zef2t, .framer-6rPDi .framer-c4alwg { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1f3hz7l-container, .framer-6rPDi .framer-1k9xt7a-container, .framer-6rPDi .framer-16thnne-container, .framer-6rPDi .framer-8kl64i-container, .framer-6rPDi .framer-r2f1w7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-6rPDi .framer-cxhvxn, .framer-6rPDi .framer-6qtule, .framer-6rPDi .framer-1ivo3qm, .framer-6rPDi .framer-1bljbds, .framer-6rPDi .framer-10g6qyf, .framer-6rPDi .framer-16vw5v7 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: -0.24087492070975713px 0.24087492070975713px 1.2944646028724733px -0.8333333333333333px rgba(0, 0, 0, 0.13), -0.9154133212973828px 0.9154133212973828px 4.919441749791882px -1.6666666666666665px rgba(0, 0, 0, 0.125), -4px 4px 21.496046148071045px -2.5px rgba(0, 0, 0, 0.125); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 250px; justify-content: center; overflow: hidden; padding: 20px 16px 20px 16px; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-1u2a0s2, .framer-6rPDi .framer-1ox3cfy, .framer-6rPDi .framer-1xyrnnd, .framer-6rPDi .framer-11eeqol, .framer-6rPDi .framer-zcdlcr, .framer-6rPDi .framer-fp56hb { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.3); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 4px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-6rPDi .framer-1ty8h8m, .framer-6rPDi .framer-1aa1bhx, .framer-6rPDi .framer-1c50bmw, .framer-6rPDi .framer-1ephsso, .framer-6rPDi .framer-cpoe2p, .framer-6rPDi .framer-gya3dc, .framer-6rPDi .framer-7isll, .framer-6rPDi .framer-1hfghce, .framer-6rPDi .framer-1due89c, .framer-6rPDi .framer-1yxyh8a, .framer-6rPDi .framer-13063i5, .framer-6rPDi .framer-1a6904r, .framer-6rPDi .framer-1mdhvef, .framer-6rPDi .framer-1cl5j7h, .framer-6rPDi .framer-natwvt, .framer-6rPDi .framer-1rurdib, .framer-6rPDi .framer-gbaoha, .framer-6rPDi .framer-1gl3iuy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6rPDi .framer-jfq95l, .framer-6rPDi .framer-1jza5op, .framer-6rPDi .framer-1diafah, .framer-6rPDi .framer-11op79i, .framer-6rPDi .framer-ghsaos, .framer-6rPDi .framer-175tdl3, .framer-6rPDi .framer-dt3rdw, .framer-6rPDi .framer-1adi9bj, .framer-6rPDi .framer-n6hal7, .framer-6rPDi .framer-v7hye3, .framer-6rPDi .framer-1c7bvyd, .framer-6rPDi .framer-qwcyyt, .framer-6rPDi .framer-12loxbe, .framer-6rPDi .framer-15bi13v, .framer-6rPDi .framer-go8ach, .framer-6rPDi .framer-rf3ag, .framer-6rPDi .framer-r4a7k3, .framer-6rPDi .framer-2qk3tb { flex: none; height: 25px; position: relative; width: 24px; }\",\".framer-6rPDi .framer-ijgc1x, .framer-6rPDi .framer-1ln8zm3, .framer-6rPDi .framer-zneg13, .framer-6rPDi .framer-nnvjar, .framer-6rPDi .framer-jo50ap, .framer-6rPDi .framer-1uav6zr, .framer-6rPDi .framer-1c9ld1x, .framer-6rPDi .framer-7zhu9k, .framer-6rPDi .framer-t5oncx, .framer-6rPDi .framer-1g2n4qp, .framer-6rPDi .framer-1m5hn5a, .framer-6rPDi .framer-1yuqe8o, .framer-6rPDi .framer-1leu7q3, .framer-6rPDi .framer-u74can, .framer-6rPDi .framer-1one3k9, .framer-6rPDi .framer-1pbmihv, .framer-6rPDi .framer-fi0dz8 { display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6rPDi .framer-1ike5kx, .framer-6rPDi .framer-1dpxk24, .framer-6rPDi .framer-4ou9mi, .framer-6rPDi .framer-xrndps, .framer-6rPDi .framer-qe7zqw, .framer-6rPDi .framer-1qmzaqm, .framer-6rPDi .framer-14jox9o, .framer-6rPDi .framer-1gyl51k, .framer-6rPDi .framer-p25aue, .framer-6rPDi .framer-e97ogu, .framer-6rPDi .framer-1v0ec5q, .framer-6rPDi .framer-i3m5ic, .framer-6rPDi .framer-todnar, .framer-6rPDi .framer-12zahyd, .framer-6rPDi .framer-7u1a7u, .framer-6rPDi .framer-14kybqn, .framer-6rPDi .framer-1bc287h, .framer-6rPDi .framer-13z65e4, .framer-6rPDi .framer-1ln7qhg, .framer-6rPDi .framer-1puzcfb, .framer-6rPDi .framer-3bb455, .framer-6rPDi .framer-ccz9w5, .framer-6rPDi .framer-157ntzj, .framer-6rPDi .framer-1cp2x65 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6rPDi .framer-19cqszb, .framer-6rPDi .framer-13chdvx, .framer-6rPDi .framer-54mnfw, .framer-6rPDi .framer-z3xdco, .framer-6rPDi .framer-2k999j, .framer-6rPDi .framer-rxoxqn, .framer-6rPDi .framer-pd89mh, .framer-6rPDi .framer-nic7m4, .framer-6rPDi .framer-1iuh9un, .framer-6rPDi .framer-13wgv65, .framer-6rPDi .framer-g06g0x, .framer-6rPDi .framer-flfpba, .framer-6rPDi .framer-16rnrjv, .framer-6rPDi .framer-19e54uy, .framer-6rPDi .framer-1kwwoy5, .framer-6rPDi .framer-1t1cmez, .framer-6rPDi .framer-1toxako, .framer-6rPDi .framer-4udpqb { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6rPDi .framer-1m1isv1, .framer-6rPDi .framer-1ve84rb, .framer-6rPDi .framer-1cumdhx, .framer-6rPDi .framer-1afioyo, .framer-6rPDi .framer-1s18x3x, .framer-6rPDi .framer-giov5s { flex: none; height: 13px; position: relative; width: 62px; }\",\".framer-6rPDi .framer-v6e9t9, .framer-6rPDi .framer-123juq2, .framer-6rPDi .framer-1dbuxqv, .framer-6rPDi .framer-jykjb6, .framer-6rPDi .framer-qr75m, .framer-6rPDi .framer-m6he5h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1uumx7g { flex: none; height: 16px; position: relative; width: 20px; }\",\".framer-6rPDi .framer-1x8v7z8, .framer-6rPDi .framer-db86z2, .framer-6rPDi .framer-1jvitmp, .framer-6rPDi .framer-lo4ry6, .framer-6rPDi .framer-1mk1nph, .framer-6rPDi .framer-1cuf5sq, .framer-6rPDi .framer-sz5ytr, .framer-6rPDi .framer-1u33g0x, .framer-6rPDi .framer-1na5qmu, .framer-6rPDi .framer-lzqdjj, .framer-6rPDi .framer-6mmzut, .framer-6rPDi .framer-1j31oyy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6rPDi .framer-c3ek87, .framer-6rPDi .framer-ca4g4l, .framer-6rPDi .framer-1arndhp, .framer-6rPDi .framer-1um4sy0, .framer-6rPDi .framer-ijxynn, .framer-6rPDi .framer-1bz143v, .framer-6rPDi .framer-vud7ck, .framer-6rPDi .framer-ch1jns, .framer-6rPDi .framer-18ygfpp, .framer-6rPDi .framer-1xznvl4, .framer-6rPDi .framer-1316zlt, .framer-6rPDi .framer-tshb6t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-vo23fl-container, .framer-6rPDi .framer-1xp3j2l-container, .framer-6rPDi .framer-13xoooh-container, .framer-6rPDi .framer-1gia60m-container, .framer-6rPDi .framer-1cgw2hi-container, .framer-6rPDi .framer-1r8ed9r-container, .framer-6rPDi .framer-1vwh6fq-container, .framer-6rPDi .framer-y5tq1k-container, .framer-6rPDi .framer-wm4d8j-container, .framer-6rPDi .framer-hbkhx6-container, .framer-6rPDi .framer-1c2s7mm-container, .framer-6rPDi .framer-1vwz0t8-container { aspect-ratio: 1 / 1; flex: none; height: 24px; position: relative; width: var(--framer-aspect-ratio-supported, 24px); }\",\".framer-6rPDi .framer-1q7b8gz, .framer-6rPDi .framer-4me94u, .framer-6rPDi .framer-c3ovnw, .framer-6rPDi .framer-brc1gl, .framer-6rPDi .framer-wu9j2j, .framer-6rPDi .framer-12467jp, .framer-6rPDi .framer-ghe8za, .framer-6rPDi .framer-8hkd5, .framer-6rPDi .framer-4kp1qg, .framer-6rPDi .framer-12uweiq, .framer-6rPDi .framer-179j5ae, .framer-6rPDi .framer-sh531k { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-6rPDi .framer-zmwq6k { flex: none; height: 18px; position: relative; width: 24px; }\",\".framer-6rPDi .framer-59ajju, .framer-6rPDi .framer-1b6urr2, .framer-6rPDi .framer-1usgtgd, .framer-6rPDi .framer-qbbd59 { flex: none; height: 19px; position: relative; width: 24px; }\",\".framer-6rPDi .framer-aqorkq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 16px 40px; position: relative; width: min-content; }\",\".framer-6rPDi .framer-yjbygh-container { flex: none; height: 429px; position: relative; width: 1200px; }\",\".framer-6rPDi .framer-dmxc5i, .framer-6rPDi .framer-1k1ua2h, .framer-6rPDi .framer-8ovjn5, .framer-6rPDi .framer-4zjh1v, .framer-6rPDi .framer-sgwet8, .framer-6rPDi .framer-1tn66xa { background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.7065919983928324px 0.4710613322618883px 2.547653681037926px -0.41666666666666663px rgba(33, 33, 33, 0.05), 1.8065619053231785px 1.2043746035487857px 6.513651581942641px -0.8333333333333333px rgba(33, 33, 33, 0.05), 3.6217592146567767px 2.414506143104518px 13.058438555829197px -1.25px rgba(33, 33, 33, 0.05), 6.8655999097303715px 4.577066606486914px 24.75427251135379px -1.6666666666666665px rgba(33, 33, 33, 0.05), 13.646761411524492px 9.09784094101633px 49.20409801327489px -2.0833333333333335px rgba(33, 33, 33, 0.05), 30px 20px 108.16653826391968px -2.5px rgba(33, 33, 33, 0.05); height: 313px; overflow: hidden; position: relative; width: 712px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-1f9llmf, .framer-6rPDi .framer-5ft7wy, .framer-6rPDi .framer-r5qfuj, .framer-6rPDi .framer-dk8wm6 { 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: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 595px; }\",\".framer-6rPDi .framer-1k7c3x2, .framer-6rPDi .framer-ujxvwo, .framer-6rPDi .framer-1ezbbjj, .framer-6rPDi .framer-1wys5ah, .framer-6rPDi .framer-z54t5h, .framer-6rPDi .framer-ynuc1b { flex: none; height: 32px; position: relative; width: 41px; }\",\".framer-6rPDi .framer-4q5kkw, .framer-6rPDi .framer-1ed8czt, .framer-6rPDi .framer-kxhqa, .framer-6rPDi .framer-ouzsvp, .framer-6rPDi .framer-ah7gib, .framer-6rPDi .framer-qt3gct { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-17veya7, .framer-6rPDi .framer-1ddqhfz, .framer-6rPDi .framer-3dabeq, .framer-6rPDi .framer-dbfe6e, .framer-6rPDi .framer-45qlos, .framer-6rPDi .framer-1w571ry, .framer-6rPDi .framer-12j87yv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 593px; word-break: break-word; word-wrap: break-word; }\",\".framer-6rPDi .framer-b4tkjc, .framer-6rPDi .framer-1e8mhzf, .framer-6rPDi .framer-3ou2ne, .framer-6rPDi .framer-1cjpx8t, .framer-6rPDi .framer-1ofyb32, .framer-6rPDi .framer-1mcrcic { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6rPDi .framer-1y05x6f-container, .framer-6rPDi .framer-1ug9sk4-container, .framer-6rPDi .framer-1ci8625-container, .framer-6rPDi .framer-16xdrxb-container, .framer-6rPDi .framer-1mi0vd7-container, .framer-6rPDi .framer-qxwbdx-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-6rPDi .framer-1i8x4if { 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: visible; padding: 0px; position: relative; width: 593px; }\",\".framer-6rPDi .framer-zx3j89, .framer-6rPDi .framer-15mr5z4, .framer-6rPDi .framer-c4qb3l, .framer-6rPDi .framer-svk294, .framer-6rPDi .framer-1j7wh9s, .framer-6rPDi .framer-gy1jeq { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.3); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 52%; overflow: visible; padding: 4px 8px 4px 8px; position: absolute; top: 24px; transform: translateX(-50%); width: 310px; }\",\".framer-6rPDi .framer-1veaflz, .framer-6rPDi .framer-13y8xm9, .framer-6rPDi .framer-q2djdw, .framer-6rPDi .framer-1npysuh, .framer-6rPDi .framer-1n33twn, .framer-6rPDi .framer-1xainb0, .framer-6rPDi .framer-ks0uul, .framer-6rPDi .framer-1glwao4, .framer-6rPDi .framer-6bowz5, .framer-6rPDi .framer-c82w15, .framer-6rPDi .framer-1wue12w, .framer-6rPDi .framer-yy05b3 { flex: none; height: 25px; position: relative; width: 120px; }\",\".framer-6rPDi .framer-1561klk, .framer-6rPDi .framer-18f3uv0, .framer-6rPDi .framer-1lf0pry, .framer-6rPDi .framer-1l43wiv, .framer-6rPDi .framer-1tp6v4e { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6rPDi .framer-1v0xwde { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6rPDi .framer-136ttmu, .framer-6rPDi .framer-hzs1fu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 595px; }\",\".framer-6rPDi .framer-exrzme-container { flex: none; height: auto; position: relative; width: 390px; }\",\".framer-6rPDi .framer-1fm47mc, .framer-6rPDi .framer-1yw8qwe, .framer-6rPDi .framer-bgidc9, .framer-6rPDi .framer-1f64qbh, .framer-6rPDi .framer-en4ixu, .framer-6rPDi .framer-1yr0iox { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.6021873017743928px 1.8065619053231785px -0.8333333333333333px rgba(0, 0, 0, 0.13), 0px 2.288533303243457px 6.8655999097303715px -1.6666666666666665px rgba(0, 0, 0, 0.125), 0px 10px 30px -2.5px rgba(0, 0, 0, 0.125); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 250px; justify-content: center; overflow: hidden; padding: 20px 16px 20px 16px; position: relative; width: 357px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-iizxz2, .framer-6rPDi .framer-19xzz70, .framer-6rPDi .framer-1ksi7z6, .framer-6rPDi .framer-otuwd0, .framer-6rPDi .framer-1ieway1, .framer-6rPDi .framer-12yvunq { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.3); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 4px 8px 4px 8px; position: relative; width: 310px; }\",\".framer-6rPDi .framer-gplqy1, .framer-6rPDi .framer-44f2fu, .framer-6rPDi .framer-1nm50x3, .framer-6rPDi .framer-16htxjq, .framer-6rPDi .framer-1nc8h9c, .framer-6rPDi .framer-1u3osh8 { flex: none; height: 25px; position: relative; width: 32px; }\",\".framer-6rPDi .framer-1cz7kup, .framer-6rPDi .framer-17hjf53, .framer-6rPDi .framer-1vu9tsl, .framer-6rPDi .framer-f3wmr1, .framer-6rPDi .framer-bvmney, .framer-6rPDi .framer-1rok8r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 38px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-9fu5kk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 32px 120px 32px 120px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-h15xgf, .framer-6rPDi .framer-4lbmm7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-6rPDi .framer-1x7lprn { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-6rPDi .framer-qmkwad { align-content: center; align-items: center; align-self: start; background-color: #fafafa; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.06), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.055), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.055), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.055); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1fr; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-6rPDi .framer-boplow, .framer-6rPDi .framer-1rdkk1l { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 309px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-1cuxw0, .framer-6rPDi .framer-1ct4qk5, .framer-6rPDi .framer-40l706, .framer-6rPDi .framer-1vwepbu, .framer-6rPDi .framer-1ubj0o6, .framer-6rPDi .framer-1url1ib, .framer-6rPDi .framer-fb1soy, .framer-6rPDi .framer-1knulxl { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.25); 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: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 9px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-1p3wn9b, .framer-6rPDi .framer-1qouef9 { align-content: center; align-items: center; align-self: start; background-color: #fafafa; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.06), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.055), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.055), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.055); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-6rPDi .framer-2xg4my, .framer-6rPDi .framer-1z002n3 { align-content: center; align-items: center; align-self: start; background-color: #fafafa; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.06), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.055), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.055), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.055); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 312px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-6rPDi .framer-cy50r3 { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 200px); will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-45bagc { align-content: center; align-items: center; align-self: start; background-color: #fafafa; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.06), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.055), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.055), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.055); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 379px; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-6rPDi .framer-xc5grn { align-content: center; align-items: center; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-5iooym { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 50px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6rPDi .framer-1anx7mf-container { height: auto; position: relative; width: 200px; }\",\".framer-6rPDi .framer-1ptrzrd, .framer-6rPDi .framer-1bs4xpz { align-content: center; align-items: center; background-color: #fafafa; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.06), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.055), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.055), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.055); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 297px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-rz32x8, .framer-6rPDi .framer-3oyz0y { align-content: center; align-items: center; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-8rbcc7 { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.25); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 16px 9px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-1jjz9x6 { flex: none; height: 17px; overflow: hidden; position: relative; width: 59px; }\",\".framer-6rPDi .framer-1xbs8s2 { flex: none; height: 452px; overflow: visible; position: relative; width: 100%; }\",\".framer-6rPDi .framer-8zw4a1 { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 32px 120px 100px 120px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-6rPDi .framer-1s9wz72 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-6rPDi .framer-1hc9fif-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-6rPDi .framer-11vqibd-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-6rPDi .framer-13t6zzj-container { flex: none; height: 108px; left: 624px; position: absolute; top: 372px; width: 150px; z-index: 1; }\",\".framer-6rPDi .framer-chn67i-container, .framer-6rPDi .framer-19fun4y-container { flex: none; height: 108px; left: 224px; position: absolute; top: 748px; width: 150px; z-index: 1; }\",\".framer-6rPDi .framer-1t3u76s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 32px 0px 32px 16px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-25bdf4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1jtai4n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-6rPDi .framer-165uguz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 633px; justify-content: center; overflow: visible; padding: 32px 64px 32px 64px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-1ububqv { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6rPDi .framer-g6uyol { align-content: center; align-items: center; align-self: start; background-color: #fafafa; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.06), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.055), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.055), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.055); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 310px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-6rPDi .framer-q6xfa5 { align-content: center; align-items: center; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 213px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-8ku3m6 { align-content: center; align-items: center; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 214px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-1981rzf { align-content: center; align-items: center; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 214px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6rPDi .framer-mivgzl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6rPDi.framer-1sdcd6k, .framer-6rPDi .framer-1w2mibg, .framer-6rPDi .framer-7a27ed, .framer-6rPDi .framer-17gob5t, .framer-6rPDi .framer-1hdjwje, .framer-6rPDi .framer-1yizcvp, .framer-6rPDi .framer-1c0izcn, .framer-6rPDi .framer-1wo18hz, .framer-6rPDi .framer-1733cjb, .framer-6rPDi .framer-1mbynzm, .framer-6rPDi .framer-11gd7oe, .framer-6rPDi .framer-1g141wn, .framer-6rPDi .framer-oq2koo, .framer-6rPDi .framer-1km9eby, .framer-6rPDi .framer-3p4bcn, .framer-6rPDi .framer-18sv6s1, .framer-6rPDi .framer-wz9r9l, .framer-6rPDi .framer-rbhsnl, .framer-6rPDi .framer-11n4s6o, .framer-6rPDi .framer-erd6u1, .framer-6rPDi .framer-ljonnm, .framer-6rPDi .framer-1ydy2e, .framer-6rPDi .framer-878v9i, .framer-6rPDi .framer-vani5n, .framer-6rPDi .framer-37si5q, .framer-6rPDi .framer-zmnck8, .framer-6rPDi .framer-v0hyw3, .framer-6rPDi .framer-46v08g, .framer-6rPDi .framer-k5x5we, .framer-6rPDi .framer-hn9kqc, .framer-6rPDi .framer-1dyjv6k, .framer-6rPDi .framer-138t9sx, .framer-6rPDi .framer-k443fd, .framer-6rPDi .framer-vpeq8j, .framer-6rPDi .framer-r165gx, .framer-6rPDi .framer-9ups8h, .framer-6rPDi .framer-lqnzd8, .framer-6rPDi .framer-1wc012y, .framer-6rPDi .framer-197raig, .framer-6rPDi .framer-aimsio, .framer-6rPDi .framer-1j7oaf2, .framer-6rPDi .framer-19ofxe2, .framer-6rPDi .framer-e2t05d, .framer-6rPDi .framer-5kj3ek, .framer-6rPDi .framer-tj9dqq, .framer-6rPDi .framer-4t9g74, .framer-6rPDi .framer-7wpbr6, .framer-6rPDi .framer-13f4s1s, .framer-6rPDi .framer-of2lww, .framer-6rPDi .framer-s8476e, .framer-6rPDi .framer-1qkittu, .framer-6rPDi .framer-jn0jhe, .framer-6rPDi .framer-4f6tq2, .framer-6rPDi .framer-182rkfy, .framer-6rPDi .framer-1vg6fg9, .framer-6rPDi .framer-896qts, .framer-6rPDi .framer-10gi0eq, .framer-6rPDi .framer-u88jwz, .framer-6rPDi .framer-aavd3x, .framer-6rPDi .framer-ec50s0, .framer-6rPDi .framer-1l1k66s, .framer-6rPDi .framer-1vnl1yd, .framer-6rPDi .framer-18g4j14, .framer-6rPDi .framer-14er9qz, .framer-6rPDi .framer-121c04z, .framer-6rPDi .framer-o32vk1, .framer-6rPDi .framer-p98ka1, .framer-6rPDi .framer-1kysw7y, .framer-6rPDi .framer-pusnju, .framer-6rPDi .framer-18dsx6e, .framer-6rPDi .framer-1b0tws7, .framer-6rPDi .framer-t7c448, .framer-6rPDi .framer-13w29d, .framer-6rPDi .framer-1rba6yi, .framer-6rPDi .framer-q0nv5a, .framer-6rPDi .framer-1uullo0, .framer-6rPDi .framer-3ldvsq, .framer-6rPDi .framer-144of4o, .framer-6rPDi .framer-ql5fuz, .framer-6rPDi .framer-hwtr1y, .framer-6rPDi .framer-1e1u33t, .framer-6rPDi .framer-1wl103i, .framer-6rPDi .framer-1a0yp30, .framer-6rPDi .framer-grbuj, .framer-6rPDi .framer-1ktvcex, .framer-6rPDi .framer-1a6mdmz, .framer-6rPDi .framer-z8ne79, .framer-6rPDi .framer-d7or1g, .framer-6rPDi .framer-1a5cmxe, .framer-6rPDi .framer-q9iqu7, .framer-6rPDi .framer-epvwzr, .framer-6rPDi .framer-1ll8vfc, .framer-6rPDi .framer-1o4l3v2, .framer-6rPDi .framer-1wjr0j0, .framer-6rPDi .framer-1ww854r, .framer-6rPDi .framer-12w3hkz, .framer-6rPDi .framer-fjsngl, .framer-6rPDi .framer-1k3az1b, .framer-6rPDi .framer-1irm6a2, .framer-6rPDi .framer-1ql01p, .framer-6rPDi .framer-143d92k, .framer-6rPDi .framer-qqev2b, .framer-6rPDi .framer-nyfvxe, .framer-6rPDi .framer-u1wzxr, .framer-6rPDi .framer-1gqaslb, .framer-6rPDi .framer-19zef2t, .framer-6rPDi .framer-cxhvxn, .framer-6rPDi .framer-1u2a0s2, .framer-6rPDi .framer-1ty8h8m, .framer-6rPDi .framer-ijgc1x, .framer-6rPDi .framer-v6e9t9, .framer-6rPDi .framer-c3ek87, .framer-6rPDi .framer-6qtule, .framer-6rPDi .framer-1ox3cfy, .framer-6rPDi .framer-1aa1bhx, .framer-6rPDi .framer-1ln8zm3, .framer-6rPDi .framer-123juq2, .framer-6rPDi .framer-ca4g4l, .framer-6rPDi .framer-1ivo3qm, .framer-6rPDi .framer-1xyrnnd, .framer-6rPDi .framer-1c50bmw, .framer-6rPDi .framer-zneg13, .framer-6rPDi .framer-1dbuxqv, .framer-6rPDi .framer-1arndhp, .framer-6rPDi .framer-1bljbds, .framer-6rPDi .framer-11eeqol, .framer-6rPDi .framer-1ephsso, .framer-6rPDi .framer-nnvjar, .framer-6rPDi .framer-jykjb6, .framer-6rPDi .framer-1um4sy0, .framer-6rPDi .framer-10g6qyf, .framer-6rPDi .framer-zcdlcr, .framer-6rPDi .framer-cpoe2p, .framer-6rPDi .framer-jo50ap, .framer-6rPDi .framer-qr75m, .framer-6rPDi .framer-ijxynn, .framer-6rPDi .framer-16vw5v7, .framer-6rPDi .framer-fp56hb, .framer-6rPDi .framer-gya3dc, .framer-6rPDi .framer-1uav6zr, .framer-6rPDi .framer-m6he5h, .framer-6rPDi .framer-1bz143v, .framer-6rPDi .framer-aqorkq, .framer-6rPDi .framer-1f9llmf, .framer-6rPDi .framer-4q5kkw, .framer-6rPDi .framer-b4tkjc, .framer-6rPDi .framer-1i8x4if, .framer-6rPDi .framer-zx3j89, .framer-6rPDi .framer-7isll, .framer-6rPDi .framer-1c9ld1x, .framer-6rPDi .framer-5ft7wy, .framer-6rPDi .framer-1ed8czt, .framer-6rPDi .framer-1e8mhzf, .framer-6rPDi .framer-1561klk, .framer-6rPDi .framer-15mr5z4, .framer-6rPDi .framer-1hfghce, .framer-6rPDi .framer-7zhu9k, .framer-6rPDi .framer-r5qfuj, .framer-6rPDi .framer-kxhqa, .framer-6rPDi .framer-3ou2ne, .framer-6rPDi .framer-18f3uv0, .framer-6rPDi .framer-c4qb3l, .framer-6rPDi .framer-1due89c, .framer-6rPDi .framer-1v0xwde, .framer-6rPDi .framer-136ttmu, .framer-6rPDi .framer-ouzsvp, .framer-6rPDi .framer-1cjpx8t, .framer-6rPDi .framer-1lf0pry, .framer-6rPDi .framer-svk294, .framer-6rPDi .framer-1yxyh8a, .framer-6rPDi .framer-t5oncx, .framer-6rPDi .framer-dk8wm6, .framer-6rPDi .framer-ah7gib, .framer-6rPDi .framer-1ofyb32, .framer-6rPDi .framer-1l43wiv, .framer-6rPDi .framer-1j7wh9s, .framer-6rPDi .framer-13063i5, .framer-6rPDi .framer-1g2n4qp, .framer-6rPDi .framer-hzs1fu, .framer-6rPDi .framer-qt3gct, .framer-6rPDi .framer-1mcrcic, .framer-6rPDi .framer-1tp6v4e, .framer-6rPDi .framer-gy1jeq, .framer-6rPDi .framer-1a6904r, .framer-6rPDi .framer-1m5hn5a, .framer-6rPDi .framer-1fm47mc, .framer-6rPDi .framer-iizxz2, .framer-6rPDi .framer-1mdhvef, .framer-6rPDi .framer-1yuqe8o, .framer-6rPDi .framer-vud7ck, .framer-6rPDi .framer-1cz7kup, .framer-6rPDi .framer-1yw8qwe, .framer-6rPDi .framer-19xzz70, .framer-6rPDi .framer-1cl5j7h, .framer-6rPDi .framer-1leu7q3, .framer-6rPDi .framer-ch1jns, .framer-6rPDi .framer-17hjf53, .framer-6rPDi .framer-bgidc9, .framer-6rPDi .framer-1ksi7z6, .framer-6rPDi .framer-natwvt, .framer-6rPDi .framer-u74can, .framer-6rPDi .framer-18ygfpp, .framer-6rPDi .framer-1vu9tsl, .framer-6rPDi .framer-1f64qbh, .framer-6rPDi .framer-otuwd0, .framer-6rPDi .framer-1rurdib, .framer-6rPDi .framer-1one3k9, .framer-6rPDi .framer-1xznvl4, .framer-6rPDi .framer-f3wmr1, .framer-6rPDi .framer-en4ixu, .framer-6rPDi .framer-1ieway1, .framer-6rPDi .framer-gbaoha, .framer-6rPDi .framer-1pbmihv, .framer-6rPDi .framer-1316zlt, .framer-6rPDi .framer-bvmney, .framer-6rPDi .framer-1yr0iox, .framer-6rPDi .framer-12yvunq, .framer-6rPDi .framer-1gl3iuy, .framer-6rPDi .framer-fi0dz8, .framer-6rPDi .framer-tshb6t, .framer-6rPDi .framer-1rok8r, .framer-6rPDi .framer-9fu5kk, .framer-6rPDi .framer-h15xgf, .framer-6rPDi .framer-qmkwad, .framer-6rPDi .framer-boplow, .framer-6rPDi .framer-1cuxw0, .framer-6rPDi .framer-1p3wn9b, .framer-6rPDi .framer-1rdkk1l, .framer-6rPDi .framer-1ct4qk5, .framer-6rPDi .framer-2xg4my, .framer-6rPDi .framer-cy50r3, .framer-6rPDi .framer-40l706, .framer-6rPDi .framer-45bagc, .framer-6rPDi .framer-xc5grn, .framer-6rPDi .framer-1vwepbu, .framer-6rPDi .framer-1ptrzrd, .framer-6rPDi .framer-rz32x8, .framer-6rPDi .framer-1ubj0o6, .framer-6rPDi .framer-1bs4xpz, .framer-6rPDi .framer-3oyz0y, .framer-6rPDi .framer-8rbcc7, .framer-6rPDi .framer-8zw4a1, .framer-6rPDi .framer-1s9wz72, .framer-6rPDi .framer-1t3u76s, .framer-6rPDi .framer-25bdf4, .framer-6rPDi .framer-1xhix4y, .framer-6rPDi .framer-165uguz, .framer-6rPDi .framer-4lbmm7, .framer-6rPDi .framer-g6uyol, .framer-6rPDi .framer-q6xfa5, .framer-6rPDi .framer-1url1ib, .framer-6rPDi .framer-1qouef9, .framer-6rPDi .framer-8ku3m6, .framer-6rPDi .framer-fb1soy, .framer-6rPDi .framer-1z002n3, .framer-6rPDi .framer-1981rzf, .framer-6rPDi .framer-1knulxl, .framer-6rPDi .framer-c4alwg, .framer-6rPDi .framer-mivgzl { gap: 0px; } .framer-6rPDi.framer-1sdcd6k > *, .framer-6rPDi .framer-19zef2t > *, .framer-6rPDi .framer-1i8x4if > *, .framer-6rPDi .framer-1561klk > *, .framer-6rPDi .framer-18f3uv0 > *, .framer-6rPDi .framer-1lf0pry > *, .framer-6rPDi .framer-1l43wiv > *, .framer-6rPDi .framer-1tp6v4e > *, .framer-6rPDi .framer-c4alwg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-6rPDi.framer-1sdcd6k > :first-child, .framer-6rPDi .framer-7a27ed > :first-child, .framer-6rPDi .framer-1wo18hz > :first-child, .framer-6rPDi .framer-1733cjb > :first-child, .framer-6rPDi .framer-1mbynzm > :first-child, .framer-6rPDi .framer-11gd7oe > :first-child, .framer-6rPDi .framer-oq2koo > :first-child, .framer-6rPDi .framer-1km9eby > :first-child, .framer-6rPDi .framer-18sv6s1 > :first-child, .framer-6rPDi .framer-wz9r9l > :first-child, .framer-6rPDi .framer-11n4s6o > :first-child, .framer-6rPDi .framer-erd6u1 > :first-child, .framer-6rPDi .framer-ljonnm > :first-child, .framer-6rPDi .framer-1ydy2e > :first-child, .framer-6rPDi .framer-vani5n > :first-child, .framer-6rPDi .framer-zmnck8 > :first-child, .framer-6rPDi .framer-46v08g > :first-child, .framer-6rPDi .framer-hn9kqc > :first-child, .framer-6rPDi .framer-k443fd > :first-child, .framer-6rPDi .framer-r165gx > :first-child, .framer-6rPDi .framer-lqnzd8 > :first-child, .framer-6rPDi .framer-197raig > :first-child, .framer-6rPDi .framer-1j7oaf2 > :first-child, .framer-6rPDi .framer-19ofxe2 > :first-child, .framer-6rPDi .framer-e2t05d > :first-child, .framer-6rPDi .framer-5kj3ek > :first-child, .framer-6rPDi .framer-4t9g74 > :first-child, .framer-6rPDi .framer-13f4s1s > :first-child, .framer-6rPDi .framer-s8476e > :first-child, .framer-6rPDi .framer-jn0jhe > :first-child, .framer-6rPDi .framer-4f6tq2 > :first-child, .framer-6rPDi .framer-1vg6fg9 > :first-child, .framer-6rPDi .framer-10gi0eq > :first-child, .framer-6rPDi .framer-aavd3x > :first-child, .framer-6rPDi .framer-1l1k66s > :first-child, .framer-6rPDi .framer-1vnl1yd > :first-child, .framer-6rPDi .framer-18g4j14 > :first-child, .framer-6rPDi .framer-121c04z > :first-child, .framer-6rPDi .framer-p98ka1 > :first-child, .framer-6rPDi .framer-1kysw7y > :first-child, .framer-6rPDi .framer-18dsx6e > :first-child, .framer-6rPDi .framer-1b0tws7 > :first-child, .framer-6rPDi .framer-13w29d > :first-child, .framer-6rPDi .framer-1rba6yi > :first-child, .framer-6rPDi .framer-q0nv5a > :first-child, .framer-6rPDi .framer-1uullo0 > :first-child, .framer-6rPDi .framer-3ldvsq > :first-child, .framer-6rPDi .framer-144of4o > :first-child, .framer-6rPDi .framer-ql5fuz > :first-child, .framer-6rPDi .framer-1wl103i > :first-child, .framer-6rPDi .framer-1a0yp30 > :first-child, .framer-6rPDi .framer-grbuj > :first-child, .framer-6rPDi .framer-1ktvcex > :first-child, .framer-6rPDi .framer-1a6mdmz > :first-child, .framer-6rPDi .framer-z8ne79 > :first-child, .framer-6rPDi .framer-d7or1g > :first-child, .framer-6rPDi .framer-1a5cmxe > :first-child, .framer-6rPDi .framer-epvwzr > :first-child, .framer-6rPDi .framer-1o4l3v2 > :first-child, .framer-6rPDi .framer-1ww854r > :first-child, .framer-6rPDi .framer-fjsngl > :first-child, .framer-6rPDi .framer-1k3az1b > :first-child, .framer-6rPDi .framer-1ql01p > :first-child, .framer-6rPDi .framer-qqev2b > :first-child, .framer-6rPDi .framer-u1wzxr > :first-child, .framer-6rPDi .framer-19zef2t > :first-child, .framer-6rPDi .framer-cxhvxn > :first-child, .framer-6rPDi .framer-6qtule > :first-child, .framer-6rPDi .framer-1ivo3qm > :first-child, .framer-6rPDi .framer-1bljbds > :first-child, .framer-6rPDi .framer-10g6qyf > :first-child, .framer-6rPDi .framer-16vw5v7 > :first-child, .framer-6rPDi .framer-aqorkq > :first-child, .framer-6rPDi .framer-1f9llmf > :first-child, .framer-6rPDi .framer-4q5kkw > :first-child, .framer-6rPDi .framer-1i8x4if > :first-child, .framer-6rPDi .framer-5ft7wy > :first-child, .framer-6rPDi .framer-1ed8czt > :first-child, .framer-6rPDi .framer-1561klk > :first-child, .framer-6rPDi .framer-r5qfuj > :first-child, .framer-6rPDi .framer-kxhqa > :first-child, .framer-6rPDi .framer-18f3uv0 > :first-child, .framer-6rPDi .framer-136ttmu > :first-child, .framer-6rPDi .framer-ouzsvp > :first-child, .framer-6rPDi .framer-1lf0pry > :first-child, .framer-6rPDi .framer-dk8wm6 > :first-child, .framer-6rPDi .framer-ah7gib > :first-child, .framer-6rPDi .framer-1l43wiv > :first-child, .framer-6rPDi .framer-hzs1fu > :first-child, .framer-6rPDi .framer-qt3gct > :first-child, .framer-6rPDi .framer-1tp6v4e > :first-child, .framer-6rPDi .framer-1fm47mc > :first-child, .framer-6rPDi .framer-1yw8qwe > :first-child, .framer-6rPDi .framer-bgidc9 > :first-child, .framer-6rPDi .framer-1f64qbh > :first-child, .framer-6rPDi .framer-en4ixu > :first-child, .framer-6rPDi .framer-1yr0iox > :first-child, .framer-6rPDi .framer-9fu5kk > :first-child, .framer-6rPDi .framer-qmkwad > :first-child, .framer-6rPDi .framer-boplow > :first-child, .framer-6rPDi .framer-1cuxw0 > :first-child, .framer-6rPDi .framer-1p3wn9b > :first-child, .framer-6rPDi .framer-1rdkk1l > :first-child, .framer-6rPDi .framer-1ct4qk5 > :first-child, .framer-6rPDi .framer-2xg4my > :first-child, .framer-6rPDi .framer-cy50r3 > :first-child, .framer-6rPDi .framer-40l706 > :first-child, .framer-6rPDi .framer-45bagc > :first-child, .framer-6rPDi .framer-xc5grn > :first-child, .framer-6rPDi .framer-1vwepbu > :first-child, .framer-6rPDi .framer-1ptrzrd > :first-child, .framer-6rPDi .framer-rz32x8 > :first-child, .framer-6rPDi .framer-1ubj0o6 > :first-child, .framer-6rPDi .framer-1bs4xpz > :first-child, .framer-6rPDi .framer-3oyz0y > :first-child, .framer-6rPDi .framer-8rbcc7 > :first-child, .framer-6rPDi .framer-8zw4a1 > :first-child, .framer-6rPDi .framer-1t3u76s > :first-child, .framer-6rPDi .framer-165uguz > :first-child, .framer-6rPDi .framer-g6uyol > :first-child, .framer-6rPDi .framer-q6xfa5 > :first-child, .framer-6rPDi .framer-1url1ib > :first-child, .framer-6rPDi .framer-1qouef9 > :first-child, .framer-6rPDi .framer-8ku3m6 > :first-child, .framer-6rPDi .framer-fb1soy > :first-child, .framer-6rPDi .framer-1z002n3 > :first-child, .framer-6rPDi .framer-1981rzf > :first-child, .framer-6rPDi .framer-1knulxl > :first-child, .framer-6rPDi .framer-c4alwg > :first-child, .framer-6rPDi .framer-mivgzl > :first-child { margin-top: 0px; } .framer-6rPDi.framer-1sdcd6k > :last-child, .framer-6rPDi .framer-7a27ed > :last-child, .framer-6rPDi .framer-1wo18hz > :last-child, .framer-6rPDi .framer-1733cjb > :last-child, .framer-6rPDi .framer-1mbynzm > :last-child, .framer-6rPDi .framer-11gd7oe > :last-child, .framer-6rPDi .framer-oq2koo > :last-child, .framer-6rPDi .framer-1km9eby > :last-child, .framer-6rPDi .framer-18sv6s1 > :last-child, .framer-6rPDi .framer-wz9r9l > :last-child, .framer-6rPDi .framer-11n4s6o > :last-child, .framer-6rPDi .framer-erd6u1 > :last-child, .framer-6rPDi .framer-ljonnm > :last-child, .framer-6rPDi .framer-1ydy2e > :last-child, .framer-6rPDi .framer-vani5n > :last-child, .framer-6rPDi .framer-zmnck8 > :last-child, .framer-6rPDi .framer-46v08g > :last-child, .framer-6rPDi .framer-hn9kqc > :last-child, .framer-6rPDi .framer-k443fd > :last-child, .framer-6rPDi .framer-r165gx > :last-child, .framer-6rPDi .framer-lqnzd8 > :last-child, .framer-6rPDi .framer-197raig > :last-child, .framer-6rPDi .framer-1j7oaf2 > :last-child, .framer-6rPDi .framer-19ofxe2 > :last-child, .framer-6rPDi .framer-e2t05d > :last-child, .framer-6rPDi .framer-5kj3ek > :last-child, .framer-6rPDi .framer-4t9g74 > :last-child, .framer-6rPDi .framer-13f4s1s > :last-child, .framer-6rPDi .framer-s8476e > :last-child, .framer-6rPDi .framer-jn0jhe > :last-child, .framer-6rPDi .framer-4f6tq2 > :last-child, .framer-6rPDi .framer-1vg6fg9 > :last-child, .framer-6rPDi .framer-10gi0eq > :last-child, .framer-6rPDi .framer-aavd3x > :last-child, .framer-6rPDi .framer-1l1k66s > :last-child, .framer-6rPDi .framer-1vnl1yd > :last-child, .framer-6rPDi .framer-18g4j14 > :last-child, .framer-6rPDi .framer-121c04z > :last-child, .framer-6rPDi .framer-p98ka1 > :last-child, .framer-6rPDi .framer-1kysw7y > :last-child, .framer-6rPDi .framer-18dsx6e > :last-child, .framer-6rPDi .framer-1b0tws7 > :last-child, .framer-6rPDi .framer-13w29d > :last-child, .framer-6rPDi .framer-1rba6yi > :last-child, .framer-6rPDi .framer-q0nv5a > :last-child, .framer-6rPDi .framer-1uullo0 > :last-child, .framer-6rPDi .framer-3ldvsq > :last-child, .framer-6rPDi .framer-144of4o > :last-child, .framer-6rPDi .framer-ql5fuz > :last-child, .framer-6rPDi .framer-1wl103i > :last-child, .framer-6rPDi .framer-1a0yp30 > :last-child, .framer-6rPDi .framer-grbuj > :last-child, .framer-6rPDi .framer-1ktvcex > :last-child, .framer-6rPDi .framer-1a6mdmz > :last-child, .framer-6rPDi .framer-z8ne79 > :last-child, .framer-6rPDi .framer-d7or1g > :last-child, .framer-6rPDi .framer-1a5cmxe > :last-child, .framer-6rPDi .framer-epvwzr > :last-child, .framer-6rPDi .framer-1o4l3v2 > :last-child, .framer-6rPDi .framer-1ww854r > :last-child, .framer-6rPDi .framer-fjsngl > :last-child, .framer-6rPDi .framer-1k3az1b > :last-child, .framer-6rPDi .framer-1ql01p > :last-child, .framer-6rPDi .framer-qqev2b > :last-child, .framer-6rPDi .framer-u1wzxr > :last-child, .framer-6rPDi .framer-19zef2t > :last-child, .framer-6rPDi .framer-cxhvxn > :last-child, .framer-6rPDi .framer-6qtule > :last-child, .framer-6rPDi .framer-1ivo3qm > :last-child, .framer-6rPDi .framer-1bljbds > :last-child, .framer-6rPDi .framer-10g6qyf > :last-child, .framer-6rPDi .framer-16vw5v7 > :last-child, .framer-6rPDi .framer-aqorkq > :last-child, .framer-6rPDi .framer-1f9llmf > :last-child, .framer-6rPDi .framer-4q5kkw > :last-child, .framer-6rPDi .framer-1i8x4if > :last-child, .framer-6rPDi .framer-5ft7wy > :last-child, .framer-6rPDi .framer-1ed8czt > :last-child, .framer-6rPDi .framer-1561klk > :last-child, .framer-6rPDi .framer-r5qfuj > :last-child, .framer-6rPDi .framer-kxhqa > :last-child, .framer-6rPDi .framer-18f3uv0 > :last-child, .framer-6rPDi .framer-136ttmu > :last-child, .framer-6rPDi .framer-ouzsvp > :last-child, .framer-6rPDi .framer-1lf0pry > :last-child, .framer-6rPDi .framer-dk8wm6 > :last-child, .framer-6rPDi .framer-ah7gib > :last-child, .framer-6rPDi .framer-1l43wiv > :last-child, .framer-6rPDi .framer-hzs1fu > :last-child, .framer-6rPDi .framer-qt3gct > :last-child, .framer-6rPDi .framer-1tp6v4e > :last-child, .framer-6rPDi .framer-1fm47mc > :last-child, .framer-6rPDi .framer-1yw8qwe > :last-child, .framer-6rPDi .framer-bgidc9 > :last-child, .framer-6rPDi .framer-1f64qbh > :last-child, .framer-6rPDi .framer-en4ixu > :last-child, .framer-6rPDi .framer-1yr0iox > :last-child, .framer-6rPDi .framer-9fu5kk > :last-child, .framer-6rPDi .framer-qmkwad > :last-child, .framer-6rPDi .framer-boplow > :last-child, .framer-6rPDi .framer-1cuxw0 > :last-child, .framer-6rPDi .framer-1p3wn9b > :last-child, .framer-6rPDi .framer-1rdkk1l > :last-child, .framer-6rPDi .framer-1ct4qk5 > :last-child, .framer-6rPDi .framer-2xg4my > :last-child, .framer-6rPDi .framer-cy50r3 > :last-child, .framer-6rPDi .framer-40l706 > :last-child, .framer-6rPDi .framer-45bagc > :last-child, .framer-6rPDi .framer-xc5grn > :last-child, .framer-6rPDi .framer-1vwepbu > :last-child, .framer-6rPDi .framer-1ptrzrd > :last-child, .framer-6rPDi .framer-rz32x8 > :last-child, .framer-6rPDi .framer-1ubj0o6 > :last-child, .framer-6rPDi .framer-1bs4xpz > :last-child, .framer-6rPDi .framer-3oyz0y > :last-child, .framer-6rPDi .framer-8rbcc7 > :last-child, .framer-6rPDi .framer-8zw4a1 > :last-child, .framer-6rPDi .framer-1t3u76s > :last-child, .framer-6rPDi .framer-165uguz > :last-child, .framer-6rPDi .framer-g6uyol > :last-child, .framer-6rPDi .framer-q6xfa5 > :last-child, .framer-6rPDi .framer-1url1ib > :last-child, .framer-6rPDi .framer-1qouef9 > :last-child, .framer-6rPDi .framer-8ku3m6 > :last-child, .framer-6rPDi .framer-fb1soy > :last-child, .framer-6rPDi .framer-1z002n3 > :last-child, .framer-6rPDi .framer-1981rzf > :last-child, .framer-6rPDi .framer-1knulxl > :last-child, .framer-6rPDi .framer-c4alwg > :last-child, .framer-6rPDi .framer-mivgzl > :last-child { margin-bottom: 0px; } .framer-6rPDi .framer-1w2mibg > *, .framer-6rPDi .framer-17gob5t > *, .framer-6rPDi .framer-1hdjwje > *, .framer-6rPDi .framer-1yizcvp > *, .framer-6rPDi .framer-1xhix4y > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-6rPDi .framer-1w2mibg > :first-child, .framer-6rPDi .framer-17gob5t > :first-child, .framer-6rPDi .framer-1hdjwje > :first-child, .framer-6rPDi .framer-1yizcvp > :first-child, .framer-6rPDi .framer-1c0izcn > :first-child, .framer-6rPDi .framer-1g141wn > :first-child, .framer-6rPDi .framer-3p4bcn > :first-child, .framer-6rPDi .framer-rbhsnl > :first-child, .framer-6rPDi .framer-878v9i > :first-child, .framer-6rPDi .framer-37si5q > :first-child, .framer-6rPDi .framer-v0hyw3 > :first-child, .framer-6rPDi .framer-k5x5we > :first-child, .framer-6rPDi .framer-1dyjv6k > :first-child, .framer-6rPDi .framer-138t9sx > :first-child, .framer-6rPDi .framer-vpeq8j > :first-child, .framer-6rPDi .framer-9ups8h > :first-child, .framer-6rPDi .framer-1wc012y > :first-child, .framer-6rPDi .framer-aimsio > :first-child, .framer-6rPDi .framer-tj9dqq > :first-child, .framer-6rPDi .framer-7wpbr6 > :first-child, .framer-6rPDi .framer-of2lww > :first-child, .framer-6rPDi .framer-1qkittu > :first-child, .framer-6rPDi .framer-182rkfy > :first-child, .framer-6rPDi .framer-896qts > :first-child, .framer-6rPDi .framer-u88jwz > :first-child, .framer-6rPDi .framer-ec50s0 > :first-child, .framer-6rPDi .framer-14er9qz > :first-child, .framer-6rPDi .framer-o32vk1 > :first-child, .framer-6rPDi .framer-pusnju > :first-child, .framer-6rPDi .framer-t7c448 > :first-child, .framer-6rPDi .framer-hwtr1y > :first-child, .framer-6rPDi .framer-1e1u33t > :first-child, .framer-6rPDi .framer-q9iqu7 > :first-child, .framer-6rPDi .framer-1ll8vfc > :first-child, .framer-6rPDi .framer-1wjr0j0 > :first-child, .framer-6rPDi .framer-12w3hkz > :first-child, .framer-6rPDi .framer-1irm6a2 > :first-child, .framer-6rPDi .framer-143d92k > :first-child, .framer-6rPDi .framer-nyfvxe > :first-child, .framer-6rPDi .framer-1gqaslb > :first-child, .framer-6rPDi .framer-1u2a0s2 > :first-child, .framer-6rPDi .framer-1ty8h8m > :first-child, .framer-6rPDi .framer-ijgc1x > :first-child, .framer-6rPDi .framer-v6e9t9 > :first-child, .framer-6rPDi .framer-c3ek87 > :first-child, .framer-6rPDi .framer-1ox3cfy > :first-child, .framer-6rPDi .framer-1aa1bhx > :first-child, .framer-6rPDi .framer-1ln8zm3 > :first-child, .framer-6rPDi .framer-123juq2 > :first-child, .framer-6rPDi .framer-ca4g4l > :first-child, .framer-6rPDi .framer-1xyrnnd > :first-child, .framer-6rPDi .framer-1c50bmw > :first-child, .framer-6rPDi .framer-zneg13 > :first-child, .framer-6rPDi .framer-1dbuxqv > :first-child, .framer-6rPDi .framer-1arndhp > :first-child, .framer-6rPDi .framer-11eeqol > :first-child, .framer-6rPDi .framer-1ephsso > :first-child, .framer-6rPDi .framer-nnvjar > :first-child, .framer-6rPDi .framer-jykjb6 > :first-child, .framer-6rPDi .framer-1um4sy0 > :first-child, .framer-6rPDi .framer-zcdlcr > :first-child, .framer-6rPDi .framer-cpoe2p > :first-child, .framer-6rPDi .framer-jo50ap > :first-child, .framer-6rPDi .framer-qr75m > :first-child, .framer-6rPDi .framer-ijxynn > :first-child, .framer-6rPDi .framer-fp56hb > :first-child, .framer-6rPDi .framer-gya3dc > :first-child, .framer-6rPDi .framer-1uav6zr > :first-child, .framer-6rPDi .framer-m6he5h > :first-child, .framer-6rPDi .framer-1bz143v > :first-child, .framer-6rPDi .framer-b4tkjc > :first-child, .framer-6rPDi .framer-zx3j89 > :first-child, .framer-6rPDi .framer-7isll > :first-child, .framer-6rPDi .framer-1c9ld1x > :first-child, .framer-6rPDi .framer-1e8mhzf > :first-child, .framer-6rPDi .framer-15mr5z4 > :first-child, .framer-6rPDi .framer-1hfghce > :first-child, .framer-6rPDi .framer-7zhu9k > :first-child, .framer-6rPDi .framer-3ou2ne > :first-child, .framer-6rPDi .framer-c4qb3l > :first-child, .framer-6rPDi .framer-1due89c > :first-child, .framer-6rPDi .framer-1v0xwde > :first-child, .framer-6rPDi .framer-1cjpx8t > :first-child, .framer-6rPDi .framer-svk294 > :first-child, .framer-6rPDi .framer-1yxyh8a > :first-child, .framer-6rPDi .framer-t5oncx > :first-child, .framer-6rPDi .framer-1ofyb32 > :first-child, .framer-6rPDi .framer-1j7wh9s > :first-child, .framer-6rPDi .framer-13063i5 > :first-child, .framer-6rPDi .framer-1g2n4qp > :first-child, .framer-6rPDi .framer-1mcrcic > :first-child, .framer-6rPDi .framer-gy1jeq > :first-child, .framer-6rPDi .framer-1a6904r > :first-child, .framer-6rPDi .framer-1m5hn5a > :first-child, .framer-6rPDi .framer-iizxz2 > :first-child, .framer-6rPDi .framer-1mdhvef > :first-child, .framer-6rPDi .framer-1yuqe8o > :first-child, .framer-6rPDi .framer-vud7ck > :first-child, .framer-6rPDi .framer-1cz7kup > :first-child, .framer-6rPDi .framer-19xzz70 > :first-child, .framer-6rPDi .framer-1cl5j7h > :first-child, .framer-6rPDi .framer-1leu7q3 > :first-child, .framer-6rPDi .framer-ch1jns > :first-child, .framer-6rPDi .framer-17hjf53 > :first-child, .framer-6rPDi .framer-1ksi7z6 > :first-child, .framer-6rPDi .framer-natwvt > :first-child, .framer-6rPDi .framer-u74can > :first-child, .framer-6rPDi .framer-18ygfpp > :first-child, .framer-6rPDi .framer-1vu9tsl > :first-child, .framer-6rPDi .framer-otuwd0 > :first-child, .framer-6rPDi .framer-1rurdib > :first-child, .framer-6rPDi .framer-1one3k9 > :first-child, .framer-6rPDi .framer-1xznvl4 > :first-child, .framer-6rPDi .framer-f3wmr1 > :first-child, .framer-6rPDi .framer-1ieway1 > :first-child, .framer-6rPDi .framer-gbaoha > :first-child, .framer-6rPDi .framer-1pbmihv > :first-child, .framer-6rPDi .framer-1316zlt > :first-child, .framer-6rPDi .framer-bvmney > :first-child, .framer-6rPDi .framer-12yvunq > :first-child, .framer-6rPDi .framer-1gl3iuy > :first-child, .framer-6rPDi .framer-fi0dz8 > :first-child, .framer-6rPDi .framer-tshb6t > :first-child, .framer-6rPDi .framer-1rok8r > :first-child, .framer-6rPDi .framer-h15xgf > :first-child, .framer-6rPDi .framer-1s9wz72 > :first-child, .framer-6rPDi .framer-25bdf4 > :first-child, .framer-6rPDi .framer-1xhix4y > :first-child, .framer-6rPDi .framer-4lbmm7 > :first-child { margin-left: 0px; } .framer-6rPDi .framer-1w2mibg > :last-child, .framer-6rPDi .framer-17gob5t > :last-child, .framer-6rPDi .framer-1hdjwje > :last-child, .framer-6rPDi .framer-1yizcvp > :last-child, .framer-6rPDi .framer-1c0izcn > :last-child, .framer-6rPDi .framer-1g141wn > :last-child, .framer-6rPDi .framer-3p4bcn > :last-child, .framer-6rPDi .framer-rbhsnl > :last-child, .framer-6rPDi .framer-878v9i > :last-child, .framer-6rPDi .framer-37si5q > :last-child, .framer-6rPDi .framer-v0hyw3 > :last-child, .framer-6rPDi .framer-k5x5we > :last-child, .framer-6rPDi .framer-1dyjv6k > :last-child, .framer-6rPDi .framer-138t9sx > :last-child, .framer-6rPDi .framer-vpeq8j > :last-child, .framer-6rPDi .framer-9ups8h > :last-child, .framer-6rPDi .framer-1wc012y > :last-child, .framer-6rPDi .framer-aimsio > :last-child, .framer-6rPDi .framer-tj9dqq > :last-child, .framer-6rPDi .framer-7wpbr6 > :last-child, .framer-6rPDi .framer-of2lww > :last-child, .framer-6rPDi .framer-1qkittu > :last-child, .framer-6rPDi .framer-182rkfy > :last-child, .framer-6rPDi .framer-896qts > :last-child, .framer-6rPDi .framer-u88jwz > :last-child, .framer-6rPDi .framer-ec50s0 > :last-child, .framer-6rPDi .framer-14er9qz > :last-child, .framer-6rPDi .framer-o32vk1 > :last-child, .framer-6rPDi .framer-pusnju > :last-child, .framer-6rPDi .framer-t7c448 > :last-child, .framer-6rPDi .framer-hwtr1y > :last-child, .framer-6rPDi .framer-1e1u33t > :last-child, .framer-6rPDi .framer-q9iqu7 > :last-child, .framer-6rPDi .framer-1ll8vfc > :last-child, .framer-6rPDi .framer-1wjr0j0 > :last-child, .framer-6rPDi .framer-12w3hkz > :last-child, .framer-6rPDi .framer-1irm6a2 > :last-child, .framer-6rPDi .framer-143d92k > :last-child, .framer-6rPDi .framer-nyfvxe > :last-child, .framer-6rPDi .framer-1gqaslb > :last-child, .framer-6rPDi .framer-1u2a0s2 > :last-child, .framer-6rPDi .framer-1ty8h8m > :last-child, .framer-6rPDi .framer-ijgc1x > :last-child, .framer-6rPDi .framer-v6e9t9 > :last-child, .framer-6rPDi .framer-c3ek87 > :last-child, .framer-6rPDi .framer-1ox3cfy > :last-child, .framer-6rPDi .framer-1aa1bhx > :last-child, .framer-6rPDi .framer-1ln8zm3 > :last-child, .framer-6rPDi .framer-123juq2 > :last-child, .framer-6rPDi .framer-ca4g4l > :last-child, .framer-6rPDi .framer-1xyrnnd > :last-child, .framer-6rPDi .framer-1c50bmw > :last-child, .framer-6rPDi .framer-zneg13 > :last-child, .framer-6rPDi .framer-1dbuxqv > :last-child, .framer-6rPDi .framer-1arndhp > :last-child, .framer-6rPDi .framer-11eeqol > :last-child, .framer-6rPDi .framer-1ephsso > :last-child, .framer-6rPDi .framer-nnvjar > :last-child, .framer-6rPDi .framer-jykjb6 > :last-child, .framer-6rPDi .framer-1um4sy0 > :last-child, .framer-6rPDi .framer-zcdlcr > :last-child, .framer-6rPDi .framer-cpoe2p > :last-child, .framer-6rPDi .framer-jo50ap > :last-child, .framer-6rPDi .framer-qr75m > :last-child, .framer-6rPDi .framer-ijxynn > :last-child, .framer-6rPDi .framer-fp56hb > :last-child, .framer-6rPDi .framer-gya3dc > :last-child, .framer-6rPDi .framer-1uav6zr > :last-child, .framer-6rPDi .framer-m6he5h > :last-child, .framer-6rPDi .framer-1bz143v > :last-child, .framer-6rPDi .framer-b4tkjc > :last-child, .framer-6rPDi .framer-zx3j89 > :last-child, .framer-6rPDi .framer-7isll > :last-child, .framer-6rPDi .framer-1c9ld1x > :last-child, .framer-6rPDi .framer-1e8mhzf > :last-child, .framer-6rPDi .framer-15mr5z4 > :last-child, .framer-6rPDi .framer-1hfghce > :last-child, .framer-6rPDi .framer-7zhu9k > :last-child, .framer-6rPDi .framer-3ou2ne > :last-child, .framer-6rPDi .framer-c4qb3l > :last-child, .framer-6rPDi .framer-1due89c > :last-child, .framer-6rPDi .framer-1v0xwde > :last-child, .framer-6rPDi .framer-1cjpx8t > :last-child, .framer-6rPDi .framer-svk294 > :last-child, .framer-6rPDi .framer-1yxyh8a > :last-child, .framer-6rPDi .framer-t5oncx > :last-child, .framer-6rPDi .framer-1ofyb32 > :last-child, .framer-6rPDi .framer-1j7wh9s > :last-child, .framer-6rPDi .framer-13063i5 > :last-child, .framer-6rPDi .framer-1g2n4qp > :last-child, .framer-6rPDi .framer-1mcrcic > :last-child, .framer-6rPDi .framer-gy1jeq > :last-child, .framer-6rPDi .framer-1a6904r > :last-child, .framer-6rPDi .framer-1m5hn5a > :last-child, .framer-6rPDi .framer-iizxz2 > :last-child, .framer-6rPDi .framer-1mdhvef > :last-child, .framer-6rPDi .framer-1yuqe8o > :last-child, .framer-6rPDi .framer-vud7ck > :last-child, .framer-6rPDi .framer-1cz7kup > :last-child, .framer-6rPDi .framer-19xzz70 > :last-child, .framer-6rPDi .framer-1cl5j7h > :last-child, .framer-6rPDi .framer-1leu7q3 > :last-child, .framer-6rPDi .framer-ch1jns > :last-child, .framer-6rPDi .framer-17hjf53 > :last-child, .framer-6rPDi .framer-1ksi7z6 > :last-child, .framer-6rPDi .framer-natwvt > :last-child, .framer-6rPDi .framer-u74can > :last-child, .framer-6rPDi .framer-18ygfpp > :last-child, .framer-6rPDi .framer-1vu9tsl > :last-child, .framer-6rPDi .framer-otuwd0 > :last-child, .framer-6rPDi .framer-1rurdib > :last-child, .framer-6rPDi .framer-1one3k9 > :last-child, .framer-6rPDi .framer-1xznvl4 > :last-child, .framer-6rPDi .framer-f3wmr1 > :last-child, .framer-6rPDi .framer-1ieway1 > :last-child, .framer-6rPDi .framer-gbaoha > :last-child, .framer-6rPDi .framer-1pbmihv > :last-child, .framer-6rPDi .framer-1316zlt > :last-child, .framer-6rPDi .framer-bvmney > :last-child, .framer-6rPDi .framer-12yvunq > :last-child, .framer-6rPDi .framer-1gl3iuy > :last-child, .framer-6rPDi .framer-fi0dz8 > :last-child, .framer-6rPDi .framer-tshb6t > :last-child, .framer-6rPDi .framer-1rok8r > :last-child, .framer-6rPDi .framer-h15xgf > :last-child, .framer-6rPDi .framer-1s9wz72 > :last-child, .framer-6rPDi .framer-25bdf4 > :last-child, .framer-6rPDi .framer-1xhix4y > :last-child, .framer-6rPDi .framer-4lbmm7 > :last-child { margin-right: 0px; } .framer-6rPDi .framer-7a27ed > *, .framer-6rPDi .framer-1vnl1yd > *, .framer-6rPDi .framer-q0nv5a > *, .framer-6rPDi .framer-boplow > *, .framer-6rPDi .framer-1rdkk1l > *, .framer-6rPDi .framer-cy50r3 > *, .framer-6rPDi .framer-xc5grn > *, .framer-6rPDi .framer-rz32x8 > *, .framer-6rPDi .framer-3oyz0y > *, .framer-6rPDi .framer-8zw4a1 > *, .framer-6rPDi .framer-q6xfa5 > *, .framer-6rPDi .framer-8ku3m6 > *, .framer-6rPDi .framer-1981rzf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-6rPDi .framer-1c0izcn > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-6rPDi .framer-1wo18hz > *, .framer-6rPDi .framer-1uullo0 > *, .framer-6rPDi .framer-cxhvxn > *, .framer-6rPDi .framer-6qtule > *, .framer-6rPDi .framer-1ivo3qm > *, .framer-6rPDi .framer-1bljbds > *, .framer-6rPDi .framer-10g6qyf > *, .framer-6rPDi .framer-16vw5v7 > *, .framer-6rPDi .framer-1fm47mc > *, .framer-6rPDi .framer-1yw8qwe > *, .framer-6rPDi .framer-bgidc9 > *, .framer-6rPDi .framer-1f64qbh > *, .framer-6rPDi .framer-en4ixu > *, .framer-6rPDi .framer-1yr0iox > *, .framer-6rPDi .framer-1cuxw0 > *, .framer-6rPDi .framer-1ct4qk5 > *, .framer-6rPDi .framer-40l706 > *, .framer-6rPDi .framer-1vwepbu > *, .framer-6rPDi .framer-1ubj0o6 > *, .framer-6rPDi .framer-8rbcc7 > *, .framer-6rPDi .framer-1url1ib > *, .framer-6rPDi .framer-fb1soy > *, .framer-6rPDi .framer-1knulxl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6rPDi .framer-1733cjb > *, .framer-6rPDi .framer-1mbynzm > *, .framer-6rPDi .framer-ljonnm > *, .framer-6rPDi .framer-1j7oaf2 > *, .framer-6rPDi .framer-18g4j14 > *, .framer-6rPDi .framer-144of4o > *, .framer-6rPDi .framer-1a6mdmz > *, .framer-6rPDi .framer-4q5kkw > *, .framer-6rPDi .framer-1ed8czt > *, .framer-6rPDi .framer-kxhqa > *, .framer-6rPDi .framer-ouzsvp > *, .framer-6rPDi .framer-ah7gib > *, .framer-6rPDi .framer-qt3gct > *, .framer-6rPDi .framer-qmkwad > *, .framer-6rPDi .framer-1p3wn9b > *, .framer-6rPDi .framer-2xg4my > *, .framer-6rPDi .framer-45bagc > *, .framer-6rPDi .framer-1ptrzrd > *, .framer-6rPDi .framer-1bs4xpz > *, .framer-6rPDi .framer-g6uyol > *, .framer-6rPDi .framer-1qouef9 > *, .framer-6rPDi .framer-1z002n3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-6rPDi .framer-11gd7oe > *, .framer-6rPDi .framer-1km9eby > *, .framer-6rPDi .framer-wz9r9l > *, .framer-6rPDi .framer-1ydy2e > *, .framer-6rPDi .framer-19ofxe2 > *, .framer-6rPDi .framer-e2t05d > *, .framer-6rPDi .framer-5kj3ek > *, .framer-6rPDi .framer-13f4s1s > *, .framer-6rPDi .framer-jn0jhe > *, .framer-6rPDi .framer-4f6tq2 > *, .framer-6rPDi .framer-10gi0eq > *, .framer-6rPDi .framer-ql5fuz > *, .framer-6rPDi .framer-1wl103i > *, .framer-6rPDi .framer-z8ne79 > *, .framer-6rPDi .framer-d7or1g > *, .framer-6rPDi .framer-1a5cmxe > *, .framer-6rPDi .framer-1o4l3v2 > *, .framer-6rPDi .framer-fjsngl > *, .framer-6rPDi .framer-1k3az1b > *, .framer-6rPDi .framer-qqev2b > *, .framer-6rPDi .framer-136ttmu > *, .framer-6rPDi .framer-hzs1fu > *, .framer-6rPDi .framer-9fu5kk > *, .framer-6rPDi .framer-1t3u76s > *, .framer-6rPDi .framer-165uguz > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-6rPDi .framer-1g141wn > *, .framer-6rPDi .framer-3p4bcn > *, .framer-6rPDi .framer-rbhsnl > *, .framer-6rPDi .framer-o32vk1 > *, .framer-6rPDi .framer-pusnju > *, .framer-6rPDi .framer-t7c448 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-6rPDi .framer-oq2koo > *, .framer-6rPDi .framer-18sv6s1 > *, .framer-6rPDi .framer-11n4s6o > *, .framer-6rPDi .framer-zmnck8 > *, .framer-6rPDi .framer-hn9kqc > *, .framer-6rPDi .framer-r165gx > *, .framer-6rPDi .framer-197raig > *, .framer-6rPDi .framer-4t9g74 > *, .framer-6rPDi .framer-s8476e > *, .framer-6rPDi .framer-1vg6fg9 > *, .framer-6rPDi .framer-aavd3x > *, .framer-6rPDi .framer-p98ka1 > *, .framer-6rPDi .framer-18dsx6e > *, .framer-6rPDi .framer-13w29d > *, .framer-6rPDi .framer-epvwzr > *, .framer-6rPDi .framer-1ww854r > *, .framer-6rPDi .framer-1ql01p > *, .framer-6rPDi .framer-u1wzxr > *, .framer-6rPDi .framer-1f9llmf > *, .framer-6rPDi .framer-5ft7wy > *, .framer-6rPDi .framer-r5qfuj > *, .framer-6rPDi .framer-dk8wm6 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-6rPDi .framer-erd6u1 > *, .framer-6rPDi .framer-1l1k66s > *, .framer-6rPDi .framer-1rba6yi > *, .framer-6rPDi .framer-3ldvsq > *, .framer-6rPDi .framer-1a0yp30 > *, .framer-6rPDi .framer-grbuj > *, .framer-6rPDi .framer-1ktvcex > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-6rPDi .framer-878v9i > *, .framer-6rPDi .framer-138t9sx > *, .framer-6rPDi .framer-hwtr1y > *, .framer-6rPDi .framer-1e1u33t > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-6rPDi .framer-vani5n > *, .framer-6rPDi .framer-46v08g > * { margin: 0px; margin-bottom: calc(77px / 2); margin-top: calc(77px / 2); } .framer-6rPDi .framer-37si5q > *, .framer-6rPDi .framer-k5x5we > *, .framer-6rPDi .framer-vpeq8j > *, .framer-6rPDi .framer-1wc012y > *, .framer-6rPDi .framer-tj9dqq > *, .framer-6rPDi .framer-of2lww > *, .framer-6rPDi .framer-182rkfy > *, .framer-6rPDi .framer-u88jwz > *, .framer-6rPDi .framer-q9iqu7 > *, .framer-6rPDi .framer-1wjr0j0 > *, .framer-6rPDi .framer-1irm6a2 > *, .framer-6rPDi .framer-nyfvxe > *, .framer-6rPDi .framer-v6e9t9 > *, .framer-6rPDi .framer-c3ek87 > *, .framer-6rPDi .framer-123juq2 > *, .framer-6rPDi .framer-ca4g4l > *, .framer-6rPDi .framer-1dbuxqv > *, .framer-6rPDi .framer-1arndhp > *, .framer-6rPDi .framer-jykjb6 > *, .framer-6rPDi .framer-1um4sy0 > *, .framer-6rPDi .framer-qr75m > *, .framer-6rPDi .framer-ijxynn > *, .framer-6rPDi .framer-m6he5h > *, .framer-6rPDi .framer-1bz143v > *, .framer-6rPDi .framer-vud7ck > *, .framer-6rPDi .framer-1cz7kup > *, .framer-6rPDi .framer-ch1jns > *, .framer-6rPDi .framer-17hjf53 > *, .framer-6rPDi .framer-18ygfpp > *, .framer-6rPDi .framer-1vu9tsl > *, .framer-6rPDi .framer-1xznvl4 > *, .framer-6rPDi .framer-f3wmr1 > *, .framer-6rPDi .framer-1316zlt > *, .framer-6rPDi .framer-bvmney > *, .framer-6rPDi .framer-tshb6t > *, .framer-6rPDi .framer-1rok8r > *, .framer-6rPDi .framer-1s9wz72 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6rPDi .framer-v0hyw3 > *, .framer-6rPDi .framer-1dyjv6k > *, .framer-6rPDi .framer-9ups8h > *, .framer-6rPDi .framer-aimsio > *, .framer-6rPDi .framer-7wpbr6 > *, .framer-6rPDi .framer-1qkittu > *, .framer-6rPDi .framer-896qts > *, .framer-6rPDi .framer-ec50s0 > *, .framer-6rPDi .framer-1ll8vfc > *, .framer-6rPDi .framer-12w3hkz > *, .framer-6rPDi .framer-143d92k > *, .framer-6rPDi .framer-1gqaslb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-6rPDi .framer-k443fd > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-6rPDi .framer-lqnzd8 > * { margin: 0px; margin-bottom: calc(97px / 2); margin-top: calc(97px / 2); } .framer-6rPDi .framer-14er9qz > *, .framer-6rPDi .framer-h15xgf > *, .framer-6rPDi .framer-25bdf4 > *, .framer-6rPDi .framer-4lbmm7 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-6rPDi .framer-121c04z > *, .framer-6rPDi .framer-1kysw7y > *, .framer-6rPDi .framer-1b0tws7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-6rPDi .framer-1u2a0s2 > *, .framer-6rPDi .framer-1ty8h8m > *, .framer-6rPDi .framer-1ox3cfy > *, .framer-6rPDi .framer-1aa1bhx > *, .framer-6rPDi .framer-1xyrnnd > *, .framer-6rPDi .framer-1c50bmw > *, .framer-6rPDi .framer-11eeqol > *, .framer-6rPDi .framer-1ephsso > *, .framer-6rPDi .framer-zcdlcr > *, .framer-6rPDi .framer-cpoe2p > *, .framer-6rPDi .framer-fp56hb > *, .framer-6rPDi .framer-gya3dc > *, .framer-6rPDi .framer-zx3j89 > *, .framer-6rPDi .framer-7isll > *, .framer-6rPDi .framer-15mr5z4 > *, .framer-6rPDi .framer-1hfghce > *, .framer-6rPDi .framer-c4qb3l > *, .framer-6rPDi .framer-1due89c > *, .framer-6rPDi .framer-svk294 > *, .framer-6rPDi .framer-1yxyh8a > *, .framer-6rPDi .framer-1j7wh9s > *, .framer-6rPDi .framer-13063i5 > *, .framer-6rPDi .framer-gy1jeq > *, .framer-6rPDi .framer-1a6904r > *, .framer-6rPDi .framer-iizxz2 > *, .framer-6rPDi .framer-1mdhvef > *, .framer-6rPDi .framer-19xzz70 > *, .framer-6rPDi .framer-1cl5j7h > *, .framer-6rPDi .framer-1ksi7z6 > *, .framer-6rPDi .framer-natwvt > *, .framer-6rPDi .framer-otuwd0 > *, .framer-6rPDi .framer-1rurdib > *, .framer-6rPDi .framer-1ieway1 > *, .framer-6rPDi .framer-gbaoha > *, .framer-6rPDi .framer-12yvunq > *, .framer-6rPDi .framer-1gl3iuy > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-6rPDi .framer-ijgc1x > *, .framer-6rPDi .framer-1ln8zm3 > *, .framer-6rPDi .framer-zneg13 > *, .framer-6rPDi .framer-nnvjar > *, .framer-6rPDi .framer-jo50ap > *, .framer-6rPDi .framer-1uav6zr > *, .framer-6rPDi .framer-1c9ld1x > *, .framer-6rPDi .framer-7zhu9k > *, .framer-6rPDi .framer-1v0xwde > *, .framer-6rPDi .framer-t5oncx > *, .framer-6rPDi .framer-1g2n4qp > *, .framer-6rPDi .framer-1m5hn5a > *, .framer-6rPDi .framer-1yuqe8o > *, .framer-6rPDi .framer-1leu7q3 > *, .framer-6rPDi .framer-u74can > *, .framer-6rPDi .framer-1one3k9 > *, .framer-6rPDi .framer-1pbmihv > *, .framer-6rPDi .framer-fi0dz8 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-6rPDi .framer-aqorkq > *, .framer-6rPDi .framer-mivgzl > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-6rPDi .framer-b4tkjc > *, .framer-6rPDi .framer-1e8mhzf > *, .framer-6rPDi .framer-3ou2ne > *, .framer-6rPDi .framer-1cjpx8t > *, .framer-6rPDi .framer-1ofyb32 > *, .framer-6rPDi .framer-1mcrcic > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-6rPDi.framer-1sdcd6k { width: 810px; } .framer-6rPDi .framer-pexnfp { order: 0; padding: 0px 64px 0px 64px; } .framer-6rPDi .framer-1w2mibg { flex: 1 0 0px; justify-content: flex-start; width: 1px; } .framer-6rPDi .framer-ijwjsg-container { width: 331px; } .framer-6rPDi .framer-8o4zqx { width: 450px; } .framer-6rPDi .framer-w1wrca { height: var(--framer-aspect-ratio-supported, 365px); width: 232px; } .framer-6rPDi .framer-1c0izcn { gap: 42px; order: 4; width: 100%; } .framer-6rPDi .framer-18nmdbh { height: var(--framer-aspect-ratio-supported, 57px); } .framer-6rPDi .framer-1l1k66s { order: 7; } .framer-6rPDi .framer-1vnl1yd { padding: 0px 64px 0px 64px; } .framer-6rPDi .framer-14er9qz, .framer-6rPDi .framer-yjbygh-container, .framer-6rPDi .framer-1x7lprn { width: 100%; } .framer-6rPDi .framer-121c04z, .framer-6rPDi .framer-1kysw7y { padding: 24px 16px 24px 16px; width: 213px; } .framer-6rPDi .framer-1a4p7td-container, .framer-6rPDi .framer-2r146p-container { height: var(--framer-aspect-ratio-supported, 35px); width: 32px; } .framer-6rPDi .framer-1vk5gfx, .framer-6rPDi .framer-yz9c37, .framer-6rPDi .framer-1o4l3v2 { order: 0; } .framer-6rPDi .framer-l6aido, .framer-6rPDi .framer-1bf7sp4-container, .framer-6rPDi .framer-1a5cmxe { order: 1; } .framer-6rPDi .framer-pusnju { order: 2; } .framer-6rPDi .framer-17jedhh-container { height: 32px; left: calc(50.00000000000002% - 32px / 2); top: calc(50.00000000000002% - 32px / 2); width: 32px; } .framer-6rPDi .framer-1b0tws7 { padding: 24px 16px 24px 16px; width: 212px; } .framer-6rPDi .framer-1wl103i { order: 10; } .framer-6rPDi .framer-nhfg3p-container { height: 408px; order: 0; width: 723px; } .framer-6rPDi .framer-1a0yp30 { order: 9; } .framer-6rPDi .framer-19zef2t { order: 11; } .framer-6rPDi .framer-9fu5kk { height: 633px; order: 13; padding: 32px 64px 32px 64px; } .framer-6rPDi .framer-qmkwad { height: 310px; overflow: hidden; } .framer-6rPDi .framer-boplow { flex: 1 0 0px; height: 1px; width: var(--framer-aspect-ratio-supported, 213px); } .framer-6rPDi .framer-1rdkk1l { height: var(--framer-aspect-ratio-supported, 217px); } .framer-6rPDi .framer-cy50r3 { width: var(--framer-aspect-ratio-supported, 239px); } .framer-6rPDi .framer-1xbs8s2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 14; padding: 0px; } .framer-6rPDi .framer-8zw4a1 { left: unset; padding: 100px 64px 100px 64px; position: relative; top: unset; transform: unset; width: 810px; } .framer-6rPDi .framer-11vqibd-container { order: 15; } .framer-6rPDi .framer-13t6zzj-container { order: 17; } .framer-6rPDi .framer-r2f1w7-container { order: 24; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6rPDi .framer-1c0izcn, .framer-6rPDi .framer-1xbs8s2 { gap: 0px; } .framer-6rPDi .framer-1c0izcn > * { margin: 0px; margin-left: calc(42px / 2); margin-right: calc(42px / 2); } .framer-6rPDi .framer-1c0izcn > :first-child, .framer-6rPDi .framer-1xbs8s2 > :first-child { margin-left: 0px; } .framer-6rPDi .framer-1c0izcn > :last-child, .framer-6rPDi .framer-1xbs8s2 > :last-child { margin-right: 0px; } .framer-6rPDi .framer-1xbs8s2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }}\",\"@media (min-width: 390px) and (max-width: 799px) { .framer-6rPDi.framer-1sdcd6k { width: 390px; } .framer-6rPDi .framer-pexnfp { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 20px; justify-content: center; order: 0; padding: 0px 16px 0px 16px; } .framer-6rPDi .framer-1w2mibg, .framer-6rPDi .framer-h15xgf { order: 0; width: 100%; } .framer-6rPDi .framer-7a27ed { align-content: center; align-items: center; justify-content: flex-start; max-width: unset; padding: 0px 0px 24px 0px; } .framer-6rPDi .framer-8o4zqx { order: 2; width: 100%; } .framer-6rPDi .framer-vf4xn2-container, .framer-6rPDi .framer-1yizcvp { order: 3; } .framer-6rPDi .framer-1urqfve, .framer-6rPDi .framer-lzwt36, .framer-6rPDi .framer-1g141wn, .framer-6rPDi .framer-3p4bcn, .framer-6rPDi .framer-rbhsnl, .framer-6rPDi .framer-1j7oaf2 { order: 1; } .framer-6rPDi .framer-w1wrca { height: var(--framer-aspect-ratio-supported, 479px); order: 1; width: 304px; } .framer-6rPDi .framer-1gnkuic, .framer-6rPDi .framer-1ydy2e, .framer-6rPDi .framer-1k9xt7a-container { order: 2; } .framer-6rPDi .framer-oizs4s, .framer-6rPDi .framer-sb1dg6, .framer-6rPDi .framer-z3vfmc, .framer-6rPDi .framer-jh4qgl { order: 0; } .framer-6rPDi .framer-1wo18hz { gap: 32px; order: 5; } .framer-6rPDi .framer-17hmabl { height: auto; } .framer-6rPDi .framer-11gd7oe, .framer-6rPDi .framer-1km9eby, .framer-6rPDi .framer-wz9r9l { background-color: #fafafa; } .framer-6rPDi .framer-jk1r7h-container { height: var(--framer-aspect-ratio-supported, 35px); } .framer-6rPDi .framer-a01fmb-container { height: var(--framer-aspect-ratio-supported, 34px); } .framer-6rPDi .framer-erd6u1 { background-color: #fafafa; order: 6; } .framer-6rPDi .framer-878v9i, .framer-6rPDi .framer-138t9sx { flex-direction: column; } .framer-6rPDi .framer-vani5n { flex: none; gap: 24px; height: 362px; order: 1; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-46v08g { flex: none; gap: 24px; height: 362px; order: 0; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-k443fd { flex: none; gap: 24px; height: 362px; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-lqnzd8 { align-self: unset; flex: none; gap: 24px; height: 362px; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-1wl103i { gap: 32px; order: 9; padding: 32px 16px 32px 16px; } .framer-6rPDi .framer-nhfg3p-container { height: 252px; width: 100%; } .framer-6rPDi .framer-19zef2t { order: 12; padding: 32px 16px 32px 16px; } .framer-6rPDi .framer-aqorkq { padding: 0px 0px 16px 0px; width: 100%; } .framer-6rPDi .framer-1yx7mv { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-6rPDi .framer-9fu5kk { order: 13; padding: 32px 0px 32px 16px; } .framer-6rPDi .framer-5hhyds { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-6rPDi .framer-dfgoj2-container { order: 4; } .framer-6rPDi .framer-11vqibd-container { order: 15; } .framer-6rPDi .framer-chn67i-container { order: 18; } .framer-6rPDi .framer-r2f1w7-container { order: 24; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6rPDi .framer-pexnfp, .framer-6rPDi .framer-1wo18hz, .framer-6rPDi .framer-878v9i, .framer-6rPDi .framer-vani5n, .framer-6rPDi .framer-46v08g, .framer-6rPDi .framer-138t9sx, .framer-6rPDi .framer-k443fd, .framer-6rPDi .framer-lqnzd8, .framer-6rPDi .framer-1wl103i { gap: 0px; } .framer-6rPDi .framer-pexnfp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-6rPDi .framer-pexnfp > :first-child, .framer-6rPDi .framer-1wo18hz > :first-child, .framer-6rPDi .framer-878v9i > :first-child, .framer-6rPDi .framer-vani5n > :first-child, .framer-6rPDi .framer-46v08g > :first-child, .framer-6rPDi .framer-138t9sx > :first-child, .framer-6rPDi .framer-k443fd > :first-child, .framer-6rPDi .framer-lqnzd8 > :first-child, .framer-6rPDi .framer-1wl103i > :first-child { margin-top: 0px; } .framer-6rPDi .framer-pexnfp > :last-child, .framer-6rPDi .framer-1wo18hz > :last-child, .framer-6rPDi .framer-878v9i > :last-child, .framer-6rPDi .framer-vani5n > :last-child, .framer-6rPDi .framer-46v08g > :last-child, .framer-6rPDi .framer-138t9sx > :last-child, .framer-6rPDi .framer-k443fd > :last-child, .framer-6rPDi .framer-lqnzd8 > :last-child, .framer-6rPDi .framer-1wl103i > :last-child { margin-bottom: 0px; } .framer-6rPDi .framer-1wo18hz > *, .framer-6rPDi .framer-1wl103i > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-6rPDi .framer-878v9i > *, .framer-6rPDi .framer-vani5n > *, .framer-6rPDi .framer-46v08g > *, .framer-6rPDi .framer-138t9sx > *, .framer-6rPDi .framer-k443fd > *, .framer-6rPDi .framer-lqnzd8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (min-width: 360px) and (max-width: 383px) { .framer-6rPDi.framer-1sdcd6k { width: 360px; } .framer-6rPDi .framer-pexnfp { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 20px; justify-content: center; order: 0; padding: 0px 16px 0px 16px; } .framer-6rPDi .framer-1w2mibg, .framer-6rPDi .framer-ljonnm { order: 0; width: 100%; } .framer-6rPDi .framer-7a27ed { align-content: center; align-items: center; justify-content: flex-start; max-width: unset; padding: 0px 0px 16px 0px; } .framer-6rPDi .framer-8o4zqx { order: 2; width: 100%; } .framer-6rPDi .framer-vf4xn2-container { order: 3; } .framer-6rPDi .framer-1urqfve, .framer-6rPDi .framer-1g141wn, .framer-6rPDi .framer-3p4bcn, .framer-6rPDi .framer-rbhsnl, .framer-6rPDi .framer-1ydy2e, .framer-6rPDi .framer-1f3hz7l-container, .framer-6rPDi .framer-13vfe5o { order: 1; } .framer-6rPDi .framer-w1wrca { height: var(--framer-aspect-ratio-supported, 444px); order: 1; width: 282px; } .framer-6rPDi .framer-1wo18hz { gap: 24px; order: 6; } .framer-6rPDi .framer-1733cjb, .framer-6rPDi .framer-1mbynzm { width: 100%; } .framer-6rPDi .framer-17hmabl, .framer-6rPDi .framer-170zyzg { height: auto; width: 100%; } .framer-6rPDi .framer-1t0d22z, .framer-6rPDi .framer-svyidv { align-self: unset; width: 100%; } .framer-6rPDi .framer-11gd7oe, .framer-6rPDi .framer-1km9eby, .framer-6rPDi .framer-wz9r9l { background-color: #fafafa; } .framer-6rPDi .framer-sb1dg6, .framer-6rPDi .framer-z3vfmc, .framer-6rPDi .framer-jh4qgl, .framer-6rPDi .framer-25bdf4, .framer-6rPDi .framer-18r4jxg { order: 0; } .framer-6rPDi .framer-jk1r7h-container { height: var(--framer-aspect-ratio-supported, 35px); } .framer-6rPDi .framer-a01fmb-container { height: var(--framer-aspect-ratio-supported, 34px); } .framer-6rPDi .framer-erd6u1 { background-color: #fafafa; order: 7; } .framer-6rPDi .framer-878v9i, .framer-6rPDi .framer-138t9sx { flex-direction: column; } .framer-6rPDi .framer-vani5n { flex: none; gap: 24px; height: 362px; order: 1; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-46v08g { flex: none; gap: 24px; height: 362px; order: 0; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-k443fd { flex: none; gap: 24px; height: 362px; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-lqnzd8 { align-self: unset; flex: none; gap: 24px; height: 362px; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-1wl103i { gap: 32px; order: 11; padding: 32px 16px 32px 16px; } .framer-6rPDi .framer-nhfg3p-container { height: 252px; width: 100%; } .framer-6rPDi .framer-19zef2t { order: 14; } .framer-6rPDi .framer-aqorkq { order: 0; padding: 0px 0px 16px 0px; width: 100%; } .framer-6rPDi .framer-1yx7mv { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-6rPDi .framer-11vqibd-container { order: 18; } .framer-6rPDi .framer-19fun4y-container { order: 21; } .framer-6rPDi .framer-1t3u76s { order: 16; } .framer-6rPDi .framer-16thnne-container, .framer-6rPDi .framer-d7aoju { order: 2; } .framer-6rPDi .framer-1driom5-container { order: 4; } .framer-6rPDi .framer-1xhix4y { order: 5; } .framer-6rPDi .framer-1isthn8 { height: var(--framer-aspect-ratio-supported, 28px); } .framer-6rPDi .framer-r2f1w7-container { order: 24; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6rPDi .framer-pexnfp, .framer-6rPDi .framer-1wo18hz, .framer-6rPDi .framer-878v9i, .framer-6rPDi .framer-vani5n, .framer-6rPDi .framer-46v08g, .framer-6rPDi .framer-138t9sx, .framer-6rPDi .framer-k443fd, .framer-6rPDi .framer-lqnzd8, .framer-6rPDi .framer-1wl103i { gap: 0px; } .framer-6rPDi .framer-pexnfp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-6rPDi .framer-pexnfp > :first-child, .framer-6rPDi .framer-1wo18hz > :first-child, .framer-6rPDi .framer-878v9i > :first-child, .framer-6rPDi .framer-vani5n > :first-child, .framer-6rPDi .framer-46v08g > :first-child, .framer-6rPDi .framer-138t9sx > :first-child, .framer-6rPDi .framer-k443fd > :first-child, .framer-6rPDi .framer-lqnzd8 > :first-child, .framer-6rPDi .framer-1wl103i > :first-child { margin-top: 0px; } .framer-6rPDi .framer-pexnfp > :last-child, .framer-6rPDi .framer-1wo18hz > :last-child, .framer-6rPDi .framer-878v9i > :last-child, .framer-6rPDi .framer-vani5n > :last-child, .framer-6rPDi .framer-46v08g > :last-child, .framer-6rPDi .framer-138t9sx > :last-child, .framer-6rPDi .framer-k443fd > :last-child, .framer-6rPDi .framer-lqnzd8 > :last-child, .framer-6rPDi .framer-1wl103i > :last-child { margin-bottom: 0px; } .framer-6rPDi .framer-1wo18hz > *, .framer-6rPDi .framer-878v9i > *, .framer-6rPDi .framer-vani5n > *, .framer-6rPDi .framer-46v08g > *, .framer-6rPDi .framer-138t9sx > *, .framer-6rPDi .framer-k443fd > *, .framer-6rPDi .framer-lqnzd8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-6rPDi .framer-1wl103i > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\",\"@media (min-width: 384px) and (max-width: 389px) { .framer-6rPDi.framer-1sdcd6k { width: 384px; } .framer-6rPDi .framer-pexnfp { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 20px; justify-content: center; order: 0; padding: 0px 16px 0px 16px; } .framer-6rPDi .framer-1w2mibg, .framer-6rPDi .framer-h15xgf { order: 0; width: 100%; } .framer-6rPDi .framer-7a27ed { align-content: center; align-items: center; justify-content: flex-start; max-width: unset; padding: 0px 0px 24px 0px; } .framer-6rPDi .framer-8o4zqx { order: 2; width: 100%; } .framer-6rPDi .framer-vf4xn2-container { order: 3; } .framer-6rPDi .framer-1urqfve, .framer-6rPDi .framer-9boy3d, .framer-6rPDi .framer-1g141wn, .framer-6rPDi .framer-3p4bcn, .framer-6rPDi .framer-rbhsnl, .framer-6rPDi .framer-1ydy2e { order: 1; } .framer-6rPDi .framer-w1wrca { height: var(--framer-aspect-ratio-supported, 479px); order: 1; width: 304px; } .framer-6rPDi .framer-1hdjwje, .framer-6rPDi .framer-1yhh4dk, .framer-6rPDi .framer-1k9xt7a-container { order: 2; } .framer-6rPDi .framer-19oasc0, .framer-6rPDi .framer-sb1dg6, .framer-6rPDi .framer-z3vfmc, .framer-6rPDi .framer-jh4qgl { order: 0; } .framer-6rPDi .framer-1wo18hz { gap: 32px; order: 5; } .framer-6rPDi .framer-1733cjb { width: 358px; } .framer-6rPDi .framer-17hmabl, .framer-6rPDi .framer-170zyzg { height: auto; width: 100%; } .framer-6rPDi .framer-1t0d22z, .framer-6rPDi .framer-svyidv { align-self: unset; width: 100%; } .framer-6rPDi .framer-1mbynzm { width: 100%; } .framer-6rPDi .framer-11gd7oe, .framer-6rPDi .framer-1km9eby, .framer-6rPDi .framer-wz9r9l { background-color: #fafafa; } .framer-6rPDi .framer-jk1r7h-container { height: var(--framer-aspect-ratio-supported, 35px); } .framer-6rPDi .framer-a01fmb-container { height: var(--framer-aspect-ratio-supported, 34px); } .framer-6rPDi .framer-erd6u1 { background-color: #fafafa; order: 6; } .framer-6rPDi .framer-ljonnm { order: 0; width: 358px; } .framer-6rPDi .framer-878v9i, .framer-6rPDi .framer-138t9sx { flex-direction: column; } .framer-6rPDi .framer-vani5n { flex: none; gap: 24px; height: 362px; order: 1; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-46v08g { flex: none; gap: 24px; height: 362px; order: 0; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-k443fd { flex: none; gap: 24px; height: 362px; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-lqnzd8 { align-self: unset; flex: none; gap: 24px; height: 362px; padding: 32px 16px 0px 16px; width: 100%; } .framer-6rPDi .framer-1wl103i { gap: 32px; order: 9; padding: 32px 16px 32px 16px; } .framer-6rPDi .framer-nhfg3p-container { height: 252px; width: 100%; } .framer-6rPDi .framer-19zef2t { order: 12; padding: 32px 16px 32px 16px; } .framer-6rPDi .framer-aqorkq { padding: 0px 0px 16px 0px; width: 100%; } .framer-6rPDi .framer-1yx7mv { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-6rPDi .framer-9fu5kk { order: 13; padding: 32px 0px 32px 16px; } .framer-6rPDi .framer-5hhyds { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-6rPDi .framer-dfgoj2-container { order: 4; } .framer-6rPDi .framer-11vqibd-container { order: 15; } .framer-6rPDi .framer-chn67i-container { order: 18; } .framer-6rPDi .framer-r2f1w7-container { order: 24; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6rPDi .framer-pexnfp, .framer-6rPDi .framer-1wo18hz, .framer-6rPDi .framer-878v9i, .framer-6rPDi .framer-vani5n, .framer-6rPDi .framer-46v08g, .framer-6rPDi .framer-138t9sx, .framer-6rPDi .framer-k443fd, .framer-6rPDi .framer-lqnzd8, .framer-6rPDi .framer-1wl103i { gap: 0px; } .framer-6rPDi .framer-pexnfp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-6rPDi .framer-pexnfp > :first-child, .framer-6rPDi .framer-1wo18hz > :first-child, .framer-6rPDi .framer-878v9i > :first-child, .framer-6rPDi .framer-vani5n > :first-child, .framer-6rPDi .framer-46v08g > :first-child, .framer-6rPDi .framer-138t9sx > :first-child, .framer-6rPDi .framer-k443fd > :first-child, .framer-6rPDi .framer-lqnzd8 > :first-child, .framer-6rPDi .framer-1wl103i > :first-child { margin-top: 0px; } .framer-6rPDi .framer-pexnfp > :last-child, .framer-6rPDi .framer-1wo18hz > :last-child, .framer-6rPDi .framer-878v9i > :last-child, .framer-6rPDi .framer-vani5n > :last-child, .framer-6rPDi .framer-46v08g > :last-child, .framer-6rPDi .framer-138t9sx > :last-child, .framer-6rPDi .framer-k443fd > :last-child, .framer-6rPDi .framer-lqnzd8 > :last-child, .framer-6rPDi .framer-1wl103i > :last-child { margin-bottom: 0px; } .framer-6rPDi .framer-1wo18hz > *, .framer-6rPDi .framer-1wl103i > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-6rPDi .framer-878v9i > *, .framer-6rPDi .framer-vani5n > *, .framer-6rPDi .framer-46v08g > *, .framer-6rPDi .framer-138t9sx > *, .framer-6rPDi .framer-k443fd > *, .framer-6rPDi .framer-lqnzd8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (min-width: 800px) and (max-width: 809px) { .framer-6rPDi.framer-1sdcd6k { width: 800px; } .framer-6rPDi .framer-pexnfp { gap: 20px; justify-content: center; order: 0; padding: 0px 62px 0px 62px; } .framer-6rPDi .framer-1w2mibg { flex: 1 0 0px; order: 0; width: 1px; } .framer-6rPDi .framer-7a27ed { justify-content: flex-start; max-width: unset; padding: 0px 0px 16px 0px; } .framer-6rPDi .framer-8o4zqx { order: 2; width: 100%; } .framer-6rPDi .framer-vf4xn2-container, .framer-6rPDi .framer-19ofxe2 { order: 3; } .framer-6rPDi .framer-1urqfve { order: 1; width: 352px; } .framer-6rPDi .framer-w1wrca { height: var(--framer-aspect-ratio-supported, 376px); order: 1; width: 239px; } .framer-6rPDi .framer-1c0izcn { gap: 42px; order: 4; width: 100%; } .framer-6rPDi .framer-18nmdbh { height: var(--framer-aspect-ratio-supported, 57px); } .framer-6rPDi .framer-1wo18hz { gap: 24px; order: 6; padding: 32px 64px 32px 64px; } .framer-6rPDi .framer-1733cjb, .framer-6rPDi .framer-17hmabl, .framer-6rPDi .framer-170zyzg { width: 100%; } .framer-6rPDi .framer-1t0d22z, .framer-6rPDi .framer-svyidv { align-self: unset; width: 100%; } .framer-6rPDi .framer-1mbynzm { flex-direction: row; width: 100%; } .framer-6rPDi .framer-11gd7oe, .framer-6rPDi .framer-1km9eby, .framer-6rPDi .framer-wz9r9l { background-color: #fafafa; flex: 1 0 0px; height: min-content; padding: 30px 16px 30px 16px; width: 1px; } .framer-6rPDi .framer-1g141wn, .framer-6rPDi .framer-3p4bcn, .framer-6rPDi .framer-rbhsnl, .framer-6rPDi .framer-5kj3ek, .framer-6rPDi .framer-1mssk5k-container, .framer-6rPDi .framer-1f3hz7l-container { order: 1; } .framer-6rPDi .framer-sb1dg6, .framer-6rPDi .framer-z3vfmc, .framer-6rPDi .framer-jh4qgl, .framer-6rPDi .framer-13f4s1s { order: 0; } .framer-6rPDi .framer-jk1r7h-container, .framer-6rPDi .framer-a01fmb-container { height: var(--framer-aspect-ratio-supported, 35px); } .framer-6rPDi .framer-erd6u1 { background-color: #fafafa; order: 7; padding: 32px 64px 32px 64px; } .framer-6rPDi .framer-ljonnm { order: 0; width: 100%; } .framer-6rPDi .framer-1wl103i { gap: 32px; order: 11; padding: 32px 64px 32px 64px; } .framer-6rPDi .framer-1bf7sp4-container { order: 2; } .framer-6rPDi .framer-19zef2t { order: 14; } .framer-6rPDi .framer-aqorkq { order: 0; padding: 0px 0px 16px 0px; width: 100%; } .framer-6rPDi .framer-1yx7mv { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-6rPDi .framer-11vqibd-container { order: 19; } .framer-6rPDi .framer-19fun4y-container { left: 635px; order: 22; top: 398px; } .framer-6rPDi .framer-165uguz { order: 18; } .framer-6rPDi .framer-r2f1w7-container { order: 24; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6rPDi .framer-pexnfp, .framer-6rPDi .framer-1c0izcn, .framer-6rPDi .framer-1wo18hz, .framer-6rPDi .framer-1mbynzm, .framer-6rPDi .framer-1wl103i { gap: 0px; } .framer-6rPDi .framer-pexnfp > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-6rPDi .framer-pexnfp > :first-child, .framer-6rPDi .framer-1c0izcn > :first-child, .framer-6rPDi .framer-1mbynzm > :first-child { margin-left: 0px; } .framer-6rPDi .framer-pexnfp > :last-child, .framer-6rPDi .framer-1c0izcn > :last-child, .framer-6rPDi .framer-1mbynzm > :last-child { margin-right: 0px; } .framer-6rPDi .framer-1c0izcn > * { margin: 0px; margin-left: calc(42px / 2); margin-right: calc(42px / 2); } .framer-6rPDi .framer-1wo18hz > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-6rPDi .framer-1wo18hz > :first-child, .framer-6rPDi .framer-1wl103i > :first-child { margin-top: 0px; } .framer-6rPDi .framer-1wo18hz > :last-child, .framer-6rPDi .framer-1wl103i > :last-child { margin-bottom: 0px; } .framer-6rPDi .framer-1mbynzm > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-6rPDi .framer-1wl103i > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\",\"@media (max-width: 359px) { .framer-6rPDi.framer-1sdcd6k { width: 320px; } .framer-6rPDi .framer-pexnfp { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 16px; justify-content: center; order: 0; padding: 0px 16px 0px 16px; } .framer-6rPDi .framer-1w2mibg, .framer-6rPDi .framer-ljonnm, .framer-6rPDi .framer-h15xgf { order: 0; width: 100%; } .framer-6rPDi .framer-7a27ed { align-content: center; align-items: center; justify-content: flex-start; max-width: unset; padding: 0px 0px 24px 0px; } .framer-6rPDi .framer-8o4zqx { order: 2; width: 100%; } .framer-6rPDi .framer-vf4xn2-container, .framer-6rPDi .framer-19ofxe2 { order: 3; } .framer-6rPDi .framer-1urqfve, .framer-6rPDi .framer-17gob5t, .framer-6rPDi .framer-105sroj, .framer-6rPDi .framer-1g141wn, .framer-6rPDi .framer-z3vfmc, .framer-6rPDi .framer-rbhsnl, .framer-6rPDi .framer-8kl64i-container { order: 1; } .framer-6rPDi .framer-w1wrca { height: var(--framer-aspect-ratio-supported, 384px); order: 1; width: 244px; } .framer-6rPDi .framer-igz72n, .framer-6rPDi .framer-1k9xt7a-container { order: 2; } .framer-6rPDi .framer-1cv8uh7 { height: var(--framer-aspect-ratio-supported, 28px); } .framer-6rPDi .framer-1546nnu, .framer-6rPDi .framer-sb1dg6, .framer-6rPDi .framer-3p4bcn, .framer-6rPDi .framer-jh4qgl, .framer-6rPDi .framer-mivgzl { order: 0; } .framer-6rPDi .framer-1wo18hz { gap: 32px; order: 5; } .framer-6rPDi .framer-1733cjb { gap: 8px; height: min-content; width: 100%; } .framer-6rPDi .framer-17hmabl, .framer-6rPDi .framer-170zyzg { height: auto; width: 100%; } .framer-6rPDi .framer-1t0d22z { align-self: unset; flex: none; height: auto; width: 100%; } .framer-6rPDi .framer-1mbynzm { width: 100%; } .framer-6rPDi .framer-11gd7oe, .framer-6rPDi .framer-1km9eby, .framer-6rPDi .framer-wz9r9l { background-color: #fafafa; padding: 24px; } .framer-6rPDi .framer-jk1r7h-container { height: var(--framer-aspect-ratio-supported, 35px); } .framer-6rPDi .framer-a01fmb-container { height: var(--framer-aspect-ratio-supported, 34px); } .framer-6rPDi .framer-erd6u1 { background-color: #fafafa; order: 6; } .framer-6rPDi .framer-svyidv { align-self: unset; width: 100%; } .framer-6rPDi .framer-5kj3ek { height: 362px; order: 1; } .framer-6rPDi .framer-13f4s1s { height: 362px; order: 0; } .framer-6rPDi .framer-10gi0eq { height: 362px; } .framer-6rPDi .framer-1wl103i { gap: 32px; order: 9; padding: 32px 16px 32px 16px; } .framer-6rPDi .framer-nhfg3p-container { height: 252px; width: 100%; } .framer-6rPDi .framer-9fu5kk { order: 14; padding: 32px 0px 32px 16px; } .framer-6rPDi .framer-5hhyds { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-6rPDi .framer-dfgoj2-container { order: 4; } .framer-6rPDi .framer-11vqibd-container { order: 16; } .framer-6rPDi .framer-chn67i-container { left: 163px; order: 19; top: 687px; } .framer-6rPDi .framer-c4alwg { order: 13; } .framer-6rPDi .framer-r2f1w7-container { order: 24; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6rPDi .framer-pexnfp, .framer-6rPDi .framer-1wo18hz, .framer-6rPDi .framer-1733cjb, .framer-6rPDi .framer-1wl103i { gap: 0px; } .framer-6rPDi .framer-pexnfp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-6rPDi .framer-pexnfp > :first-child, .framer-6rPDi .framer-1wo18hz > :first-child, .framer-6rPDi .framer-1733cjb > :first-child, .framer-6rPDi .framer-1wl103i > :first-child { margin-top: 0px; } .framer-6rPDi .framer-pexnfp > :last-child, .framer-6rPDi .framer-1wo18hz > :last-child, .framer-6rPDi .framer-1733cjb > :last-child, .framer-6rPDi .framer-1wl103i > :last-child { margin-bottom: 0px; } .framer-6rPDi .framer-1wo18hz > *, .framer-6rPDi .framer-1wl103i > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-6rPDi .framer-1733cjb > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5276\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PckjIwRYk\":{\"layout\":[\"fixed\",\"auto\"]},\"DvkSPpaHO\":{\"layout\":[\"fixed\",\"auto\"]},\"e4M1Dw9FX\":{\"layout\":[\"fixed\",\"auto\"]},\"Sgj5dkty5\":{\"layout\":[\"fixed\",\"auto\"]},\"rFNYG_3Bu\":{\"layout\":[\"fixed\",\"auto\"]},\"w26RXKWOR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"EOfT8G29j\":{\"pattern\":\":EOfT8G29j\",\"name\":\"hero \"},\"iAI7IuNYP\":{\"pattern\":\":iAI7IuNYP\",\"name\":\"numbers\"},\"L8MXLMtLf\":{\"pattern\":\":L8MXLMtLf\",\"name\":\"numbers\"},\"I56EVfzHp\":{\"pattern\":\":I56EVfzHp\",\"name\":\"video\"},\"rWLNAaHXa\":{\"pattern\":\":rWLNAaHXa\",\"name\":\"numbers\"},\"y6ZKN_BmR\":{\"pattern\":\":y6ZKN_BmR\",\"name\":\"testimonials\"},\"sBzmHaDGU\":{\"pattern\":\":sBzmHaDGU\",\"name\":\"bkog-post\"},\"dDBILMcvm\":{\"pattern\":\":dDBILMcvm\",\"name\":\"bkog-post\"},\"ZqhIPWGTp\":{\"pattern\":\":ZqhIPWGTp\",\"name\":\"bkog-post\"},\"nnhFLYFfs\":{\"pattern\":\":nnhFLYFfs\",\"name\":\"testimonials\"}}\n * @framerResponsiveScreen\n */const FramerFsyjeqdGR=withCSS(Component,css,\"framer-6rPDi\");export default FramerFsyjeqdGR;FramerFsyjeqdGR.displayName=\"Home\";FramerFsyjeqdGR.defaultProps={height:5276,width:1200};addFonts(FramerFsyjeqdGR,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99Y41P6zHtY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAjBN9Y41P6zHtY.woff2\",weight:\"600\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyDPA99Y41P6zHtY.woff2\",weight:\"500\"}]},...MotionTextFonts,...PlaystoreButtonFonts,...IconoirFonts,...EmbedFonts,...InstantDisbursalFonts,...FlexibleLoanDurationFonts,...EasyRepaymentFonts,...PrivateAndSecureFonts,...YouTubeFonts,...ElementsAvatarFonts,...CarouselFonts,...TickerFonts,...CardsFonts,...AccordionCopy7Fonts,...NavbarDarkCopyFonts,...FooterDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFsyjeqdGR\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"EOfT8G29j\\\":{\\\"pattern\\\":\\\":EOfT8G29j\\\",\\\"name\\\":\\\"hero \\\"},\\\"iAI7IuNYP\\\":{\\\"pattern\\\":\\\":iAI7IuNYP\\\",\\\"name\\\":\\\"numbers\\\"},\\\"L8MXLMtLf\\\":{\\\"pattern\\\":\\\":L8MXLMtLf\\\",\\\"name\\\":\\\"numbers\\\"},\\\"I56EVfzHp\\\":{\\\"pattern\\\":\\\":I56EVfzHp\\\",\\\"name\\\":\\\"video\\\"},\\\"rWLNAaHXa\\\":{\\\"pattern\\\":\\\":rWLNAaHXa\\\",\\\"name\\\":\\\"numbers\\\"},\\\"y6ZKN_BmR\\\":{\\\"pattern\\\":\\\":y6ZKN_BmR\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"sBzmHaDGU\\\":{\\\"pattern\\\":\\\":sBzmHaDGU\\\",\\\"name\\\":\\\"bkog-post\\\"},\\\"dDBILMcvm\\\":{\\\"pattern\\\":\\\":dDBILMcvm\\\",\\\"name\\\":\\\"bkog-post\\\"},\\\"ZqhIPWGTp\\\":{\\\"pattern\\\":\\\":ZqhIPWGTp\\\",\\\"name\\\":\\\"bkog-post\\\"},\\\"nnhFLYFfs\\\":{\\\"pattern\\\":\\\":nnhFLYFfs\\\",\\\"name\\\":\\\"testimonials\\\"}}\",\"framerIntrinsicHeight\":\"5276\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PckjIwRYk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DvkSPpaHO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e4M1Dw9FX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Sgj5dkty5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rFNYG_3Bu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w26RXKWOR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "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", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "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", "clamp", "e", "n", "progress", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "useConstant", "init", "ref", "pe", "BASE62", "randomID", "length", "useRandomID", "useConstant", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "externalStyle", "className", "width", "height", "layoutId", "outerVariant", "xmIvQmf4p", "nk9VMvIfG", "VqLXyQmbq", "v407kujy9", "etbl5ORQn", "ApbJ0qlLr", "rxuSom06d", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "layoutDependency", "variantProps", "se", "addVariantProps", "useAddVariantProps", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "useRandomID", "pointerEvents", "style", "p", "LayoutGroup", "motion", "cx", "u", "RichText2", "Image2", "css", "FramerdSMVdIqsz", "withCSS", "dSMVdIqsz_default", "addPropertyControls", "ControlType", "addFonts", "e", "f", "r", "o", "t", "n", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "f", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "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", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "Framerd5mUaLKFR", "withCSS", "d5mUaLKFR_default", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "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", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramergpL2QkbKN", "withCSS", "gpL2QkbKN_default", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "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", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerIcUqZrLcn", "withCSS", "IcUqZrLcn_default", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "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", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerlwXOSftra", "withCSS", "lwXOSftra_default", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "blogImage", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Io3FopVMU", "CEOIfZTqk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerN7IQk2aB6", "withCSS", "N7IQk2aB6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapjotzzk", "args", "onTap17ef3ft", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerMVa2IZwRI", "withCSS", "MVa2IZwRI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RowCopy6Fonts", "getFonts", "MVa2IZwRI_default", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "MVa2IZwRI_default", "css", "FramerSi40Pcgkz", "withCSS", "Si40Pcgkz_default", "addFonts", "RowCopy6Fonts", "f", "y", "e", "m", "i", "l", "r", "s", "c", "h", "x", "RenderTarget", "S", "useMotionValue", "V", "v", "pe", "T", "w", "ye", "O", "ue", "W", "N", "H", "A", "L", "P", "z", "B", "p", "motion", "t", "n", "a", "g", "d", "u", "b", "re", "MotionContext", "addPropertyControls", "ControlType", "MotionTextFonts", "getFonts", "m", "PlaystoreButtonFonts", "zg3e9F4KM_default", "IconoirFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "EmbedFonts", "Embed", "InstantDisbursalFonts", "lwXOSftra_default", "FlexibleLoanDurationFonts", "gpL2QkbKN_default", "EasyRepaymentFonts", "IcUqZrLcn_default", "PrivateAndSecureFonts", "d5mUaLKFR_default", "YouTubeFonts", "Youtube", "ElementsAvatarFonts", "dSMVdIqsz_default", "CarouselFonts", "Carousel", "TickerFonts", "Ticker", "CardsFonts", "N7IQk2aB6_default", "AccordionCopy7Fonts", "Si40Pcgkz_default", "NavbarDarkCopyFonts", "nS0pQ7KMU_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "FooterDarkFonts", "oPQNrPgA7_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "animation", "transition1", "transition2", "transition3", "animation1", "transition4", "transition5", "animation2", "transition6", "animation3", "animation4", "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", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "elementId1", "ref2", "isDisplayed10", "isDisplayed11", "isDisplayed12", "elementId2", "ref3", "elementId3", "ref4", "isDisplayed13", "isDisplayed14", "elementId4", "ref5", "isDisplayed15", "elementId5", "ref6", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "elementId6", "ref7", "isDisplayed20", "isDisplayed21", "isDisplayed22", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "ComponentViewportProvider", "x", "RichText2", "SVG", "Link", "css", "FramerFsyjeqdGR", "withCSS", "FsyjeqdGR_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
