{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/Jo2d4bKbCdbbg0oiZ0LB/Input.js", "ssg:https://framerusercontent.com/modules/aovVXAWFDXZj9WGe0tCB/gpqVzYudlDtqmdscMqu2/C_L4awuww.js", "ssg:https://framerusercontent.com/modules/A7ziaC2Bp1YzsbuqkN7e/eho2bqYUe7pTOP3Tm97i/qQa8dl3dF.js", "ssg:https://framerusercontent.com/modules/iQNQJTDrjCw2RwwPNDSK/DT9vg30LAqH99rvUSeyC/N6bEE45Af.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";const formBody=hasUserGroup?emailBody+\"&\"+userGroupBody:emailBody;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;data.api_key=convertkitAPI;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,convertkitFormID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "// Generated by Framer (a1a9a9e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-68qKY .framer-styles-preset-1odff9n:not(.rich-text-wrapper), .framer-68qKY .framer-styles-preset-1odff9n.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-80f977b1-2063-48ed-9d70-47252155f491, #9b68ed) /* {\"name\":\"Purple Lt\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-fdc46604-0052-4311-9ca1-1174ba48ae0f, #c39eff); --framer-link-text-decoration: none; }'];export const className=\"framer-68qKY\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2797bee)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"GZSMvLfEW\",\"PO0TaDUCy\"];const serializationHash=\"framer-7CaEZ\";const variantClassNames={GZSMvLfEW:\"framer-v-1u1hyj0\",PO0TaDUCy:\"framer-v-1dso6i6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-5};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 humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={Dark:\"GZSMvLfEW\",White:\"PO0TaDUCy\"};const getProps=({distribute,height,id,width,...props})=>{return{...props,KuulzLZ5Q:humanReadableEnumMap[distribute]??distribute??props.KuulzLZ5Q??\"center\",variant:humanReadableVariantMap[props.variant]??props.variant??\"GZSMvLfEW\"};};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,KuulzLZ5Q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GZSMvLfEW\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1u1hyj0\",className,classNames),\"data-framer-name\":\"Dark\",layoutDependency:layoutDependency,layoutId:\"GZSMvLfEW\",ref:refBinding,style:{\"--srywfm\":KuulzLZ5Q,...style},...addPropertyOverrides({PO0TaDUCy:{\"data-framer-name\":\"White\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hfqux0\",layoutDependency:layoutDependency,layoutId:\"I9UMYzGcw\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},whileHover:animation,children:/*#__PURE__*/_jsx(Link,{href:\"https://app.adjust.com/15ohygfn\",motionChild:true,nodeId:\"rp2c2Ok7p\",scopeId:\"qQa8dl3dF\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-ofz16c framer-4n536h\",\"data-framer-name\":\"graphic\",description:\"Download Hubpay app using Google Play Store\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rp2c2Ok7p\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 203 60\"><path d=\"M 7.5 60 C 3.358 60 0 60 0 60 L 0 0 C 0 0 3.358 0 7.5 0 L 195 0 C 199.142 0 202.5 0 202.5 0 L 202.5 60 C 202.5 60 199.142 60 195 60 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 160.402 45 L 163.201 45 L 163.201 26.248 L 160.402 26.248 Z M 185.612 33.003 L 182.404 41.133 L 182.308 41.133 L 178.978 33.003 L 175.963 33.003 L 180.958 44.365 L 178.109 50.687 L 181.028 50.687 L 188.725 33.003 Z M 169.738 42.87 C 168.823 42.87 167.543 42.411 167.543 41.278 C 167.543 39.83 169.136 39.275 170.51 39.275 C 171.74 39.275 172.321 39.54 173.068 39.902 C 172.85 41.64 171.355 42.87 169.738 42.87 Z M 170.077 32.593 C 168.05 32.593 165.952 33.486 165.083 35.463 L 167.567 36.501 C 168.098 35.464 169.087 35.126 170.125 35.126 C 171.572 35.126 173.044 35.994 173.068 37.539 L 173.068 37.731 C 172.561 37.442 171.475 37.008 170.149 37.008 C 167.47 37.008 164.744 38.479 164.744 41.229 C 164.744 43.739 166.94 45.355 169.4 45.355 C 171.281 45.355 172.321 44.511 172.97 43.521 L 173.068 43.521 L 173.068 44.97 L 175.771 44.97 L 175.771 37.78 C 175.771 34.45 173.284 32.593 170.077 32.593 Z M 152.779 35.286 L 148.798 35.286 L 148.798 28.858 L 152.779 28.858 C 154.871 28.858 156.059 30.59 156.059 32.072 C 156.059 33.525 154.871 35.286 152.779 35.286 Z M 152.707 26.248 L 146 26.248 L 146 45 L 148.798 45 L 148.798 37.896 L 152.707 37.896 C 155.809 37.896 158.858 35.65 158.858 32.072 C 158.858 28.494 155.809 26.248 152.707 26.248 Z M 116.135 42.874 C 114.201 42.874 112.583 41.254 112.583 39.032 C 112.583 36.784 114.201 35.141 116.135 35.141 C 118.044 35.141 119.542 36.783 119.542 39.031 C 119.542 41.254 118.044 42.874 116.135 42.874 Z M 119.349 34.053 L 119.252 34.053 C 118.624 33.304 117.415 32.627 115.894 32.627 C 112.703 32.627 109.779 35.431 109.779 39.032 C 109.779 42.608 112.703 45.387 115.894 45.387 C 117.415 45.387 118.624 44.71 119.252 43.937 L 119.349 43.937 L 119.349 44.855 C 119.349 47.296 118.044 48.601 115.942 48.601 C 114.226 48.601 113.163 47.368 112.728 46.33 L 110.287 47.344 C 110.987 49.035 112.848 51.114 115.942 51.114 C 119.229 51.114 122.008 49.181 122.008 44.468 L 122.008 33.014 L 119.349 33.014 Z M 123.941 45 L 126.743 45 L 126.743 26.248 L 123.941 26.248 Z M 130.876 38.814 C 130.804 36.349 132.786 35.092 134.211 35.092 C 135.323 35.092 136.265 35.648 136.58 36.445 Z M 139.575 36.687 C 139.044 35.262 137.425 32.627 134.114 32.627 C 130.827 32.627 128.097 35.213 128.097 39.007 C 128.097 42.584 130.804 45.387 134.428 45.387 C 137.352 45.387 139.044 43.599 139.745 42.559 L 137.57 41.109 C 136.845 42.173 135.855 42.874 134.428 42.874 C 133.003 42.874 131.987 42.221 131.336 40.94 L 139.865 37.412 Z M 71.614 34.585 L 71.614 37.291 L 78.09 37.291 C 77.897 38.814 77.39 39.925 76.616 40.699 C 75.673 41.641 74.199 42.68 71.614 42.68 C 67.626 42.68 64.509 39.466 64.509 35.48 C 64.509 31.492 67.626 28.277 71.614 28.277 C 73.764 28.277 75.334 29.123 76.495 30.211 L 78.405 28.301 C 76.785 26.755 74.635 25.571 71.614 25.571 C 66.151 25.571 61.56 30.018 61.56 35.479 C 61.56 40.94 66.151 45.387 71.614 45.387 C 74.561 45.387 76.785 44.42 78.524 42.607 C 80.314 40.819 80.869 38.307 80.869 36.276 C 80.869 35.648 80.82 35.068 80.724 34.585 Z M 88.232 42.874 C 86.298 42.874 84.631 41.279 84.631 39.007 C 84.631 36.711 86.298 35.141 88.232 35.141 C 90.165 35.141 91.832 36.711 91.832 39.007 C 91.832 41.279 90.165 42.874 88.232 42.874 Z M 88.232 32.627 C 84.702 32.627 81.828 35.31 81.828 39.007 C 81.828 42.68 84.703 45.387 88.232 45.387 C 91.76 45.387 94.636 42.68 94.636 39.007 C 94.636 35.31 91.76 32.627 88.232 32.627 Z M 102.201 42.874 C 100.269 42.874 98.601 41.279 98.601 39.007 C 98.601 36.711 100.269 35.141 102.201 35.141 C 104.135 35.141 105.802 36.711 105.802 39.007 C 105.802 41.279 104.135 42.874 102.201 42.874 Z M 102.201 32.627 C 98.673 32.627 95.798 35.31 95.798 39.007 C 95.798 42.68 98.673 45.387 102.201 45.387 C 105.73 45.387 108.606 42.68 108.606 39.007 C 108.606 35.31 105.73 32.627 102.201 32.627 Z M 66.716 19.852 C 65.371 19.852 64.214 19.378 63.282 18.446 C 62.349 17.513 61.876 16.344 61.876 14.986 C 61.876 13.627 62.349 12.461 63.282 11.526 C 64.214 10.593 65.371 10.12 66.716 10.12 C 67.401 10.12 68.04 10.239 68.652 10.485 C 69.262 10.732 69.762 11.074 70.157 11.521 L 70.25 11.627 L 69.2 12.676 L 69.096 12.547 C 68.825 12.217 68.476 11.958 68.081 11.795 C 67.649 11.615 67.184 11.525 66.716 11.531 C 65.769 11.531 64.983 11.853 64.326 12.507 C 63.684 13.174 63.362 13.987 63.362 14.986 C 63.362 15.986 63.685 16.799 64.327 17.466 C 64.983 18.12 65.769 18.443 66.716 18.443 C 67.583 18.443 68.3 18.201 68.864 17.722 C 69.389 17.276 69.704 16.673 69.815 15.905 L 66.565 15.905 L 66.565 14.522 L 71.22 14.522 L 71.24 14.648 C 71.278 14.892 71.305 15.126 71.305 15.352 C 71.305 16.642 70.911 17.695 70.14 18.47 C 69.269 19.394 68.123 19.852 66.716 19.852 Z M 107.129 19.852 C 105.782 19.852 104.638 19.378 103.718 18.446 L 103.717 18.446 C 102.795 17.523 102.338 16.355 102.338 14.986 C 102.338 13.617 102.795 12.449 103.717 11.526 L 103.718 11.526 C 104.638 10.594 105.782 10.12 107.129 10.12 C 108.473 10.12 109.616 10.594 110.537 11.54 C 111.459 12.462 111.917 13.628 111.917 14.986 C 111.917 16.355 111.459 17.523 110.538 18.446 L 110.537 18.446 C 109.616 19.378 108.462 19.851 107.129 19.851 Z M 72.637 19.65 L 72.637 10.322 L 78.207 10.322 L 78.207 11.732 L 74.097 11.732 L 74.097 14.295 L 77.805 14.295 L 77.805 15.677 L 74.097 15.677 L 74.097 18.241 L 78.207 18.241 L 78.207 19.65 Z M 81.617 19.65 L 81.617 11.733 L 79.095 11.733 L 79.095 10.322 L 85.6 10.322 L 85.6 11.732 L 83.079 11.732 L 83.079 19.65 L 81.619 19.65 Z M 89.757 19.65 L 89.757 10.322 L 91.217 10.322 L 91.217 19.65 Z M 94.892 19.65 L 94.892 11.733 L 92.37 11.733 L 92.37 10.322 L 98.874 10.322 L 98.874 11.732 L 96.352 11.732 L 96.352 19.65 Z M 113.213 19.65 L 113.213 10.322 L 114.859 10.322 L 119.05 17.03 L 119.014 15.757 L 119.014 10.322 L 120.474 10.322 L 120.474 19.65 L 119.029 19.65 L 114.637 12.603 L 114.673 13.875 L 114.673 19.65 Z M 107.129 18.443 C 108.076 18.443 108.849 18.12 109.479 17.467 L 109.48 17.466 L 109.481 17.465 C 110.12 16.825 110.433 16.002 110.433 14.985 C 110.433 13.972 110.12 13.145 109.481 12.507 L 109.48 12.506 L 109.479 12.505 C 108.849 11.852 108.076 11.531 107.129 11.531 C 106.179 11.531 105.406 11.851 104.764 12.504 L 104.764 12.505 C 104.136 13.16 103.824 13.972 103.824 14.985 C 103.824 16.002 104.136 16.812 104.764 17.467 C 105.407 18.12 106.18 18.443 107.129 18.443 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 31.072 29.135 L 15.102 46.085 L 15.104 46.095 C 15.609 47.98 17.318 49.291 19.27 49.291 C 20.068 49.291 20.817 49.075 21.459 48.696 L 21.509 48.666 L 39.486 38.294 L 31.072 29.134\" fill=\"rgb(234,67,53)\"></path><path d=\"M 47.228 26.249 L 47.213 26.239 L 39.453 21.739 L 30.709 29.519 L 39.483 38.292 L 47.203 33.838 C 48.599 33.089 49.472 31.635 49.477 30.05 C 49.482 28.466 48.619 27.007 47.228 26.248\" fill=\"rgb(251,188,4)\"></path><path d=\"M 15.101 13.915 C 15.003 14.277 14.954 14.65 14.955 15.025 L 14.955 44.975 C 14.955 45.36 15.005 45.732 15.102 46.085 L 31.622 29.569 L 15.102 13.915 Z\" fill=\"rgb(66,133,244)\"></path><path d=\"M 31.19 30 L 39.455 21.736 L 21.5 11.326 C 20.337 10.629 18.915 10.517 17.658 11.025 C 16.4 11.533 15.454 12.601 15.102 13.91 L 15.102 13.915 L 31.188 30 Z\" fill=\"rgb(52,168,83)\"></path></svg>',svgContentId:9281584720,title:\"Hubpay App on Google Play Store\",withExternalLayout:true,...addPropertyOverrides({PO0TaDUCy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 203 60\"><path d=\"M 7.5 60 C 3.358 60 0 60 0 60 L 0 0 C 0 0 3.358 0 7.5 0 L 195 0 C 199.142 0 202.5 0 202.5 0 L 202.5 60 C 202.5 60 199.142 60 195 60 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 160.402 45 L 163.201 45 L 163.201 26.248 L 160.402 26.248 Z M 185.612 33.003 L 182.404 41.133 L 182.308 41.133 L 178.978 33.003 L 175.963 33.003 L 180.958 44.365 L 178.109 50.687 L 181.028 50.687 L 188.725 33.003 Z M 169.738 42.87 C 168.823 42.87 167.543 42.411 167.543 41.278 C 167.543 39.83 169.136 39.275 170.51 39.275 C 171.74 39.275 172.321 39.54 173.068 39.902 C 172.85 41.64 171.355 42.87 169.738 42.87 Z M 170.077 32.593 C 168.05 32.593 165.952 33.486 165.083 35.463 L 167.567 36.501 C 168.098 35.464 169.087 35.126 170.125 35.126 C 171.572 35.126 173.044 35.994 173.068 37.539 L 173.068 37.731 C 172.561 37.442 171.475 37.008 170.149 37.008 C 167.47 37.008 164.744 38.479 164.744 41.229 C 164.744 43.739 166.94 45.355 169.4 45.355 C 171.281 45.355 172.321 44.511 172.97 43.521 L 173.068 43.521 L 173.068 44.97 L 175.771 44.97 L 175.771 37.78 C 175.771 34.45 173.284 32.593 170.077 32.593 Z M 152.779 35.286 L 148.798 35.286 L 148.798 28.858 L 152.779 28.858 C 154.871 28.858 156.059 30.59 156.059 32.072 C 156.059 33.525 154.871 35.286 152.779 35.286 Z M 152.707 26.248 L 146 26.248 L 146 45 L 148.798 45 L 148.798 37.896 L 152.707 37.896 C 155.809 37.896 158.858 35.65 158.858 32.072 C 158.858 28.494 155.809 26.248 152.707 26.248 Z M 116.135 42.874 C 114.201 42.874 112.583 41.254 112.583 39.032 C 112.583 36.784 114.201 35.141 116.135 35.141 C 118.044 35.141 119.542 36.783 119.542 39.031 C 119.542 41.254 118.044 42.874 116.135 42.874 Z M 119.349 34.053 L 119.252 34.053 C 118.624 33.304 117.415 32.627 115.894 32.627 C 112.703 32.627 109.779 35.431 109.779 39.032 C 109.779 42.608 112.703 45.387 115.894 45.387 C 117.415 45.387 118.624 44.71 119.252 43.937 L 119.349 43.937 L 119.349 44.855 C 119.349 47.296 118.044 48.601 115.942 48.601 C 114.226 48.601 113.163 47.368 112.728 46.33 L 110.287 47.344 C 110.987 49.035 112.848 51.114 115.942 51.114 C 119.229 51.114 122.008 49.181 122.008 44.468 L 122.008 33.014 L 119.349 33.014 Z M 123.941 45 L 126.743 45 L 126.743 26.248 L 123.941 26.248 Z M 130.876 38.814 C 130.804 36.349 132.786 35.092 134.211 35.092 C 135.323 35.092 136.265 35.648 136.58 36.445 Z M 139.575 36.687 C 139.044 35.262 137.425 32.627 134.114 32.627 C 130.827 32.627 128.097 35.213 128.097 39.007 C 128.097 42.584 130.804 45.387 134.428 45.387 C 137.352 45.387 139.044 43.599 139.745 42.559 L 137.57 41.109 C 136.845 42.173 135.855 42.874 134.428 42.874 C 133.003 42.874 131.987 42.221 131.336 40.94 L 139.865 37.412 Z M 71.614 34.585 L 71.614 37.291 L 78.09 37.291 C 77.897 38.814 77.39 39.925 76.616 40.699 C 75.673 41.641 74.199 42.68 71.614 42.68 C 67.626 42.68 64.509 39.466 64.509 35.48 C 64.509 31.492 67.626 28.277 71.614 28.277 C 73.764 28.277 75.334 29.123 76.495 30.211 L 78.405 28.301 C 76.785 26.755 74.635 25.571 71.614 25.571 C 66.151 25.571 61.56 30.018 61.56 35.479 C 61.56 40.94 66.151 45.387 71.614 45.387 C 74.561 45.387 76.785 44.42 78.524 42.607 C 80.314 40.819 80.869 38.307 80.869 36.276 C 80.869 35.648 80.82 35.068 80.724 34.585 Z M 88.232 42.874 C 86.298 42.874 84.631 41.279 84.631 39.007 C 84.631 36.711 86.298 35.141 88.232 35.141 C 90.165 35.141 91.832 36.711 91.832 39.007 C 91.832 41.279 90.165 42.874 88.232 42.874 Z M 88.232 32.627 C 84.702 32.627 81.828 35.31 81.828 39.007 C 81.828 42.68 84.703 45.387 88.232 45.387 C 91.76 45.387 94.636 42.68 94.636 39.007 C 94.636 35.31 91.76 32.627 88.232 32.627 Z M 102.201 42.874 C 100.269 42.874 98.601 41.279 98.601 39.007 C 98.601 36.711 100.269 35.141 102.201 35.141 C 104.135 35.141 105.802 36.711 105.802 39.007 C 105.802 41.279 104.135 42.874 102.201 42.874 Z M 102.201 32.627 C 98.673 32.627 95.798 35.31 95.798 39.007 C 95.798 42.68 98.673 45.387 102.201 45.387 C 105.73 45.387 108.606 42.68 108.606 39.007 C 108.606 35.31 105.73 32.627 102.201 32.627 Z M 66.716 19.852 C 65.371 19.852 64.214 19.378 63.282 18.446 C 62.349 17.513 61.876 16.344 61.876 14.986 C 61.876 13.627 62.349 12.461 63.282 11.526 C 64.214 10.593 65.371 10.12 66.716 10.12 C 67.401 10.12 68.04 10.239 68.652 10.485 C 69.262 10.732 69.762 11.074 70.157 11.521 L 70.25 11.627 L 69.2 12.676 L 69.096 12.547 C 68.825 12.217 68.476 11.958 68.081 11.795 C 67.649 11.615 67.184 11.525 66.716 11.531 C 65.769 11.531 64.983 11.853 64.326 12.507 C 63.684 13.174 63.362 13.987 63.362 14.986 C 63.362 15.986 63.685 16.799 64.327 17.466 C 64.983 18.12 65.769 18.443 66.716 18.443 C 67.583 18.443 68.3 18.201 68.864 17.722 C 69.389 17.276 69.704 16.673 69.815 15.905 L 66.565 15.905 L 66.565 14.522 L 71.22 14.522 L 71.24 14.648 C 71.278 14.892 71.305 15.126 71.305 15.352 C 71.305 16.642 70.911 17.695 70.14 18.47 C 69.269 19.394 68.123 19.852 66.716 19.852 Z M 107.129 19.852 C 105.782 19.852 104.638 19.378 103.718 18.446 L 103.717 18.446 C 102.795 17.523 102.338 16.355 102.338 14.986 C 102.338 13.617 102.795 12.449 103.717 11.526 L 103.718 11.526 C 104.638 10.594 105.782 10.12 107.129 10.12 C 108.473 10.12 109.616 10.594 110.537 11.54 C 111.459 12.462 111.917 13.628 111.917 14.986 C 111.917 16.355 111.459 17.523 110.538 18.446 L 110.537 18.446 C 109.616 19.378 108.462 19.851 107.129 19.851 Z M 72.637 19.65 L 72.637 10.322 L 78.207 10.322 L 78.207 11.732 L 74.097 11.732 L 74.097 14.295 L 77.805 14.295 L 77.805 15.677 L 74.097 15.677 L 74.097 18.241 L 78.207 18.241 L 78.207 19.65 Z M 81.617 19.65 L 81.617 11.733 L 79.095 11.733 L 79.095 10.322 L 85.6 10.322 L 85.6 11.732 L 83.079 11.732 L 83.079 19.65 L 81.619 19.65 Z M 89.757 19.65 L 89.757 10.322 L 91.217 10.322 L 91.217 19.65 Z M 94.892 19.65 L 94.892 11.733 L 92.37 11.733 L 92.37 10.322 L 98.874 10.322 L 98.874 11.732 L 96.352 11.732 L 96.352 19.65 Z M 113.213 19.65 L 113.213 10.322 L 114.859 10.322 L 119.05 17.03 L 119.014 15.757 L 119.014 10.322 L 120.474 10.322 L 120.474 19.65 L 119.029 19.65 L 114.637 12.603 L 114.673 13.875 L 114.673 19.65 Z M 107.129 18.443 C 108.076 18.443 108.849 18.12 109.479 17.467 L 109.48 17.466 L 109.481 17.465 C 110.12 16.825 110.433 16.002 110.433 14.985 C 110.433 13.972 110.12 13.145 109.481 12.507 L 109.48 12.506 L 109.479 12.505 C 108.849 11.852 108.076 11.531 107.129 11.531 C 106.179 11.531 105.406 11.851 104.764 12.504 L 104.764 12.505 C 104.136 13.16 103.824 13.972 103.824 14.985 C 103.824 16.002 104.136 16.812 104.764 17.467 C 105.407 18.12 106.18 18.443 107.129 18.443 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 31.072 29.135 L 15.102 46.085 L 15.104 46.095 C 15.609 47.98 17.318 49.291 19.27 49.291 C 20.068 49.291 20.817 49.075 21.459 48.696 L 21.509 48.666 L 39.486 38.294 L 31.072 29.134\" fill=\"rgb(234,67,53)\"></path><path d=\"M 47.228 26.249 L 47.213 26.239 L 39.453 21.739 L 30.709 29.519 L 39.483 38.292 L 47.203 33.838 C 48.599 33.089 49.472 31.635 49.477 30.05 C 49.482 28.466 48.619 27.007 47.228 26.248\" fill=\"rgb(251,188,4)\"></path><path d=\"M 15.101 13.915 C 15.003 14.277 14.954 14.65 14.955 15.025 L 14.955 44.975 C 14.955 45.36 15.005 45.732 15.102 46.085 L 31.622 29.569 L 15.102 13.915 Z\" fill=\"rgb(66,133,244)\"></path><path d=\"M 31.19 30 L 39.455 21.736 L 21.5 11.326 C 20.337 10.629 18.915 10.517 17.658 11.025 C 16.4 11.533 15.454 12.601 15.102 13.91 L 15.102 13.915 L 31.188 30 Z\" fill=\"rgb(52,168,83)\"></path></svg>',svgContentId:9670801483}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9v5rni\",layoutDependency:layoutDependency,layoutId:\"mGZycDKsE\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},whileHover:animation,children:/*#__PURE__*/_jsx(Link,{href:\"https://app.adjust.com/15ohygfn\",motionChild:true,nodeId:\"Er7MkPsBj\",scopeId:\"qQa8dl3dF\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1uvvca7 framer-4n536h\",\"data-framer-name\":\"graphic\",description:\"Download Hubpay app using Apple App Store\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Er7MkPsBj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 203 60\"><path d=\"M 10.5 60 C 4.701 60 0 60 0 60 L 0 0 C 0 0 4.701 0 10.5 0 L 192 0 C 197.799 0 202.5 0 202.5 0 L 202.5 60 C 202.5 60 197.799 60 192 60 Z\" fill=\"rgb(12,13,16)\"></path><path d=\"M 133.289 28.802 L 133.289 32.238 L 131.135 32.238 L 131.135 34.492 L 133.289 34.492 L 133.289 42.149 C 133.289 44.764 134.472 45.809 137.448 45.809 C 137.936 45.805 138.423 45.759 138.904 45.673 L 138.904 43.444 C 138.531 43.481 138.294 43.506 137.883 43.506 C 136.551 43.506 135.966 42.884 135.966 41.464 L 135.966 34.492 L 138.904 34.492 L 138.904 32.238 L 135.966 32.238 L 135.966 28.802 Z M 146.485 45.997 C 150.445 45.997 152.873 43.344 152.873 38.949 C 152.873 34.579 150.432 31.914 146.485 31.914 C 142.526 31.914 140.085 34.579 140.085 38.949 C 140.085 43.344 142.513 45.997 146.485 45.997 Z M 146.485 43.618 C 144.157 43.618 142.849 41.913 142.849 38.949 C 142.849 36.011 144.157 34.292 146.485 34.292 C 148.801 34.292 150.121 36.011 150.121 38.949 C 150.121 41.9 148.801 43.619 146.485 43.619 Z M 154.95 45.735 L 157.627 45.735 L 157.627 37.73 C 157.627 35.825 159.059 34.542 161.088 34.542 C 161.562 34.542 162.358 34.63 162.583 34.704 L 162.583 32.064 C 162.296 31.99 161.786 31.953 161.387 31.953 C 159.619 31.953 158.113 32.923 157.727 34.256 L 157.527 34.256 L 157.527 32.176 L 154.95 32.176 L 154.95 45.736 Z M 169.229 34.193 C 171.209 34.193 172.504 35.575 172.566 37.704 L 165.718 37.704 C 165.868 35.587 167.25 34.193 169.229 34.193 Z M 172.554 42.075 C 172.056 43.133 170.948 43.718 169.329 43.718 C 167.187 43.718 165.805 42.211 165.718 39.833 L 165.718 39.683 L 175.293 39.683 L 175.293 38.75 C 175.293 34.492 173.015 31.914 169.242 31.914 C 165.419 31.914 162.991 34.666 162.991 38.999 C 162.991 43.332 165.37 45.997 169.254 45.997 C 172.355 45.997 174.521 44.502 175.131 42.075 Z M 115.734 40.728 C 115.94 44.058 118.715 46.187 122.844 46.187 C 127.258 46.187 130.02 43.954 130.02 40.392 C 130.02 37.592 128.445 36.043 124.625 35.152 L 122.573 34.65 C 120.147 34.082 119.166 33.32 119.166 31.991 C 119.166 30.313 120.689 29.216 122.973 29.216 C 125.141 29.216 126.638 30.288 126.909 32.004 L 129.723 32.004 C 129.555 28.868 126.793 26.661 123.012 26.661 C 118.947 26.661 116.237 28.868 116.237 32.185 C 116.237 34.92 117.773 36.547 121.141 37.334 L 123.541 37.914 C 126.006 38.495 127.09 39.347 127.09 40.767 C 127.09 42.418 125.387 43.619 123.064 43.619 C 120.573 43.619 118.844 42.496 118.598 40.728 Z M 88.002 31.952 C 86.16 31.952 84.566 32.873 83.744 34.417 L 83.545 34.417 L 83.545 32.176 L 80.968 32.176 L 80.968 50.242 L 83.645 50.242 L 83.645 43.681 L 83.856 43.681 C 84.566 45.113 86.098 45.959 88.027 45.959 C 91.451 45.959 93.63 43.257 93.63 38.949 C 93.63 34.641 91.452 31.952 88.003 31.952 Z M 87.243 43.556 C 85.002 43.556 83.595 41.788 83.595 38.962 C 83.595 36.122 85.002 34.355 87.255 34.355 C 89.522 34.355 90.879 36.085 90.879 38.949 C 90.879 41.826 89.522 43.556 87.243 43.556 Z M 102.998 31.952 C 101.155 31.952 99.561 32.873 98.739 34.417 L 98.54 34.417 L 98.54 32.176 L 95.963 32.176 L 95.963 50.242 L 98.64 50.242 L 98.64 43.681 L 98.852 43.681 C 99.562 45.113 101.093 45.959 103.023 45.959 C 106.447 45.959 108.626 43.257 108.626 38.949 C 108.626 34.641 106.447 31.952 102.998 31.952 Z M 102.238 43.556 C 99.997 43.556 98.59 41.788 98.59 38.962 C 98.59 36.122 99.997 34.355 102.251 34.355 C 104.517 34.355 105.874 36.085 105.874 38.949 C 105.874 41.826 104.517 43.556 102.238 43.556 Z M 76.165 45.735 L 79.236 45.735 L 72.512 27.113 L 69.402 27.113 L 62.68 45.735 L 65.648 45.735 L 67.364 40.792 L 74.462 40.792 L 76.166 45.735 Z M 70.809 30.494 L 71.029 30.494 L 73.726 38.366 L 68.099 38.366 Z M 64.477 13.066 L 64.477 22.05 L 67.72 22.05 C 70.397 22.05 71.947 20.4 71.947 17.53 C 71.947 14.704 70.385 13.066 67.72 13.066 Z M 65.871 14.336 L 67.565 14.336 C 69.426 14.336 70.528 15.519 70.528 17.549 C 70.528 19.609 69.445 20.779 67.565 20.779 L 65.87 20.779 L 65.87 14.336 Z M 76.695 22.18 C 78.675 22.18 79.889 20.855 79.889 18.657 C 79.889 16.472 78.669 15.139 76.695 15.139 C 74.715 15.139 73.495 16.472 73.495 18.657 C 73.495 20.855 74.709 22.181 76.695 22.181 Z M 76.695 20.992 C 75.531 20.992 74.877 20.139 74.877 18.657 C 74.877 17.187 75.531 16.329 76.695 16.329 C 77.853 16.329 78.513 17.188 78.513 18.657 C 78.513 20.132 77.853 20.992 76.695 20.992 Z M 90.227 15.27 L 88.888 15.27 L 87.681 20.444 L 87.575 20.444 L 86.18 15.27 L 84.898 15.27 L 83.503 20.444 L 83.403 20.444 L 82.19 15.27 L 80.832 15.27 L 82.7 22.05 L 84.076 22.05 L 85.471 17.057 L 85.576 17.057 L 86.977 22.05 L 88.365 22.05 Z M 91.768 22.05 L 93.107 22.05 L 93.107 18.084 C 93.107 17.026 93.736 16.366 94.726 16.366 C 95.716 16.366 96.189 16.908 96.189 17.997 L 96.189 22.05 L 97.527 22.05 L 97.527 17.66 C 97.527 16.049 96.693 15.14 95.18 15.14 C 94.159 15.14 93.487 15.594 93.157 16.347 L 93.057 16.347 L 93.057 15.27 L 91.768 15.27 Z M 99.635 22.05 L 100.974 22.05 L 100.974 12.624 L 99.635 12.624 Z M 106.008 22.18 C 107.987 22.18 109.201 20.855 109.201 18.657 C 109.201 16.472 107.981 15.139 106.008 15.139 C 104.028 15.139 102.808 16.472 102.808 18.657 C 102.808 20.855 104.022 22.181 106.008 22.181 Z M 106.008 20.992 C 104.843 20.992 104.19 20.139 104.19 18.657 C 104.19 17.187 104.843 16.329 106.008 16.329 C 107.166 16.329 107.825 17.188 107.825 18.657 C 107.825 20.132 107.166 20.992 106.008 20.992 Z M 113.189 21.035 C 112.461 21.035 111.932 20.68 111.932 20.07 C 111.932 19.472 112.355 19.155 113.289 19.093 L 114.945 18.987 L 114.945 19.554 C 114.945 20.394 114.198 21.035 113.189 21.035 Z M 112.847 22.162 C 113.737 22.162 114.478 21.776 114.883 21.097 L 114.989 21.097 L 114.989 22.05 L 116.277 22.05 L 116.277 17.418 C 116.277 15.986 115.319 15.14 113.619 15.14 C 112.081 15.14 110.986 15.887 110.849 17.05 L 112.144 17.05 C 112.293 16.571 112.81 16.297 113.557 16.297 C 114.472 16.297 114.945 16.702 114.945 17.418 L 114.945 18.003 L 113.108 18.109 C 111.496 18.209 110.587 18.912 110.587 20.132 C 110.587 21.372 111.54 22.162 112.847 22.162 Z M 120.819 22.162 C 121.753 22.162 122.544 21.72 122.949 20.979 L 123.054 20.979 L 123.054 22.049 L 124.337 22.049 L 124.337 12.624 L 122.998 12.624 L 122.998 16.347 L 122.899 16.347 C 122.532 15.6 121.747 15.158 120.819 15.158 C 119.107 15.158 118.006 16.515 118.006 18.657 C 118.006 20.805 119.095 22.162 120.819 22.162 Z M 121.199 16.36 C 122.32 16.36 123.023 17.25 123.023 18.663 C 123.023 20.083 122.326 20.96 121.199 20.96 C 120.066 20.96 119.388 20.095 119.388 18.657 C 119.388 17.231 120.072 16.36 121.199 16.36 Z M 133.017 22.18 C 134.996 22.18 136.21 20.855 136.21 18.657 C 136.21 16.472 134.99 15.139 133.017 15.139 C 131.037 15.139 129.817 16.472 129.817 18.657 C 129.817 20.855 131.031 22.181 133.017 22.181 Z M 133.017 20.992 C 131.852 20.992 131.199 20.139 131.199 18.657 C 131.199 17.187 131.852 16.329 133.017 16.329 C 134.175 16.329 134.835 17.188 134.835 18.657 C 134.835 20.132 134.175 20.992 133.017 20.992 Z M 137.982 22.05 L 139.321 22.05 L 139.321 18.084 C 139.321 17.026 139.949 16.366 140.939 16.366 C 141.929 16.366 142.402 16.908 142.402 17.997 L 142.402 22.05 L 143.741 22.05 L 143.741 17.66 C 143.741 16.049 142.907 15.14 141.394 15.14 C 140.373 15.14 139.7 15.594 139.37 16.347 L 139.271 16.347 L 139.271 15.27 L 137.982 15.27 Z M 149.905 13.583 L 149.905 15.301 L 148.828 15.301 L 148.828 16.428 L 149.905 16.428 L 149.905 20.257 C 149.905 21.564 150.497 22.087 151.985 22.087 C 152.246 22.087 152.495 22.057 152.713 22.019 L 152.713 20.904 C 152.526 20.924 152.408 20.936 152.203 20.936 C 151.537 20.936 151.244 20.624 151.244 19.915 L 151.244 16.428 L 152.713 16.428 L 152.713 15.301 L 151.244 15.301 L 151.244 13.583 Z M 154.51 22.05 L 155.848 22.05 L 155.848 18.09 C 155.848 17.063 156.458 16.372 157.554 16.372 C 158.5 16.372 159.005 16.92 159.005 18.003 L 159.005 22.05 L 160.343 22.05 L 160.343 17.673 C 160.343 16.061 159.453 15.146 158.009 15.146 C 156.988 15.146 156.272 15.6 155.942 16.36 L 155.836 16.36 L 155.836 12.624 L 154.51 12.624 Z M 165.172 16.279 C 166.162 16.279 166.809 16.969 166.84 18.034 L 163.416 18.034 C 163.491 16.976 164.182 16.279 165.172 16.279 Z M 166.834 20.219 C 166.585 20.749 166.031 21.041 165.222 21.041 C 164.151 21.041 163.46 20.288 163.416 19.099 L 163.416 19.024 L 168.204 19.024 L 168.204 18.557 C 168.204 16.428 167.064 15.14 165.178 15.14 C 163.267 15.14 162.053 16.515 162.053 18.682 C 162.053 20.848 163.242 22.181 165.184 22.181 C 166.734 22.181 167.818 21.434 168.123 20.22 L 166.834 20.22 Z M 48.154 30.451 C 48.198 27.91 49.529 25.564 51.688 24.223 C 50.304 22.272 48.092 21.076 45.702 20.987 C 43.182 20.722 40.741 22.494 39.457 22.494 C 38.149 22.494 36.173 21.013 34.044 21.057 C 31.248 21.16 28.707 22.71 27.335 25.148 C 24.435 30.171 26.598 37.553 29.377 41.613 C 30.767 43.601 32.392 45.821 34.518 45.743 C 36.598 45.656 37.376 44.416 39.888 44.416 C 42.376 44.416 43.105 45.743 45.274 45.693 C 47.507 45.656 48.914 43.696 50.254 41.689 C 51.253 40.272 52.022 38.707 52.532 37.05 C 49.909 35.94 48.157 33.3 48.154 30.451 Z M 44.056 18.317 C 45.273 16.856 45.873 14.977 45.728 13.081 C 43.868 13.276 42.15 14.165 40.916 15.571 C 39.704 16.961 39.088 18.772 39.201 20.612 C 41.083 20.621 42.868 19.777 44.056 18.317 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10063673979,title:\"Hubpay App on Apple App Store\",withExternalLayout:true,...addPropertyOverrides({PO0TaDUCy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 203 60\"><path d=\"M 10.5 60 C 4.701 60 0 60 0 60 L 0 0 C 0 0 4.701 0 10.5 0 L 192 0 C 197.799 0 202.5 0 202.5 0 L 202.5 60 C 202.5 60 197.799 60 192 60 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 133.289 28.802 L 133.289 32.238 L 131.135 32.238 L 131.135 34.492 L 133.289 34.492 L 133.289 42.149 C 133.289 44.764 134.472 45.809 137.448 45.809 C 137.936 45.805 138.423 45.759 138.904 45.673 L 138.904 43.444 C 138.531 43.481 138.294 43.506 137.883 43.506 C 136.551 43.506 135.966 42.884 135.966 41.464 L 135.966 34.492 L 138.904 34.492 L 138.904 32.238 L 135.966 32.238 L 135.966 28.802 Z M 146.485 45.997 C 150.445 45.997 152.873 43.344 152.873 38.949 C 152.873 34.579 150.432 31.914 146.485 31.914 C 142.526 31.914 140.085 34.579 140.085 38.949 C 140.085 43.344 142.513 45.997 146.485 45.997 Z M 146.485 43.618 C 144.157 43.618 142.849 41.913 142.849 38.949 C 142.849 36.011 144.157 34.292 146.485 34.292 C 148.801 34.292 150.121 36.011 150.121 38.949 C 150.121 41.9 148.801 43.619 146.485 43.619 Z M 154.95 45.735 L 157.627 45.735 L 157.627 37.73 C 157.627 35.825 159.059 34.542 161.088 34.542 C 161.562 34.542 162.358 34.63 162.583 34.704 L 162.583 32.064 C 162.296 31.99 161.786 31.953 161.387 31.953 C 159.619 31.953 158.113 32.923 157.727 34.256 L 157.527 34.256 L 157.527 32.176 L 154.95 32.176 L 154.95 45.736 Z M 169.229 34.193 C 171.209 34.193 172.504 35.575 172.566 37.704 L 165.718 37.704 C 165.868 35.587 167.25 34.193 169.229 34.193 Z M 172.554 42.075 C 172.056 43.133 170.948 43.718 169.329 43.718 C 167.187 43.718 165.805 42.211 165.718 39.833 L 165.718 39.683 L 175.293 39.683 L 175.293 38.75 C 175.293 34.492 173.015 31.914 169.242 31.914 C 165.419 31.914 162.991 34.666 162.991 38.999 C 162.991 43.332 165.37 45.997 169.254 45.997 C 172.355 45.997 174.521 44.502 175.131 42.075 Z M 115.734 40.728 C 115.94 44.058 118.715 46.187 122.844 46.187 C 127.258 46.187 130.02 43.954 130.02 40.392 C 130.02 37.592 128.445 36.043 124.625 35.152 L 122.573 34.65 C 120.147 34.082 119.166 33.32 119.166 31.991 C 119.166 30.313 120.689 29.216 122.973 29.216 C 125.141 29.216 126.638 30.288 126.909 32.004 L 129.723 32.004 C 129.555 28.868 126.793 26.661 123.012 26.661 C 118.947 26.661 116.237 28.868 116.237 32.185 C 116.237 34.92 117.773 36.547 121.141 37.334 L 123.541 37.914 C 126.006 38.495 127.09 39.347 127.09 40.767 C 127.09 42.418 125.387 43.619 123.064 43.619 C 120.573 43.619 118.844 42.496 118.598 40.728 Z M 88.002 31.952 C 86.16 31.952 84.566 32.873 83.744 34.417 L 83.545 34.417 L 83.545 32.176 L 80.968 32.176 L 80.968 50.242 L 83.645 50.242 L 83.645 43.681 L 83.856 43.681 C 84.566 45.113 86.098 45.959 88.027 45.959 C 91.451 45.959 93.63 43.257 93.63 38.949 C 93.63 34.641 91.452 31.952 88.003 31.952 Z M 87.243 43.556 C 85.002 43.556 83.595 41.788 83.595 38.962 C 83.595 36.122 85.002 34.355 87.255 34.355 C 89.522 34.355 90.879 36.085 90.879 38.949 C 90.879 41.826 89.522 43.556 87.243 43.556 Z M 102.998 31.952 C 101.155 31.952 99.561 32.873 98.739 34.417 L 98.54 34.417 L 98.54 32.176 L 95.963 32.176 L 95.963 50.242 L 98.64 50.242 L 98.64 43.681 L 98.852 43.681 C 99.562 45.113 101.093 45.959 103.023 45.959 C 106.447 45.959 108.626 43.257 108.626 38.949 C 108.626 34.641 106.447 31.952 102.998 31.952 Z M 102.238 43.556 C 99.997 43.556 98.59 41.788 98.59 38.962 C 98.59 36.122 99.997 34.355 102.251 34.355 C 104.517 34.355 105.874 36.085 105.874 38.949 C 105.874 41.826 104.517 43.556 102.238 43.556 Z M 76.165 45.735 L 79.236 45.735 L 72.512 27.113 L 69.402 27.113 L 62.68 45.735 L 65.648 45.735 L 67.364 40.792 L 74.462 40.792 L 76.166 45.735 Z M 70.809 30.494 L 71.029 30.494 L 73.726 38.366 L 68.099 38.366 Z M 64.477 13.066 L 64.477 22.05 L 67.72 22.05 C 70.397 22.05 71.947 20.4 71.947 17.53 C 71.947 14.704 70.385 13.066 67.72 13.066 Z M 65.871 14.336 L 67.565 14.336 C 69.426 14.336 70.528 15.519 70.528 17.549 C 70.528 19.609 69.445 20.779 67.565 20.779 L 65.87 20.779 L 65.87 14.336 Z M 76.695 22.18 C 78.675 22.18 79.889 20.855 79.889 18.657 C 79.889 16.472 78.669 15.139 76.695 15.139 C 74.715 15.139 73.495 16.472 73.495 18.657 C 73.495 20.855 74.709 22.181 76.695 22.181 Z M 76.695 20.992 C 75.531 20.992 74.877 20.139 74.877 18.657 C 74.877 17.187 75.531 16.329 76.695 16.329 C 77.853 16.329 78.513 17.188 78.513 18.657 C 78.513 20.132 77.853 20.992 76.695 20.992 Z M 90.227 15.27 L 88.888 15.27 L 87.681 20.444 L 87.575 20.444 L 86.18 15.27 L 84.898 15.27 L 83.503 20.444 L 83.403 20.444 L 82.19 15.27 L 80.832 15.27 L 82.7 22.05 L 84.076 22.05 L 85.471 17.057 L 85.576 17.057 L 86.977 22.05 L 88.365 22.05 Z M 91.768 22.05 L 93.107 22.05 L 93.107 18.084 C 93.107 17.026 93.736 16.366 94.726 16.366 C 95.716 16.366 96.189 16.908 96.189 17.997 L 96.189 22.05 L 97.527 22.05 L 97.527 17.66 C 97.527 16.049 96.693 15.14 95.18 15.14 C 94.159 15.14 93.487 15.594 93.157 16.347 L 93.057 16.347 L 93.057 15.27 L 91.768 15.27 Z M 99.635 22.05 L 100.974 22.05 L 100.974 12.624 L 99.635 12.624 Z M 106.008 22.18 C 107.987 22.18 109.201 20.855 109.201 18.657 C 109.201 16.472 107.981 15.139 106.008 15.139 C 104.028 15.139 102.808 16.472 102.808 18.657 C 102.808 20.855 104.022 22.181 106.008 22.181 Z M 106.008 20.992 C 104.843 20.992 104.19 20.139 104.19 18.657 C 104.19 17.187 104.843 16.329 106.008 16.329 C 107.166 16.329 107.825 17.188 107.825 18.657 C 107.825 20.132 107.166 20.992 106.008 20.992 Z M 113.189 21.035 C 112.461 21.035 111.932 20.68 111.932 20.07 C 111.932 19.472 112.355 19.155 113.289 19.093 L 114.945 18.987 L 114.945 19.554 C 114.945 20.394 114.198 21.035 113.189 21.035 Z M 112.847 22.162 C 113.737 22.162 114.478 21.776 114.883 21.097 L 114.989 21.097 L 114.989 22.05 L 116.277 22.05 L 116.277 17.418 C 116.277 15.986 115.319 15.14 113.619 15.14 C 112.081 15.14 110.986 15.887 110.849 17.05 L 112.144 17.05 C 112.293 16.571 112.81 16.297 113.557 16.297 C 114.472 16.297 114.945 16.702 114.945 17.418 L 114.945 18.003 L 113.108 18.109 C 111.496 18.209 110.587 18.912 110.587 20.132 C 110.587 21.372 111.54 22.162 112.847 22.162 Z M 120.819 22.162 C 121.753 22.162 122.544 21.72 122.949 20.979 L 123.054 20.979 L 123.054 22.049 L 124.337 22.049 L 124.337 12.624 L 122.998 12.624 L 122.998 16.347 L 122.899 16.347 C 122.532 15.6 121.747 15.158 120.819 15.158 C 119.107 15.158 118.006 16.515 118.006 18.657 C 118.006 20.805 119.095 22.162 120.819 22.162 Z M 121.199 16.36 C 122.32 16.36 123.023 17.25 123.023 18.663 C 123.023 20.083 122.326 20.96 121.199 20.96 C 120.066 20.96 119.388 20.095 119.388 18.657 C 119.388 17.231 120.072 16.36 121.199 16.36 Z M 133.017 22.18 C 134.996 22.18 136.21 20.855 136.21 18.657 C 136.21 16.472 134.99 15.139 133.017 15.139 C 131.037 15.139 129.817 16.472 129.817 18.657 C 129.817 20.855 131.031 22.181 133.017 22.181 Z M 133.017 20.992 C 131.852 20.992 131.199 20.139 131.199 18.657 C 131.199 17.187 131.852 16.329 133.017 16.329 C 134.175 16.329 134.835 17.188 134.835 18.657 C 134.835 20.132 134.175 20.992 133.017 20.992 Z M 137.982 22.05 L 139.321 22.05 L 139.321 18.084 C 139.321 17.026 139.949 16.366 140.939 16.366 C 141.929 16.366 142.402 16.908 142.402 17.997 L 142.402 22.05 L 143.741 22.05 L 143.741 17.66 C 143.741 16.049 142.907 15.14 141.394 15.14 C 140.373 15.14 139.7 15.594 139.37 16.347 L 139.271 16.347 L 139.271 15.27 L 137.982 15.27 Z M 149.905 13.583 L 149.905 15.301 L 148.828 15.301 L 148.828 16.428 L 149.905 16.428 L 149.905 20.257 C 149.905 21.564 150.497 22.087 151.985 22.087 C 152.246 22.087 152.495 22.057 152.713 22.019 L 152.713 20.904 C 152.526 20.924 152.408 20.936 152.203 20.936 C 151.537 20.936 151.244 20.624 151.244 19.915 L 151.244 16.428 L 152.713 16.428 L 152.713 15.301 L 151.244 15.301 L 151.244 13.583 Z M 154.51 22.05 L 155.848 22.05 L 155.848 18.09 C 155.848 17.063 156.458 16.372 157.554 16.372 C 158.5 16.372 159.005 16.92 159.005 18.003 L 159.005 22.05 L 160.343 22.05 L 160.343 17.673 C 160.343 16.061 159.453 15.146 158.009 15.146 C 156.988 15.146 156.272 15.6 155.942 16.36 L 155.836 16.36 L 155.836 12.624 L 154.51 12.624 Z M 165.172 16.279 C 166.162 16.279 166.809 16.969 166.84 18.034 L 163.416 18.034 C 163.491 16.976 164.182 16.279 165.172 16.279 Z M 166.834 20.219 C 166.585 20.749 166.031 21.041 165.222 21.041 C 164.151 21.041 163.46 20.288 163.416 19.099 L 163.416 19.024 L 168.204 19.024 L 168.204 18.557 C 168.204 16.428 167.064 15.14 165.178 15.14 C 163.267 15.14 162.053 16.515 162.053 18.682 C 162.053 20.848 163.242 22.181 165.184 22.181 C 166.734 22.181 167.818 21.434 168.123 20.22 L 166.834 20.22 Z M 48.154 30.451 C 48.198 27.91 49.529 25.564 51.688 24.223 C 50.304 22.272 48.092 21.076 45.702 20.987 C 43.182 20.722 40.741 22.494 39.457 22.494 C 38.149 22.494 36.173 21.013 34.044 21.057 C 31.248 21.16 28.707 22.71 27.335 25.148 C 24.435 30.171 26.598 37.553 29.377 41.613 C 30.767 43.601 32.392 45.821 34.518 45.743 C 36.598 45.656 37.376 44.416 39.888 44.416 C 42.376 44.416 43.105 45.743 45.274 45.693 C 47.507 45.656 48.914 43.696 50.254 41.689 C 51.253 40.272 52.022 38.707 52.532 37.05 C 49.909 35.94 48.157 33.3 48.154 30.451 Z M 44.056 18.317 C 45.273 16.856 45.873 14.977 45.728 13.081 C 43.868 13.276 42.15 14.165 40.916 15.571 C 39.704 16.961 39.088 18.772 39.201 20.612 C 41.083 20.621 42.868 19.777 44.056 18.317 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:10931477442}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7CaEZ.framer-4n536h, .framer-7CaEZ .framer-4n536h { display: block; }\",\".framer-7CaEZ.framer-1u1hyj0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 422px; }\",\".framer-7CaEZ .framer-hfqux0, .framer-7CaEZ .framer-9v5rni { flex: none; height: 60px; overflow: hidden; position: relative; width: 203px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7CaEZ .framer-ofz16c, .framer-7CaEZ .framer-1uvvca7 { flex: none; height: 60px; left: 0px; position: absolute; text-decoration: none; top: 0px; width: 203px; }\",\".framer-7CaEZ.framer-v-1dso6i6.framer-1u1hyj0 { justify-content: var(--srywfm); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 422\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PO0TaDUCy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KuulzLZ5Q\":\"distribute\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerqQa8dl3dF=withCSS(Component,css,\"framer-7CaEZ\");export default FramerqQa8dl3dF;FramerqQa8dl3dF.displayName=\"App store images\";FramerqQa8dl3dF.defaultProps={height:60,width:422};addPropertyControls(FramerqQa8dl3dF,{variant:{options:[\"GZSMvLfEW\",\"PO0TaDUCy\"],optionTitles:[\"Dark\",\"White\"],title:\"Variant\",type:ControlType.Enum},KuulzLZ5Q:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum}});addFonts(FramerqQa8dl3dF,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqQa8dl3dF\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"60\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"422\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"KuulzLZ5Q\\\":\\\"distribute\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PO0TaDUCy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qQa8dl3dF.map", "// Generated by Framer (99d1409)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/Jo2d4bKbCdbbg0oiZ0LB/Input.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/aovVXAWFDXZj9WGe0tCB/gpqVzYudlDtqmdscMqu2/C_L4awuww.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/k1PNaL7r4wmusgjoj3He/OpTJtHZAw00lj48QrUEJ/iFDU8Zynn.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/nWFxmSlmnbH94cm2ANB0/VAQB4nf3PeuytL3RHXS9/nAELO7lSP.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/RHLKUb4O6jR3ditUmsDt/5o3koYkbwjDNJOOjhal0/Pvy7n4U9n.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/MY47AFmkPQophKnrHVPV/dlO8ZQAFwhGsxWHu7iye/RXIiJPSqI.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/TFIYrtt031y4Khu1rLG8/mXB9y5S4MP27ZHmq2Fu7/vxRLsttid.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/g0BSfHd4xbI2ob6n8Abs/YaeswpNRGFl72sBLWHUp/zMpsiMOLk.js\";import HubpayLogo from\"https://framerusercontent.com/modules/ZbSGbMlGlcD7vxIZnEG4/ndgu9n0H9wf5F72Qpnr6/mLF1mHHxe.js\";import AppStoreImages from\"https://framerusercontent.com/modules/A7ziaC2Bp1YzsbuqkN7e/eho2bqYUe7pTOP3Tm97i/qQa8dl3dF.js\";const HubpayLogoFonts=getFonts(HubpayLogo);const AppStoreImagesFonts=getFonts(AppStoreImages);const InputFonts=getFonts(Input);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"ZazV1Afah\",\"PPboF3guW\",\"kd86rALLE\"];const serializationHash=\"framer-040tq\";const variantClassNames={kd86rALLE:\"framer-v-sp0rkt\",PPboF3guW:\"framer-v-392qew\",ZazV1Afah:\"framer-v-1b6dz9p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4};const negate=value=>{return!value;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"ZazV1Afah\",Mobile:\"kd86rALLE\",Tablet:\"PPboF3guW\"};const getProps=({expanded,height,id,submit,width,...props})=>{return{...props,KbcLk4YAK:expanded??props.KbcLk4YAK??true,PMSreCJ4x:submit??props.PMSreCJ4x,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZazV1Afah\"};};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,KbcLk4YAK,PMSreCJ4x,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZazV1Afah\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onSubmit18icc0k=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{if(PMSreCJ4x){const res=await PMSreCJ4x(...args);if(res===false)return false;}overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const ref1=React.useRef(null);const ref2=React.useRef(null);const visible=negate(KbcLk4YAK);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1b6dz9p\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ZazV1Afah\",ref:refBinding,style:{...style},...addPropertyOverrides({kd86rALLE:{\"data-framer-name\":\"Mobile\"},PPboF3guW:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p2pdy8\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"o1a0r3D55\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9e370a80-8c80-4496-a295-ae828e77d7f2, rgba(255, 255, 255, 0.2))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, rgba(25, 9, 51, 0) 0%, rgb(8, 3, 17) 42.370880401886254%)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hvb4kj\",layoutDependency:layoutDependency,layoutId:\"ot2fyjfxX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eij24u\",\"data-framer-name\":\"Frame 513875\",layoutDependency:layoutDependency,layoutId:\"ZJ57mkOSN\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FMs05ACvq\"},implicitPathVariables:undefined},{href:{webPageId:\"FMs05ACvq\"},implicitPathVariables:undefined},{href:{webPageId:\"FMs05ACvq\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"141.25px\",y:(componentViewport?.y||0)+0+0+100+0+0+1491+0+0,...addPropertyOverrides({kd86rALLE:{y:(componentViewport?.y||0)+0+0+60+0+0+2077+0+0},PPboF3guW:{y:(componentViewport?.y||0)+0+0+60+0+0+2024+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-39v0me-container\",layoutDependency:layoutDependency,layoutId:\"JJd4_D_0r-container\",nodeId:\"JJd4_D_0r\",rendersWithMotion:true,scopeId:\"N6bEE45Af\",children:/*#__PURE__*/_jsx(HubpayLogo,{height:\"100%\",id:\"JJd4_D_0r\",layoutId:\"JJd4_D_0r\",style:{height:\"100%\",width:\"100%\"},variant:\"B2DL40fHO\",w4jFIQ4zF:resolvedLinks[0],width:\"100%\",...addPropertyOverrides({kd86rALLE:{w4jFIQ4zF:resolvedLinks[2]},PPboF3guW:{w4jFIQ4zF:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k0d5fm\",\"data-styles-preset\":\"vxRLsttid\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a47de406-81d6-410a-9acd-91ffe55e321f, rgb(161, 153, 194)))\"},children:\"Hubpay is an all in one payments platform made for UAE businesses expanding globally.\"})}),className:\"framer-31q5cm\",\"data-framer-name\":\"Making cross-border payments better across the planet\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"genv7IqzM\",style:{\"--extracted-r6o4lv\":\"var(--token-a47de406-81d6-410a-9acd-91ffe55e321f, rgb(161, 153, 194))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),KbcLk4YAK&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5joo0x\",\"data-framer-name\":\"Frame 513867\",layoutDependency:layoutDependency,layoutId:\"YdewociO2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1duwdej\",\"data-framer-name\":\"Frame 513863\",layoutDependency:layoutDependency,layoutId:\"C1nCuH1do\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k7nuow\",layoutDependency:layoutDependency,layoutId:\"OLPDFKAdK\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1egwlp4\",layoutDependency:layoutDependency,layoutId:\"RCIiUlH6W\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4221wh\",\"data-framer-name\":\"Frame 39\",layoutDependency:layoutDependency,layoutId:\"r3ppkMmBO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3qudfu\",\"data-styles-preset\":\"Pvy7n4U9n\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FMs05ACvq\"},motionChild:true,nodeId:\"VM_9cogRN\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"Business\"})})})}),className:\"framer-1riwes0\",\"data-framer-name\":\"Business\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VM_9cogRN\",style:{\"--extracted-r6o4lv\":\"var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lowhj3\",\"data-framer-name\":\"Frame 38\",layoutDependency:layoutDependency,layoutId:\"zOk7MpZKm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FMs05ACvq\"},motionChild:true,nodeId:\"pawUYktE1\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Hubpay Business Account\"})})})}),className:\"framer-1cbt6w6\",\"data-framer-name\":\"Supported Industries\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pawUYktE1\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hLxn14QjS\"},motionChild:true,nodeId:\"oAqIZzYR7\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Multi-currency account\"})})})}),className:\"framer-bexz2k\",\"data-framer-name\":\"Pay & Recieve to Africa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oAqIZzYR7\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sAq12G0dU\"},motionChild:true,nodeId:\"IhJeAcc25\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Cryptocurrency payments\"})})})}),className:\"framer-ia5u26\",\"data-framer-name\":\"Pay & Recieve to Africa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IhJeAcc25\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MZ2mFabl8\"},motionChild:true,nodeId:\"PWohoy1OI\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Global Payroll\"})})})}),className:\"framer-abdi9o\",\"data-framer-name\":\"Pay & Recieve to Africa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PWohoy1OI\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"VDVnHpnVr\"},motionChild:true,nodeId:\"fu7rWwkx7\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Virtual IBANs\"})})})}),className:\"framer-1bhru6t\",\"data-framer-name\":\"Pay & Recieve to Africa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fu7rWwkx7\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ug3w9vBAF\"},motionChild:true,nodeId:\"LMM0s5G2c\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Payment links\"})})})}),className:\"framer-tx9cnn\",\"data-framer-name\":\"Pay & Recieve to Africa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LMM0s5G2c\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rJfpAio2E\"},motionChild:true,nodeId:\"VQZFncjRl\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Corporate FX\"})})})}),className:\"framer-1s4v49d\",\"data-framer-name\":\"Pay & Recieve to Africa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VQZFncjRl\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jKke9kL1E\"},motionChild:true,nodeId:\"ptI8uoCah\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Global availability\"})})})}),className:\"framer-12w3ys7\",\"data-framer-name\":\"Pay & Recieve to Africa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ptI8uoCah\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yIwLqGlTc\"},motionChild:true,nodeId:\"gZNdR2MXW\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Payments to Africa\"})})})}),className:\"framer-oilqpy\",\"data-framer-name\":\"Pay & Recieve to Africa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gZNdR2MXW\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cdCmdR_bs\"},motionChild:true,nodeId:\"WgVykFAAf\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Pricing\"})})})}),className:\"framer-ln1p29\",\"data-framer-name\":\"Pay & Recieve to Africa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WgVykFAAf\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FMs05ACvq\"},motionChild:true,nodeId:\"v2bqfXxpT\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Security\"})})})}),className:\"framer-1pel1l9\",\"data-framer-name\":\"Reviews\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v2bqfXxpT\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":YtNW5cHOI\",webPageId:\"FMs05ACvq\"},motionChild:true,nodeId:\"M62MDkZlA\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"FAQs\"})})})}),className:\"framer-qr8d5r\",\"data-framer-name\":\"FAQs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"M62MDkZlA\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uAjSm2cm_\"},motionChild:true,nodeId:\"sDwo5Rw24\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Terms & conditions\"})})})}),className:\"framer-1de3ip6\",\"data-framer-name\":\"Website Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sDwo5Rw24\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"us82xYBA9\"},motionChild:true,nodeId:\"JYTaV8yVE\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Schedule of charges\"})})})}),className:\"framer-15suxv2\",\"data-framer-name\":\"Website Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JYTaV8yVE\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t5bvst\",\"data-framer-name\":\"Frame 40\",layoutDependency:layoutDependency,layoutId:\"BzDXuT7H8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3qudfu\",\"data-styles-preset\":\"Pvy7n4U9n\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uHXMP_8Cf\"},motionChild:true,nodeId:\"HPQskKtBw\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"Personal\"})})})}),className:\"framer-khq3tn\",\"data-framer-name\":\"Personal\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HPQskKtBw\",style:{\"--extracted-r6o4lv\":\"var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pd7jop\",\"data-framer-name\":\"Frame 38\",layoutDependency:layoutDependency,layoutId:\"s0nKcAsmd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uHXMP_8Cf\"},motionChild:true,nodeId:\"mIAY8RC6a\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Download Hubpay\"})})})}),className:\"framer-hun6u4\",\"data-framer-name\":\"Privacy policy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mIAY8RC6a\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FEuoMeLmF\"},motionChild:true,nodeId:\"mdyPPxOEA\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Customer support\"})})})}),className:\"framer-4vfaie\",\"data-framer-name\":\"Personal T&Cs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mdyPPxOEA\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":KbYeK4RXE\",webPageId:\"uHXMP_8Cf\"},motionChild:true,nodeId:\"uc1sBMVY3\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Supported countries\"})})})}),className:\"framer-1hmnue7\",\"data-framer-name\":\"Personal T&Cs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uc1sBMVY3\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":I0229lDvQ\",webPageId:\"uHXMP_8Cf\"},motionChild:true,nodeId:\"qElMEENo1\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Reviews\"})})})}),className:\"framer-k5u83t\",\"data-framer-name\":\"Schedule of Charges\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qElMEENo1\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":c7FVq4P0s\",webPageId:\"uHXMP_8Cf\"},motionChild:true,nodeId:\"FNT0qt5x_\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"FAQs\"})})})}),className:\"framer-1esykyf\",\"data-framer-name\":\"Website Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FNT0qt5x_\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZlhQaABUO\"},motionChild:true,nodeId:\"F2SwhQIKJ\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Terms & conditions\"})})})}),className:\"framer-199olme\",\"data-framer-name\":\"Website Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F2SwhQIKJ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"us82xYBA9\"},motionChild:true,nodeId:\"Wfu63yotY\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Schedule of charges\"})})})}),className:\"framer-1142lo9\",\"data-framer-name\":\"Website Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Wfu63yotY\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2f081e\",layoutDependency:layoutDependency,layoutId:\"ePMMofhBf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18muqoc\",layoutDependency:layoutDependency,layoutId:\"BKKviYxkd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3qudfu\",\"data-styles-preset\":\"Pvy7n4U9n\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aNVS8feJG\"},motionChild:true,nodeId:\"FWmL8SRxT\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"Resources\"})})})}),className:\"framer-1af81df\",\"data-framer-name\":\"Personal\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FWmL8SRxT\",style:{\"--extracted-r6o4lv\":\"var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vc8gf3\",\"data-framer-name\":\"Frame 38\",layoutDependency:layoutDependency,layoutId:\"wrjUtRdyk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aNVS8feJG\"},motionChild:true,nodeId:\"J5VgoT_0z\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Our Blogs\"})})})}),className:\"framer-1wmwuxh\",\"data-framer-name\":\"Website Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J5VgoT_0z\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bONVxEBby\"},motionChild:true,nodeId:\"GmeGstZO5\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Success stories\"})})})}),className:\"framer-r4ue13\",\"data-framer-name\":\"Website Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GmeGstZO5\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Sni8cShW1\"},motionChild:true,nodeId:\"FpemTciH3\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"About Hubpay Team\"})})})}),className:\"framer-1rm2of0\",\"data-framer-name\":\"Website Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FpemTciH3\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RhNKsNP9n\"},motionChild:true,nodeId:\"AiLpCUM2Y\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Privacy policy\"})})})}),className:\"framer-1l2t6jq\",\"data-framer-name\":\"Website Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AiLpCUM2Y\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lqzrwcVkJ\"},motionChild:true,nodeId:\"IEo7eKKMS\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Report suspicious activity\"})})})}),className:\"framer-bxb2ax\",\"data-framer-name\":\"Website Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IEo7eKKMS\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kj11qb\",\"data-framer-name\":\"Frame 41\",layoutDependency:layoutDependency,layoutId:\"foA29wuxK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3qudfu\",\"data-styles-preset\":\"Pvy7n4U9n\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Sni8cShW1\"},motionChild:true,nodeId:\"Tb9v6fwMB\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"Company\"})})})}),className:\"framer-1go9aj3\",\"data-framer-name\":\"Company\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Tb9v6fwMB\",style:{\"--extracted-r6o4lv\":\"var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rmvgs9\",\"data-framer-name\":\"Frame 38\",layoutDependency:layoutDependency,layoutId:\"Tw_FagYhT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Sni8cShW1\"},motionChild:true,nodeId:\"rlhcHLt3T\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"About us\"})})})}),className:\"framer-dwtlc\",\"data-framer-name\":\"Our Mission & Values\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rlhcHLt3T\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":zXeXtqvsr\",webPageId:\"Sni8cShW1\"},motionChild:true,nodeId:\"aIBUWF2nz\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Careers\"})})})}),className:\"framer-8bcyz0\",\"data-framer-name\":\"Website Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aIBUWF2nz\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),KbcLk4YAK&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ezm6cq\",\"data-framer-name\":\"Frame 513868\",layoutDependency:layoutDependency,layoutId:\"RCllxhOyT\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150.5,intrinsicWidth:150.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+0+1707+0),pixelHeight:301,pixelWidth:301,src:\"https://framerusercontent.com/images/LldSf6Q8Ljg2MxJOp7IsLgy84.png\"},className:\"framer-12u3xiy\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CqqnFA9wf\",...addPropertyOverrides({kd86rALLE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150.5,intrinsicWidth:150.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+60+0+0+2293+0+72),pixelHeight:301,pixelWidth:301,src:\"https://framerusercontent.com/images/LldSf6Q8Ljg2MxJOp7IsLgy84.png\"}},PPboF3guW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150.5,intrinsicWidth:150.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+60+0+0+2240+0),pixelHeight:301,pixelWidth:301,src:\"https://framerusercontent.com/images/LldSf6Q8Ljg2MxJOp7IsLgy84.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l6tjx1\",layoutDependency:layoutDependency,layoutId:\"gvnQi6ICX\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/hubpay/\",motionChild:true,nodeId:\"K5Z1nj9dg\",scopeId:\"N6bEE45Af\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17d3bf8 framer-1cwgmt4\",layoutDependency:layoutDependency,layoutId:\"K5Z1nj9dg\",style:{opacity:.5},whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1veanlc\",\"data-framer-name\":\"uil:linkedin\",description:\"Follow Hubpay on LinkedIn\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"LrPhGs1Ig\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2937 2.66669H4.70707C4.45317 2.66316 4.20107 2.70969 3.96516 2.8036C3.72924 2.89752 3.51414 3.03698 3.33213 3.21404C3.15013 3.39109 3.00478 3.60227 2.90439 3.8355C2.80401 4.06874 2.75055 4.31946 2.74707 4.57336V27.4267C2.75055 27.6806 2.80401 27.9313 2.90439 28.1645C3.00478 28.3978 3.15013 28.6089 3.33213 28.786C3.51414 28.9631 3.72924 29.1025 3.96516 29.1964C4.20107 29.2904 4.45317 29.3369 4.70707 29.3334H27.2937C27.5476 29.3369 27.7997 29.2904 28.0357 29.1964C28.2716 29.1025 28.4867 28.9631 28.6687 28.786C28.8507 28.6089 28.996 28.3978 29.0964 28.1645C29.1968 27.9313 29.2503 27.6806 29.2537 27.4267V4.57336C29.2503 4.31946 29.1968 4.06874 29.0964 3.8355C28.996 3.60227 28.8507 3.39109 28.6687 3.21404C28.4867 3.03698 28.2716 2.89752 28.0357 2.8036C27.7997 2.70969 27.5476 2.66316 27.2937 2.66669ZM10.7871 24.9867H6.78707V12.9867H10.7871V24.9867ZM8.78707 11.3067C8.23542 11.3067 7.70636 11.0875 7.31629 10.6975C6.92621 10.3074 6.70707 9.77834 6.70707 9.22669C6.70707 8.67504 6.92621 8.14598 7.31629 7.75591C7.70636 7.36583 8.23542 7.14669 8.78707 7.14669C9.08 7.11347 9.37664 7.1425 9.65757 7.23187C9.9385 7.32124 10.1974 7.46894 10.4173 7.66531C10.6372 7.86167 10.8131 8.10226 10.9336 8.37133C11.054 8.6404 11.1163 8.93188 11.1163 9.22669C11.1163 9.52149 11.054 9.81298 10.9336 10.082C10.8131 10.3511 10.6372 10.5917 10.4173 10.7881C10.1974 10.9844 9.9385 11.1321 9.65757 11.2215C9.37664 11.3109 9.08 11.3399 8.78707 11.3067ZM25.2137 24.9867H21.2137V18.5467C21.2137 16.9334 20.6404 15.88 19.1871 15.88C18.7373 15.8833 18.2993 16.0244 17.9322 16.2843C17.565 16.5441 17.2864 16.9103 17.1337 17.3334C17.0294 17.6467 16.9842 17.9768 17.0004 18.3067V24.9734H13.0004V12.9734H17.0004V14.6667C17.3638 14.0362 17.8923 13.5167 18.529 13.1643C19.1657 12.8119 19.8865 12.6398 20.6137 12.6667C23.2804 12.6667 25.2137 14.3867 25.2137 18.08V24.9867Z\" fill=\"#DED7FD\"/>\\n</svg>\\n',title:\"Hubpay on LinkedIn\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/hubpayapp\",motionChild:true,nodeId:\"Eeny6EN8c\",scopeId:\"N6bEE45Af\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-eorysw framer-1cwgmt4\",layoutDependency:layoutDependency,layoutId:\"Eeny6EN8c\",style:{opacity:.5},whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ydm5nd\",\"data-framer-name\":\"ic:baseline-facebook\",description:\"Follow Hubpay on Facebook\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"m3vkiJtIA\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 29.334 16 C 29.334 8.64 23.36 2.667 16 2.667 C 8.64 2.667 2.667 8.64 2.667 16 C 2.667 22.453 7.254 27.827 13.334 29.067 L 13.334 20 L 10.667 20 L 10.667 16 L 13.334 16 L 13.334 12.667 C 13.334 10.093 15.427 8 18 8 L 21.334 8 L 21.334 12 L 18.667 12 C 17.934 12 17.334 12.6 17.334 13.333 L 17.334 16 L 21.334 16 L 21.334 20 L 17.334 20 L 17.334 29.267 C 24.067 28.6 29.334 22.92 29.334 16 Z\" fill=\"rgb(222,215,253)\"></path></svg>',svgContentId:11660852323,title:\"Hubpay on Facebook\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/hubpayapp/?hl=en\",motionChild:true,nodeId:\"iN6KUR3kG\",openInNewTab:true,scopeId:\"N6bEE45Af\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zze44p framer-1cwgmt4\",layoutDependency:layoutDependency,layoutId:\"iN6KUR3kG\",style:{opacity:.5},whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1t3a209\",\"data-framer-name\":\"graphic\",description:\"Follow Hubpay on Instagram\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"Jkd3W4Xw_\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16 12.693a3.306 3.306 0 1 0 0 6.613 3.306 3.306 0 0 0 0-6.613Zm13.24-3.266a8.706 8.706 0 0 0-.56-3.014 5.333 5.333 0 0 0-3.093-3.093 8.707 8.707 0 0 0-3.013-.56c-1.72-.093-2.227-.093-6.574-.093-4.346 0-4.853 0-6.573.093a8.707 8.707 0 0 0-3.013.56A5.333 5.333 0 0 0 3.32 6.413a8.706 8.706 0 0 0-.56 3.014c-.093 1.72-.093 2.226-.093 6.573s0 4.853.093 6.573a9.147 9.147 0 0 0 .56 3.027c.267.702.68 1.338 1.214 1.867.53.536 1.172.95 1.88 1.213a8.71 8.71 0 0 0 3.013.56c1.72.093 2.227.093 6.573.093 4.347 0 4.854 0 6.574-.093a8.71 8.71 0 0 0 3.013-.56 5.187 5.187 0 0 0 1.88-1.213A5.253 5.253 0 0 0 28.68 25.6a8.799 8.799 0 0 0 .56-3.027c.094-1.72.094-2.226.094-6.573s0-4.853-.094-6.573Zm-3.386 10.666a7.64 7.64 0 0 1-.52 2.4 5.148 5.148 0 0 1-2.84 2.84 7.64 7.64 0 0 1-2.414.467h-8.16a7.64 7.64 0 0 1-2.413-.467 4.68 4.68 0 0 1-1.747-1.146 4.68 4.68 0 0 1-1.093-1.694 7.32 7.32 0 0 1-.453-2.413v-8.16a7.32 7.32 0 0 1 .453-2.413A4.68 4.68 0 0 1 7.814 7.76a4.787 4.787 0 0 1 1.693-1.093A7.64 7.64 0 0 1 11.92 6.2h8.16a7.64 7.64 0 0 1 2.414.467 4.679 4.679 0 0 1 1.746 1.146 4.681 4.681 0 0 1 1.094 1.694c.284.774.442 1.589.466 2.413V16c0 2.747.094 3.027.054 4.08v.013Zm-2.134-9.92a3.172 3.172 0 0 0-1.88-1.88A5.333 5.333 0 0 0 20 8h-8a5.333 5.333 0 0 0-1.84.347 3.173 3.173 0 0 0-1.88 1.813A5.693 5.693 0 0 0 8 12v8c.014.628.13 1.25.347 1.84a3.173 3.173 0 0 0 1.88 1.88c.569.21 1.168.326 1.773.347h8a5.333 5.333 0 0 0 1.84-.347 3.174 3.174 0 0 0 1.88-1.88c.224-.588.34-1.211.347-1.84v-8a5.04 5.04 0 0 0-.347-1.84v.013ZM16 21.093A5.079 5.079 0 0 1 10.92 16 5.094 5.094 0 1 1 16 21.093Zm5.334-9.186a1.2 1.2 0 0 1 0-2.387 1.2 1.2 0 0 1 0 2.387Z\" fill=\"#DED7FD\"/></svg>',title:\"Hubpay on Instagram\",withExternalLayout:true})})})]})]}),KbcLk4YAK&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-85dbn8\",layoutDependency:layoutDependency,layoutId:\"ZgcgGzFff\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f15ima\",layoutDependency:layoutDependency,layoutId:\"St4qgwBVO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f8fb61b1-340b-465b-84a9-096dad31a7b9, rgb(237, 234, 253)))\"},children:\"Download Hubpay App to send money across the globe.\"})}),className:\"framer-1umq8nj\",\"data-framer-name\":\"Making cross-border payments better across the planet\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sWreUdKLf\",style:{\"--extracted-r6o4lv\":\"var(--token-f8fb61b1-340b-465b-84a9-096dad31a7b9, rgb(237, 234, 253))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kd86rALLE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f8fb61b1-340b-465b-84a9-096dad31a7b9, rgb(237, 234, 253)))\"},children:\"Download Hubpay App to send money across the globe.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+100+0+0+1707+0+0+0+130,...addPropertyOverrides({kd86rALLE:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1080px)`,y:(componentViewport?.y||0)+0+0+60+0+0+2293+0+0+0+130},PPboF3guW:{y:(componentViewport?.y||0)+0+0+60+0+0+2240+0+0+0+130}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7kagoz-container\",layoutDependency:layoutDependency,layoutId:\"nUmKRJfrx-container\",nodeId:\"nUmKRJfrx\",rendersWithMotion:true,scopeId:\"N6bEE45Af\",children:/*#__PURE__*/_jsx(AppStoreImages,{height:\"100%\",id:\"nUmKRJfrx\",KuulzLZ5Q:\"center\",layoutId:\"nUmKRJfrx\",variant:\"PO0TaDUCy\",width:\"100%\",...addPropertyOverrides({kd86rALLE:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1thpfvw\",layoutDependency:layoutDependency,layoutId:\"mDZ8LfN39\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149)))\"},children:\"Subscribe to our FX newsletter. No spam, guaranteed.\"})}),className:\"framer-10th90s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x0cFzY032\",style:{\"--extracted-r6o4lv\":\"var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kd86rALLE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149)))\"},children:\"Subscribe to our FX newsletter. No spam, guaranteed.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-n7agzw-container\",id:`${layoutId}-n7agzw`,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"B57FXH0cc-container\",nodeId:\"B57FXH0cc\",ref:ref1,rendersWithMotion:true,scopeId:\"N6bEE45Af\",children:[/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Neue Haas Grotesk Display Pro 65 Medium\", \"Neue Haas Grotesk Display Pro 65 Medium Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0px\",lineHeight:\"1em\",textAlign:\"center\"},buttonPadding:20,buttonPaddingBottom:16,buttonPaddingLeft:32,buttonPaddingPerSide:true,buttonPaddingRight:32,buttonPaddingTop:16,color:\"var(--token-1457cbc6-20e7-4fe4-a8c5-54515527a651, rgb(255, 255, 255))\",fill:\"var(--token-89549ec7-2e42-4fc7-b3b7-de8eea80ab06, rgba(131, 69, 233, 0.6))\",insetWhenDocked:8,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:110},convertkitAPI:\"gFD1cGKvrIbi9XhYQRA-mg\",convertkitFormID:\"7070415\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0px\",lineHeight:\"1em\",textAlign:\"left\"},formsparkID:\"\",gap:12,getwaitlistAPI:\"3QWJ9E\",height:\"100%\",id:\"B57FXH0cc\",input:{borderObject:{borderColor:\"rgba(145, 67, 67, 0.05)\",borderWidth:0},borderRadius:32,color:\"var(--token-1457cbc6-20e7-4fe4-a8c5-54515527a651, rgb(255, 255, 255))\",fill:\"var(--token-9e370a80-8c80-4496-a295-ae828e77d7f2, rgba(255, 255, 255, 0.2))\",fixedHeight:50,focusObject:{focusColor:\"rgba(255, 255, 255, 0.05)\",focusWidthFrom:0,focusWidthTo:1},height:true,padding:16,paddingBottom:20,paddingLeft:24,paddingPerSide:true,paddingRight:24,paddingTop:20,placeholder:\"Add your email\",placeholderColor:\"var(--token-7796ff41-b686-4cbf-b37c-8a21f67f6346, rgba(255, 255, 255, 0.4))\"},layout:\"horizontal\",layoutId:\"B57FXH0cc\",loopsID:\"\",loopsUserGroup:\"\",mailchimpURL:\"https://gmail.us9.list-manage.com/subscribe/post?u=8fe6a62f39b9b6b140554b275&amp;id=80a2dba5fa&amp;f_id=00bc34e1f0\",onSubmit:onSubmit18icc0k({overlay}),redirectAs:\"overlay\",service:\"convertkit\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({kd86rALLE:{layout:\"vertical\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-n7agzw`,offsetX:-18.500019220096874,offsetY:-330.45318127949577,onDismiss:overlay.hide,placement:\"bottom\",safeArea:false,zIndex:11,...addPropertyOverrides({kd86rALLE:{offsetX:0,offsetY:40,placement:\"top\"},PPboF3guW:{offsetX:121.00004369630187,offsetY:-331.69537780130486}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-iq5l9r\",exit:animation1,initial:animation3,layoutDependency:layoutDependency,layoutId:\"g34KPz0m8\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 10px 30px 0px rgba(0, 0, 0, 0.35)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ly8pwi\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:204,intrinsicWidth:204,layoutDependency:layoutDependency,layoutId:\"kYNC6yzYo\",svg:'<svg width=\"204\" height=\"204\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m180.916 77.45 6.959 81.085c.566 6.598-3.471 12.382-8.973 12.854L25.044 184.593c-5.5.472-10.465-4.54-11.032-11.138L7.053 92.37a13.815 13.815 0 0 1 .35-4.541c1.105-4.526 4.438-7.954 8.623-8.313l153.858-13.204c4.176-.358 8.053 2.45 9.913 6.712a13.878 13.878 0 0 1 1.119 4.426Z\" fill=\"#702DD4\"/><path opacity=\".1\" d=\"m180.916 77.45 6.959 81.085c.566 6.598-3.471 12.382-8.973 12.854L25.044 184.593c-5.5.472-10.465-4.54-11.032-11.138L7.053 92.37a13.815 13.815 0 0 1 .35-4.541c1.105-4.526 4.438-7.954 8.623-8.313l153.858-13.204c4.176-.358 8.053 2.45 9.913 6.712a13.878 13.878 0 0 1 1.119 4.426Z\" fill=\"#000\"/><path d=\"m187.805 62.95 10.058 83.157c.818 6.767-3.128 12.861-8.77 13.543L31.304 178.736c-5.642.682-10.927-4.295-11.746-11.062L9.5 84.518a14.245 14.245 0 0 1 .197-4.684c.976-4.695 4.282-8.34 8.573-8.859L176.06 51.89c4.283-.518 8.371 2.233 10.437 6.55a14.261 14.261 0 0 1 1.309 4.51Z\" fill=\"#8B52E0\"/><path opacity=\".1\" d=\"m186.496 58.438-71.571 48.193c-7.265 4.892-16.019 5.951-24.24 2.933L9.696 79.834c.976-4.695 4.282-8.34 8.573-8.859L176.06 51.89c4.283-.52 8.372 2.231 10.437 6.548Z\" fill=\"#000\"/><path d=\"m159.798 76.413-20.565 13.842-6.723 4.534-17.587 11.837c-7.074 4.775-15.583 5.903-23.609 3.143-.208-.055-.416-.132-.624-.208l-9.866-3.625-22.197-8.147-10.381-3.811-11.761-4.314-.843-20.795-1.873-46.201L124.1 19l34.429 26.095.361 8.87.908 22.448Z\" fill=\"#702DD4\"/><path opacity=\".5\" d=\"m159.798 76.413-20.565 13.842-6.723 4.534-17.587 11.837c-7.074 4.775-15.583 5.903-23.609 3.143-.208-.055-.416-.132-.624-.208l-9.866-3.625-22.197-8.147-10.381-3.811-11.761-4.314-.843-20.795-1.873-46.201L124.1 19l34.429 26.095.361 8.87.908 22.448Z\" fill=\"#FAFAFA\"/><path d=\"m147.062 54.284-99.997 4.06a2.136 2.136 0 0 1-2.214-2.04 2.136 2.136 0 0 1 2.04-2.215l99.998-4.06a2.136 2.136 0 0 1 2.214 2.041 2.136 2.136 0 0 1-2.041 2.214Zm.539 13.284-99.997 4.06a2.136 2.136 0 0 1-2.214-2.04 2.136 2.136 0 0 1 2.04-2.215l99.998-4.06a2.135 2.135 0 0 1 2.214 2.041 2.135 2.135 0 0 1-2.041 2.214Zm.54 13.284-99.997 4.061a2.136 2.136 0 0 1-2.214-2.041 2.136 2.136 0 0 1 2.041-2.214l99.997-4.06a2.135 2.135 0 0 1 2.214 2.041 2.135 2.135 0 0 1-2.041 2.213Zm-8.909 9.403-6.723 4.534-73.884 3-10.381-3.81a1.07 1.07 0 0 1 .263-.034l90.725-3.69Zm-27.365 16.546v.077a2.143 2.143 0 0 1-2.037 2.146l-18.517.744c-.208-.055-.416-.132-.624-.208l-9.866-3.625 28.833-1.171a2.135 2.135 0 0 1 2.211 2.037Z\" opacity=\".9\" fill=\"#fff\"/><path opacity=\".1\" d=\"m158.529 45.094-23.924-1.033L124.1 19.004l34.429 26.09Z\" fill=\"#263238\"/><path d=\"m158.529 45.094-23.211-3.978L124.1 19.004l34.429 26.09Z\" fill=\"#702DD4\"/><path d=\"m60.14 37.344.144 2.844a.418.418 0 0 1-.119.312.429.429 0 0 1-.293.146.44.44 0 0 1-.32-.115.419.419 0 0 1-.15-.298l-.137-2.715a1.382 1.382 0 0 0-.465-.973 1.299 1.299 0 0 0-.99-.379c-.919.046-1.358.526-1.312 1.436l.14 2.77a.339.339 0 0 1-.033.173v.008l-.007.024c-.015.014-.02.026-.02.033a.654.654 0 0 1-.089.102l-.078.069h-.022l-.019.01a.31.31 0 0 1-.084.027c-.011.009-.033.012-.06.013l-.054.003c-.007-.007-.014-.01-.02-.009-.01 0-.019-.002-.038-.005a.197.197 0 0 0-.037 0 .566.566 0 0 1-.139-.07.35.35 0 0 1-.065-.05c0-.007-.008-.019-.02-.031a.323.323 0 0 1-.095-.179l-.34-6.765a.414.414 0 0 1 .118-.311.428.428 0 0 1 .307-.15.417.417 0 0 1 .306.12.412.412 0 0 1 .15.297l.106 2.106a2.192 2.192 0 0 1 1.351-.519c.61-.03 1.153.158 1.627.561.476.404.727.91.758 1.515Zm5.002-2.004.23 4.564a.418.418 0 0 1-.119.314.428.428 0 0 1-.303.152.416.416 0 0 1-.297-.115.442.442 0 0 1-.163-.283 2.125 2.125 0 0 1-1.345.554 2.216 2.216 0 0 1-1.628-.58c-.476-.413-.73-.925-.76-1.536l-.144-2.841a.429.429 0 0 1 .12-.315.418.418 0 0 1 .295-.15.43.43 0 0 1 .317.12.426.426 0 0 1 .154.3l.137 2.71c.019.383.174.709.463.983.293.273.623.399.989.38.922-.046 1.359-.528 1.312-1.446l-.14-2.767a.423.423 0 0 1 .12-.314.418.418 0 0 1 .297-.15.436.436 0 0 1 .317.12.421.421 0 0 1 .15.3h-.002Zm5.375.088a2.56 2.56 0 0 0-1.944-.705 2.521 2.521 0 0 0-1.755.796l-.119-2.363a.412.412 0 0 0-.15-.297.428.428 0 0 0-.32-.12.417.417 0 0 0-.293.15.412.412 0 0 0-.119.312l.338 6.69a.418.418 0 0 0 .15.298.427.427 0 0 0 .306.116.439.439 0 0 0 .306-.147.418.418 0 0 0 .12-.311l-.012-.224c.525.442 1.13.65 1.826.614a2.554 2.554 0 0 0 1.863-.904c.496-.565.726-1.23.687-2-.038-.77-.334-1.4-.884-1.905Zm-.463 3.29c-.33.375-.747.573-1.25.598a1.697 1.697 0 0 1-1.296-.469 1.824 1.824 0 0 1-.587-1.288 1.788 1.788 0 0 1 .455-1.33 1.7 1.7 0 0 1 1.242-.6 1.72 1.72 0 0 1 1.304.472c.365.338.56.763.585 1.278a1.82 1.82 0 0 1-.453 1.34Zm6.341-3.588a2.57 2.57 0 0 0-1.944-.703 2.531 2.531 0 0 0-1.755.792l-.011-.223a.412.412 0 0 0-.15-.297.418.418 0 0 0-.613.03.413.413 0 0 0-.12.312l.335 6.64a.417.417 0 0 0 .15.298c.096.08.198.12.31.115a.449.449 0 0 0 .304-.146.416.416 0 0 0 .119-.31l-.118-2.345a2.54 2.54 0 0 0 1.825.61 2.585 2.585 0 0 0 1.864-.892 2.657 2.657 0 0 0 .689-1.97 2.71 2.71 0 0 0-.885-1.91Zm-.464 3.275a1.72 1.72 0 0 1-1.25.595 1.709 1.709 0 0 1-1.297-.466 1.79 1.79 0 0 1-.585-1.267 1.817 1.817 0 0 1 .454-1.332c.329-.372.742-.57 1.244-.596.502-.026.938.13 1.303.467.364.336.56.761.585 1.28.026.518-.126.95-.454 1.32Zm6.743-4.215a.428.428 0 0 0-.309-.117.445.445 0 0 0-.303.148.426.426 0 0 0-.12.315l.012.226a2.566 2.566 0 0 0-1.826-.621 2.56 2.56 0 0 0-1.863.905 2.727 2.727 0 0 0-.687 2.001c.038.767.337 1.423.885 1.937a2.55 2.55 0 0 0 1.946.719 2.56 2.56 0 0 0 1.754-.801l.011.226a.419.419 0 0 0 .15.3c.096.087.2.127.317.121a.408.408 0 0 0 .296-.151.418.418 0 0 0 .12-.314l-.232-4.593a.427.427 0 0 0-.15-.301Zm-1.069 3.982c-.33.377-.742.58-1.243.605a1.717 1.717 0 0 1-1.304-.476c-.365-.342-.56-.773-.586-1.3a1.808 1.808 0 0 1 .453-1.341c.33-.377.746-.576 1.25-.601.503-.025.931.131 1.297.473.362.342.56.773.586 1.288.026.514-.126.976-.453 1.352Zm6.98-3.748L86.56 40.16a1.833 1.833 0 0 1-1.96 1.209l-.504-.07a.476.476 0 0 1-.406-.444.37.37 0 0 1 .007-.094.466.466 0 0 1 .524-.403l.502.07a.86.86 0 0 0 .667-.187.922.922 0 0 0 .286-.401l.133-.388-2.391-4.756a.49.49 0 0 1-.05-.192.468.468 0 0 1 .889-.234l1.992 3.953 1.451-4.12a.466.466 0 0 1 .603-.282.464.464 0 0 1 .281.602Zm-36.24.302-.016-.309a.973.973 0 0 0-.92-.928.565.565 0 0 0-.188.023l-5.209 1.484-.034.001c-.006 0-.015.005-.023.005a.057.057 0 0 0-.022.004.079.079 0 0 0-.028.005c-.005 0-.012.004-.02.004-.01 0-.016.005-.024.005-.006.005-.016.005-.022.007-.008 0-.014.004-.023.007a.064.064 0 0 0-.022.008c-.008 0-.014.003-.023.007-.006.003-.016.003-.022.007l-.02.01a.045.045 0 0 0-.02.007l-.025.01-.017.01-.024.01c-.005.004-.012.006-.018.01l-.02.014-.017.01-.02.013c-.007.004-.013.01-.018.014a.255.255 0 0 0-.021.013l-.016.013c-.007.006-.013.01-.018.017l-.017.014-.017.015c-.006.007-.012.01-.016.014a.129.129 0 0 0-.02.02.054.054 0 0 1-.014.013l-.016.018s-.01.01-.013.017l-.03.036a.088.088 0 0 1-.016.02c-.003.003-.009.008-.011.015a.047.047 0 0 0-.015.023c-.005.004-.008.01-.014.016-.003.006-.009.013-.012.022a.066.066 0 0 0-.011.017c-.006.006-.008.016-.014.022-.004.006-.005.012-.009.02-.005.005-.007.015-.01.02a.068.068 0 0 0-.012.02c-.003.005-.005.016-.007.022-.004.006-.009.015-.008.021-.006.007-.009.017-.011.023-.004.005-.005.012-.009.018l-.008.026c-.002.006-.001.016-.005.022-.002.005-.004.016-.008.025l-.004.018c-.003.01-.002.018-.005.026a.054.054 0 0 0-.004.021c-.003.01-.003.019-.004.03-.004.005-.004.01-.005.017l-.002.028a.028.028 0 0 0-.002.018l-.004.031v.018a.112.112 0 0 0 0 .03c0 .007 0 .013-.004.02l.226 4.474a.969.969 0 0 0 1.003.93l5.997-.303a.97.97 0 0 0 .905-1.025l-.223-4.421a.973.973 0 0 0-.7-.892h-.001Zm-.978-.685a.058.058 0 0 1 .02-.004.428.428 0 0 1 .405.407l.013.26-3.356.17 2.918-.833Zm1.363 6.03a.421.421 0 0 1-.394.448l-6.033.304c-.006-.003-.013-.003-.018-.003-.01 0-.016-.002-.025-.001-.006-.004-.012-.003-.018-.003a.05.05 0 0 0-.021-.005c-.006-.003-.013-.003-.019-.005l-.019-.008c-.005 0-.011-.003-.017-.005l-.019-.008-.017-.008-.017-.008c-.005-.006-.012-.009-.019-.012a.106.106 0 0 0-.014-.011.057.057 0 0 1-.017-.012c-.004-.003-.01-.009-.017-.012-.004-.006-.01-.008-.013-.016-.005-.001-.008-.007-.016-.014l-.013-.012-.013-.017c-.004-.006-.006-.009-.013-.015l-.01-.019-.01-.014-.01-.022-.01-.016c-.002-.005-.006-.014-.007-.02a.048.048 0 0 1-.006-.016.066.066 0 0 1-.007-.024c-.004-.006-.004-.013-.005-.016-.003-.009-.003-.018-.006-.028l-.001-.016a.145.145 0 0 1-.005-.043l-.224-4.425a.421.421 0 0 1 .395-.447l5.998-.303a.409.409 0 0 1 .307.115.435.435 0 0 1 .13.29l.223 4.427Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M48.923 39.465a.263.263 0 0 1-.175.082.245.245 0 0 1-.182-.067l-1.34-1.238a.258.258 0 0 1-.02-.364L48.4 36.53a.25.25 0 0 1 .355-.018.26.26 0 0 1 .019.363l-1.026 1.157 1.158 1.068c.102.094.11.257.018.364Zm2.377-1.611a.267.267 0 0 1-.065.185l-1.21 1.367a.245.245 0 0 1-.174.086.254.254 0 0 1-.183-.067.259.259 0 0 1-.018-.36l1.045-1.18-1.138-1.048a.262.262 0 0 1-.018-.363.246.246 0 0 1 .356-.017l1.323 1.22c.049.046.08.111.083.179v-.002Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-wabchh\",\"data-styles-preset\":\"RXIiJPSqI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-47ca7807-66ee-40ca-b0bd-433af60adfd4, rgb(24, 9, 51)))\"},children:\"Successfully subscribed!\"})}),className:\"framer-mxr7y0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jndFLnKcZ\",style:{\"--extracted-tcooor\":\"var(--token-47ca7807-66ee-40ca-b0bd-433af60adfd4, rgb(24, 9, 51))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-47ca7807-66ee-40ca-b0bd-433af60adfd4, rgb(24, 9, 51)))\"},children:\"Thanks for subscribing to our FX report. You will receive a confirmation mail shortly\"})}),className:\"framer-1i1n9j4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Xg5xYITOq\",style:{\"--extracted-r6o4lv\":\"var(--token-47ca7807-66ee-40ca-b0bd-433af60adfd4, rgb(24, 9, 51))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d93ror\",layoutDependency:layoutDependency,layoutId:\"cSmy9jUFM\",style:{backgroundColor:\"var(--token-1457cbc6-20e7-4fe4-a8c5-54515527a651, rgb(255, 255, 255))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,rotate:-45},...addPropertyOverrides({kd86rALLE:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})]})})})]})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6pplgw\",layoutDependency:layoutDependency,layoutId:\"tUNQpOnVd\",style:{backgroundColor:\"var(--token-9e370a80-8c80-4496-a295-ae828e77d7f2, rgba(255, 255, 255, 0.2))\"}}),KbcLk4YAK&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5qdmd6\",layoutDependency:layoutDependency,layoutId:\"DnyLBBMkg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ch8ytt\",layoutDependency:layoutDependency,layoutId:\"nj4afpjFj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r2b8ux\",layoutDependency:layoutDependency,layoutId:\"LQYsc0tPk\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.adgm.com/public-registers/fsra/fsf/hubpay-limited\",motionChild:true,nodeId:\"ofB0N0v4W\",scopeId:\"N6bEE45Af\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1b1stdl framer-1cwgmt4\",layoutDependency:layoutDependency,layoutId:\"ofB0N0v4W\",style:{opacity:.7},whileHover:animation4,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jvxu3q\",layoutDependency:layoutDependency,layoutId:\"NGOG2Q7fW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hzkqy1\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:76,layoutDependency:layoutDependency,layoutId:\"rvx_6Pmw4\",svg:'<svg width=\"76\" height=\"80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m19.092 40-9.219 9.221a6.853 6.853 0 0 1-4.89 2.025 6.853 6.853 0 0 1-4.89-2.025L0 49.128 9.126 40 0 30.872l.093-.093c2.695-2.695 7.086-2.695 9.78 0L19.093 40Zm15.2-33.084V80h.14a6.92 6.92 0 0 0 6.914-6.916V0h-.14a6.92 6.92 0 0 0-6.915 6.916ZM12.208 11.09l-.125.047L23.748 40 12.084 68.863l.125.047a6.81 6.81 0 0 0 2.585.498 6.917 6.917 0 0 0 6.416-4.33L31.348 40 21.21 14.907c-1.433-3.536-5.466-5.25-9.001-3.817ZM75.62 30.857l-.093-.094c-2.694-2.694-7.086-2.694-9.78 0l-9.219 9.221 9.219 9.222a6.871 6.871 0 0 0 4.89 2.025c1.775 0 3.535-.67 4.89-2.025l.093-.094-9.125-9.128 9.125-9.127Zm-12.069-19.72-.124-.047c-3.535-1.433-7.569.28-9.001 3.816L44.289 40l10.138 25.093a6.824 6.824 0 0 0 3.706 3.77 6.84 6.84 0 0 0 2.694.56c.903 0 1.76-.17 2.585-.513l.125-.047L51.873 40l11.664-28.863h.015Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1457cbc6-20e7-4fe4-a8c5-54515527a651, rgb(255, 255, 255)))\"},children:\"Hubpay is licensed under\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-1457cbc6-20e7-4fe4-a8c5-54515527a651, rgb(255, 255, 255)))\"},children:\"Abu Dhabi Global Market\"})]}),className:\"framer-t8jemc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ho7kyGHMT\",style:{\"--extracted-2gxw0f\":\"var(--token-1457cbc6-20e7-4fe4-a8c5-54515527a651, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-1457cbc6-20e7-4fe4-a8c5-54515527a651, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149)))\"},children:[\"Hubpay Limited is incorporated (Reg number 000004051) under the laws of the \",/*#__PURE__*/_jsx(Link,{href:\"https://www.adgm.com/public-registers/fsra/fsf/hubpay-limited\",motionChild:true,nodeId:\"I7R_WhBTa\",openInNewTab:true,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1odff9n\",\"data-styles-preset\":\"C_L4awuww\",children:\"Abu Dhabi Global Market (ADGM)\"})}),\". We are licensed and regulated by the Financial Services Regulatory Authority (FSRA) for Providing Money Services under Financial Services Permission number 190024. Address: 15-116, WeWork, Al Khatem Tower, ADGM Square, Al Maryah Island, Abu Dhabi, 46617, AE\"]})}),className:\"framer-16ausxx\",\"data-framer-name\":\"Hubpay Limited is incorporated (registration number 000004051) under the laws of the Abu Dhabi Global Market (ADGM). We are licensed and regulated by the Financial Services Regulatory Authority (FSRA) for Providing Money Services under Financial Services Permission number 190024. Address: 15-116, WeWork, Al Khatem Tower, ADGM Square, Al Maryah Island, Abu Dhabi, 46617, AE\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I7R_WhBTa\",style:{\"--extracted-r6o4lv\":\"var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"bottom\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-44keq6\",layoutDependency:layoutDependency,layoutId:\"I2tBT2i8W\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ofhh9\",layoutDependency:layoutDependency,layoutId:\"iB2pGeRwi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-246158c9-2430-4fe6-9853-f6cc38792dcb, rgb(222, 215, 253)))\"},children:\"Hubpay is headquartered at\"})}),className:\"framer-13mfw0y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wDpS1ENV1\",style:{\"--extracted-r6o4lv\":\"var(--token-246158c9-2430-4fe6-9853-f6cc38792dcb, rgb(222, 215, 253))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149)))\"},children:[\"15-116, WeWork, Al Khatem Tower, ADGM Square, Al Maryah Island, Abu Dhabi, 46617, UAE, +97144592899. \",/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/gDbTkCNP5GBqoDXP7\",motionChild:true,nodeId:\"bdhTLLh6s\",openInNewTab:true,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1odff9n\",\"data-styles-preset\":\"C_L4awuww\",children:\"Find us on Google.\"})})]})}),className:\"framer-43q5xq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bdhTLLh6s\",style:{\"--extracted-r6o4lv\":\"var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l5utq9\",layoutDependency:layoutDependency,layoutId:\"fZe4vcUrp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-246158c9-2430-4fe6-9853-f6cc38792dcb, rgb(222, 215, 253)))\"},children:\"Hubpay is also based in\"})}),className:\"framer-7y2b50\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WVpP0IDuz\",style:{\"--extracted-r6o4lv\":\"var(--token-246158c9-2430-4fe6-9853-f6cc38792dcb, rgb(222, 215, 253))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149)))\"},children:\"London, United Kingdom\"})}),className:\"framer-chw7ay\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"chB7UIXLK\",style:{\"--extracted-r6o4lv\":\"var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149)))\"},children:\"Karachi, Pakistan\"})}),className:\"framer-1kbj2x0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZhWybgVte\",style:{\"--extracted-r6o4lv\":\"var(--token-1910bacd-2cdc-4f29-b1d8-41b5b4f3b631, rgb(134, 125, 149))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mn08mu\",\"data-framer-name\":\"HubpayBrand\",layoutDependency:layoutDependency,layoutId:\"SCrFcWwT0\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-th9368\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:60,intrinsicWidth:62,layoutDependency:layoutDependency,layoutId:\"HBg1fC1EP\",svg:'<svg width=\"62\" height=\"60\" viewBox=\"0 0 62 60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M56.8565 10.1104V7.7196C56.8565 3.80878 53.886 0.503027 50.0969 0.178355C49.6042 0.134082 49.1115 0.163597 48.6406 0.281659L7.77158 9.72666H7.50351C7.46004 9.72666 7.38759 9.75618 7.32239 9.75618C7.27892 9.75618 7.19922 9.75618 7.15575 9.77832C7.09055 9.77832 7.0181 9.77832 6.9384 9.80783C6.89493 9.80783 6.84422 9.82997 6.77177 9.82997C6.70656 9.82997 6.65585 9.85948 6.59064 9.85948C6.53993 9.889 6.46748 9.889 6.41676 9.90376C6.3588 9.90376 6.30809 9.9259 6.23564 9.94803C6.19217 9.94803 6.11247 9.97755 6.069 9.99969C6.0038 9.99969 5.95308 10.0218 5.88063 10.044C5.83716 10.0661 5.75747 10.0661 5.714 10.0882C5.67053 10.1104 5.59808 10.1325 5.55461 10.162C5.48216 10.162 5.43144 10.1842 5.38797 10.2063C5.32277 10.2284 5.27205 10.2506 5.1996 10.2727C5.15613 10.2948 5.10542 10.317 5.06195 10.3391C4.99674 10.3686 4.94603 10.3834 4.87358 10.4129C4.83011 10.4424 4.77939 10.4572 4.72868 10.4867C4.68521 10.5088 4.61276 10.5605 4.56929 10.5826C4.52582 10.6121 4.4751 10.6269 4.43163 10.649C4.38816 10.6933 4.30847 10.7228 4.27224 10.745C4.22153 10.7745 4.17081 10.8187 4.12734 10.8483C4.08387 10.8704 4.00418 10.9147 3.96071 10.9442C3.91724 10.9737 3.87377 11.0106 3.8303 11.0327C3.77958 11.077 3.72887 11.1065 3.6854 11.1582C3.64193 11.1877 3.59846 11.232 3.55499 11.2615C3.50427 11.3058 3.45356 11.3279 3.41009 11.3722C3.36662 11.4238 3.3159 11.446 3.28692 11.4755C3.22172 11.5197 3.171 11.5714 3.12753 11.6157C3.09855 11.6452 3.05508 11.6895 3.00437 11.7116L2.87396 11.8518C2.87396 11.8518 2.80151 11.9256 2.77253 11.9772L2.51895 12.2429C2.48997 12.2871 2.4465 12.3388 2.39579 12.3831C2.36681 12.4126 2.32334 12.4495 2.3016 12.5011C2.25089 12.5454 2.20017 12.5971 2.17844 12.6708C2.13497 12.7004 2.11323 12.7446 2.06252 12.7889C2.03354 12.8332 1.99007 12.8848 1.96109 12.9586C1.91762 13.0029 1.89588 13.0324 1.8669 13.0841C1.82343 13.1283 1.8017 13.2021 1.75098 13.2464C1.722 13.2907 1.70751 13.3423 1.67853 13.394C1.63506 13.4383 1.61333 13.512 1.58435 13.5563C1.54088 13.6006 1.5119 13.6522 1.49016 13.6965C1.46118 13.7408 1.44669 13.822 1.42496 13.8662C1.39598 13.9105 1.35251 13.9843 1.35251 14.0286C1.30904 14.0802 1.28006 14.154 1.25832 14.1983C1.22934 14.2426 1.21485 14.2942 1.18587 14.3385C1.15689 14.4123 1.1424 14.4787 1.11342 14.5377C1.09893 14.582 1.09893 14.6558 1.06995 14.7C1.04822 14.7443 1.02648 14.8255 0.997504 14.8919C0.975769 14.9362 0.975769 14.9878 0.954034 15.0321C0.932299 15.1059 0.9323 15.1723 0.910565 15.2313C0.881585 15.2977 0.867094 15.3494 0.867094 15.3937C0.838114 15.4601 0.838114 15.5339 0.823624 15.615C0.794644 15.6593 0.794644 15.7036 0.780154 15.7479C0.780154 15.8216 0.758419 15.8954 0.758419 15.9692C0.729439 16.0135 0.72944 16.0578 0.72944 16.102C0.707705 16.2053 0.707704 16.2718 0.685969 16.3455V16.4857C0.664234 16.5522 0.664235 16.6555 0.664235 16.7219C0.664235 16.7661 0.664234 16.8178 0.635254 16.8621V51.5651C0.635254 55.7342 3.95346 59.1432 8.0324 59.1432H54.5308C58.6025 59.1432 61.928 55.7342 61.928 51.5651V17.2827C61.928 13.9474 59.8052 11.0918 56.8637 10.1104H56.8565ZM49.5607 4.43599C49.6477 4.40647 49.6911 4.40647 49.7201 4.40647C51.3865 4.54667 52.6906 6.0077 52.6906 7.7196V9.73404H26.6665L49.5607 4.43599ZM57.7476 51.602C57.7476 53.4319 56.3131 54.9151 54.5308 54.9151H7.7426C7.69913 54.8856 7.64841 54.8856 7.60494 54.8856C7.53249 54.8856 7.48178 54.8635 7.41657 54.8635C7.3731 54.8339 7.32239 54.8339 7.27892 54.8339C7.2282 54.8118 7.17749 54.7897 7.11228 54.7897C7.06881 54.7602 7.0181 54.7602 6.97463 54.7454C6.93116 54.7159 6.88044 54.7011 6.82973 54.6716C6.78626 54.6716 6.74279 54.6421 6.69932 54.6273C6.65585 54.6052 6.60513 54.5831 6.55442 54.5609C6.51095 54.5388 6.46023 54.5166 6.42401 54.4871C6.38054 54.465 6.35156 54.4429 6.30084 54.4207C6.25737 54.3691 6.20666 54.3469 6.15594 54.3174C6.13421 54.2953 6.09074 54.2584 6.04727 54.2289C5.99655 54.1994 5.97482 54.1846 5.9241 54.1329C5.89512 54.1034 5.85165 54.0592 5.80094 54.0296C5.77196 53.9854 5.72849 53.9632 5.70675 53.9042C5.66328 53.8894 5.64155 53.8452 5.58359 53.7861C5.56185 53.764 5.51838 53.7197 5.4894 53.6902C5.46042 53.6459 5.41695 53.5943 5.39522 53.55C5.36624 53.5057 5.35175 53.4836 5.30103 53.4319C5.2793 53.3877 5.25756 53.3286 5.23583 53.2844C5.20685 53.2401 5.18511 53.2106 5.16338 53.1663C5.1344 53.122 5.11991 53.0704 5.09093 52.9966C5.06919 52.9745 5.04746 52.9228 5.01848 52.8712C5.00399 52.8269 4.97501 52.7531 4.97501 52.7088C4.95327 52.6645 4.93154 52.6129 4.93154 52.5834C4.90256 52.5096 4.88807 52.4506 4.88807 52.3989C4.85909 52.3472 4.85909 52.2956 4.85909 52.2735C4.83735 52.1997 4.83735 52.1259 4.81562 52.0521V51.9267C4.79388 51.8307 4.79388 51.7127 4.79388 51.5946V17.2827C4.79388 15.4601 6.22839 13.9769 8.01791 13.9769H54.5308C55.4509 13.9769 56.2769 14.3606 56.8565 14.9804C57.4216 15.5855 57.7476 16.4046 57.7476 17.2827V51.602Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dk0ffb\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:15,layoutDependency:layoutDependency,layoutId:\"ubz4BywAz\",svg:'<svg width=\"15\" height=\"25\" viewBox=\"0 0 15 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.5433 24.4334C13.1593 24.8024 12.6449 25.0016 12.1595 25.0016C11.6451 25.0016 11.1669 24.8098 10.7757 24.4113L0.88624 14.3096C0.52399 13.9406 0.306641 13.4462 0.306641 12.9002C0.306641 12.3542 0.52399 11.8893 0.88624 11.4908L10.638 1.52929C11.406 0.761884 12.6449 0.761884 13.3984 1.52929C14.1591 2.2967 14.1591 3.55849 13.3984 4.34065L5.00865 12.8928L13.5505 21.6073C14.304 22.3747 14.304 23.6365 13.5505 24.4261L13.5433 24.4334Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ecc20o\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:15,layoutDependency:layoutDependency,layoutId:\"u4gCIXcAG\",svg:'<svg width=\"15\" height=\"25\" viewBox=\"0 0 15 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.561 12.8996C14.561 13.4161 14.3437 13.9326 13.9814 14.309L4.09197 24.4107C3.70074 24.8092 3.22258 25.001 2.70818 25.001C2.23001 25.001 1.72286 24.8092 1.32439 24.4107C0.570907 23.6433 0.570907 22.3815 1.32439 21.6215L9.86624 12.907L1.47653 4.35481C0.723052 3.57265 0.723052 2.31086 1.47653 1.54345C2.2445 0.753908 3.46891 0.753908 4.23688 1.54345L13.9886 11.505C14.3509 11.8739 14.5682 12.3904 14.5682 12.9143L14.561 12.8996Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1faf90e\",layoutDependency:layoutDependency,layoutId:\"OeAn6aPQe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uAjSm2cm_\"},motionChild:true,nodeId:\"WhWoJfe_V\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Terms & conditions\"})})})}),className:\"framer-17tas15\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WhWoJfe_V\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"us82xYBA9\"},motionChild:true,nodeId:\"yfsj4zq2O\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Schedule of charges\"})})})}),className:\"framer-ew9vxx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yfsj4zq2O\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1xhf4\",\"data-styles-preset\":\"nAELO7lSP\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RhNKsNP9n\"},motionChild:true,nodeId:\"mbnJrp8Ng\",openInNewTab:false,relValues:[],scopeId:\"N6bEE45Af\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qht4wo\",\"data-styles-preset\":\"iFDU8Zynn\",children:\"Privacy policy\"})})})}),className:\"framer-nx7rqn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mbnJrp8Ng\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-040tq.framer-1cwgmt4, .framer-040tq .framer-1cwgmt4 { display: block; }\",\".framer-040tq.framer-1b6dz9p { 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: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-040tq .framer-p2pdy8 { 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: 100px 60px 100px 60px; position: relative; width: 100%; }\",\".framer-040tq .framer-1hvb4kj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1080px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-040tq .framer-1eij24u { 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-040tq .framer-39v0me-container { aspect-ratio: 3.53125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 141px; }\",\".framer-040tq .framer-31q5cm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; }\",\".framer-040tq .framer-5joo0x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-040tq .framer-1duwdej { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-040tq .framer-1k7nuow, .framer-040tq .framer-2f081e { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-040tq .framer-1egwlp4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-040tq .framer-4221wh, .framer-040tq .framer-1t5bvst, .framer-040tq .framer-18muqoc, .framer-040tq .framer-kj11qb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-040tq .framer-1riwes0, .framer-040tq .framer-1cbt6w6, .framer-040tq .framer-bexz2k, .framer-040tq .framer-ia5u26, .framer-040tq .framer-abdi9o, .framer-040tq .framer-1bhru6t, .framer-040tq .framer-tx9cnn, .framer-040tq .framer-1s4v49d, .framer-040tq .framer-12w3ys7, .framer-040tq .framer-oilqpy, .framer-040tq .framer-ln1p29, .framer-040tq .framer-1pel1l9, .framer-040tq .framer-qr8d5r, .framer-040tq .framer-1de3ip6, .framer-040tq .framer-15suxv2, .framer-040tq .framer-khq3tn, .framer-040tq .framer-hun6u4, .framer-040tq .framer-4vfaie, .framer-040tq .framer-1hmnue7, .framer-040tq .framer-k5u83t, .framer-040tq .framer-1esykyf, .framer-040tq .framer-199olme, .framer-040tq .framer-1142lo9, .framer-040tq .framer-1af81df, .framer-040tq .framer-1wmwuxh, .framer-040tq .framer-r4ue13, .framer-040tq .framer-1rm2of0, .framer-040tq .framer-1l2t6jq, .framer-040tq .framer-bxb2ax, .framer-040tq .framer-1go9aj3, .framer-040tq .framer-dwtlc, .framer-040tq .framer-8bcyz0, .framer-040tq .framer-1umq8nj, .framer-040tq .framer-10th90s, .framer-040tq .framer-16ausxx, .framer-040tq .framer-43q5xq, .framer-040tq .framer-chw7ay, .framer-040tq .framer-1kbj2x0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-040tq .framer-1lowhj3, .framer-040tq .framer-1pd7jop, .framer-040tq .framer-1vc8gf3, .framer-040tq .framer-1rmvgs9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-040tq .framer-1ezm6cq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-040tq .framer-12u3xiy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-040tq .framer-1l6tjx1 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-040tq .framer-17d3bf8, .framer-040tq .framer-eorysw, .framer-040tq .framer-zze44p { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; text-decoration: none; width: 32px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-040tq .framer-1veanlc, .framer-040tq .framer-1t3a209 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-040tq .framer-1ydm5nd { bottom: 0px; flex: none; height: 32px; position: absolute; right: 0px; width: 32px; }\",\".framer-040tq .framer-85dbn8 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-040tq .framer-1f15ima { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-040tq .framer-7kagoz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-040tq .framer-1thpfvw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 420px; }\",\".framer-040tq .framer-n7agzw-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\".framer-040tq .framer-iq5l9r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: min-content; }\",\".framer-040tq .framer-1ly8pwi { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); position: relative; width: 120px; }\",\".framer-040tq .framer-mxr7y0 { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-040tq .framer-1i1n9j4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-040tq .framer-1d93ror { aspect-ratio: 1 / 1; bottom: -6px; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: absolute; right: 53px; width: 20px; z-index: 1; }\",\".framer-040tq .framer-6pplgw { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-040tq .framer-5qdmd6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-040tq .framer-1ch8ytt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-040tq .framer-r2b8ux { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-040tq .framer-1b1stdl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-040tq .framer-1jvxu3q { flex: none; height: 36px; overflow: hidden; position: relative; width: 36px; }\",\".framer-040tq .framer-1hzkqy1 { bottom: 2px; flex: none; left: 3px; position: absolute; right: 3px; top: 2px; }\",\".framer-040tq .framer-t8jemc, .framer-040tq .framer-13mfw0y, .framer-040tq .framer-7y2b50 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-040tq .framer-44keq6 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-040tq .framer-8ofhh9, .framer-040tq .framer-l5utq9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-040tq .framer-1mn08mu { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 84px); overflow: hidden; position: relative; width: 84px; }\",\".framer-040tq .framer-th9368 { bottom: 17px; flex: none; left: 11px; position: absolute; right: 11px; top: 8px; }\",\".framer-040tq .framer-dk0ffb { bottom: 30px; flex: none; left: 26px; position: absolute; right: 44px; top: 30px; }\",\".framer-040tq .framer-1ecc20o { bottom: 30px; flex: none; left: 44px; position: absolute; right: 26px; top: 30px; }\",\".framer-040tq .framer-1faf90e { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-040tq .framer-17tas15, .framer-040tq .framer-ew9vxx, .framer-040tq .framer-nx7rqn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\".framer-040tq.framer-v-392qew.framer-1b6dz9p { width: 810px; }\",\".framer-040tq.framer-v-392qew .framer-p2pdy8 { padding: 60px 32px 60px 32px; }\",\".framer-040tq.framer-v-392qew .framer-1duwdej, .framer-040tq.framer-v-sp0rkt .framer-1duwdej { flex-direction: column; gap: 40px; }\",\".framer-040tq.framer-v-392qew .framer-1k7nuow, .framer-040tq.framer-v-392qew .framer-2f081e, .framer-040tq.framer-v-392qew .framer-1f15ima, .framer-040tq.framer-v-sp0rkt .framer-1k7nuow, .framer-040tq.framer-v-sp0rkt .framer-2f081e, .framer-040tq.framer-v-sp0rkt .framer-1f15ima { flex: none; width: 100%; }\",\".framer-040tq.framer-v-392qew .framer-85dbn8 { align-content: center; align-items: center; flex-direction: column; gap: 34px; justify-content: flex-start; }\",\".framer-040tq.framer-v-392qew .framer-1thpfvw, .framer-040tq.framer-v-sp0rkt .framer-7kagoz-container, .framer-040tq.framer-v-sp0rkt .framer-1i1n9j4 { width: 100%; }\",\".framer-040tq.framer-v-sp0rkt.framer-1b6dz9p { width: 390px; }\",\".framer-040tq.framer-v-sp0rkt .framer-p2pdy8 { padding: 60px 16px 60px 16px; }\",\".framer-040tq.framer-v-sp0rkt .framer-1ezm6cq { flex-direction: column; gap: 40px; justify-content: flex-start; }\",\".framer-040tq.framer-v-sp0rkt .framer-12u3xiy { order: 1; }\",\".framer-040tq.framer-v-sp0rkt .framer-1l6tjx1 { order: 0; }\",\".framer-040tq.framer-v-sp0rkt .framer-85dbn8 { flex-direction: column; gap: 60px; justify-content: flex-start; }\",\".framer-040tq.framer-v-sp0rkt .framer-1thpfvw { gap: 16px; width: 100%; }\",\".framer-040tq.framer-v-sp0rkt .framer-iq5l9r { width: 358px; }\",\".framer-040tq.framer-v-sp0rkt .framer-mxr7y0 { align-self: unset; width: 100%; }\",\".framer-040tq.framer-v-sp0rkt .framer-1d93ror { left: 50%; right: unset; }\",\".framer-040tq.framer-v-sp0rkt .framer-1faf90e { flex-direction: column; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-040tq[data-border=\"true\"]::after, .framer-040tq [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1571\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PPboF3guW\":{\"layout\":[\"fixed\",\"auto\"]},\"kd86rALLE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KbcLk4YAK\":\"expanded\",\"PMSreCJ4x\":\"submit\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerN6bEE45Af=withCSS(Component,css,\"framer-040tq\");export default FramerN6bEE45Af;FramerN6bEE45Af.displayName=\"Footer New\";FramerN6bEE45Af.defaultProps={height:1571,width:1440};addPropertyControls(FramerN6bEE45Af,{variant:{options:[\"ZazV1Afah\",\"PPboF3guW\",\"kd86rALLE\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},KbcLk4YAK:{defaultValue:true,title:\"Expanded\",type:ControlType.Boolean},PMSreCJ4x:{title:\"Submit\",type:ControlType.EventHandler}});addFonts(FramerN6bEE45Af,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Neue Haas Grotesk Display Pro 65 Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/GOW5fAs7vHkKuMlMQBmQpkLcM.woff2\"}]},...HubpayLogoFonts,...AppStoreImagesFonts,...InputFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerN6bEE45Af\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerVariables\":\"{\\\"KbcLk4YAK\\\":\\\"expanded\\\",\\\"PMSreCJ4x\\\":\\\"submit\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"1571\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PPboF3guW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kd86rALLE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./N6bEE45Af.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "convertkitAPI", "convertkitFormID", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "Input_default", "init_ssg_sandbox_shims", "fontStore", "fonts", "css", "className", "init_ssg_sandbox_shims", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "distribute", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "KuulzLZ5Q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Link", "SVG", "css", "FramerqQa8dl3dF", "withCSS", "qQa8dl3dF_default", "addPropertyControls", "ControlType", "addFonts", "init_ssg_sandbox_shims", "HubpayLogoFonts", "getFonts", "mLF1mHHxe_default", "AppStoreImagesFonts", "qQa8dl3dF_default", "InputFonts", "Input_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "animation1", "animation2", "animation3", "transformTemplate1", "_", "t", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition4", "animation4", "negate", "value", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "expanded", "height", "id", "submit", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "KbcLk4YAK", "PMSreCJ4x", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmit18icc0k", "overlay", "loadMore", "args", "scopingClassNames", "cx", "router", "useRouter", "ref1", "ref2", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "Link", "Image2", "getLoadingLazyAtYPosition", "SVG", "l", "AnimatePresence", "Floating", "css", "FramerN6bEE45Af", "withCSS", "N6bEE45Af_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
