{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/001ZHTGHn9yALuE2ki9T/G45wUjNhfITTQgrWAM97/D2bCmCo1C.js", "ssg:https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/b7VYVaGCWWNyhqVsgsiv/Hubspot.js", "ssg:https://framerusercontent.com/modules/DzXZgW2TMCrdnoFzFS9t/kXqJLjIV8Cpqu714MAUZ/rnRl42VbO.js", "ssg:https://framerusercontent.com/modules/SgNOfD29sjGmw7Ushdm7/dvHBVcvFg34vKAOhtcoI/ZOKhZEd9B.js"],
  "sourcesContent": ["import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (bf2ee14)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-3M5kQ .framer-styles-preset-19xvfph:not(.rich-text-wrapper), .framer-3M5kQ .framer-styles-preset-19xvfph.rich-text-wrapper a { --framer-link-current-text-color: var(--token-44552ab7-bdd7-4d1b-abe7-c4ac6c9480ee, #232222); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-44552ab7-bdd7-4d1b-abe7-c4ac6c9480ee, #232222); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-78423fd7-4201-4dd7-84c6-e042f3096ca0, #121111); --framer-link-text-decoration: none; transition: color 0.5s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-3M5kQ\";\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\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{emptyStateStyle,stateParagraphStyle,stateTitleStyle}from\"https://framer.com/m/framer/integrations-styles.js@0.2.0\";// Poll for 5 minutes ...\nfunction poll(f,delay=200,count=5*60*5,i=0){if(i>count){console.error(\"poll max attempts\",f);return;}if(!f()){console.log(\"poll\",delay,count,i);setTimeout(()=>{poll(f,delay,count,i+1);},delay);}}function EmptyState({title,description}){return /*#__PURE__*/_jsxs(\"div\",{style:{...emptyStateStyle,width:\"100%\",height:\"100%\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:stateTitleStyle,children:title}),/*#__PURE__*/_jsx(\"p\",{style:stateParagraphStyle,children:description})]});}/**\n * HUBSPOT\n *\n * @framerIntrinsicWidth 480\n * @framerIntrinsicHeight 300\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function HubSpotForm({portalId,formId,advanced,region,id}){if(!portalId||!formId||!region){return /*#__PURE__*/_jsx(EmptyState,{title:\"Hubspot\",description:\"Set a portal ID and form in the Properties.\"});}// const ref = React.createRef<HTMLDivElement>()\nconst elementId=`hubspot_form_${id}`;const cleanup=()=>{const element=document.querySelector(`#${elementId}`);if(element)element.innerHTML=\"\";};React.useEffect(()=>{if(window.hbspt){handleScriptLoad();return cleanup;}const script=document.createElement(\"script\");script.src=`https://js-${region}.hsforms.net/forms/shell.js`;script.onload=handleScriptLoad();document.body.appendChild(script);return cleanup;},[portalId,formId,region]);const handleScriptLoad=()=>{console.log(\"Loading HubSpot form...\",portalId);poll(()=>{if(!window.hbspt){console.warn(`HubSpot could not be loaded: window.hbspt is missing`);return false;}if(!document.querySelector(`#${elementId}`)){console.warn(`HubSpot could not be loaded: element not found #${elementId}`);return false;}cleanup();window.hbspt.forms.create({region,portalId,formId,target:`#${elementId}`,formInstanceId:formId});return true;});};return /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\"},id:elementId});}addPropertyControls(HubSpotForm,{portalId:{title:\"Portal\",type:ControlType.String,placeholder:\"25276298\",// defaultValue: \"25276298\",\ndescription:\"Create a [Hubspot](https://www.hubspot.com/) account, add a new form and copy your portal ID. [Learn more\u2026](https://www.framer.com/plugins/hubspot/)\"},formId:{title:\"Form\",type:ControlType.String,placeholder:\"e7167571-4bc4-4c2c-bfdc-a0a8dbfd22f1\"},advanced:{title:\"Advanced\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},region:{title:\"Region\",type:ControlType.String,placeholder:\"eu1\",defaultValue:\"eu1\",hidden:({advanced})=>!advanced}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"HubSpotForm\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"300\",\"framerIntrinsicWidth\":\"480\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hubspot.map", "// Generated by Framer (2abc263)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import HubSpotForm from\"https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/b7VYVaGCWWNyhqVsgsiv/Hubspot.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pf1EFpMIKjxQpNb7O3G5/8GO8xN0hCi76mx3mchsk/AsDpiF0s3.js\";const HubSpotFormFonts=getFonts(HubSpotForm);const serializationHash=\"framer-pnqe9\";const variantClassNames={i9TM5hrc0:\"framer-v-lsv28b\"};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=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"i9TM5hrc0\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-lsv28b\",className,classNames),\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"i9TM5hrc0\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n93ct4\",\"data-styles-preset\":\"AsDpiF0s3\",children:\"Get updates on what\u2019s new at Stedi\"})}),className:\"framer-196q37v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q_tUx65bj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ue38p-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"V2Ld4Jao4-container\",nodeId:\"V2Ld4Jao4\",rendersWithMotion:true,scopeId:\"rnRl42VbO\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:true,formId:\"c1695c04-6183-4a2f-b662-33e02103ba74\",height:\"100%\",id:\"V2Ld4Jao4\",layoutId:\"V2Ld4Jao4\",portalId:\"43573889\",region:\"na1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pnqe9.framer-1nplb81, .framer-pnqe9 .framer-1nplb81 { display: block; }\",\".framer-pnqe9.framer-lsv28b { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 430px; }\",\".framer-pnqe9 .framer-196q37v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pnqe9 .framer-ue38p-container { flex: none; height: 44px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pnqe9.framer-lsv28b { gap: 0px; } .framer-pnqe9.framer-lsv28b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pnqe9.framer-lsv28b > :first-child { margin-top: 0px; } .framer-pnqe9.framer-lsv28b > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 78\n * @framerIntrinsicWidth 430\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerrnRl42VbO=withCSS(Component,css,\"framer-pnqe9\");export default FramerrnRl42VbO;FramerrnRl42VbO.displayName=\"Newsletter Signup Footer\";FramerrnRl42VbO.defaultProps={height:78,width:430};addFonts(FramerrnRl42VbO,[{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\"}]},...HubSpotFormFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrnRl42VbO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"78\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"430\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b8d5a97)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/bSG2fUXcc43766cbIglD/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/pf1EFpMIKjxQpNb7O3G5/8GO8xN0hCi76mx3mchsk/AsDpiF0s3.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/0p2mRoqPlAsnupkcX7kw/abbmV0gk72SoHmzi163t/BzGX0lkjO.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/001ZHTGHn9yALuE2ki9T/G45wUjNhfITTQgrWAM97/D2bCmCo1C.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/BnJmMBHd9ZME48Vqgav9/sCssfB8mWZDMzHQy09fU/slzedZAlp.js\";import NewsletterSignupFooter from\"https://framerusercontent.com/modules/DzXZgW2TMCrdnoFzFS9t/kXqJLjIV8Cpqu714MAUZ/rnRl42VbO.js\";import Logo from\"https://framerusercontent.com/modules/VGqqTcLW3ssO4lUTfzsP/4MWnkZRe7QxP5vxESatq/Tuz7PNPs7.js\";const LogoFonts=getFonts(Logo);const NewsletterSignupFooterFonts=getFonts(NewsletterSignupFooter);const TickerFonts=getFonts(Ticker);const EmbedFonts=getFonts(Embed);const cycleOrder=[\"EGzXTG2R6\",\"RJx8EaI8r\",\"lDkpW0hHj\"];const serializationHash=\"framer-sjpi0\";const variantClassNames={EGzXTG2R6:\"framer-v-1aq838h\",lDkpW0hHj:\"framer-v-f9uof5\",RJx8EaI8r:\"framer-v-2wmewt\"};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 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:\"EGzXTG2R6\",Mobile:\"lDkpW0hHj\",Tablet:\"RJx8EaI8r\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"EGzXTG2R6\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EGzXTG2R6\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"lDkpW0hHj\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"lDkpW0hHj\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1aq838h\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"EGzXTG2R6\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({lDkpW0hHj:{\"data-framer-name\":\"Mobile\"},RJx8EaI8r:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bktlb8\",layoutDependency:layoutDependency,layoutId:\"vzmKNmHRf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ozwvh\",layoutDependency:layoutDependency,layoutId:\"bjtwJ9L_O\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vnt262\",layoutDependency:layoutDependency,layoutId:\"gFJC4e2bR\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D8tLdUFrW\"},motionChild:true,nodeId:\"OfHNSGISZ\",scopeId:\"ZOKhZEd9B\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Stedi\",className:\"framer-seywi6 framer-1yoimxa\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"OfHNSGISZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"62px\",y:(componentViewport?.y||0)+120+(((componentViewport?.height||860)-240-1658)/2+0+0)+0+0+0+0+0+0,...addPropertyOverrides({lDkpW0hHj:{y:undefined},RJx8EaI8r:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iwf2xn-container\",layoutDependency:layoutDependency,layoutId:\"yQpEho7HZ-container\",nodeId:\"yQpEho7HZ\",rendersWithMotion:true,scopeId:\"ZOKhZEd9B\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"yQpEho7HZ\",layoutId:\"yQpEho7HZ\",style:{height:\"100%\",width:\"100%\"},variant:\"OvVOElsMk\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-od5yus\",layoutDependency:layoutDependency,layoutId:\"ms2SIzCeF\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gapn19\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"zP6M4aNyJ\",style:{backgroundColor:\"var(--token-7d25eff6-cd55-49ee-b1d0-090772007f87, rgba(165, 164, 164, 0.2))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bj4df9\",\"data-framer-name\":\"Content Left\",layoutDependency:layoutDependency,layoutId:\"pQGYJE06a\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qkyyhh\",\"data-framer-name\":\"Link List\",layoutDependency:layoutDependency,layoutId:\"PSGEjaD4I\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:\"tel:+13323785040\",motionChild:true,nodeId:\"p0nLF3qcm\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"(332) 378-5040\"})})})}),className:\"framer-ozorxm\",\"data-framer-name\":\"+1 332-378-5040\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p0nLF3qcm\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1n93ct4\",\"data-styles-preset\":\"AsDpiF0s3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-72295044-a008-4c84-b143-095ac7dcb2dc, rgb(118, 115, 114)))\"},children:[\"228 Park Ave S\",/*#__PURE__*/_jsx(motion.br,{}),\"Ste 58460\",/*#__PURE__*/_jsx(motion.br,{}),\"New York, NY 10003\"]})}),className:\"framer-1i5ctyk\",\"data-framer-name\":\"228 Park Ave S, PMB 58460, New York, NY 10003, USA\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zYOfTnMTb\",style:{\"--extracted-r6o4lv\":\"var(--token-72295044-a008-4c84-b143-095ac7dcb2dc, rgb(118, 115, 114))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-silr4b\",\"data-framer-name\":\"Social\",layoutDependency:layoutDependency,layoutId:\"njtvScM6j\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/stedi-inc/\",motionChild:true,nodeId:\"MVaaPxoSy\",openInNewTab:true,scopeId:\"ZOKhZEd9B\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Twitter\",className:\"framer-l271wm framer-1yoimxa\",\"data-framer-name\":\"LinkedIn\",layoutDependency:layoutDependency,layoutId:\"MVaaPxoSy\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-98uqc6\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MrbS3g9gI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 15.336 15.339 L 12.671 15.339 L 12.671 11.162 C 12.671 10.166 12.651 8.884 11.281 8.884 C 9.892 8.884 9.68 9.968 9.68 11.089 L 9.68 15.339 L 7.014 15.339 L 7.014 6.75 L 9.574 6.75 L 9.574 7.92 L 9.609 7.92 C 9.967 7.246 10.837 6.533 12.137 6.533 C 14.837 6.533 15.337 8.311 15.337 10.624 L 15.337 15.339 Z M 4.004 5.575 C 3.593 5.576 3.199 5.412 2.908 5.122 C 2.618 4.831 2.455 4.437 2.456 4.026 C 2.457 3.171 3.15 2.478 4.005 2.479 C 4.86 2.48 5.553 3.173 5.552 4.028 C 5.551 4.883 4.858 5.576 4.003 5.575 Z M 5.34 15.339 L 2.667 15.339 L 2.667 6.75 L 5.34 6.75 Z M 16.67 0 L 1.33 0 C 0.594 0 0 0.58 0 1.297 L 0 16.703 C 0 17.42 0.594 18 1.328 18 L 16.667 18 C 17.4 18 18 17.42 18 16.703 L 18 1.297 C 18 0.581 17.4 0 16.666 0 L 16.669 0 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:9657150742,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/stedi\",motionChild:true,nodeId:\"KlVvpp5k1\",scopeId:\"ZOKhZEd9B\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Twitter\",className:\"framer-1m4q7xj framer-1yoimxa\",\"data-framer-name\":\"X\",layoutDependency:layoutDependency,layoutId:\"KlVvpp5k1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uveyzz\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ObCEysCbC\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 6 1.5 L 0.75 1.5 L 6.946 9.761 L 1.087 16.5 L 3.075 16.5 L 7.866 10.988 L 12 16.5 L 17.25 16.5 L 10.794 7.892 L 16.35 1.5 L 14.363 1.5 L 9.873 6.664 Z M 12.75 15 L 3.75 3 L 5.25 3 L 14.25 15 Z\" fill=\"rgb(67,67,71)\"></path></svg>',svgContentId:11136314977,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://github.com/stedi\",motionChild:true,nodeId:\"Gt7HPdlxI\",scopeId:\"ZOKhZEd9B\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Github\",className:\"framer-5pmg4q framer-1yoimxa\",\"data-framer-name\":\"Github\",layoutDependency:layoutDependency,layoutId:\"Gt7HPdlxI\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pg6ndz\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GALEd1kV2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 17\"><path d=\"M 9 1.5 C 4.856 1.5 1.5 4.856 1.5 9 C 1.499 10.575 1.994 12.109 2.915 13.386 C 3.835 14.664 5.135 15.619 6.628 16.116 C 7.003 16.181 7.144 15.956 7.144 15.759 C 7.144 15.581 7.134 14.991 7.134 14.363 C 5.25 14.71 4.763 13.903 4.612 13.481 C 4.528 13.265 4.162 12.6 3.844 12.421 C 3.581 12.281 3.206 11.934 3.834 11.925 C 4.425 11.915 4.846 12.469 4.987 12.694 C 5.662 13.828 6.741 13.509 7.171 13.313 C 7.237 12.825 7.434 12.497 7.65 12.31 C 5.981 12.122 4.237 11.475 4.237 8.606 C 4.237 7.79 4.528 7.116 5.006 6.59 C 4.931 6.403 4.669 5.634 5.081 4.603 C 5.081 4.603 5.709 4.406 7.144 5.372 C 7.754 5.203 8.385 5.118 9.019 5.119 C 9.656 5.119 10.294 5.203 10.894 5.372 C 12.328 4.396 12.956 4.604 12.956 4.604 C 13.369 5.635 13.106 6.404 13.031 6.591 C 13.509 7.116 13.8 7.781 13.8 8.606 C 13.8 11.485 12.047 12.122 10.379 12.31 C 10.65 12.544 10.885 12.994 10.885 13.697 C 10.885 14.7 10.875 15.506 10.875 15.76 C 10.875 15.956 11.016 16.19 11.391 16.115 C 12.88 15.613 14.173 14.656 15.09 13.379 C 16.006 12.103 16.5 10.571 16.5 9 C 16.5 4.856 13.144 1.5 9 1.5 Z\" fill=\"rgb(67,67,71)\"></path></svg>',svgContentId:11743796182,withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16xh39i\",\"data-framer-name\":\"Content Right\",layoutDependency:layoutDependency,layoutId:\"PFnAOfM7G\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-upvw3q\",\"data-framer-name\":\"links\",layoutDependency:layoutDependency,layoutId:\"JZIqij5ZM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s75mqw\",\"data-framer-name\":\"link section\",layoutDependency:layoutDependency,layoutId:\"ooFjVZcf9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dxycrh\",layoutDependency:layoutDependency,layoutId:\"X77K98LRw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n93ct4\",\"data-styles-preset\":\"AsDpiF0s3\",children:\"Product\"})}),className:\"framer-14ua9d6\",\"data-framer-name\":\"Product\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mZtqD9oyV\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rq74uv\",\"data-framer-name\":\"link list\",layoutDependency:layoutDependency,layoutId:\"TNy0EwCHM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"POPELHgHB\"},motionChild:true,nodeId:\"GVwkEcZBA\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Pricing\"})})})}),className:\"framer-14y7ekc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GVwkEcZBA\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WzxqNol7C\"},motionChild:true,nodeId:\"ywxMuyuZD\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Claims\"})})})}),className:\"framer-1y58w5x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ywxMuyuZD\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"X0klR9jWe\"},motionChild:true,nodeId:\"AwjsCdbQs\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Eligibility checks\"})})})}),className:\"framer-1vte8t3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AwjsCdbQs\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A2X2Y12QS\"},motionChild:true,nodeId:\"SWmivgipV\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Payer Network\"})})})}),className:\"framer-xx9kuf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SWmivgipV\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"k7tIZ0Ou8\"},motionChild:true,nodeId:\"kK140JISr\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Transaction enrollment\"})})})}),className:\"framer-dmn856\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kK140JISr\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"G_tnjPiKA\"},motionChild:true,nodeId:\"TKpwzJUyf\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"EDI platform\"})})})}),className:\"framer-1q3s8ux\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TKpwzJUyf\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10od08w\",\"data-framer-name\":\"link section\",layoutDependency:layoutDependency,layoutId:\"gaX7hKjxX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ege0w0\",layoutDependency:layoutDependency,layoutId:\"YfrnClr8f\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n93ct4\",\"data-styles-preset\":\"AsDpiF0s3\",children:\"Developers\"})}),className:\"framer-1e2ljod\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YOxmJ_kQh\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kv5c4k\",\"data-framer-name\":\"link list\",layoutDependency:layoutDependency,layoutId:\"CRF33BReQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.stedi.com/docs\",motionChild:true,nodeId:\"RQKql7SYi\",openInNewTab:true,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Docs\"})})})}),className:\"framer-awp16p\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RQKql7SYi\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.stedi.com/docs/api-reference/index\",motionChild:true,nodeId:\"irPRLhl31\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"API reference\"})})})}),className:\"framer-24onrd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"irPRLhl31\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.stedi.com/changelog\",motionChild:true,nodeId:\"UiNimgvbu\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Changelog\"})})})}),className:\"framer-wskqmw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UiNimgvbu\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:\"https://stedi.com/create-sandbox\",motionChild:true,nodeId:\"kwzVKXvxm\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Sandbox\"})})})}),className:\"framer-1xkpyjk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kwzVKXvxm\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y9ccy3\",\"data-framer-name\":\"link section\",layoutDependency:layoutDependency,layoutId:\"Vq3_cTSOh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10gcvci\",layoutDependency:layoutDependency,layoutId:\"miTd8ms4P\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n93ct4\",\"data-styles-preset\":\"AsDpiF0s3\",children:\"Resources\"})}),className:\"framer-891wk7\",\"data-framer-name\":\"Resources\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ETXmVBFB2\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mexlxd\",\"data-framer-name\":\"link list\",layoutDependency:layoutDependency,layoutId:\"Evaiw1WEK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.stedi.com/healthcare/network\",motionChild:true,nodeId:\"LhIuEnLbh\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Payer Network\"})})})}),className:\"framer-1xcyhu0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LhIuEnLbh\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d8kuYcrTn\"},motionChild:true,nodeId:\"n_Tsru_xx\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Platform Partners\"})})})}),className:\"framer-j4o4uz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"n_Tsru_xx\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.stedi.com/edi/network/hipaa\",motionChild:true,nodeId:\"Ow4bJFmFt\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"HIPAA guides\"})})})}),className:\"framer-xbfp0u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ow4bJFmFt\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.stedi.com/edi\",motionChild:true,nodeId:\"p_gDYoG0s\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"EDI reference\"})})})}),className:\"framer-1l0be2t\",\"data-framer-name\":\"EDI Reference\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p_gDYoG0s\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.stedi.com/edi/inspector\",motionChild:true,nodeId:\"H6M6kI8KG\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"EDI inspector\"})})})}),className:\"framer-5tjlmk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"H6M6kI8KG\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.stedi.com/edi/network\",motionChild:true,nodeId:\"WiM33OWw5\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"EDI network\"})})})}),className:\"framer-c9ectw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WiM33OWw5\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dnngsz\",\"data-framer-name\":\"link section\",layoutDependency:layoutDependency,layoutId:\"xu_JHCdzU\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jfmqs0\",layoutDependency:layoutDependency,layoutId:\"zojNKQ3tm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n93ct4\",\"data-styles-preset\":\"AsDpiF0s3\",children:\"Company\"})}),className:\"framer-170054w\",\"data-framer-name\":\"Company\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CWcTZsItR\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dt4q80\",\"data-framer-name\":\"link list\",layoutDependency:layoutDependency,layoutId:\"xrqhyAwXU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tMSXWiEqZ\"},motionChild:true,nodeId:\"JTgJ8zd12\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Blog\"})})})}),className:\"framer-5xnbrw\",\"data-framer-name\":\"Blog\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JTgJ8zd12\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dRYimQF8v\"},motionChild:true,nodeId:\"gSS82v9ll\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Careers\"})})})}),className:\"framer-nu19mi\",\"data-framer-name\":\"Careers\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gSS82v9ll\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pPEri2QN0\"},motionChild:true,nodeId:\"wNz8EuRz2\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Customers\"})})})}),className:\"framer-1bw5agv\",\"data-framer-name\":\"Changelog\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wNz8EuRz2\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ybgiof\",\"data-styles-preset\":\"slzedZAlp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A1AesRCmL\"},motionChild:true,nodeId:\"IpRQGnIQF\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Contact\"})})})}),className:\"framer-8ql4yh\",\"data-framer-name\":\"Contact\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IpRQGnIQF\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i2rqyu\",\"data-framer-name\":\"Form\",layoutDependency:layoutDependency,layoutId:\"dWvKho4PS\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:`min(min(${componentViewport?.width||\"100vw\"} - 180px, 1140px), 430px)`,y:(componentViewport?.y||0)+120+(((componentViewport?.height||860)-240-1658)/2+0+0)+0+1038+0+0,...addPropertyOverrides({lDkpW0hHj:{width:`min(min(${componentViewport?.width||\"100vw\"} - 60px, 1140px), 430px)`,y:undefined},RJx8EaI8r:{width:`min(min(${componentViewport?.width||\"100vw\"} - 160px, 1140px), 430px)`,y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5nvdt6-container\",layoutDependency:layoutDependency,layoutId:\"KsDaenFKa-container\",nodeId:\"KsDaenFKa\",rendersWithMotion:true,scopeId:\"ZOKhZEd9B\",children:/*#__PURE__*/_jsx(NewsletterSignupFooter,{height:\"100%\",id:\"KsDaenFKa\",layoutId:\"KsDaenFKa\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-43zzoa\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"n7Ib6aE9T\",style:{backgroundColor:\"var(--token-7d25eff6-cd55-49ee-b1d0-090772007f87, rgba(165, 164, 164, 0.2))\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c6dttp\",layoutDependency:layoutDependency,layoutId:\"v0JStq7S7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cyeraa\",\"data-framer-name\":\"Content Left\",layoutDependency:layoutDependency,layoutId:\"Jk1blCPxS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1815x69\",\"data-framer-name\":\"Backed By\",layoutDependency:layoutDependency,layoutId:\"RypGkzHdP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n93ct4\",\"data-styles-preset\":\"AsDpiF0s3\",children:\"Backed by\"})}),className:\"framer-nt9iwq\",\"data-framer-name\":\"Backed by\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WyMvz8Uci\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13l7t8u-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HrF28aIEb-container\",nodeId:\"HrF28aIEb\",rendersWithMotion:true,scopeId:\"ZOKhZEd9B\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"HrF28aIEb\",layoutId:\"HrF28aIEb\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jyxcp3\",\"data-framer-name\":\"Logos\",layoutDependency:layoutDependency,layoutId:\"q6Jporimj\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-sphr38\",layoutDependency:layoutDependency,layoutId:\"BevETyHXX\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yqys8\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:13,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"OkAAujPhX\",svg:'<svg width=\"112\" height=\"13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.016.702c-.812-.364-1.76-.546-2.845-.546-1.087 0-2.038.182-2.855.546-.817.364-1.498.843-2.04 1.438a5.899 5.899 0 0 0-1.218 2.037 6.998 6.998 0 0 0 0 4.679 5.902 5.902 0 0 0 1.218 2.036c.543.595 1.223 1.074 2.04 1.439.817.363 1.769.545 2.855.545 1.085 0 2.033-.182 2.845-.545.812-.365 1.486-.844 2.023-1.439a6.095 6.095 0 0 0 1.218-2.036 6.881 6.881 0 0 0 0-4.68 6.099 6.099 0 0 0-1.218-2.036c-.537-.595-1.211-1.074-2.023-1.438Zm-7.423 5.816c0-3.273 2.046-5.927 4.57-5.927 2.525 0 4.571 2.654 4.571 5.927 0 3.273-2.046 5.926-4.571 5.926s-4.57-2.653-4.57-5.926ZM3.655.45h1.783l4.758 12.132H8.412L7.048 9.106H1.884L.52 12.583H0L4.207 1.859 3.655.451Zm.812 2.07L2.079 8.61h4.775L4.466 2.522ZM52.916.452h-1.614v12.132h1.614V.45Zm24.989 0h-1.614v12.132h1.614V.45ZM59.418.884V.45H69.79v.433h-4.372v11.699h-1.613V.883h-4.387ZM26.474 4.29a5.869 5.869 0 0 0-1.084-1.941A5.311 5.311 0 0 0 23.565.97c-.734-.347-1.588-.52-2.563-.52h-4.23v12.132h4.23c.963 0 1.809-.173 2.538-.52a5.425 5.425 0 0 0 1.825-1.378 5.912 5.912 0 0 0 1.1-1.941 6.986 6.986 0 0 0 .009-4.454Zm-5.522 7.86h-2.395V.884h2.395c2.274 0 4.118 2.522 4.118 5.633 0 3.11-1.844 5.633-4.118 5.633Zm21.653-9.801a5.86 5.86 0 0 1 1.084 1.94 7 7 0 0 1 .363 2.228c0 .762-.124 1.505-.37 2.227a5.913 5.913 0 0 1-1.101 1.941 5.426 5.426 0 0 1-1.825 1.378c-.729.347-1.575.52-2.538.52h-4.229V.45h4.229c.975 0 1.829.173 2.563.52a5.31 5.31 0 0 1 1.824 1.378Zm-6.832 9.8h2.395c2.274 0 4.117-2.521 4.117-5.632 0-3.111-1.843-5.633-4.117-5.633h-2.395V12.15ZM111.67.452v12.132h-.591l-7.159-9.987v9.987h-.493V1.908L102.383.45h1.776l7.018 9.79V.452h.494Z\" fill=\"#7C7C83\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5y7okr\",layoutDependency:layoutDependency,layoutId:\"PEHigUN3Z\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tdujsc\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:33,intrinsicWidth:103,layoutDependency:layoutDependency,layoutId:\"XFXGc3CfG\",svg:'<svg width=\"103\" height=\"33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.155.387V15.87h-2.58V.387h2.58ZM5.495 3.294H3.313V7.07h2.412c1.764 0 2.643-.754 2.643-1.866 0-1.279-.879-1.909-2.873-1.909Zm.523 12.577H.671V1.03h5.788c2.244 0 4.554 1.027 4.554 3.732 0 1.677-1.053 2.788-2.58 3.245v.044c1.867.212 3.206 1.678 3.206 3.586 0 3.23-2.81 4.233-5.62 4.233Zm-.167-6.54H3.313v4.277h2.432C7.108 13.608 9 13.376 9 11.43c0-1.553-1.01-2.098-3.15-2.098Zm.204 15.223h-3.59v-4.512h3.59c.378 0 .756.04 1.096.079.34.04.661.14.926.298.264.16.472.398.623.676.151.298.227.696.227 1.193 0 .756-.227 1.332-.68 1.71-.454.377-1.172.556-2.192.556Zm-.491-6.103H.671v14.194h6.518c.66 0 1.247-.1 1.757-.338.51-.239.944-.537 1.284-.915a4.14 4.14 0 0 0 .794-1.312 4.52 4.52 0 0 0 .264-1.51c0-.875-.226-1.61-.66-2.227-.454-.596-1.078-.994-1.909-1.192v-.04c.642-.259 1.134-.657 1.474-1.213.34-.556.529-1.213.529-1.968 0-.716-.17-1.312-.473-1.809a3.717 3.717 0 0 0-1.114-1.153 3.232 3.232 0 0 0-.737-.298c-.284-.06-.586-.1-.907-.14a8.616 8.616 0 0 0-1.001-.059c-.178 0-.345-.005-.505-.01-.146-.005-.286-.01-.421-.01Zm1.398 12.604H2.466v-4.91h4.1c.377 0 .736.04 1.095.119.34.079.661.198.926.378.264.178.49.417.661.715.151.318.246.695.246 1.153 0 .795-.227 1.432-.68 1.868-.454.458-1.059.677-1.852.677ZM22.918 18.45h-9.314v14.194h9.37v-1.59H15.4v-4.91h7.009v-1.591h-7.01v-4.512h7.52v-1.59Zm5.296 1.59h-4.496v-1.59h10.787v1.59h-4.496v12.604h-1.795V20.042Zm10.7.12 2.249 6.62h-4.572l2.286-6.62h.038Zm1.002-1.71h-1.984L32.68 32.645h1.833l1.511-4.274h5.706l1.473 4.274h1.984l-5.27-14.194ZM23.574 7.762c-1.849 0-2.963 1.412-2.963 2.949 0 1.536 1.114 2.948 2.963 2.948s2.96-1.412 2.96-2.948-1.111-2.949-2.96-2.949Zm0 8.109c-3.049 0-5.484-2.067-5.484-5.16s2.436-5.163 5.484-5.163c3.045 0 5.484 2.07 5.484 5.163 0 3.093-2.439 5.16-5.484 5.16Zm9.295-5.16c0-1.537 1.114-2.949 2.963-2.949s2.96 1.413 2.96 2.949c0 1.536-1.111 2.948-2.96 2.948s-2.963-1.412-2.963-2.948Zm-2.52 0c0 3.093 2.435 5.16 5.483 5.16 3.045 0 5.484-2.067 5.484-5.16 0-3.094-2.439-5.163-5.484-5.163-3.048 0-5.484 2.07-5.484 5.163Zm14.73-4.91h-2.473v10.07h2.602v-5.497c0-1.344.674-2.557 2.385-2.557 1.258 0 1.779.814 1.779 2.055v5.998h2.598v-5.455c0-1.298.61-2.598 2.235-2.598 1.54 0 1.928 1.091 1.928 2.348v5.706h2.602V9.872c0-2.412-.976-4.324-3.752-4.324-1.557 0-2.663.59-3.421 1.868-.54-1.26-1.65-1.868-3.255-1.868-1.735 0-2.731.884-3.187 1.828h-.041V5.801Zm24.019 4.775c0 1.578-1.12 3.026-2.986 3.026-1.864 0-2.986-1.448-2.986-3.026 0-1.577 1.122-3.03 2.986-3.03 1.867 0 2.986 1.453 2.986 3.03Zm-8.426 5.044h2.414v-1.512h.04c.744 1.215 2.076 1.763 3.497 1.763 3.13 0 5.016-2.312 5.016-5.296 0-2.984-2.013-5.298-4.913-5.298-1.903 0-2.923.881-3.451 1.537h-.063V.387H60.67V15.62ZM78.11 7.391c-1.506 0-2.442.92-2.632 2.336h5.225c-.024-1.434-1-2.336-2.593-2.336Zm5.141 3.505v.675h-7.773c.166 1.454 1.316 2.336 2.739 2.336 1.273 0 2.102-.575 2.738-1.329l1.827 1.329c-1.187 1.41-2.699 1.964-4.308 1.964-3.086 0-5.545-2.067-5.545-5.16s2.46-5.163 5.544-5.163c2.846 0 4.778 1.925 4.778 5.348ZM85.188 5.8h2.522v1.595h.042c.547-1.154 1.658-1.848 2.983-1.848.317 0 .61.064.904.15V8.13c-.42-.104-.821-.188-1.22-.188-2.374 0-2.71 1.994-2.71 2.54v5.389h-2.522V5.8Zm15.004 5.017c0-1.76-1.166-2.982-3.006-2.982-1.78 0-3.007 1.222-3.007 3.022 0 1.608 1.272 2.94 2.987 2.94 1.883 0 3.026-1.29 3.026-2.98Zm0-3.491V5.803h2.414v9.243c0 3.657-1.776 5.986-5.736 5.986-1.887 0-3.604-.399-5.04-1.673l1.522-2.077c1.017.936 2.077 1.467 3.495 1.467 2.458 0 3.216-1.397 3.216-3.404v-.742h-.037c-.744.994-2.056 1.478-3.328 1.478-3.046 0-5.06-2.327-5.06-5.2 0-3.006 1.884-5.333 5.017-5.333 1.418 0 2.753.55 3.497 1.779h.04Z\" fill=\"#7C7C83\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lvyxvu\",layoutDependency:layoutDependency,layoutId:\"AUfkHIU07\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fr00ix\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:42,layoutDependency:layoutDependency,layoutId:\"zxvvkpofE\",svg:'<svg width=\"42\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.012 0v9.863h2.296V5.888h3.008l.408-1.842H2.308V1.842h3.86L6.587 0H.011Zm16.532 2.903-.432 2.017c-.128-.07-.431-.175-.827-.175a1.38 1.38 0 0 0-1.061.513c-.175.233-.362.688-.362 1.469v3.125h-2.285v-7.03h2.285l-.011 1.002h.023c.396-.77.99-1.13 1.737-1.13.56 0 .933.209.933.209Zm5.293 6.494c.513-.408.828-.98.828-1.714 0-.746-.339-1.2-.572-1.422a2.543 2.543 0 0 0-.91-.525 10.248 10.248 0 0 0-1.002-.326c-.49-.14-1.026-.315-1.026-.688 0-.373.303-.513.84-.513.57 0 1.527.454 1.958.827l.35-1.632c-.455-.315-1.236-.723-2.495-.723-1.469 0-2.67.84-2.67 2.216 0 1.259.875 1.702 1.201 1.842.327.14.723.256 1.003.326.256.082 1.282.315 1.282.77 0 .454-.396.594-.967.594-.572 0-1.516-.373-2.087-.863l-.863 1.353c.804.758 1.912 1.084 2.973 1.084.944.012 1.644-.198 2.157-.606Zm6.179-4.838H26.64v2.53c0 .594.082.746.198.874.105.117.245.175.548.175.362 0 .688-.128.688-.128l.117 1.783c-.175.047-.805.234-1.633.234-.816 0-1.352-.245-1.713-.653-.362-.408-.502-1.003-.502-2.076v-2.74h-1.002V2.834h1.002V.921h2.297v1.912h1.749l-.373 1.726ZM5.305 17.768c.723-.233 1.923-.956 1.923-2.833 0-.98-.431-1.772-1.084-2.262-.641-.466-1.504-.7-2.6-.7H0v9.852h2.308v-3.766h.735l2.075 3.766H7.8l-2.495-4.057Zm-.898-1.737c-.291.21-.653.268-1.19.268h-.909v-2.53h.91c.524 0 .898.046 1.189.256.303.21.501.502.501 1.003 0 .513-.198.781-.501 1.003Zm7.496-1.364c-2.226 0-3.917 1.399-3.917 3.672 0 2.274 1.69 3.661 3.917 3.661s3.894-1.387 3.894-3.66c0-2.262-1.667-3.673-3.894-3.673Zm0 5.456c-1.014 0-1.597-.781-1.597-1.83 0-1.038.583-1.83 1.598-1.83 1.002 0 1.597.78 1.597 1.83 0 1.049-.595 1.83-1.598 1.83Zm11.823 1.726h-2.204l-.012-.805c-.303.431-1.037.956-2.052.956-1.014 0-1.655-.361-2.017-.828-.338-.49-.512-1.096-.512-2.11v-4.255h2.285v3.94c0 .816.233 1.376 1.037 1.376.816 0 1.19-.641 1.19-1.574v-3.742h2.285v7.042Zm8.475-.001h-2.285v-3.672c0-.933-.14-1.632-1.084-1.632-.991 0-1.26.804-1.26 1.818v3.486h-2.284v-7.041h2.296l-.011 1.014h.023c.385-.63 1.026-1.143 2.04-1.143 2.04 0 2.565 1.318 2.565 3.02v4.15Zm6.692-9.863v3.673c-.233-.338-.944-.991-2.226-.991-2.04 0-3.323 1.585-3.323 3.66 0 2.076 1.282 3.673 3.323 3.673.944 0 1.783-.361 2.308-1.073l.047-.011-.012.932h2.169v-9.851h-2.286v-.012Zm-1.562 8.138c-.99 0-1.655-.746-1.655-1.83 0-1.085.676-1.83 1.655-1.83.991 0 1.644.745 1.644 1.83-.012 1.095-.665 1.83-1.644 1.83ZM7.31 2.821l-.396 1.842h.967v5.2h2.285V2.821H7.31Z\" fill=\"#7C7C83\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-37221f\",layoutDependency:layoutDependency,layoutId:\"yvfdSq0o9\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-usor5m\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:68,layoutDependency:layoutDependency,layoutId:\"mHtbbky3a\",svg:'<svg width=\"68\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m36.33 4.383-4.672 1.003V1.6l4.671-.984v3.767Zm9.714 2.097c-1.823 0-2.996.854-3.647 1.448l-.242-1.15H38.06v21.638l4.653-.984.019-5.252c.67.483 1.656 1.17 3.294 1.17 3.33 0 6.364-2.673 6.364-8.556-.018-5.382-3.089-8.314-6.346-8.314Zm-1.116 12.787c-1.098 0-1.75-.39-2.196-.873l-.019-6.884c.484-.539 1.154-.91 2.215-.91 1.693 0 2.866 1.893 2.866 4.324 0 2.487-1.154 4.343-2.866 4.343Zm22.128-4.287c0-4.751-2.308-8.5-6.72-8.5-4.428 0-7.108 3.75-7.108 8.463 0 5.585 3.164 8.406 7.705 8.406 2.214 0 3.89-.501 5.155-1.206V18.43c-1.266.631-2.717 1.021-4.56 1.021-1.805 0-3.405-.63-3.61-2.82h9.1c0-.103.007-.335.014-.602l.001-.001v-.008c.01-.362.023-.787.023-1.041Zm-9.194-1.763c0-2.097 1.284-2.97 2.457-2.97 1.135 0 2.344.873 2.344 2.97h-4.8ZM36.33 6.796h-4.671v16.238h4.671V6.796Zm-9.975 0 .298 1.373c1.098-2.004 3.276-1.596 3.871-1.373v4.268c-.577-.204-2.438-.464-3.536.965v11.005h-4.652V6.796h4.02Zm-9.006-4.027-4.541.965-.019 14.864c0 2.747 2.066 4.77 4.82 4.77 1.526 0 2.643-.279 3.257-.612v-3.768c-.595.241-3.536 1.095-3.536-1.651v-6.588h3.536V6.796H17.33l.019-4.027Zm-11 7.738c-.986 0-1.582.279-1.582 1.002 0 .79 1.025 1.138 2.297 1.57 2.072.703 4.8 1.628 4.812 5.055 0 3.322-2.661 5.234-6.532 5.234-1.6 0-3.35-.316-5.08-1.058v-4.417c1.563.854 3.535 1.485 5.08 1.485 1.042 0 1.787-.279 1.787-1.132 0-.875-1.111-1.275-2.453-1.759-2.043-.735-4.62-1.663-4.62-4.755 0-3.284 2.513-5.252 6.29-5.252 1.546 0 3.072.242 4.616.854v4.361c-1.414-.76-3.2-1.188-4.615-1.188Z\" fill=\"#7C7C83\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pb9ymk\",layoutDependency:layoutDependency,layoutId:\"spKgaVye5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-txogaf\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:50,intrinsicWidth:50,layoutDependency:layoutDependency,layoutId:\"E30utawhp\",svg:'<svg width=\"50\" height=\"50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M.056 0h49.032v49.032H.056V0Zm23.093 25.818h-2.648c.09 2.103 1.483 3.253 4.192 3.268 2.497 0 3.92-1.452 3.92-3.238 0-2.119-1.272-2.754-3.738-3.027-1.211-.166-1.514-.408-1.514-.953 0-.5.394-.832 1.135-.832.772 0 1.166.348 1.256 1.044h2.588c-.181-2.058-1.498-3.042-3.844-3.042-2.33 0-3.768 1.286-3.768 3.042 0 1.952.923 2.77 3.677 3.102 1.18.182 1.544.333 1.544.938 0 .575-.454.969-1.256.969-1.165 0-1.468-.575-1.544-1.271Zm8.687-6.644h-3.012l3.223 9.73h3.178l3.178-9.73h-2.618l-1.982 6.84-1.967-6.84Zm-21.111 5.781v-5.781h2.8v5.66c0 1.377.332 2.043 1.528 2.043 1.15 0 1.528-.62 1.528-2.088v-5.63h2.815v5.75c0 2.83-1.665 4.147-4.343 4.147-2.754.015-4.328-1.377-4.328-4.101Z\" fill=\"#7C7C83\"/></svg>',withExternalLayout:true})})]})],speed:20,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xjcoi\",layoutDependency:layoutDependency,layoutId:\"hZ08p_Hsx\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oeq96z\",layoutDependency:layoutDependency,layoutId:\"a6wMWNsje\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-121wfsu\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:13,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"l6IlS01WX\",svg:'<svg width=\"112\" height=\"13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.016.702c-.812-.364-1.76-.546-2.845-.546-1.087 0-2.038.182-2.855.546-.817.364-1.498.843-2.04 1.438a5.899 5.899 0 0 0-1.218 2.037 6.998 6.998 0 0 0 0 4.679 5.902 5.902 0 0 0 1.218 2.036c.543.595 1.223 1.074 2.04 1.439.817.363 1.769.545 2.855.545 1.085 0 2.033-.182 2.845-.545.812-.365 1.486-.844 2.023-1.439a6.095 6.095 0 0 0 1.218-2.036 6.881 6.881 0 0 0 0-4.68 6.099 6.099 0 0 0-1.218-2.036c-.537-.595-1.211-1.074-2.023-1.438Zm-7.423 5.816c0-3.273 2.046-5.927 4.57-5.927 2.525 0 4.571 2.654 4.571 5.927 0 3.273-2.046 5.926-4.571 5.926s-4.57-2.653-4.57-5.926ZM3.655.45h1.783l4.758 12.132H8.412L7.048 9.106H1.884L.52 12.583H0L4.207 1.859 3.655.451Zm.812 2.07L2.079 8.61h4.775L4.466 2.522ZM52.916.452h-1.614v12.132h1.614V.45Zm24.989 0h-1.614v12.132h1.614V.45ZM59.418.884V.45H69.79v.433h-4.372v11.699h-1.613V.883h-4.387ZM26.474 4.29a5.869 5.869 0 0 0-1.084-1.941A5.311 5.311 0 0 0 23.565.97c-.734-.347-1.588-.52-2.563-.52h-4.23v12.132h4.23c.963 0 1.809-.173 2.538-.52a5.425 5.425 0 0 0 1.825-1.378 5.912 5.912 0 0 0 1.1-1.941 6.986 6.986 0 0 0 .009-4.454Zm-5.522 7.86h-2.395V.884h2.395c2.274 0 4.118 2.522 4.118 5.633 0 3.11-1.844 5.633-4.118 5.633Zm21.653-9.801a5.86 5.86 0 0 1 1.084 1.94 7 7 0 0 1 .363 2.228c0 .762-.124 1.505-.37 2.227a5.913 5.913 0 0 1-1.101 1.941 5.426 5.426 0 0 1-1.825 1.378c-.729.347-1.575.52-2.538.52h-4.229V.45h4.229c.975 0 1.829.173 2.563.52a5.31 5.31 0 0 1 1.824 1.378Zm-6.832 9.8h2.395c2.274 0 4.117-2.521 4.117-5.632 0-3.111-1.843-5.633-4.117-5.633h-2.395V12.15ZM111.67.452v12.132h-.591l-7.159-9.987v9.987h-.493V1.908L102.383.45h1.776l7.018 9.79V.452h.494Z\" fill=\"#7C7C83\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v954cf\",layoutDependency:layoutDependency,layoutId:\"BObs_dAxq\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bso4qe\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:33,intrinsicWidth:103,layoutDependency:layoutDependency,layoutId:\"NxMnrNjNk\",svg:'<svg width=\"103\" height=\"33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.155.387V15.87h-2.58V.387h2.58ZM5.495 3.294H3.313V7.07h2.412c1.764 0 2.643-.754 2.643-1.866 0-1.279-.879-1.909-2.873-1.909Zm.523 12.577H.671V1.03h5.788c2.244 0 4.554 1.027 4.554 3.732 0 1.677-1.053 2.788-2.58 3.245v.044c1.867.212 3.206 1.678 3.206 3.586 0 3.23-2.81 4.233-5.62 4.233Zm-.167-6.54H3.313v4.277h2.432C7.108 13.608 9 13.376 9 11.43c0-1.553-1.01-2.098-3.15-2.098Zm.204 15.223h-3.59v-4.512h3.59c.378 0 .756.04 1.096.079.34.04.661.14.926.298.264.16.472.398.623.676.151.298.227.696.227 1.193 0 .756-.227 1.332-.68 1.71-.454.377-1.172.556-2.192.556Zm-.491-6.103H.671v14.194h6.518c.66 0 1.247-.1 1.757-.338.51-.239.944-.537 1.284-.915a4.14 4.14 0 0 0 .794-1.312 4.52 4.52 0 0 0 .264-1.51c0-.875-.226-1.61-.66-2.227-.454-.596-1.078-.994-1.909-1.192v-.04c.642-.259 1.134-.657 1.474-1.213.34-.556.529-1.213.529-1.968 0-.716-.17-1.312-.473-1.809a3.717 3.717 0 0 0-1.114-1.153 3.232 3.232 0 0 0-.737-.298c-.284-.06-.586-.1-.907-.14a8.616 8.616 0 0 0-1.001-.059c-.178 0-.345-.005-.505-.01-.146-.005-.286-.01-.421-.01Zm1.398 12.604H2.466v-4.91h4.1c.377 0 .736.04 1.095.119.34.079.661.198.926.378.264.178.49.417.661.715.151.318.246.695.246 1.153 0 .795-.227 1.432-.68 1.868-.454.458-1.059.677-1.852.677ZM22.918 18.45h-9.314v14.194h9.37v-1.59H15.4v-4.91h7.009v-1.591h-7.01v-4.512h7.52v-1.59Zm5.296 1.59h-4.496v-1.59h10.787v1.59h-4.496v12.604h-1.795V20.042Zm10.7.12 2.249 6.62h-4.572l2.286-6.62h.038Zm1.002-1.71h-1.984L32.68 32.645h1.833l1.511-4.274h5.706l1.473 4.274h1.984l-5.27-14.194ZM23.574 7.762c-1.849 0-2.963 1.412-2.963 2.949 0 1.536 1.114 2.948 2.963 2.948s2.96-1.412 2.96-2.948-1.111-2.949-2.96-2.949Zm0 8.109c-3.049 0-5.484-2.067-5.484-5.16s2.436-5.163 5.484-5.163c3.045 0 5.484 2.07 5.484 5.163 0 3.093-2.439 5.16-5.484 5.16Zm9.295-5.16c0-1.537 1.114-2.949 2.963-2.949s2.96 1.413 2.96 2.949c0 1.536-1.111 2.948-2.96 2.948s-2.963-1.412-2.963-2.948Zm-2.52 0c0 3.093 2.435 5.16 5.483 5.16 3.045 0 5.484-2.067 5.484-5.16 0-3.094-2.439-5.163-5.484-5.163-3.048 0-5.484 2.07-5.484 5.163Zm14.73-4.91h-2.473v10.07h2.602v-5.497c0-1.344.674-2.557 2.385-2.557 1.258 0 1.779.814 1.779 2.055v5.998h2.598v-5.455c0-1.298.61-2.598 2.235-2.598 1.54 0 1.928 1.091 1.928 2.348v5.706h2.602V9.872c0-2.412-.976-4.324-3.752-4.324-1.557 0-2.663.59-3.421 1.868-.54-1.26-1.65-1.868-3.255-1.868-1.735 0-2.731.884-3.187 1.828h-.041V5.801Zm24.019 4.775c0 1.578-1.12 3.026-2.986 3.026-1.864 0-2.986-1.448-2.986-3.026 0-1.577 1.122-3.03 2.986-3.03 1.867 0 2.986 1.453 2.986 3.03Zm-8.426 5.044h2.414v-1.512h.04c.744 1.215 2.076 1.763 3.497 1.763 3.13 0 5.016-2.312 5.016-5.296 0-2.984-2.013-5.298-4.913-5.298-1.903 0-2.923.881-3.451 1.537h-.063V.387H60.67V15.62ZM78.11 7.391c-1.506 0-2.442.92-2.632 2.336h5.225c-.024-1.434-1-2.336-2.593-2.336Zm5.141 3.505v.675h-7.773c.166 1.454 1.316 2.336 2.739 2.336 1.273 0 2.102-.575 2.738-1.329l1.827 1.329c-1.187 1.41-2.699 1.964-4.308 1.964-3.086 0-5.545-2.067-5.545-5.16s2.46-5.163 5.544-5.163c2.846 0 4.778 1.925 4.778 5.348ZM85.188 5.8h2.522v1.595h.042c.547-1.154 1.658-1.848 2.983-1.848.317 0 .61.064.904.15V8.13c-.42-.104-.821-.188-1.22-.188-2.374 0-2.71 1.994-2.71 2.54v5.389h-2.522V5.8Zm15.004 5.017c0-1.76-1.166-2.982-3.006-2.982-1.78 0-3.007 1.222-3.007 3.022 0 1.608 1.272 2.94 2.987 2.94 1.883 0 3.026-1.29 3.026-2.98Zm0-3.491V5.803h2.414v9.243c0 3.657-1.776 5.986-5.736 5.986-1.887 0-3.604-.399-5.04-1.673l1.522-2.077c1.017.936 2.077 1.467 3.495 1.467 2.458 0 3.216-1.397 3.216-3.404v-.742h-.037c-.744.994-2.056 1.478-3.328 1.478-3.046 0-5.06-2.327-5.06-5.2 0-3.006 1.884-5.333 5.017-5.333 1.418 0 2.753.55 3.497 1.779h.04Z\" fill=\"#7C7C83\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yhufyd\",layoutDependency:layoutDependency,layoutId:\"JE5VYyyYZ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-h1qe8o\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:42,layoutDependency:layoutDependency,layoutId:\"YoGJDHtS6\",svg:'<svg width=\"42\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.012 0v9.863h2.296V5.888h3.008l.408-1.842H2.308V1.842h3.86L6.587 0H.011Zm16.532 2.903-.432 2.017c-.128-.07-.431-.175-.827-.175a1.38 1.38 0 0 0-1.061.513c-.175.233-.362.688-.362 1.469v3.125h-2.285v-7.03h2.285l-.011 1.002h.023c.396-.77.99-1.13 1.737-1.13.56 0 .933.209.933.209Zm5.293 6.494c.513-.408.828-.98.828-1.714 0-.746-.339-1.2-.572-1.422a2.543 2.543 0 0 0-.91-.525 10.248 10.248 0 0 0-1.002-.326c-.49-.14-1.026-.315-1.026-.688 0-.373.303-.513.84-.513.57 0 1.527.454 1.958.827l.35-1.632c-.455-.315-1.236-.723-2.495-.723-1.469 0-2.67.84-2.67 2.216 0 1.259.875 1.702 1.201 1.842.327.14.723.256 1.003.326.256.082 1.282.315 1.282.77 0 .454-.396.594-.967.594-.572 0-1.516-.373-2.087-.863l-.863 1.353c.804.758 1.912 1.084 2.973 1.084.944.012 1.644-.198 2.157-.606Zm6.179-4.838H26.64v2.53c0 .594.082.746.198.874.105.117.245.175.548.175.362 0 .688-.128.688-.128l.117 1.783c-.175.047-.805.234-1.633.234-.816 0-1.352-.245-1.713-.653-.362-.408-.502-1.003-.502-2.076v-2.74h-1.002V2.834h1.002V.921h2.297v1.912h1.749l-.373 1.726ZM5.305 17.768c.723-.233 1.923-.956 1.923-2.833 0-.98-.431-1.772-1.084-2.262-.641-.466-1.504-.7-2.6-.7H0v9.852h2.308v-3.766h.735l2.075 3.766H7.8l-2.495-4.057Zm-.898-1.737c-.291.21-.653.268-1.19.268h-.909v-2.53h.91c.524 0 .898.046 1.189.256.303.21.501.502.501 1.003 0 .513-.198.781-.501 1.003Zm7.496-1.364c-2.226 0-3.917 1.399-3.917 3.672 0 2.274 1.69 3.661 3.917 3.661s3.894-1.387 3.894-3.66c0-2.262-1.667-3.673-3.894-3.673Zm0 5.456c-1.014 0-1.597-.781-1.597-1.83 0-1.038.583-1.83 1.598-1.83 1.002 0 1.597.78 1.597 1.83 0 1.049-.595 1.83-1.598 1.83Zm11.823 1.726h-2.204l-.012-.805c-.303.431-1.037.956-2.052.956-1.014 0-1.655-.361-2.017-.828-.338-.49-.512-1.096-.512-2.11v-4.255h2.285v3.94c0 .816.233 1.376 1.037 1.376.816 0 1.19-.641 1.19-1.574v-3.742h2.285v7.042Zm8.475-.001h-2.285v-3.672c0-.933-.14-1.632-1.084-1.632-.991 0-1.26.804-1.26 1.818v3.486h-2.284v-7.041h2.296l-.011 1.014h.023c.385-.63 1.026-1.143 2.04-1.143 2.04 0 2.565 1.318 2.565 3.02v4.15Zm6.692-9.863v3.673c-.233-.338-.944-.991-2.226-.991-2.04 0-3.323 1.585-3.323 3.66 0 2.076 1.282 3.673 3.323 3.673.944 0 1.783-.361 2.308-1.073l.047-.011-.012.932h2.169v-9.851h-2.286v-.012Zm-1.562 8.138c-.99 0-1.655-.746-1.655-1.83 0-1.085.676-1.83 1.655-1.83.991 0 1.644.745 1.644 1.83-.012 1.095-.665 1.83-1.644 1.83ZM7.31 2.821l-.396 1.842h.967v5.2h2.285V2.821H7.31Z\" fill=\"#7C7C83\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cosg02\",layoutDependency:layoutDependency,layoutId:\"WN5JdnQnw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a5z7ny\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:68,layoutDependency:layoutDependency,layoutId:\"WIG4lIlnH\",svg:'<svg width=\"68\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m36.33 4.383-4.672 1.003V1.6l4.671-.984v3.767Zm9.714 2.097c-1.823 0-2.996.854-3.647 1.448l-.242-1.15H38.06v21.638l4.653-.984.019-5.252c.67.483 1.656 1.17 3.294 1.17 3.33 0 6.364-2.673 6.364-8.556-.018-5.382-3.089-8.314-6.346-8.314Zm-1.116 12.787c-1.098 0-1.75-.39-2.196-.873l-.019-6.884c.484-.539 1.154-.91 2.215-.91 1.693 0 2.866 1.893 2.866 4.324 0 2.487-1.154 4.343-2.866 4.343Zm22.128-4.287c0-4.751-2.308-8.5-6.72-8.5-4.428 0-7.108 3.75-7.108 8.463 0 5.585 3.164 8.406 7.705 8.406 2.214 0 3.89-.501 5.155-1.206V18.43c-1.266.631-2.717 1.021-4.56 1.021-1.805 0-3.405-.63-3.61-2.82h9.1c0-.103.007-.335.014-.602l.001-.001v-.008c.01-.362.023-.787.023-1.041Zm-9.194-1.763c0-2.097 1.284-2.97 2.457-2.97 1.135 0 2.344.873 2.344 2.97h-4.8ZM36.33 6.796h-4.671v16.238h4.671V6.796Zm-9.975 0 .298 1.373c1.098-2.004 3.276-1.596 3.871-1.373v4.268c-.577-.204-2.438-.464-3.536.965v11.005h-4.652V6.796h4.02Zm-9.006-4.027-4.541.965-.019 14.864c0 2.747 2.066 4.77 4.82 4.77 1.526 0 2.643-.279 3.257-.612v-3.768c-.595.241-3.536 1.095-3.536-1.651v-6.588h3.536V6.796H17.33l.019-4.027Zm-11 7.738c-.986 0-1.582.279-1.582 1.002 0 .79 1.025 1.138 2.297 1.57 2.072.703 4.8 1.628 4.812 5.055 0 3.322-2.661 5.234-6.532 5.234-1.6 0-3.35-.316-5.08-1.058v-4.417c1.563.854 3.535 1.485 5.08 1.485 1.042 0 1.787-.279 1.787-1.132 0-.875-1.111-1.275-2.453-1.759-2.043-.735-4.62-1.663-4.62-4.755 0-3.284 2.513-5.252 6.29-5.252 1.546 0 3.072.242 4.616.854v4.361c-1.414-.76-3.2-1.188-4.615-1.188Z\" fill=\"#7C7C83\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uk2l11\",layoutDependency:layoutDependency,layoutId:\"lXPKYc41d\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b642b9\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:50,intrinsicWidth:50,layoutDependency:layoutDependency,layoutId:\"P7vH5XcYy\",svg:'<svg width=\"50\" height=\"50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M.056 0h49.032v49.032H.056V0Zm23.093 25.818h-2.648c.09 2.103 1.483 3.253 4.192 3.268 2.497 0 3.92-1.452 3.92-3.238 0-2.119-1.272-2.754-3.738-3.027-1.211-.166-1.514-.408-1.514-.953 0-.5.394-.832 1.135-.832.772 0 1.166.348 1.256 1.044h2.588c-.181-2.058-1.498-3.042-3.844-3.042-2.33 0-3.768 1.286-3.768 3.042 0 1.952.923 2.77 3.677 3.102 1.18.182 1.544.333 1.544.938 0 .575-.454.969-1.256.969-1.165 0-1.468-.575-1.544-1.271Zm8.687-6.644h-3.012l3.223 9.73h3.178l3.178-9.73h-2.618l-1.982 6.84-1.967-6.84Zm-21.111 5.781v-5.781h2.8v5.66c0 1.377.332 2.043 1.528 2.043 1.15 0 1.528-.62 1.528-2.088v-5.63h2.815v5.75c0 2.83-1.665 4.147-4.343 4.147-2.754.015-4.328-1.377-4.328-4.101Z\" fill=\"#7C7C83\"/></svg>',withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mhsgg9\",\"data-framer-name\":\"Content Right\",layoutDependency:layoutDependency,layoutId:\"OY_UeGNnr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-esd11p\",\"data-styles-preset\":\"BzGX0lkjO\",children:\"Stedi is a registered trademark of Stedi, Inc. All names, logos, and brands of third parties listed on our site are trademarks of their respective owners (including \u201CX12\u201D, which is a trademark of X12 Incorporated). Stedi, Inc. and its products and services are not endorsed by, sponsored by, or affiliated with these third parties. Our use of these names, logos, and brands is for identification purposes only, and does not imply any such endorsement, sponsorship, or affiliation.\"})}),className:\"framer-hou90d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lNZbLk3py\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i598b7\",layoutDependency:layoutDependency,layoutId:\"gOl1EOVpU\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p4txxj\",layoutDependency:layoutDependency,layoutId:\"a3Gcj19Sr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-esd11p\",\"data-styles-preset\":\"BzGX0lkjO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44552ab7-bdd7-4d1b-abe7-c4ac6c9480ee, rgb(35, 34, 34)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.stedi.com/docs/legal/service-terms\",motionChild:true,nodeId:\"s_gjcWL0w\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Service Terms\"})})})}),className:\"framer-v6gzza\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s_gjcWL0w\",style:{\"--extracted-r6o4lv\":\"var(--token-44552ab7-bdd7-4d1b-abe7-c4ac6c9480ee, rgb(35, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fo2jis\",layoutDependency:layoutDependency,layoutId:\"FVGUyMjsQ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-esd11p\",\"data-styles-preset\":\"BzGX0lkjO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-44552ab7-bdd7-4d1b-abe7-c4ac6c9480ee, rgb(35, 34, 34)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.stedi.com/docs/legal/privacy-notice\",motionChild:true,nodeId:\"cQQAZNjQV\",openInNewTab:false,relValues:[],scopeId:\"ZOKhZEd9B\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19xvfph\",\"data-styles-preset\":\"D2bCmCo1C\",children:\"Privacy Notice\"})})})}),className:\"framer-14ey9zd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cQQAZNjQV\",style:{\"--extracted-r6o4lv\":\"var(--token-44552ab7-bdd7-4d1b-abe7-c4ac6c9480ee, rgb(35, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a58vc5\",layoutDependency:layoutDependency,layoutId:\"hRVN6107o\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cbid0a-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jLrtl2U_x-container\",nodeId:\"jLrtl2U_x\",rendersWithMotion:true,scopeId:\"ZOKhZEd9B\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<a id=\"preferenceCenterLink\" href=\"#\" onclick=\"ketch(\\'showPreferences\\')\">Manage Privacy Choices</a>',id:\"jLrtl2U_x\",layoutId:\"jLrtl2U_x\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sjpi0.framer-1yoimxa, .framer-sjpi0 .framer-1yoimxa { display: block; }\",\".framer-sjpi0.framer-1aq838h { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 90px 120px 90px; position: relative; width: 1440px; }\",\".framer-sjpi0 .framer-1bktlb8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sjpi0 .framer-ozwvh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sjpi0 .framer-vnt262 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sjpi0 .framer-seywi6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 22px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-sjpi0 .framer-iwf2xn-container { aspect-ratio: 2.8181818181818183 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 62px; }\",\".framer-sjpi0 .framer-od5yus, .framer-sjpi0 .framer-1c6dttp { align-content: flex-start; align-items: flex-start; 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-sjpi0 .framer-1gapn19 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sjpi0 .framer-bj4df9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 356px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sjpi0 .framer-1qkyyhh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-width: 200px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sjpi0 .framer-ozorxm, .framer-sjpi0 .framer-nt9iwq, .framer-sjpi0 .framer-v6gzza, .framer-sjpi0 .framer-14ey9zd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sjpi0 .framer-1i5ctyk { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-sjpi0 .framer-silr4b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sjpi0 .framer-l271wm, .framer-sjpi0 .framer-1m4q7xj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; text-decoration: none; width: 24px; }\",\".framer-sjpi0 .framer-98uqc6, .framer-sjpi0 .framer-uveyzz { flex: none; height: 18px; left: 0px; position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-sjpi0 .framer-5pmg4q { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; text-decoration: none; width: 24px; }\",\".framer-sjpi0 .framer-1pg6ndz { flex: none; height: 17px; left: 0px; position: absolute; top: calc(45.83333333333336% - 17px / 2); width: 17px; }\",\".framer-sjpi0 .framer-16xh39i { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 640px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sjpi0 .framer-upvw3q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sjpi0 .framer-1s75mqw, .framer-sjpi0 .framer-10od08w, .framer-sjpi0 .framer-1y9ccy3, .framer-sjpi0 .framer-1dnngsz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sjpi0 .framer-dxycrh, .framer-sjpi0 .framer-ege0w0, .framer-sjpi0 .framer-10gcvci, .framer-sjpi0 .framer-1jfmqs0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-sjpi0 .framer-14ua9d6, .framer-sjpi0 .framer-1e2ljod, .framer-sjpi0 .framer-891wk7, .framer-sjpi0 .framer-170054w { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-sjpi0 .framer-1rq74uv, .framer-sjpi0 .framer-1kv5c4k, .framer-sjpi0 .framer-1mexlxd, .framer-sjpi0 .framer-1dt4q80 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sjpi0 .framer-14y7ekc, .framer-sjpi0 .framer-1y58w5x, .framer-sjpi0 .framer-1vte8t3, .framer-sjpi0 .framer-xx9kuf, .framer-sjpi0 .framer-dmn856, .framer-sjpi0 .framer-1q3s8ux, .framer-sjpi0 .framer-awp16p, .framer-sjpi0 .framer-24onrd, .framer-sjpi0 .framer-wskqmw, .framer-sjpi0 .framer-1xkpyjk, .framer-sjpi0 .framer-1xcyhu0, .framer-sjpi0 .framer-j4o4uz, .framer-sjpi0 .framer-xbfp0u, .framer-sjpi0 .framer-1l0be2t, .framer-sjpi0 .framer-5tjlmk, .framer-sjpi0 .framer-c9ectw, .framer-sjpi0 .framer-5xnbrw, .framer-sjpi0 .framer-nu19mi, .framer-sjpi0 .framer-1bw5agv, .framer-sjpi0 .framer-8ql4yh, .framer-sjpi0 .framer-hou90d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sjpi0 .framer-1i2rqyu { 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-sjpi0 .framer-5nvdt6-container { flex: none; height: auto; max-width: 430px; position: relative; width: 100%; z-index: 2; }\",\".framer-sjpi0 .framer-43zzoa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; left: -500px; overflow: visible; padding: 0px; position: absolute; right: -500px; top: 56px; z-index: 1; }\",\".framer-sjpi0 .framer-cyeraa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 60px 0px 0px; position: relative; width: min-content; }\",\".framer-sjpi0 .framer-1815x69 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sjpi0 .framer-13l7t8u-container { align-self: stretch; flex: none; height: 60px; max-width: 360px; position: relative; width: auto; }\",\".framer-sjpi0 .framer-1jyxcp3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: min-content; }\",\".framer-sjpi0 .framer-sphr38, .framer-sjpi0 .framer-5y7okr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sjpi0 .framer-yqys8 { aspect-ratio: 9.23076923076923 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 7px); position: relative; width: 60px; }\",\".framer-sjpi0 .framer-1tdujsc { aspect-ratio: 3.121212121212121 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 50px; }\",\".framer-sjpi0 .framer-lvyxvu, .framer-sjpi0 .framer-1oeq96z, .framer-sjpi0 .framer-1v954cf, .framer-sjpi0 .framer-yhufyd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sjpi0 .framer-fr00ix, .framer-sjpi0 .framer-h1qe8o { aspect-ratio: 1.9090909090909092 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 42px; }\",\".framer-sjpi0 .framer-37221f, .framer-sjpi0 .framer-1pb9ymk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sjpi0 .framer-usor5m, .framer-sjpi0 .framer-1a5z7ny { aspect-ratio: 2.3448275862068964 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 50px; }\",\".framer-sjpi0 .framer-txogaf, .framer-sjpi0 .framer-b642b9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 36px; }\",\".framer-sjpi0 .framer-1xjcoi { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-sjpi0 .framer-121wfsu { aspect-ratio: 9.23076923076923 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: relative; width: 80px; }\",\".framer-sjpi0 .framer-1bso4qe { aspect-ratio: 3.121212121212121 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 70px; }\",\".framer-sjpi0 .framer-cosg02, .framer-sjpi0 .framer-uk2l11 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sjpi0 .framer-1mhsgg9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; max-width: 640px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sjpi0 .framer-1i598b7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sjpi0 .framer-1p4txxj, .framer-sjpi0 .framer-1fo2jis { 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: min-content; }\",\".framer-sjpi0 .framer-a58vc5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 138px; }\",\".framer-sjpi0 .framer-cbid0a-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-sjpi0.framer-v-2wmewt.framer-1aq838h { padding: 80px; width: 810px; }\",\".framer-sjpi0.framer-v-2wmewt .framer-1bktlb8 { gap: 40px; }\",\".framer-sjpi0.framer-v-2wmewt .framer-vnt262, .framer-sjpi0.framer-v-f9uof5 .framer-1c6dttp { flex-direction: column; }\",\".framer-sjpi0.framer-v-2wmewt .framer-bj4df9 { gap: 0px; max-width: 300px; padding: 0px 30px 0px 0px; }\",\".framer-sjpi0.framer-v-2wmewt .framer-1qkyyhh { min-width: 140px; }\",\".framer-sjpi0.framer-v-2wmewt .framer-16xh39i { gap: 20px; }\",\".framer-sjpi0.framer-v-2wmewt .framer-1c6dttp { flex-wrap: wrap; }\",\".framer-sjpi0.framer-v-2wmewt .framer-cyeraa { padding: 0px; width: 55800%; }\",\".framer-sjpi0.framer-v-f9uof5.framer-1aq838h { padding: 50px 30px 50px 30px; width: 390px; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-1bktlb8, .framer-sjpi0.framer-v-f9uof5 .framer-upvw3q { flex-wrap: wrap; gap: 32px; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-vnt262 { flex-direction: column; gap: 48px; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-od5yus { flex-wrap: wrap; gap: 32px; justify-content: flex-start; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-1gapn19 { order: 1; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-bj4df9 { order: 0; width: 100%; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-16xh39i { flex-wrap: wrap; order: 2; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-1s75mqw, .framer-sjpi0.framer-v-f9uof5 .framer-10od08w, .framer-sjpi0.framer-v-f9uof5 .framer-1y9ccy3, .framer-sjpi0.framer-v-f9uof5 .framer-1dnngsz { flex: none; gap: 0px; width: 100%; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-dxycrh { gap: 0px; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-cyeraa { padding: 0px; width: 100%; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-1815x69 { width: 100%; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-nt9iwq { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-13l7t8u-container { align-self: unset; order: 1; width: 100%; }\",\".framer-sjpi0.framer-v-f9uof5 .framer-1mhsgg9 { flex: none; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 860\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RJx8EaI8r\":{\"layout\":[\"fixed\",\"auto\"]},\"lDkpW0hHj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZOKhZEd9B=withCSS(Component,css,\"framer-sjpi0\");export default FramerZOKhZEd9B;FramerZOKhZEd9B.displayName=\"Footer\";FramerZOKhZEd9B.defaultProps={height:860,width:1440};addPropertyControls(FramerZOKhZEd9B,{variant:{options:[\"EGzXTG2R6\",\"RJx8EaI8r\",\"lDkpW0hHj\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZOKhZEd9B,[{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\"}]},...LogoFonts,...NewsletterSignupFooterFonts,...TickerFonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZOKhZEd9B\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"860\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RJx8EaI8r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lDkpW0hHj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZOKhZEd9B.map"],
  "mappings": "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",
  "names": ["useIsOnCanvas", "se", "RenderTarget", "Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "fontStore", "fonts", "css", "className", "poll", "f", "delay", "count", "i", "EmptyState", "title", "description", "u", "emptyStateStyle", "p", "stateTitleStyle", "stateParagraphStyle", "HubSpotForm", "portalId", "formId", "advanced", "region", "id", "elementId", "cleanup", "element", "ue", "window", "handleScriptLoad", "script", "addPropertyControls", "ControlType", "HubSpotFormFonts", "getFonts", "HubSpotForm", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "HubSpotForm", "css", "FramerrnRl42VbO", "withCSS", "rnRl42VbO_default", "addFonts", "HubSpotFormFonts", "getFontsFromSharedStyle", "fonts", "LogoFonts", "getFonts", "Tuz7PNPs7_default", "NewsletterSignupFooterFonts", "rnRl42VbO_default", "TickerFonts", "Ticker", "EmbedFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "SVG", "css", "FramerZOKhZEd9B", "withCSS", "ZOKhZEd9B_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
