{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/1jAlXHAAwGYVr3FUXobz/qX1RV6VqTfsuUqUKBqhf/BrazeInput_1_1.js", "ssg:https://framerusercontent.com/modules/PKXQFjaP7RAfPhatdgEb/cufOQyjgGEb4syOQXk7Q/ro7OPezbn.js", "ssg:https://framerusercontent.com/modules/OQyDjnDP6ZnK3QKbPXvS/3gbEaaceQo7vb6Qua6V0/z17RGxGno.js", "ssg:https://framerusercontent.com/modules/7CVCJ1cq50exciZCExlG/KeJ1QxnlYBkanj7hF6zV/Cookielink.js", "ssg:https://framerusercontent.com/modules/C2DrutQ2sKF8NVg1qaS7/VY5coZkaIeBYdRn4TpRQ/c5RsxVNwl.js", "ssg:https://framerusercontent.com/modules/Z9QP0NQ1iV48bsdCDIUE/xIjyjEouhr1yUCwB0CVJ/hnYcrociy.js", "ssg:https://framerusercontent.com/modules/zha7CAKNwYq8CHp0bCty/w1wWxsjgAFGhC1Vu0E1z/u14CXMT5j.js", "ssg:https://framerusercontent.com/modules/vHv4HKTgRDwTC7MxeUcR/G6UtUF9tfKfoNWe6sMvX/OxeaMgbEx.js"],
  "sourcesContent": ["// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";const API_URL=\"https://my.hellohelium.com\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function BrazeInput(props){const{backgroundColor,placeholder,fontColor,placeholderColor,pageName,checkboxText}=props;const inputRef=React.useRef(null);const[email,setEmail]=React.useState();const[error,setError]=React.useState();const[message,setMessage]=React.useState();const[loading,setLoading]=React.useState(false);const[checked,setChecked]=React.useState(false);const handleChange=()=>{setChecked(!checked);};React.useLayoutEffect(()=>{if(inputRef.current){inputRef.current.style.setProperty(\"--placeholder-color\",placeholderColor);}},[]);const trackLeads=()=>{try{window.fbq(\"track\",\"Lead\");}catch{}try{window.gtag(\"event\",\"conversion\",{send_to:\"AW-10994937401/wFdVCOzrxOEDELnc5foo\",value:1,currency:\"USD\"});}catch{}};const onSubmit=async event=>{event.preventDefault();if(!email){return;}setError(undefined);setMessage(undefined);setLoading(true);if(!checked){setError(\"You must agree.\");setLoading(false);return;}try{const response=await fetch(`${API_URL}/dashboard/api/email/track`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({email,pageName})});if(response.ok){setMessage(\"Subscribed!\");trackLeads();}else{const{error}=await response.json();setError(error);}}catch(error){setError(\"Failed to add email.\");}setLoading(false);};return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"form\",{onSubmit:onSubmit,children:[/*#__PURE__*/_jsxs(\"div\",{style:{...styles.container,backgroundColor},children:[/*#__PURE__*/_jsx(\"input\",{disabled:loading,ref:inputRef,type:\"email\",onChange:event=>setEmail(event.target.value),style:{...styles.input,backgroundColor,color:fontColor},placeholder:placeholder}),loading?/*#__PURE__*/_jsxs(\"div\",{class:\"lds-ring\",children:[/*#__PURE__*/_jsx(\"div\",{}),/*#__PURE__*/_jsx(\"div\",{}),/*#__PURE__*/_jsx(\"div\",{}),/*#__PURE__*/_jsx(\"div\",{})]}):/*#__PURE__*/_jsx(\"button\",{type:\"submit\",style:{...styles.button,backgroundColor},children:/*#__PURE__*/_jsx(\"svg\",{width:\"22\",height:\"19\",viewBox:\"0 0 22 19\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M12.8411 18.7687L11.2666 17.2146L17.7485 10.7327H0.960938V8.48346H17.7485L11.2666 2.02198L12.8411 0.44751L22.0016 9.60809L12.8411 18.7687Z\",fill:\"#aaa\"})})})]}),/*#__PURE__*/_jsxs(\"label\",{style:styles.label,children:[/*#__PURE__*/_jsx(\"input\",{type:\"checkbox\",checked:checked,onChange:handleChange}),checkboxText]})]}),/*#__PURE__*/_jsxs(\"div\",{style:styles.messageContainer,children:[error&&/*#__PURE__*/_jsx(\"span\",{style:styles.error,children:error}),message&&/*#__PURE__*/_jsx(\"span\",{style:{...styles.message,color:fontColor},children:message})]}),/*#__PURE__*/_jsx(\"style\",{children:`\n                    .lds-ring {\n                        display: inline-block;\n                        position: relative;\n                        margin-top: -6px;\n                        margin-right: 6px;\n                        width: 20px;\n                        height: 20px;\n                    }\n                    .lds-ring div {\n                        box-sizing: border-box;\n                        display: block;\n                        position: absolute;\n                        width: 20px;\n                        height: 20px;\n                        margin: 2px;\n                        border: 2px solid #fff;\n                        border-radius: 50%;\n                        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n                        border-color: #fff transparent transparent transparent;\n                    }\n                    .lds-ring div:nth-child(1) {\n                        animation-delay: -0.45s;\n                    }\n                    .lds-ring div:nth-child(2) {\n                        animation-delay: -0.3s;\n                    }\n                    .lds-ring div:nth-child(3) {\n                        animation-delay: -0.15s;\n                    }\n                    @keyframes lds-ring {\n                        0% {\n                            transform: rotate(0deg);\n                        }\n                        100% {\n                            transform: rotate(360deg);\n                        }\n                    }\n                `})]});}addPropertyControls(BrazeInput,{backgroundColor:{title:\"Background Color\",type:ControlType.Color,defaultValue:\"#222222\"},placeholderColor:{title:\"Palceholder Color\",type:ControlType.Color,defaultValue:\"#646464\"},fontColor:{title:\"Font Color\",type:ControlType.Color,defaultValue:\"white\"},placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Enter Email...\"},pageName:{title:\"Page Name\",type:ControlType.String,defaultValue:\"index\"},checkboxText:{title:\"CheckBox Text\",type:ControlType.String,defaultValue:\"I agree to receive marketing emails from Helium Mobile.\"}});// Styles are written in object syntax\n// https://react.dev/reference/react-dom/components/common#usage\nconst styles={container:{paddingLeft:15,paddingRight:15,display:\"flex\",alignItems:\"center\",flex:1,height:50,borderRadius:16,marginBottom:5},input:{width:\"100%\",border:\"none\",outline:\"none\",fontSize:16,fontFamily:\"Figtree, sans-serif\"},button:{border:\"none\",outline:\"none\",cursor:\"pointer\"},error:{color:\"#EB5757\",fontFamily:\"Figtree, sans-serif\"},messageContainer:{marginLeft:5,marginTop:10},message:{color:\"white\",fontFamily:\"Figtree, sans-serif\"},label:{color:\"#646464\",fontFamily:\"Figtree, sans-serif\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BrazeInput\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BrazeInput_1_1.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-RKse6 .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-RKse6 .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-951c074c-8c00-4da5-b700-3c279ed9950e, #ff7526) /* {\"name\":\"Orange\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: #b3b3b3; --framer-link-text-decoration: none; transition: color 0.2s cubic-bezier(0.44, 0, 0.56, 1) 0s; }'];export const className=\"framer-RKse6\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-ATP4p .framer-styles-preset-douhmp:not(.rich-text-wrapper), .framer-ATP4p .framer-styles-preset-douhmp.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #00913a; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #00d354; --framer-link-text-decoration: none; }\"];export const className=\"framer-ATP4p\";\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\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function BannerLink(props){const customStyle={fontSize:\"12px\",color:\"white\",textDecoration:\"none\",fontFamily:\"DM Sans, sans-serif\",...props.style};return /*#__PURE__*/_jsx(\"a\",{href:props.href,className:\"cky-banner-element\",style:customStyle,children:props.text});}BannerLink.displayName=\"Banner Link\";addPropertyControls(BannerLink,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Do not sell or share my information\"},href:{title:\"URL\",type:ControlType.String,defaultValue:\"#\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BannerLink\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Cookielink.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Figtree-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-p9jUn .framer-styles-preset-1kiwitm:not(.rich-text-wrapper), .framer-p9jUn .framer-styles-preset-1kiwitm.rich-text-wrapper p { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.09em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #949494; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-p9jUn .framer-styles-preset-1kiwitm:not(.rich-text-wrapper), .framer-p9jUn .framer-styles-preset-1kiwitm.rich-text-wrapper p { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.09em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #949494; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-p9jUn .framer-styles-preset-1kiwitm:not(.rich-text-wrapper), .framer-p9jUn .framer-styles-preset-1kiwitm.rich-text-wrapper p { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 11px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.09em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #949494; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-p9jUn\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-ZYJ0h .framer-styles-preset-1gn69bo:not(.rich-text-wrapper), .framer-ZYJ0h .framer-styles-preset-1gn69bo.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: rgba(255, 255, 255, 0.5); --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: underline; }\"];export const className=\"framer-ZYJ0h\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6807895)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/glA0lpimTGoVWjn0BuYv/NpKdSUu75TucfYIeIv5s/FNo6MqAGS.js\";const enabledGestures={aPngap_FA:{hover:true}};const serializationHash=\"framer-truJH\";const variantClassNames={aPngap_FA:\"framer-v-1poc2s0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,hover,id,width,...props})=>{return{...props,Klq3tBmUs:hover??props.Klq3tBmUs,S51CmUhXY:click??props.S51CmUhXY};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Klq3tBmUs,S51CmUhXY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"aPngap_FA\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap9k26hd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(S51CmUhXY){const res=await S51CmUhXY(...args);if(res===false)return false;}});const onMouseEnter1k853nw=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(Klq3tBmUs){const res=await Klq3tBmUs(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1poc2s0\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aPngap_FA\",onMouseEnter:onMouseEnter1k853nw,onTap:onTap9k26hd,ref:ref??ref1,style:{backgroundColor:\"rgb(26, 26, 26)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},variants:{\"aPngap_FA-hover\":{backgroundColor:\"rgb(105, 105, 105)\"}},...addPropertyOverrides({\"aPngap_FA-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get App QR Code\"})}),className:\"framer-1at93fp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hf7oBpBUJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"aPngap_FA-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"aPngap_FA-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get App QR Code\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-truJH.framer-tjicmc, .framer-truJH .framer-tjicmc { display: block; }\",\".framer-truJH.framer-1poc2s0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-truJH .framer-1at93fp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-truJH.framer-1poc2s0 { gap: 0px; } .framer-truJH.framer-1poc2s0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-truJH.framer-1poc2s0 > :first-child { margin-left: 0px; } .framer-truJH.framer-1poc2s0 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 65\n * @framerIntrinsicWidth 186\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"P4EMUdLqm\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Klq3tBmUs\":\"hover\",\"S51CmUhXY\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameru14CXMT5j=withCSS(Component,css,\"framer-truJH\");export default Frameru14CXMT5j;Frameru14CXMT5j.displayName=\"QR Button\";Frameru14CXMT5j.defaultProps={height:65,width:186};addPropertyControls(Frameru14CXMT5j,{Klq3tBmUs:{title:\"Hover\",type:ControlType.EventHandler},S51CmUhXY:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Frameru14CXMT5j,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameru14CXMT5j\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"65\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"Klq3tBmUs\\\":\\\"hover\\\",\\\"S51CmUhXY\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"P4EMUdLqm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"186\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1bcc82d)\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,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import BannerLink from\"https://framerusercontent.com/modules/7CVCJ1cq50exciZCExlG/KeJ1QxnlYBkanj7hF6zV/Cookielink.js\";import BrazeInput from\"https://framerusercontent.com/modules/1jAlXHAAwGYVr3FUXobz/qX1RV6VqTfsuUqUKBqhf/BrazeInput_1_1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/C2DrutQ2sKF8NVg1qaS7/VY5coZkaIeBYdRn4TpRQ/c5RsxVNwl.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/glA0lpimTGoVWjn0BuYv/NpKdSUu75TucfYIeIv5s/FNo6MqAGS.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/Z9QP0NQ1iV48bsdCDIUE/xIjyjEouhr1yUCwB0CVJ/hnYcrociy.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/PKXQFjaP7RAfPhatdgEb/cufOQyjgGEb4syOQXk7Q/ro7OPezbn.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/OQyDjnDP6ZnK3QKbPXvS/3gbEaaceQo7vb6Qua6V0/z17RGxGno.js\";import QRButton from\"https://framerusercontent.com/modules/zha7CAKNwYq8CHp0bCty/w1wWxsjgAFGhC1Vu0E1z/u14CXMT5j.js\";const BrazeInputFonts=getFonts(BrazeInput);const QRButtonFonts=getFonts(QRButton);const MotionDivWithFX=withFX(motion.div);const BannerLinkFonts=getFonts(BannerLink);const cycleOrder=[\"XO3eSF4a7\",\"KciSYIwXv\",\"dTLqt7Rd8\"];const serializationHash=\"framer-JJ7u7\";const variantClassNames={dTLqt7Rd8:\"framer-v-1xtaw4n\",KciSYIwXv:\"framer-v-1u4v7h8\",XO3eSF4a7:\"framer-v-13l5t09\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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 transition3={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};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:\"XO3eSF4a7\",mobile:\"KciSYIwXv\",tablet:\"dTLqt7Rd8\"};const getProps=({complex,height,id,width,...props})=>{return{...props,NMlqmasdm:complex??props.NMlqmasdm??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"XO3eSF4a7\"};};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,NMlqmasdm,yTbs7SMYvQOi66matM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XO3eSF4a7\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const S51CmUhXYtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"KciSYIwXv\")return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);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-13l5t09\",className,classNames),\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"XO3eSF4a7\",ref:refBinding,style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80,...style},variants:{dTLqt7Rd8:{borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60},KciSYIwXv:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({dTLqt7Rd8:{\"data-framer-name\":\"tablet\"},KciSYIwXv:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9drkp9\",layoutDependency:layoutDependency,layoutId:\"X22NGnT9Z\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YFQ4h3ZIq\"},motionChild:true,nodeId:\"m1bxvINja\",scopeId:\"OxeaMgbEx\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-14lu7l1 framer-ljc7g4\",\"data-framer-name\":\"wefew\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"m1bxvINja\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 170 58\"><path d=\"M 37.216 15.256 C 38.901 13.578 41.629 13.578 43.315 15.256 C 44.996 16.938 44.996 19.662 43.315 21.344 C 42.359 22.308 41 22.76 39.655 22.561 C 39.591 22.551 39.525 22.551 39.461 22.561 C 39.045 22.507 38.622 22.571 38.241 22.746 C 37.699 22.994 37.28 23.452 37.082 24.014 C 36.88 24.561 36.906 25.165 37.154 25.693 C 38.6 28.813 37.934 32.547 35.493 34.983 C 33.055 37.417 29.312 38.082 26.186 36.64 C 25.647 36.391 25.03 36.369 24.474 36.579 C 23.924 36.78 23.477 37.192 23.233 37.724 C 23.076 38.067 23.006 38.443 23.029 38.819 C 23.018 38.891 23.018 38.962 23.029 39.034 C 23.254 40.407 22.804 41.804 21.819 42.789 C 20.133 44.467 17.405 44.467 15.72 42.789 C 14.906 41.983 14.452 40.884 14.459 39.74 C 14.459 38.594 14.911 37.51 15.72 36.691 C 16.676 35.727 18.035 35.275 19.379 35.474 L 19.451 35.474 C 19.913 35.576 20.397 35.523 20.825 35.321 C 21.352 35.075 21.764 34.635 21.972 34.093 C 22.188 33.535 22.166 32.914 21.911 32.373 C 20.466 29.253 21.132 25.519 23.572 23.083 C 26.011 20.649 29.753 19.983 32.88 21.426 C 33.433 21.682 34.049 21.692 34.581 21.497 C 35.134 21.297 35.584 20.884 35.832 20.352 C 36.026 19.922 36.078 19.462 36.006 19.022 L 36.006 19.011 C 35.781 17.638 36.231 16.241 37.216 15.256 Z M 32.951 32.445 C 34.206 31.25 34.713 29.471 34.278 27.796 C 33.842 26.12 32.531 24.812 30.853 24.378 C 29.174 23.944 27.392 24.451 26.196 25.704 C 24.406 27.579 24.442 30.536 26.277 32.367 C 28.111 34.198 31.074 34.232 32.951 32.445 Z M 29.538 0.268 C 45.479 0.268 58.405 13.17 58.405 29.079 C 58.405 44.989 45.489 57.9 29.538 57.9 C 13.588 57.9 0.671 44.999 0.671 29.079 C 0.671 13.158 13.597 0.268 29.538 0.268 Z M 44.924 22.949 C 46.15 21.728 46.839 20.069 46.839 18.34 C 46.839 16.611 46.15 14.953 44.924 13.731 C 43.223 12.03 40.722 11.402 38.416 12.097 C 36.111 12.793 34.377 14.699 33.905 17.056 C 29.282 15.317 23.971 16.422 20.435 19.952 C 16.899 23.482 15.791 28.781 17.544 33.407 C 16.274 33.658 15.107 34.281 14.192 35.197 C 12.967 36.419 12.278 38.077 12.278 39.806 C 12.278 41.535 12.967 43.193 14.192 44.414 C 15.417 45.638 17.078 46.325 18.81 46.325 C 20.543 46.325 22.204 45.638 23.428 44.414 C 24.35 43.497 24.974 42.324 25.222 41.049 C 26.635 41.575 28.132 41.845 29.64 41.847 C 32.951 41.847 36.221 40.568 38.651 38.143 C 42.167 34.634 43.285 29.364 41.573 24.75 C 42.841 24.488 44.006 23.862 44.924 22.949 Z M 67.993 26.923 L 67.993 3.564 L 71.536 3.564 L 71.536 13.576 L 82.869 13.576 L 82.869 3.564 L 86.412 3.564 L 86.412 26.923 L 82.869 26.923 L 82.869 16.478 L 71.536 16.478 L 71.536 26.923 Z M 97.122 27.324 C 95.495 27.324 94.046 26.968 92.776 26.256 C 91.528 25.522 90.548 24.51 89.834 23.22 C 89.121 21.929 88.764 20.427 88.764 18.715 C 88.764 16.979 89.11 15.455 89.801 14.143 C 90.514 12.83 91.494 11.807 92.743 11.072 C 94.013 10.338 95.483 9.972 97.155 9.972 C 98.782 9.972 100.197 10.338 101.4 11.072 C 102.579 11.758 103.549 12.75 104.209 13.942 C 104.877 15.144 105.211 16.468 105.211 17.913 C 105.211 18.135 105.201 18.381 105.178 18.648 C 105.178 18.892 105.167 19.171 105.145 19.482 L 92.241 19.482 C 92.352 21.084 92.876 22.307 93.812 23.153 C 94.77 23.976 95.874 24.387 97.122 24.387 C 98.124 24.387 98.96 24.165 99.629 23.72 C 100.313 23.26 100.848 22.611 101.166 21.851 L 104.71 21.851 C 104.265 23.408 103.373 24.71 102.036 25.756 C 100.721 26.801 99.083 27.324 97.122 27.324 Z M 97.122 12.875 C 95.94 12.875 94.893 13.23 93.979 13.942 C 93.065 14.632 92.509 15.678 92.308 17.079 L 101.668 17.079 C 101.601 15.789 101.144 14.766 100.297 14.009 C 99.451 13.253 98.392 12.875 97.122 12.875 Z M 107.217 26.923 L 107.217 2.896 L 110.76 2.896 L 110.76 26.923 Z M 115.582 7.235 C 114.913 7.235 114.356 7.034 113.91 6.634 C 113.487 6.212 113.275 5.689 113.275 5.066 C 113.275 4.443 113.487 3.931 113.91 3.531 C 114.356 3.108 114.913 2.896 115.582 2.896 C 116.251 2.896 116.796 3.108 117.22 3.531 C 117.666 3.932 117.888 4.443 117.888 5.066 C 117.888 5.689 117.666 6.212 117.22 6.634 C 116.796 7.035 116.251 7.235 115.582 7.235 Z M 113.81 26.923 L 113.81 10.372 L 117.354 10.372 L 117.354 26.923 Z M 126.477 27.324 C 124.472 27.324 122.889 26.701 121.73 25.456 C 120.594 24.21 120.026 22.352 120.026 19.883 L 120.026 10.372 L 123.569 10.372 L 123.569 19.516 C 123.569 22.719 124.884 24.321 127.514 24.321 C 128.828 24.321 129.909 23.854 130.756 22.919 C 131.603 21.985 132.026 20.649 132.026 18.914 L 132.026 10.372 L 135.57 10.372 L 135.57 26.923 L 132.428 26.923 L 132.16 24.021 C 131.647 25.044 130.89 25.856 129.887 26.457 C 128.907 27.035 127.77 27.324 126.477 27.324 Z M 138.407 26.923 L 138.407 10.372 L 141.548 10.372 L 141.85 12.708 C 142.372 11.874 143.096 11.186 143.956 10.706 C 144.847 10.216 145.872 9.971 147.031 9.971 C 149.661 9.971 151.488 11.006 152.513 13.075 C 153.107 12.125 153.936 11.344 154.92 10.805 C 155.935 10.252 157.074 9.965 158.23 9.971 C 160.302 9.971 161.929 10.594 163.11 11.84 C 164.292 13.086 164.882 14.943 164.882 17.413 L 164.882 26.923 L 161.339 26.923 L 161.339 17.78 C 161.339 14.577 160.113 12.975 157.661 12.975 C 156.414 12.975 155.388 13.442 154.586 14.376 C 153.806 15.311 153.416 16.646 153.416 18.381 L 153.416 26.923 L 149.873 26.923 L 149.873 17.78 C 149.873 14.577 148.635 12.975 146.162 12.975 C 144.936 12.975 143.922 13.442 143.12 14.376 C 142.339 15.311 141.95 16.646 141.95 18.381 L 141.95 26.923 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 162.065 33.271 L 162.065 36.428 L 162.608 36.428 L 162.608 33.271 L 163.662 33.271 L 163.662 32.828 L 161.006 32.828 L 161.006 33.271 Z M 164.068 32.828 L 164.068 36.428 L 164.61 36.428 L 164.61 33.775 L 165.71 35.914 L 166.13 35.914 L 167.225 33.77 L 167.225 36.428 L 167.768 36.428 L 167.768 32.828 L 167.128 32.828 L 165.921 35.225 L 164.708 32.828 Z M 122.786 55.293 C 121.493 55.293 120.346 55.038 119.343 54.526 C 118.379 54.03 117.57 53.28 117.003 52.357 L 116.635 54.893 L 113.46 54.893 L 113.46 30.866 L 117.003 30.866 L 117.003 40.911 C 117.537 40.132 118.273 39.443 119.209 38.841 C 120.145 38.241 121.348 37.941 122.82 37.941 C 124.424 37.941 125.839 38.319 127.065 39.076 C 128.29 39.832 129.249 40.866 129.94 42.179 C 130.653 43.491 131.01 44.982 131.01 46.651 C 131.01 48.319 130.653 49.81 129.94 51.122 C 129.249 52.413 128.29 53.435 127.065 54.192 C 125.839 54.927 124.413 55.293 122.786 55.293 Z M 122.184 52.224 C 123.7 52.224 124.948 51.712 125.928 50.688 C 126.909 49.643 127.399 48.285 127.399 46.617 C 127.399 45.527 127.176 44.559 126.73 43.714 C 126.285 42.868 125.672 42.213 124.892 41.745 C 124.112 41.255 123.209 41.011 122.184 41.011 C 120.669 41.011 119.421 41.534 118.441 42.579 C 117.482 43.625 117.003 44.971 117.003 46.618 C 117.003 48.286 117.482 49.643 118.441 50.688 C 119.421 51.712 120.669 52.224 122.184 52.224 Z M 68 31.533 L 68 54.893 L 71.543 54.893 L 71.543 37.674 L 78.731 51.556 L 81.472 51.556 L 88.626 37.641 L 88.626 54.892 L 92.169 54.892 L 92.169 31.533 L 87.991 31.533 L 80.102 47.085 L 72.179 31.533 Z M 98.596 54.225 C 99.866 54.937 101.292 55.293 102.874 55.293 C 104.457 55.293 105.883 54.937 107.154 54.226 C 108.413 53.503 109.452 52.454 110.162 51.189 C 110.92 49.876 111.298 48.353 111.298 46.617 C 111.298 44.882 110.92 43.369 110.162 42.079 C 109.427 40.766 108.424 39.754 107.154 39.043 C 105.906 38.308 104.49 37.941 102.908 37.941 C 101.348 37.941 99.933 38.308 98.662 39.042 C 97.392 39.754 96.379 40.766 95.62 42.079 C 94.885 43.369 94.517 44.882 94.517 46.617 C 94.517 48.353 94.885 49.876 95.62 51.189 C 96.356 52.479 97.348 53.492 98.596 54.225 Z M 105.215 51.623 C 104.507 52.044 103.698 52.263 102.874 52.257 C 102.051 52.263 101.242 52.044 100.535 51.623 C 99.822 51.2 99.242 50.577 98.797 49.754 C 98.35 48.909 98.128 47.864 98.128 46.618 C 98.128 45.372 98.35 44.337 98.797 43.514 C 99.242 42.669 99.822 42.034 100.535 41.612 C 101.255 41.193 102.074 40.974 102.908 40.977 C 103.755 40.977 104.535 41.189 105.248 41.612 C 105.983 42.034 106.563 42.668 106.987 43.514 C 107.432 44.337 107.655 45.371 107.655 46.617 C 107.655 47.863 107.432 48.908 106.987 49.754 C 106.541 50.577 105.95 51.2 105.215 51.623 Z M 133.505 34.604 C 133.951 35.004 134.508 35.205 135.177 35.205 C 135.845 35.205 136.391 35.004 136.814 34.603 C 137.26 34.181 137.483 33.658 137.483 33.035 C 137.483 32.412 137.26 31.901 136.814 31.5 C 136.391 31.078 135.845 30.866 135.177 30.866 C 134.508 30.866 133.951 31.077 133.505 31.5 C 133.081 31.901 132.87 32.412 132.87 33.035 C 132.87 33.658 133.081 34.181 133.505 34.603 Z M 136.948 38.342 L 133.405 38.342 L 133.405 54.892 L 136.948 54.892 L 136.948 38.341 Z M 139.954 54.893 L 139.954 30.866 L 143.498 30.866 L 143.498 54.893 Z M 149.723 54.226 C 150.994 54.937 152.443 55.293 154.069 55.293 C 156.031 55.293 157.668 54.771 158.983 53.725 C 160.321 52.68 161.212 51.378 161.658 49.821 L 158.114 49.821 C 157.796 50.58 157.261 51.23 156.576 51.689 C 155.908 52.134 155.072 52.357 154.069 52.357 C 152.821 52.357 151.718 51.945 150.76 51.122 C 149.824 50.277 149.3 49.053 149.189 47.451 L 162.092 47.451 C 162.115 47.14 162.125 46.862 162.125 46.617 C 162.148 46.35 162.159 46.106 162.159 45.883 C 162.159 44.437 161.825 43.113 161.156 41.912 C 160.497 40.72 159.527 39.728 158.348 39.042 C 157.145 38.308 155.729 37.941 154.102 37.941 C 152.431 37.941 150.961 38.308 149.69 39.042 C 148.442 39.776 147.462 40.8 146.748 42.112 C 146.057 43.425 145.712 44.949 145.712 46.684 C 145.712 48.397 146.069 49.899 146.782 51.189 C 147.495 52.479 148.475 53.492 149.723 54.225 Z M 150.927 41.912 C 151.841 41.2 152.888 40.844 154.069 40.844 C 155.34 40.844 156.398 41.222 157.245 41.978 C 158.092 42.735 158.549 43.758 158.616 45.049 L 149.256 45.049 C 149.456 43.647 150.013 42.601 150.927 41.912 Z\" fill=\"rgba(255,255,255,0.6)\"></path></svg>',svgContentId:10661689604,withExternalLayout:true})})}),NMlqmasdm&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5xcygj\",layoutDependency:layoutDependency,layoutId:\"TpePo4KON\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-unmxcu\",layoutDependency:layoutDependency,layoutId:\"jO0dtnUr2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kiwitm\",\"data-styles-preset\":\"c5RsxVNwl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(79, 79, 79))\"},children:\"COMPANY\"})}),className:\"framer-1buzzc7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ubcFGKsmK\",style:{\"--extracted-r6o4lv\":\"rgb(79, 79, 79)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YFQ4h3ZIq\"},motionChild:true,nodeId:\"b3GmXFirC\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Home\"})})})}),className:\"framer-ag3lvc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b3GmXFirC\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://blog.hellohelium.com\",motionChild:true,nodeId:\"WdO3eLvXE\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Blog\"})})})}),className:\"framer-1s6jj8u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WdO3eLvXE\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"R_GLo7mIt\"},motionChild:true,nodeId:\"q7Iks1_Pb\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Newsletter\"})})})}),className:\"framer-qlq0by\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q7Iks1_Pb\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://heliummobile.statuspage.io/\",motionChild:true,nodeId:\"wuNXoF4Nb\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Network Status\"})})})}),className:\"framer-fs0ca\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wuNXoF4Nb\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://boards.greenhouse.io/novalabs\",motionChild:true,nodeId:\"SInkt6eA7\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Careers\"})})})}),className:\"framer-1y5jo2b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SInkt6eA7\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jKfoBlk4z\"},motionChild:true,nodeId:\"fW8qILvzD\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Legal Notices\"})})})}),className:\"framer-1chyl4x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fW8qILvzD\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FSXi7MVBT\"},motionChild:true,nodeId:\"IUrTMSxHI\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"NYC Events\"})})})}),className:\"framer-10m4355\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IUrTMSxHI\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mulowc\",layoutDependency:layoutDependency,layoutId:\"SyNvV7TY6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kiwitm\",\"data-styles-preset\":\"c5RsxVNwl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(79, 79, 79))\"},children:\"FOR SUBSCRIBERS\"})}),className:\"framer-7he0kk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PJw9cLO_x\",style:{\"--extracted-r6o4lv\":\"rgb(79, 79, 79)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://support.hellohelium.com\",motionChild:true,nodeId:\"fxAwyMdLH\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Support\"})})})}),className:\"framer-1mnec0s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fxAwyMdLH\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vHUWfMEYX\"},motionChild:true,nodeId:\"RyRbhSNBm\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Secure Data\"})})})}),className:\"framer-m1hx43\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RyRbhSNBm\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TxNw6_Nt4\"},motionChild:true,nodeId:\"ZIWKyc7QD\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Coverage Map\"})})})}),className:\"framer-wx2ban\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZIWKyc7QD\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://my.hellohelium.com/login\",motionChild:true,nodeId:\"qbyBe7xIS\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Sign In\"})})})}),className:\"framer-1u1tzgn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qbyBe7xIS\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JmDSPWBOR\"},motionChild:true,nodeId:\"FV4B9Lme4\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Refer & Earn\"})})})}),className:\"framer-1capy6m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FV4B9Lme4\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d7kf4f\",\"data-styles-preset\":\"FNo6MqAGS\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZMsrQMJ6H\"},motionChild:true,nodeId:\"u0CHxxe4Y\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Kids\"})})})}),className:\"framer-kn723h\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"u0CHxxe4Y\",verticalAlignment:\"top\",withExternalLayout:true})]}),NMlqmasdm&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h24c0h\",layoutDependency:layoutDependency,layoutId:\"AFnVzHKqr\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16ewbks\",layoutDependency:layoutDependency,layoutId:\"P2pNKQkht\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"NEWSLETTER SIGNUP\"})}),className:\"framer-1k8inwf\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"kx3YjtCE_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b8n7ss-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"SuLun4ckQ-container\",nodeId:\"SuLun4ckQ\",rendersWithMotion:true,scopeId:\"OxeaMgbEx\",children:/*#__PURE__*/_jsx(BrazeInput,{backgroundColor:\"rgb(34, 34, 34)\",checkboxText:\" I agree to receive marketing emails from Helium Mobile.\",fontColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"SuLun4ckQ\",layoutId:\"SuLun4ckQ\",pageName:\"Footer\",placeholder:\"Enter Email...\",placeholderColor:\"rgb(100, 100, 100)\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dh4t5x\",layoutDependency:layoutDependency,layoutId:\"RCS3vc6Nb\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7xvk74\",\"data-framer-name\":\"fefe\",fill:\"black\",intrinsicHeight:230,intrinsicWidth:230,layoutDependency:layoutDependency,layoutId:\"ejBbZIqLL\",svg:'<svg width=\"230\" height=\"230\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M114.683.16C51.343.16-.003 51.507-.003 114.846c0 63.339 51.347 114.686 114.686 114.686 63.339 0 114.686-51.347 114.686-114.686C229.369 51.506 178.022.16 114.683.16Zm65.937 127.85a47.1 47.1 0 0 1-4.828 21.729l4.51 15.793a8.237 8.237 0 0 1-2.099 8.087 8.237 8.237 0 0 1-8.087 2.099l-15.793-4.51a47.093 47.093 0 0 1-53.297-8.157 47.109 47.109 0 0 1-10.833-15.614 47.185 47.185 0 0 1-15.162-4.493l-15.793 4.51a8.239 8.239 0 0 1-10.237-5.857 8.242 8.242 0 0 1 .05-4.329l4.511-15.793a47.108 47.108 0 0 1 74.978-54.658 47.116 47.116 0 0 1 10.615 15.36 47.107 47.107 0 0 1 41.465 45.833Zm-9.957 38.069-4.446-15.551a4.707 4.707 0 0 1 .401-3.55 37.688 37.688 0 0 0-24.443-54.72 47.07 47.07 0 0 1-23.09 49.4 47.072 47.072 0 0 1-18.334 5.867 37.72 37.72 0 0 0 50.828 14.509 4.706 4.706 0 0 1 3.533-.4l15.551 4.445Z\" fill=\"#00D354\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n7b4q8\",layoutDependency:layoutDependency,layoutId:\"awhKmO9AL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"SUPPORT EMAIL\"})}),className:\"framer-10td8vl\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ggqgvsOjC\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba0f8505-1870-43c0-8d4e-7d4bc5406462, rgb(153, 153, 153)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:support@hellohelium.com\",motionChild:true,nodeId:\"kFhRTf9BK\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-douhmp\",\"data-styles-preset\":\"z17RGxGno\",children:\"support@hellohelium.com\"})})})}),className:\"framer-1b3tx2e\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"kFhRTf9BK\",style:{\"--extracted-r6o4lv\":\"var(--token-ba0f8505-1870-43c0-8d4e-7d4bc5406462, rgb(153, 153, 153))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bz6mk5\",layoutDependency:layoutDependency,layoutId:\"a9fH_XcgU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a0zor2\",layoutDependency:layoutDependency,layoutId:\"fZsXuSxLx\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://instagram.com/heliummobile\",motionChild:true,nodeId:\"gap0haJ2g\",scopeId:\"OxeaMgbEx\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-hblv4o framer-ljc7g4\",\"data-framer-name\":\"instagram_1\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"gap0haJ2g\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M8.072 12.252a3.874 3.874 0 0 1 7.75 0 3.874 3.874 0 0 1-7.75 0Zm-2.095 0a5.967 5.967 0 0 0 5.97 5.966 5.968 5.968 0 0 0 5.969-5.966 5.967 5.967 0 0 0-5.97-5.966 5.967 5.967 0 0 0-5.969 5.966Zm10.78-6.202a1.394 1.394 0 0 0 2.381.986 1.395 1.395 0 1 0-2.38-.986ZM7.25 21.709c-1.133-.052-1.75-.24-2.159-.4a3.612 3.612 0 0 1-1.337-.869 3.584 3.584 0 0 1-.87-1.335c-.16-.41-.348-1.025-.4-2.158-.056-1.225-.067-1.592-.067-4.695s.012-3.47.068-4.695c.051-1.133.241-1.747.4-2.158a3.61 3.61 0 0 1 .87-1.336 3.583 3.583 0 0 1 1.336-.869c.41-.16 1.026-.348 2.159-.4 1.225-.056 1.593-.067 4.697-.067 3.103 0 3.471.012 4.698.067 1.133.052 1.748.242 2.158.4.543.21.93.463 1.337.87.407.405.659.793.87 1.335.16.41.348 1.025.4 2.158.056 1.226.067 1.592.067 4.695s-.01 3.47-.067 4.695c-.052 1.133-.241 1.748-.4 2.158a3.594 3.594 0 0 1-.87 1.335 3.613 3.613 0 0 1-1.337.869c-.409.16-1.025.348-2.159.4-1.225.056-1.593.067-4.697.067-3.105 0-3.472-.011-4.697-.067ZM7.154.704c-1.238.057-2.083.253-2.822.54a5.702 5.702 0 0 0-2.06 1.34 5.676 5.676 0 0 0-1.34 2.058c-.287.739-.484 1.583-.54 2.82-.057 1.239-.07 1.635-.07 4.79 0 3.155.013 3.551.07 4.79.056 1.237.253 2.081.54 2.82a5.68 5.68 0 0 0 1.34 2.058 5.714 5.714 0 0 0 2.06 1.34c.74.287 1.584.483 2.822.54 1.24.056 1.636.07 4.793.07s3.553-.013 4.792-.07c1.238-.057 2.083-.253 2.822-.54a5.715 5.715 0 0 0 2.06-1.34 5.691 5.691 0 0 0 1.34-2.058c.288-.739.485-1.583.54-2.82.056-1.24.07-1.635.07-4.79 0-3.155-.014-3.551-.07-4.79-.056-1.237-.252-2.082-.54-2.82a5.713 5.713 0 0 0-1.34-2.058 5.687 5.687 0 0 0-2.06-1.34c-.739-.287-1.584-.484-2.82-.54-1.24-.056-1.636-.07-4.793-.07-3.158 0-3.554.013-4.794.07Z\"/><path d=\"M8.072 12.252a3.874 3.874 0 0 1 7.75 0 3.874 3.874 0 0 1-7.75 0Zm-2.095 0a5.967 5.967 0 0 0 5.97 5.966 5.968 5.968 0 0 0 5.969-5.966 5.967 5.967 0 0 0-5.97-5.966 5.967 5.967 0 0 0-5.969 5.966Zm10.78-6.202a1.394 1.394 0 0 0 2.381.986 1.395 1.395 0 1 0-2.38-.986ZM7.25 21.709c-1.133-.052-1.75-.24-2.159-.4a3.612 3.612 0 0 1-1.337-.869 3.584 3.584 0 0 1-.87-1.335c-.16-.41-.348-1.025-.4-2.158-.056-1.225-.067-1.592-.067-4.695s.012-3.47.068-4.695c.051-1.133.241-1.747.4-2.158a3.61 3.61 0 0 1 .87-1.336 3.583 3.583 0 0 1 1.336-.869c.41-.16 1.026-.348 2.159-.4 1.225-.056 1.593-.067 4.697-.067 3.103 0 3.471.012 4.698.067 1.133.052 1.748.242 2.158.4.543.21.93.463 1.337.87.407.405.659.793.87 1.335.16.41.348 1.025.4 2.158.056 1.226.067 1.592.067 4.695s-.01 3.47-.067 4.695c-.052 1.133-.241 1.748-.4 2.158a3.594 3.594 0 0 1-.87 1.335 3.613 3.613 0 0 1-1.337.869c-.409.16-1.025.348-2.159.4-1.225.056-1.593.067-4.697.067-3.105 0-3.472-.011-4.697-.067ZM7.154.704c-1.238.057-2.083.253-2.822.54a5.702 5.702 0 0 0-2.06 1.34 5.676 5.676 0 0 0-1.34 2.058c-.287.739-.484 1.583-.54 2.82-.057 1.239-.07 1.635-.07 4.79 0 3.155.013 3.551.07 4.79.056 1.237.253 2.081.54 2.82a5.68 5.68 0 0 0 1.34 2.058 5.714 5.714 0 0 0 2.06 1.34c.74.287 1.584.483 2.822.54 1.24.056 1.636.07 4.793.07s3.553-.013 4.792-.07c1.238-.057 2.083-.253 2.822-.54a5.715 5.715 0 0 0 2.06-1.34 5.691 5.691 0 0 0 1.34-2.058c.288-.739.485-1.583.54-2.82.056-1.24.07-1.635.07-4.79 0-3.155-.014-3.551-.07-4.79-.056-1.237-.252-2.082-.54-2.82a5.713 5.713 0 0 0-1.34-2.058 5.687 5.687 0 0 0-2.06-1.34c-.739-.287-1.584-.484-2.82-.54-1.24-.056-1.636-.07-4.793-.07-3.158 0-3.554.013-4.794.07Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@heliummobile?is_from_webapp=1&sender_device=pc\",motionChild:true,nodeId:\"D3OSaWbAO\",scopeId:\"OxeaMgbEx\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1jo22v3 framer-ljc7g4\",\"data-framer-name\":\"tiktok\",fill:\"black\",intrinsicHeight:751,intrinsicWidth:651,layoutDependency:layoutDependency,layoutId:\"D3OSaWbAO\",svg:'<svg width=\"651\" height=\"751\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M570.047 160.406a170.56 170.56 0 0 1-14.766-8.594 207.642 207.642 0 0 1-37.922-32.218c-28.281-32.36-38.843-65.188-42.734-88.172h.156C471.531 12.344 472.875 0 473.078 0H344.266v498.094c0 6.687 0 13.297-.282 19.828 0 .812-.078 1.562-.125 2.437 0 .36 0 .735-.078 1.11v.281a109.362 109.362 0 0 1-55.031 86.812 107.501 107.501 0 0 1-53.297 14.063c-60.015 0-108.656-48.938-108.656-109.375 0-60.438 48.641-109.375 108.656-109.375a107.628 107.628 0 0 1 33.453 5.297l.157-131.156a239.282 239.282 0 0 0-184.375 53.937 252.8 252.8 0 0 0-55.157 68.016c-5.437 9.375-25.953 47.047-28.437 108.187-1.563 34.703 8.86 70.656 13.828 85.516v.312c3.125 8.75 15.234 38.61 34.969 63.782a261.775 261.775 0 0 0 55.797 52.64v-.312l.312.312C168.359 752.781 237.5 750 237.5 750c11.969-.484 52.063 0 97.594-21.578 50.5-23.922 79.25-59.563 79.25-59.563a247.563 247.563 0 0 0 43.187-71.765c11.657-30.641 15.547-67.391 15.547-82.078v-264.25c1.563.937 22.375 14.703 22.375 14.703s29.985 19.218 76.766 31.734C605.781 306.109 651 307.984 651 307.984V180.109c-15.844 1.719-48.016-3.281-80.953-19.703Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/helium_mobile\",motionChild:true,nodeId:\"dize8JzcJ\",scopeId:\"OxeaMgbEx\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-b1g9jv framer-ljc7g4\",\"data-framer-name\":\"x\",fill:\"black\",intrinsicHeight:937,intrinsicWidth:1002,layoutDependency:layoutDependency,layoutId:\"dize8JzcJ\",svg:'<svg width=\"1002\" height=\"937\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m3.33.251 386.39 516.64L.89 936.941H88.4l340.42-367.76 275.05 367.76h297.8l-408.13-545.7L955.46.251h-87.51l-313.51 338.7L301.13.251H3.33Zm128.69 64.46h136.81l604.13 807.76H736.15L132.02 64.711Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18bpavm\",layoutDependency:layoutDependency,layoutId:\"eDgixmhnx\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/helium-mobile/id1640323514\",motionChild:true,nodeId:\"EWrqfzU8r\",scopeId:\"OxeaMgbEx\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:60.5,intrinsicWidth:180,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+501.4+0+0+1.5),pixelHeight:121,pixelWidth:360,src:\"https://framerusercontent.com/images/1oe8jfReC05XXXtWGv89fuNP40.png\"},className:\"framer-167dogb framer-ljc7g4\",\"data-framer-name\":\"Apple\",layoutDependency:layoutDependency,layoutId:\"EWrqfzU8r\",...addPropertyOverrides({dTLqt7Rd8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:60.5,intrinsicWidth:180,pixelHeight:121,pixelWidth:360,src:\"https://framerusercontent.com/images/1oe8jfReC05XXXtWGv89fuNP40.png\"}},KciSYIwXv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:60.5,intrinsicWidth:180,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+1064.2+0+66+0+0),pixelHeight:121,pixelWidth:360,src:\"https://framerusercontent.com/images/1oe8jfReC05XXXtWGv89fuNP40.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.helium.mobile.wireless&hl=en_US&pli=1\",motionChild:true,nodeId:\"px_aHDG8C\",scopeId:\"OxeaMgbEx\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:60.5,intrinsicWidth:203,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+501.4+0+0+1.5),pixelHeight:121,pixelWidth:406,src:\"https://framerusercontent.com/images/SAcphtwI5O6PBm5ckSkUO7XV4I0.png\"},className:\"framer-12zumhz framer-ljc7g4\",\"data-framer-name\":\"Google\",layoutDependency:layoutDependency,layoutId:\"px_aHDG8C\",...addPropertyOverrides({dTLqt7Rd8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:60.5,intrinsicWidth:203,pixelHeight:121,pixelWidth:406,src:\"https://framerusercontent.com/images/SAcphtwI5O6PBm5ckSkUO7XV4I0.png\"}},KciSYIwXv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:60.5,intrinsicWidth:203,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+1064.2+0+66+0+81),pixelHeight:121,pixelWidth:406,src:\"https://framerusercontent.com/images/SAcphtwI5O6PBm5ckSkUO7XV4I0.png\"}}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,y:(componentViewport?.y||0)+60+501.4+0+0+1.5,...addPropertyOverrides({dTLqt7Rd8:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-juz2go-container\",id:`${layoutId}-juz2go`,layoutDependency:layoutDependency,layoutId:\"jzWJqnU_T-container\",nodeId:\"jzWJqnU_T\",ref:ref1,rendersWithMotion:true,scopeId:\"OxeaMgbEx\",children:[/*#__PURE__*/_jsx(QRButton,{height:\"100%\",id:\"jzWJqnU_T\",layoutId:\"jzWJqnU_T\",S51CmUhXY:S51CmUhXYtxyyif({overlay}),style:{height:\"100%\"},width:\"100%\"}),/*#__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}-juz2go`,offsetX:0,offsetY:-10,onDismiss:overlay.hide,placement:\"top\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1pec69v\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"YGgwhGevT\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yd3q7c\",\"data-framer-name\":\"Onelinkto heliummobile\",fill:\"black\",intrinsicHeight:135,intrinsicWidth:135,layoutDependency:layoutDependency,layoutId:\"opKRq7FWq\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"135\" height=\"135\" preserveAspectRatio=\"xMinYMin meet\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path d=\"M5 5h5v5H5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zm15 0h5v5h-5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zm10 0h5v5h-5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zm15 0h5v5h-5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zm5 0h5v5h-5V5zM5 10h5v5H5v-5zm30 0h5v5h-5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm30 0h5v5h-5v-5zM5 15h5v5H5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm30 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zM5 20h5v5H5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm20 0h5v5h-5v-5zm25 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zM5 25h5v5H5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm20 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zM5 30h5v5H5v-5zm30 0h5v5h-5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm30 0h5v5h-5v-5zM5 35h5v5H5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm-80 5h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zM5 45h5v5H5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm20 0h5v5h-5v-5zM5 50h5v5H5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm25 0h5v5h-5v-5zm25 0h5v5h-5v-5zm5 0h5v5h-5v-5zm30 0h5v5h-5v-5zM15 55h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm25 0h5v5h-5v-5zm15 0h5v5h-5v-5zm10 0h5v5h-5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zM5 60h5v5H5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm40 0h5v5h-5v-5zm5 0h5v5h-5v-5zm20 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm15 0h5v5h-5v-5zM15 65h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zM20 70h5v5h-5v-5zm10 0h5v5h-5v-5zm15 0h5v5h-5v-5zm20 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm15 0h5v5h-5v-5zM5 75h5v5H5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm35 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zM10 80h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm20 0h5v5h-5v-5zm15 0h5v5h-5v-5zM5 85h5v5H5v-5zm20 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm-65 5h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm20 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zM5 95h5v5H5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm30 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zM5 100h5v5H5v-5zm30 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm20 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zM5 105h5v5H5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zM5 110h5v5H5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm15 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm35 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zM5 115h5v5H5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm20 0h5v5h-5v-5zm30 0h5v5h-5v-5zm20 0h5v5h-5v-5zM5 120h5v5H5v-5zm30 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zM5 125h5v5H5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm20 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm10 0h5v5h-5v-5zm5 0h5v5h-5v-5zm20 0h5v5h-5v-5zm5 0h5v5h-5v-5z\" stroke=\"transparent\"/></svg>',withExternalLayout:true})})})})]})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i8r0s4\",layoutDependency:layoutDependency,layoutId:\"ZpKIYqQ_8\",style:{backgroundColor:\"rgb(26, 26, 26)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},variants:{KciSYIwXv:{borderBottomLeftRadius:0,borderBottomRightRadius:0}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ycc8qt\",layoutDependency:layoutDependency,layoutId:\"Uy0AV8pMS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3gzym9\",layoutDependency:layoutDependency,layoutId:\"T9VEAF2SC\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://nova.xyz\",motionChild:true,nodeId:\"FRDAl1NjK\",scopeId:\"OxeaMgbEx\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1x28rth framer-ljc7g4\",layoutDependency:layoutDependency,layoutId:\"FRDAl1NjK\",style:{opacity:.15},whileHover:animation3,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ozyrzf\",\"data-framer-name\":\"gerge\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"JJlmli6lw\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 148 39\"><g transform=\"translate(0 0.846)\"><path d=\"M 0 0 L 148 0 L 148 37.44 L 0 37.44 Z\" fill=\"transparent\"></path><path d=\"M 27.041 1.323 C 30.847 1.323 33.932 4.396 33.932 8.188 L 33.932 30.518 C 33.932 36.833 26.113 39.816 21.881 35.116 L 13.786 26.124 L 13.786 30.567 C 13.786 34.357 10.701 37.432 6.894 37.432 C 3.09 37.432 0.003 34.359 0.003 30.567 L 0.003 8.234 C 0.003 1.92 7.822 -1.064 12.054 3.636 L 20.151 12.628 L 20.151 8.188 C 20.151 4.398 23.234 1.323 27.042 1.323 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 53.524 36.607 C 63.398 36.607 71.404 28.631 71.404 18.789 C 71.404 8.948 63.398 0.97 53.524 0.97 C 43.648 0.97 35.643 8.948 35.643 18.789 C 35.643 28.631 43.648 36.607 53.524 36.607 Z M 111.387 8.193 C 113.61 9.951 113.592 13.414 111.646 15.525 L 96.229 32.25 C 94.284 34.361 91.131 34.361 89.185 32.25 L 73.769 15.524 C 71.825 13.414 71.805 9.951 74.028 8.193 C 85.128 -0.583 100.287 -0.583 111.387 8.193 Z M 114.792 30.011 C 114.792 33.003 117.228 35.431 120.231 35.431 L 142.558 35.431 C 145.563 35.431 147.998 33.003 147.998 30.01 L 147.998 14.558 C 147.995 12.928 147.264 11.387 146.008 10.366 L 134.845 1.242 C 132.83 -0.399 129.959 -0.399 127.944 1.242 L 116.783 10.366 C 115.527 11.387 114.794 12.928 114.791 14.558 L 114.791 30.01 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:10440053606,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Copyright 2025, Nova Labs, Inc.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"All Rights Reserved.\"})]}),className:\"framer-193o0ty\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"mWIXG55Ph\",style:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KciSYIwXv:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Copyright 2025, Nova Labs, Inc.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"All Rights Reserved.\"})]})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8g1gbx\",layoutDependency:layoutDependency,layoutId:\"uDvKTWf1j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[\"\u201C                 \u201C and \u201CHelium Mobile\u201D are trademarks of Nova Labs, Inc. Helium is a registered trademark of Decentralized Wireless Foundation, Inc. (dba the Helium Foundation), used under license.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),\"*Free plan requires location sharing activation.\"]}),/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.br,{}),\"**Data is unlimited, but you may experience slowdowns after 28GB of data usage. Tethering is limited to 5GB/month.\"]})]}),className:\"framer-nw27jq\",fonts:[\"GF;Figtree-regular\"],layoutDependency:layoutDependency,layoutId:\"QfupbzAFn\",style:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.3},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[\"Rewards are a function of network governance and not guaranteed; amount depends on multiple factors, including but not limited to, individual activities, network usage, technical and/or operational issues. Nova Labs does not issue, provide, guarantee, or refund any rewards and makes no promises, guarantees, or warranties as to their value. See \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jKfoBlk4z\"},motionChild:true,nodeId:\"ES10iCOhS\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"OxeaMgbEx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gn69bo\",\"data-styles-preset\":\"hnYcrociy\",children:\"Terms & Conditions\"})}),\" for additional terms.\"]})}),className:\"framer-1xznwoe\",fonts:[\"GF;Figtree-regular\"],layoutDependency:layoutDependency,layoutId:\"ES10iCOhS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.3},verticalAlignment:\"top\",withExternalLayout:true}),yTbs7SMYvQOi66matM&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Helium Mobile\u2019s\u2122 proprietary Dynamic Coverage\u2122 model utilizes both the Helium Mobile Network and the nation's largest 5G network to provide more coverage and redundancy.\"})}),className:\"framer-1glw42z\",fonts:[\"GF;Figtree-regular\"],layoutDependency:layoutDependency,layoutId:\"d1BgJTuM1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.3},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ldkfd1\",layoutDependency:layoutDependency,layoutId:\"n9D4KEIIx\",style:{backgroundColor:\"rgb(51, 51, 51)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cprdc3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nsa0m7c3Y-container\",nodeId:\"nsa0m7c3Y\",rendersWithMotion:true,scopeId:\"OxeaMgbEx\",children:/*#__PURE__*/_jsx(BannerLink,{height:\"100%\",href:\"#\",id:\"nsa0m7c3Y\",layoutId:\"nsa0m7c3Y\",text:\"Do not sell or share my information\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10k2s72\",layoutDependency:layoutDependency,layoutId:\"IZth20TR2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18kwd5h\",\"data-framer-name\":\"ergher\",fill:\"black\",intrinsicHeight:16,intrinsicWidth:54,layoutDependency:layoutDependency,layoutId:\"ieYzQcju6\",style:{opacity:.3},svg:'<svg width=\"54\" height=\"16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.059 4.445a1.118 1.118 0 0 0-1.895.978v.003a.574.574 0 0 1-.81.626 2.147 2.147 0 0 0-2.415.432 2.16 2.16 0 0 0-.43 2.419.582.582 0 0 1-.524.82.536.536 0 0 1-.115-.013h-.018a1.11 1.11 0 0 0-.95.317 1.127 1.127 0 0 0 0 1.589 1.118 1.118 0 0 0 1.896-.978.197.197 0 0 1 0-.056.598.598 0 0 1 .053-.286.57.57 0 0 1 .322-.298.572.572 0 0 1 .444.016c.81.376 1.78.203 2.414-.432a2.16 2.16 0 0 0 .43-2.419.568.568 0 0 1-.018-.437.572.572 0 0 1 .616-.378.16.16 0 0 1 .05 0c.352.05.697-.064.95-.317a1.124 1.124 0 0 0 0-1.586Zm-2.688 2.72a1.244 1.244 0 0 1 0 1.757 1.237 1.237 0 0 1-1.752 0 1.244 1.244 0 0 1 0-1.756 1.237 1.237 0 0 1 1.752 0Zm6.601.88c0-4.143-3.352-7.503-7.486-7.503S0 3.899 0 8.045s3.35 7.506 7.486 7.506c4.137 0 7.486-3.363 7.486-7.506Zm-3.496-3.997a1.7 1.7 0 0 1 0 2.4 1.726 1.726 0 0 1-.869.47 3.324 3.324 0 0 1-.758 3.488 3.3 3.3 0 0 1-3.482.756 1.694 1.694 0 0 1-2.86.877 1.7 1.7 0 0 1 .869-2.867 3.317 3.317 0 0 1 .75-3.504 3.302 3.302 0 0 1 3.493-.754 1.69 1.69 0 0 1 2.858-.866Zm26.987 8.71c-.497 0-.938-.1-1.323-.297a2.284 2.284 0 0 1-.899-.837l-.14.979h-1.22V3.335h1.36v3.874c.206-.3.488-.566.848-.798.36-.231.822-.347 1.386-.347.617 0 1.16.146 1.631.437.471.292.84.691 1.105 1.197.273.507.41 1.082.41 1.725 0 .644-.137 1.219-.41 1.725a3.061 3.061 0 0 1-1.105 1.184c-.47.284-1.018.425-1.643.425Zm-.231-1.185c.582 0 1.061-.197 1.438-.592.376-.404.565-.927.565-1.57 0-.421-.086-.794-.257-1.12a1.89 1.89 0 0 0-.706-.76 1.908 1.908 0 0 0-1.04-.283c-.582 0-1.062.202-1.438.605-.368.403-.553.922-.553 1.557 0 .644.185 1.167.553 1.57.376.396.856.593 1.438.593ZM17.42 3.593v9.01h1.36V5.96l2.761 5.354h1.053l2.748-5.367v6.655h1.361v-9.01h-1.605l-3.03 5.998-3.043-5.999H17.42Zm11.751 8.752a3.292 3.292 0 0 0 1.644.412c.608 0 1.155-.137 1.643-.412a3.095 3.095 0 0 0 1.156-1.171c.291-.506.437-1.094.437-1.764 0-.669-.146-1.252-.437-1.75a2.978 2.978 0 0 0-1.156-1.172 3.144 3.144 0 0 0-1.63-.424c-.6 0-1.143.141-1.631.424a3.067 3.067 0 0 0-1.168 1.172c-.283.498-.424 1.081-.424 1.75 0 .67.141 1.258.424 1.764.282.498.663.888 1.142 1.171Zm2.543-1.004a1.725 1.725 0 0 1-.9.245c-.325 0-.624-.082-.898-.245a1.817 1.817 0 0 1-.668-.72c-.17-.327-.257-.73-.257-1.21 0-.481.086-.88.257-1.198a1.8 1.8 0 0 1 .668-.733c.282-.163.586-.245.912-.245a1.725 1.725 0 0 1 1.566.978c.171.318.257.717.257 1.197 0 .48-.086.884-.257 1.21a1.786 1.786 0 0 1-.68.721ZM42.58 4.776a.923.923 0 0 0 .642.232.876.876 0 0 0 .63-.232.802.802 0 0 0 .256-.604.762.762 0 0 0-.257-.593.85.85 0 0 0-.629-.244.895.895 0 0 0-.642.244.781.781 0 0 0-.244.592c0 .24.081.442.244.605Zm-.039 1.442v6.385h1.362V6.218H42.54Zm2.516 6.385V3.335h1.361v9.268h-1.36Zm3.752-.258c.488.275 1.045.412 1.67.412.753 0 1.382-.202 1.887-.605a2.884 2.884 0 0 0 1.027-1.506h-1.36c-.13.3-.326.54-.591.72-.257.173-.578.258-.964.258a1.89 1.89 0 0 1-1.27-.476c-.36-.326-.561-.798-.604-1.416h4.956a4.94 4.94 0 0 0 .013-.322c.008-.103.013-.197.013-.283 0-.558-.129-1.068-.385-1.532a2.907 2.907 0 0 0-1.079-1.107c-.462-.283-1.006-.424-1.63-.424-.643 0-1.207.141-1.695.424a3 3 0 0 0-1.13 1.185c-.266.506-.398 1.094-.398 1.763 0 .66.137 1.24.41 1.738a3.03 3.03 0 0 0 1.13 1.171Zm.463-4.75a1.905 1.905 0 0 1 1.206-.411c.489 0 .895.145 1.22.437.326.292.501.687.527 1.184H48.63c.077-.54.29-.944.642-1.21Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JJ7u7.framer-ljc7g4, .framer-JJ7u7 .framer-ljc7g4 { display: block; }\",\".framer-JJ7u7.framer-13l5t09 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px; position: relative; width: 1160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JJ7u7 .framer-9drkp9 { 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-JJ7u7 .framer-14lu7l1 { flex: none; height: 58px; position: relative; text-decoration: none; width: 170px; }\",\".framer-JJ7u7 .framer-5xcygj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JJ7u7 .framer-unmxcu, .framer-JJ7u7 .framer-mulowc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-JJ7u7 .framer-1buzzc7, .framer-JJ7u7 .framer-ag3lvc, .framer-JJ7u7 .framer-1s6jj8u, .framer-JJ7u7 .framer-qlq0by, .framer-JJ7u7 .framer-fs0ca, .framer-JJ7u7 .framer-1y5jo2b, .framer-JJ7u7 .framer-1chyl4x, .framer-JJ7u7 .framer-10m4355, .framer-JJ7u7 .framer-7he0kk, .framer-JJ7u7 .framer-1mnec0s, .framer-JJ7u7 .framer-m1hx43, .framer-JJ7u7 .framer-wx2ban, .framer-JJ7u7 .framer-1u1tzgn, .framer-JJ7u7 .framer-1capy6m, .framer-JJ7u7 .framer-kn723h { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JJ7u7 .framer-h24c0h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JJ7u7 .framer-16ewbks, .framer-JJ7u7 .framer-3gzym9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JJ7u7 .framer-1k8inwf, .framer-JJ7u7 .framer-10td8vl, .framer-JJ7u7 .framer-1b3tx2e { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-JJ7u7 .framer-b8n7ss-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-JJ7u7 .framer-dh4t5x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JJ7u7 .framer-7xvk74 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-JJ7u7 .framer-1n7b4q8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JJ7u7 .framer-1bz6mk5 { 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-JJ7u7 .framer-a0zor2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-JJ7u7 .framer-hblv4o { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; text-decoration: none; width: 26px; }\",\".framer-JJ7u7 .framer-1jo22v3 { aspect-ratio: 0.8668442077230359 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; text-decoration: none; width: 23px; }\",\".framer-JJ7u7 .framer-b1g9jv { aspect-ratio: 1.0693703308431164 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; text-decoration: none; width: 28px; }\",\".framer-JJ7u7 .framer-18bpavm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 64px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 609px; }\",\".framer-JJ7u7 .framer-167dogb { aspect-ratio: 2.975206611570248 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; text-decoration: none; width: 180px; }\",\".framer-JJ7u7 .framer-12zumhz { aspect-ratio: 3.355371900826446 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; text-decoration: none; width: 203px; }\",\".framer-JJ7u7 .framer-juz2go-container { flex: none; height: 61px; position: relative; width: auto; }\",\".framer-JJ7u7 .framer-1pec69v { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 192px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JJ7u7 .framer-yd3q7c { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 151px); position: relative; width: 151px; }\",\".framer-JJ7u7 .framer-1i8r0s4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JJ7u7 .framer-ycc8qt { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JJ7u7 .framer-1x28rth { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JJ7u7 .framer-1ozyrzf { flex: none; height: 39px; position: relative; width: 148px; }\",\".framer-JJ7u7 .framer-193o0ty, .framer-JJ7u7 .framer-nw27jq, .framer-JJ7u7 .framer-1xznwoe, .framer-JJ7u7 .framer-1glw42z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JJ7u7 .framer-8g1gbx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1.82 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JJ7u7 .framer-1ldkfd1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 6px 0px 6px 0px; position: relative; width: 224px; }\",\".framer-JJ7u7 .framer-1cprdc3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-JJ7u7 .framer-10k2s72 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 7px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-JJ7u7 .framer-18kwd5h { flex: none; height: 13px; position: relative; width: 45px; }\",\".framer-JJ7u7.framer-v-1u4v7h8.framer-13l5t09 { align-content: center; align-items: center; gap: 20px; padding: 60px 0px 0px 0px; width: 377px; will-change: unset; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-9drkp9 { flex-direction: column; gap: 60px; justify-content: flex-start; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-5xcygj { align-content: center; align-items: center; flex-direction: column; gap: 50px; padding: 30px; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-unmxcu { align-content: center; align-items: center; order: 0; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-mulowc { align-content: center; align-items: center; order: 1; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-h24c0h { flex: none; order: 4; width: 100%; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-dh4t5x, .framer-JJ7u7.framer-v-1u4v7h8 .framer-1i8r0s4 { flex-direction: column; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-1n7b4q8 { align-content: center; align-items: center; flex: none; width: 100%; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-1bz6mk5 { align-content: center; align-items: center; flex-direction: column; gap: 30px; justify-content: center; padding: 0px 0px 30px 0px; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-18bpavm { flex-direction: column; height: min-content; width: min-content; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-ycc8qt { align-content: center; align-items: center; align-self: unset; flex: none; gap: 40px; height: min-content; justify-content: center; width: 100%; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-3gzym9, .framer-JJ7u7.framer-v-1u4v7h8 .framer-1x28rth { align-content: center; align-items: center; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-8g1gbx, .framer-JJ7u7.framer-v-1xtaw4n .framer-8g1gbx { flex: none; width: 100%; }\",\".framer-JJ7u7.framer-v-1u4v7h8 .framer-1ldkfd1 { width: 100%; }\",\".framer-JJ7u7.framer-v-1xtaw4n.framer-13l5t09 { gap: 50px; padding: 30px; width: 800px; }\",\".framer-JJ7u7.framer-v-1xtaw4n .framer-5xcygj { flex-wrap: wrap; gap: unset; justify-content: space-between; }\",\".framer-JJ7u7.framer-v-1xtaw4n .framer-unmxcu { justify-content: flex-start; order: 0; padding: 0px 0px 40px 0px; }\",\".framer-JJ7u7.framer-v-1xtaw4n .framer-mulowc { justify-content: flex-start; min-width: 130px; order: 1; }\",\".framer-JJ7u7.framer-v-1xtaw4n .framer-h24c0h { flex: none; gap: 30px; order: 4; width: 344px; }\",\".framer-JJ7u7.framer-v-1xtaw4n .framer-1bz6mk5 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; justify-content: flex-start; }\",\".framer-JJ7u7.framer-v-1xtaw4n .framer-1i8r0s4 { flex-direction: column; padding: 30px; }\",\".framer-JJ7u7.framer-v-1xtaw4n .framer-ycc8qt { align-self: unset; flex: none; gap: 0px; height: min-content; justify-content: center; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1044.5\n * @framerIntrinsicWidth 1160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KciSYIwXv\":{\"layout\":[\"fixed\",\"auto\"]},\"dTLqt7Rd8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NMlqmasdm\":\"complex\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerOxeaMgbEx=withCSS(Component,css,\"framer-JJ7u7\");export default FramerOxeaMgbEx;FramerOxeaMgbEx.displayName=\"Footer\";FramerOxeaMgbEx.defaultProps={height:1044.5,width:1160};addPropertyControls(FramerOxeaMgbEx,{variant:{options:[\"XO3eSF4a7\",\"KciSYIwXv\",\"dTLqt7Rd8\"],optionTitles:[\"desktop\",\"mobile\",\"tablet\"],title:\"Variant\",type:ControlType.Enum},NMlqmasdm:{defaultValue:true,title:\"complex\",type:ControlType.Boolean}});addFonts(FramerOxeaMgbEx,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v8/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]},...BrazeInputFonts,...QRButtonFonts,...BannerLinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOxeaMgbEx\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"NMlqmasdm\\\":\\\"complex\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1160\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KciSYIwXv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dTLqt7Rd8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"1044.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OxeaMgbEx.map"],
  "mappings": "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",
  "names": ["API_URL", "BrazeInput", "props", "backgroundColor", "placeholder", "fontColor", "placeholderColor", "pageName", "checkboxText", "inputRef", "pe", "email", "setEmail", "ye", "error", "setError", "message", "setMessage", "loading", "setLoading", "checked", "setChecked", "handleChange", "fe", "trackLeads", "window", "u", "l", "event", "response", "styles", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "BannerLink", "props", "customStyle", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "hover", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Klq3tBmUs", "S51CmUhXY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap9k26hd", "args", "onMouseEnter1k853nw", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "RichText", "css", "Frameru14CXMT5j", "withCSS", "u14CXMT5j_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BrazeInputFonts", "getFonts", "BrazeInput", "QRButtonFonts", "u14CXMT5j_default", "MotionDivWithFX", "withFX", "motion", "BannerLinkFonts", "BannerLink", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition3", "animation3", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "complex", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "NMlqmasdm", "yTbs7SMYvQOi66matM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "S51CmUhXYtxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "ref1", "ref2", "LayoutGroup", "u", "Link", "SVG", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "l", "AnimatePresence", "Floating", "css", "FramerOxeaMgbEx", "withCSS", "OxeaMgbEx_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
