{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/fPSKMdnAZGIeyDfLV8KP/UF1CreM6AP9OrHJ5kt1D/MultiStepFormButton.js", "ssg:https://framerusercontent.com/modules/Puote0zLOl5OG8YZp1eM/W40NhY29OhgsDWMjjL3F/MTRc3gLdb.js", "ssg:https://framerusercontent.com/modules/wV9SghwspjN8vk1MgoSi/jK6W9I4VdUpVRrPPcIq5/MultiStepForm.js", "ssg:https://framerusercontent.com/modules/tJYbNughxA4SRQ8feJte/kjc1loSrPKPolWIAJTNl/QvJ16Dh1u.js", "ssg:https://framerusercontent.com/modules/Ur2U2rsm9RFmG3HJwtdr/eGZffbfbhBvX4anFfRQF/s9KZBiAUp.js", "ssg:https://framerusercontent.com/modules/pRDSkcuzWvWaqiSpi7uy/E20is4IUL2MyQBZrrzr7/R9YaiE4Lk.js", "ssg:https://framerusercontent.com/modules/N4h6bUqrUWz76TQ6POwA/WifkLOmCzu9bLoakTeOE/uECChUQVs.js", "ssg:https://framerusercontent.com/modules/5Tk6uaAO1n98JPsWKUPv/X2xySJVxjucRRwDErlzj/THvSoCZGr.js", "ssg:https://framerusercontent.com/modules/uGMk85Y4nqDR3NTgsO1K/oEYBEgUtuYuDcv24lO5w/NUMJcziBY.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType,RenderTarget,withCSS}from\"framer\";import{forwardRef,useEffect,useState,useRef}from\"react\";import{motion}from\"framer-motion\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// totalPages\n// pageHistory\n// logicConfig\n// isEndPage\n// previousPage()\n// nextPage()\nexport const useMultiStepFormStore=createStore({});export const HIDDEN_CLASS_NAME=\"framerforms-hidden\";const CANVAS_HIDDEN_CLASS_NAME=\"framerforms-canvas-hidden\";export const createId=()=>\"a\"+String(Math.floor(Math.random()*999999999));export const HiddenInput=/*#__PURE__*/forwardRef(({name,required,value,setInvalid,onSetValueEvent,noPrefill=false,disabled=false},parentRef)=>{const internalRef=useRef(null);const ref=parentRef||internalRef;useEffect(()=>{if(ref.current){ref.current.addEventListener(\"framerFormsSetValue\",onSetValueEvent);}return()=>{if(ref.current){ref.current.removeEventListener(\"framerFormsSetValue\",onSetValueEvent);}};},[onSetValueEvent]);return /*#__PURE__*/_jsx(\"input\",{ref:ref,type:\"text\",\"data-framerforms-set-value-event\":!!onSetValueEvent,\"data-framerforms-no-prefill\":noPrefill,style:{position:\"absolute\",opacity:0,pointerEvents:\"none\",inset:0},tabIndex:-1,name:name,required:required,value:value,disabled:disabled,onInvalid:event=>{event.preventDefault();setInvalid(true);}});});const HideElementComponent=/*#__PURE__*/forwardRef(({},ref)=>{return /*#__PURE__*/_jsx(\"div\",{ref:ref,className:HIDDEN_CLASS_NAME});});export const HideElement=withCSS(HideElementComponent,[`div:has(> .${HIDDEN_CLASS_NAME}) { display: none; }`,`.${HIDDEN_CLASS_NAME} { display: none; }`],HIDDEN_CLASS_NAME);HideElement.displayName=\"FramerForms/Hide Element\";export const HiddenComponentLabel=/*#__PURE__*/forwardRef(({text,subtext=\"\",children=null,...otherProps},ref)=>{const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=createId();return isCanvas?/*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,...otherProps,ref:ref,className:CANVAS_HIDDEN_CLASS_NAME,style:{backgroundColor:\"rgba(187, 187, 187, 0.15)\",borderRadius:10,padding:\"12px 16px\",fontFamily:\"Inter\",fontWeight:500,fontSize:12,color:\"#999\",display:\"flex\",flexDirection:\"column\",gap:4,alignItems:\"center\",textAlign:\"center\",width:\"100%\",height:\"100%\",textWrap:\"nowrap\"},children:[children,text,subtext&&/*#__PURE__*/_jsx(\"span\",{style:{opacity:.7,whiteSpace:\"pre\",lineHeight:1.4},children:subtext}),/*#__PURE__*/_jsx(Border,{width:\"1px\",style:\"solid\",borderColor:\"rgba(136, 136, 136, 0.1)\"}),/*#__PURE__*/_jsx(\"style\",{children:`\n                [data-framer-component-container=\"true\"] div:has(> .${CANVAS_HIDDEN_CLASS_NAME}) {\n                    display: none !important;\n                }`})]}):/*#__PURE__*/_jsxs(\"div\",{...otherProps,ref:ref,className:HIDDEN_CLASS_NAME,children:[/*#__PURE__*/_jsx(HideElement,{}),children]});});HiddenComponentLabel.displayName=\"FramerForms/Hidden Component Label\";export function iconProp({size=16,buttonTitle=\"Icon\",controls={}}={}){return{type:ControlType.Object,buttonTitle,optional:true,defaultValue:{color:\"#999\",size},controls:{image:{type:ControlType.Image},color:{type:ControlType.Color,optional:true,defaultValue:\"#999\"},size:{type:ControlType.Number,defaultValue:size,min:1,step:1,displayStepper:true},...controls}};}export function Icon({image,color,size,style={},defaultImage}){return /*#__PURE__*/_jsx(\"div\",{style:{width:size,height:size,minWidth:size,minHeight:size,pointerEvents:\"none\",backgroundColor:color,backgroundImage:color?\"none\":image?`url('${image}')`:defaultImage,maskImage:image?`url('${image}')`:defaultImage,backgroundSize:\"contain\",backgroundPosition:\"center\",maskSize:\"contain\",maskPosition:\"center\",...style}});}Icon.displayName=\"FramerForms/Icon\";export function Border({width,style,transition=null,borderColor=\"inherit\",opacity=1}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor,opacity},style:{position:\"absolute\",inset:0,borderWidth:width,borderStyle:style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:transition});}Border.displayName=\"FramerForms/Border\";export function createBackground(fill,on=null,focused=null,invalid=null){if(fill){const onOff=typeof on==\"boolean\";if(fill.type==\"color\"){let color=invalid&&fill.colorInvalid||focused&&fill.colorFocus||(onOff?on?fill.colorOn:fill.colorOff:fill.color);return{backgroundColor:color,backgroundImage:\"none\"};}else{const colorA=invalid&&fill.colorAInvalid||focused&&fill.colorAFocus||(onOff?on?fill.colorAOn:fill.colorAOff:fill.colorA);const colorB=invalid&&fill.colorBInvalid||focused&&fill.colorBFocus||(onOff?on?fill.colorBOn:fill.colorBOff:fill.colorB);return{backgroundColor:\"none\",backgroundImage:`linear-gradient(${fill.gradientAngle}deg, ${colorB}, ${colorA})`};}}return{};}export function parsePadding(padding){if(typeof padding!==\"string\"){return[0,0,0,0];}const values=padding.split(\" \");const parsedValues=values.map(value=>parseInt(value.replace(\"px\",\"\"),10));switch(parsedValues.length){case 1:const p=parsedValues[0];return[p,p,p,p];case 4:return parsedValues;}return[0,0,0,0];}export function fillProp({onOff=false,focus=true,invalid=true,optional=false,hidden=null,color=\"rgba(187, 187, 187, 0.15)\",colorA=\"#BBB\",colorB=\"#676767\",colorOn=\"rgba(70, 160, 219, 0.2)\",colorAOn=\"#66C2FF\",colorBOn=\"#0099FF\",colorOff=\"rgba(187, 187, 187, 0.15)\",colorAOff=\"#BBB\",colorBOff=\"#676767\"}={}){return{type:ControlType.Object,optional,hidden,icon:\"color\",defaultValue:{type:\"color\",...onOff?{colorOn,colorOff}:{color,colorA,colorB}},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"linearGradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn,hidden:props=>props.type!==\"color\"},colorOff:{type:ControlType.Color,defaultValue:colorOff,hidden:props=>props.type!==\"color\"}}:{color:{type:ControlType.Color,defaultValue:color,hidden:props=>props.type!==\"color\"}},...focus?{colorFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"color\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"color\"}}:{},...onOff?{colorAOn:{type:ControlType.Color,defaultValue:colorAOn,title:\"Colors On\",hidden:props=>props.type!==\"linearGradient\"},colorBOn:{type:ControlType.Color,defaultValue:colorBOn,title:\" \",hidden:props=>props.type!==\"linearGradient\"},colorAOff:{type:ControlType.Color,defaultValue:colorAOff,title:\"Colors Off\",hidden:props=>props.type!==\"linearGradient\"},colorBOff:{type:ControlType.Color,defaultValue:colorBOff,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{colorA:{type:ControlType.Color,defaultValue:colorA,title:\"Colors\",hidden:props=>props.type!==\"linearGradient\"},colorB:{type:ControlType.Color,defaultValue:colorB,title:\" \",hidden:props=>props.type!==\"linearGradient\"}},...focus?{colorAFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"linearGradient\"},colorBFocus:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},...invalid?{colorAInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"linearGradient\"},colorBInvalid:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"linearGradient\"}}};}export function borderProp({onOff=false,focus=true,invalid=true,defaultValue=true,color=\"rgba(136, 136, 136, 0.1)\",colorOn=\"#0099FF\",colorOff=\"rgba(136, 136, 136, 0.1)\",colorFocus=\"#0099FF\",colorInvalid=\"#FF5A6F\",hidden=null}={}){return{type:ControlType.Object,optional:true,hidden,defaultValue:defaultValue?{color,colorOn,colorOff,colorFocus,colorInvalid,width:\"1px\"}:undefined,controls:{...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn},colorOff:{type:ControlType.Color,defaultValue:colorOff}}:{color:{type:ControlType.Color,defaultValue:color}},...focus?{colorFocus:{type:ControlType.Color,defaultValue:colorFocus,optional:true,title:\"Focus\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,defaultValue:colorInvalid,optional:true,title:\"Invalid\"}}:{},width:{type:ControlType.Padding,defaultValue:\"1px\"},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}};}export function shadowsProp({invalid=true,onOff=false}={}){return{type:ControlType.Object,buttonTitle:\"Shadows\",optional:true,controls:{...onOff?{on:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 153, 255, 0.5) 0px 2px 4px 0px\"},off:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}}:{default:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}},focus:{type:ControlType.BoxShadow},invalid:invalid?{type:ControlType.BoxShadow}:null}};}export function useCanvasState(ref){const[totalPages,setTotalPages]=useState(1);useEffect(()=>{const element=ref.current;let pages=null;function updateState(){setTotalPages(pages?pages.children.length:1);}if(element){const multiStepForms=document.querySelectorAll(\"div[data-framerforms-multi-step-form]\");for(const multiStepForm of multiStepForms){const form=multiStepForm.closest(\"form\")||multiStepForm.parentElement.parentElement.parentElement;if(form&&isAncestor(form,element)){pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');}}}updateState();if(pages){const observer=new MutationObserver((mutationsList,observer)=>{for(let mutation of mutationsList){if(mutation.type===\"childList\"){updateState();}}});observer.observe(pages,{childList:true});return()=>observer.disconnect();}},[]);return{page:0,totalPages};}export function isAncestor(ancestorElement,descendantElement){if(!ancestorElement||!descendantElement){return false;}let currentElement=descendantElement;while(currentElement!==null){if(currentElement===ancestorElement){return true;}currentElement=currentElement.parentElement;}return false;}export function getFormInfo(element){const form=element===null||element===void 0?void 0:element.closest(\"form\");let formId=null;let pages=null;if(form){formId=form.getAttribute(\"framerforms-id\");pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');if(!formId){formId=uuid();form.setAttribute(\"framerforms-id\",formId);}}return{form,formId,pages};}function uuid(){let d=new Date().getTime()// Timestamp\n;let d2=performance&&performance.now&&performance.now()*1e3||0// Time in microseconds since page-load or 0 if unsupported\n;return\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g,function(c){let r=Math.random()*16// random number between 0 and 16\n;if(d>0){// Use timestamp until depleted\nr=(d+r)%16|0;d=Math.floor(d/16);}else{// Use microseconds since page-load if supported\nr=(d2+r)%16|0;d2=Math.floor(d2/16);}return(c===\"x\"?r:r&3|8).toString(16);});}\nexport const __FramerMetadata__ = {\"exports\":{\"HiddenInput\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowsProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isAncestor\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HIDDEN_CLASS_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenComponentLabel\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFormInfo\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCanvasState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiStepFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"HideElement\":{\"type\":\"reactComponent\",\"name\":\"HideElement\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerFormsShared.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState,useRef,cloneElement}from\"react\";import{motion}from\"framer-motion\";import{borderProp,fillProp,createBackground,Border,HideElement,useMultiStepFormStore,getFormInfo}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js\";const CANVAS_HIDDEN_CLASS_NAME=\"framerforms-canvas-hidden\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n */export default function MultiStepFormButton(props){var _props_border,_props_border1,_props_font,_props_style,_props_border2;const prev=props.page==\"previous\";const isCanvas=RenderTarget.current()===RenderTarget.canvas;const isOptimizing=typeof window===\"undefined\";const[multiStepFormState,setMultiStepFormState]=useMultiStepFormStore();const[formId,setFormId]=useState(null);const ref=useRef(null);const state=multiStepFormState[formId];useEffect(()=>{const newFormId=getFormInfo(ref.current).formId;if(!multiStepFormState[newFormId]){setMultiStepFormState({});}setFormId(newFormId);},[]);let hidden=false;if(isOptimizing||!state){hidden=prev;}else if(state===null||state===void 0?void 0:state.pageHistory){const page=state.pageHistory[state.pageHistory.length-1];if(prev){hidden=page===0;}else{hidden=state.isEndPage;}}if(hidden&&!isCanvas){return /*#__PURE__*/_jsx(HideElement,{ref:ref});}function onClick(){var _props_click;if(state){if(prev){state.previousPage();}else{state.nextPage();}}(_props_click=props.click)===null||_props_click===void 0?void 0:_props_click.call(props);}if(props.appearance==\"custom\"){var _props_customLayer,_props_style1,_props_style2;let layer=(_props_customLayer=props.customLayer)===null||_props_customLayer===void 0?void 0:_props_customLayer[0];const width=(_props_style1=props.style)===null||_props_style1===void 0?void 0:_props_style1.width;const height=(_props_style2=props.style)===null||_props_style2===void 0?void 0:_props_style2.height;if(layer&&props.style&&(width||height)){layer=/*#__PURE__*/cloneElement(layer,{style:{...layer.props.style,...width&&{width:width},...height&&{height:height}}});}return /*#__PURE__*/_jsx(\"button\",{ref:ref,type:\"button\",style:{display:\"contents\"},onClick:onClick,onMouseEnter:props.hover,children:layer});}var _props_border_colorFocus;return /*#__PURE__*/_jsxs(motion.button,{\"data-framerforms\":true,ref:ref,type:\"button\",onClick:onClick,onMouseEnter:props.hover,className:hidden&&isCanvas?CANVAS_HIDDEN_CLASS_NAME:\"\",whileFocus:{...createBackground(props.fill,null,true),borderColor:(_props_border_colorFocus=(_props_border=props.border)===null||_props_border===void 0?void 0:_props_border.colorFocus)!==null&&_props_border_colorFocus!==void 0?_props_border_colorFocus:(_props_border1=props.border)===null||_props_border1===void 0?void 0:_props_border1.color},style:{position:\"relative\",display:\"flex\",justifyContent:((_props_font=props.font)===null||_props_font===void 0?void 0:_props_font.textAlign)||\"center\",alignItems:\"center\",...createBackground(props.fill),border:\"none\",color:props.color,padding:props.padding,borderRadius:props.radius,userSelect:\"none\",cursor:\"pointer\",textWrap:((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)==\"100%\"?undefined:\"nowrap\",boxShadow:props.shadows,borderColor:(_props_border2=props.border)===null||_props_border2===void 0?void 0:_props_border2.color,...props.font,...props.style},transition:props.transition,children:[props.text,/*#__PURE__*/_jsx(Border,{...props.border}),hidden&&isCanvas&&/*#__PURE__*/_jsx(\"style\",{children:`\n                [data-framer-component-container=\"true\"] div:has(> .${CANVAS_HIDDEN_CLASS_NAME}) {\n                    display: none !important;\n                }`})]});}MultiStepFormButton.displayName=\"Multi-Step Form Button\";addPropertyControls(MultiStepFormButton,{page:{type:ControlType.Enum,defaultValue:\"next\",options:[\"previous\",\"next\"],optionTitles:[\"Previous\",\"Next\"],displaySegmentedControl:true},autoHide:{type:ControlType.Boolean,defaultValue:true,title:\"Auto-Hide\",description:\"Hide on first/last page\"},appearance:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true},customLayer:{type:ControlType.ComponentInstance,title:\"Layer\",description:\"Connect a custom layer outside the breakpoint\",hidden:props=>props.appearance!==\"custom\"},text:{type:ControlType.String,defaultValue:\"Next\",hidden:props=>props.appearance!==\"default\"},fill:fillProp({focus:true,invalid:false,color:\"#333\",colorA:\"#8C8C8C\",colorB:\"#000\",hidden:props=>props.appearance!==\"default\"}),color:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.appearance!==\"default\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2},hidden:props=>props.appearance!==\"default\"},padding:{type:ControlType.Padding,defaultValue:\"10px 16px 10px 16px\",hidden:props=>props.appearance!==\"default\"},radius:{type:ControlType.BorderRadius,defaultValue:\"10px\",hidden:props=>props.appearance!==\"default\"},border:borderProp({focus:true,color:\"#0099FF00\",hidden:props=>props.appearance!==\"default\"}),shadows:{type:ControlType.BoxShadow,hidden:props=>props.appearance!==\"default\"},transition:{type:ControlType.Transition,defaultValue:{type:false},hidden:props=>props.appearance!==\"default\"},click:{type:ControlType.EventHandler},hover:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"MultiStepFormButton\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MultiStepFormButton.map", "// Generated by Framer (dc38db3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-4J2k7\";const variantClassNames={IWjtJscfZ:\"framer-v-wr3ffj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,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{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"IWjtJscfZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wr3ffj\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"IWjtJscfZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1c53mq9\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:46,layoutDependency:layoutDependency,layoutId:\"PvMStPOmV\",svg:'<svg width=\"46\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M43.967 11.198a3.392 3.392 0 0 1-.568 6.018c-.78.31-1.645.32-2.432.028a3.466 3.466 0 0 1-.572-.282 3.404 3.404 0 0 1-1.468-3.828L38.712 13c-1.467-.908-3.96-2.051-7.544-2.399-.253.744-.57 1.467-.946 2.157-3.333 6.17-9.953 8.786-14.765 8.173a7.322 7.322 0 0 1-2.929-.967 4.186 4.186 0 0 1-1.946-2.57 4.062 4.062 0 0 1 .617-3.24c2.267-3.49 9.444-5.453 12.018-5.915a32.09 32.09 0 0 1 5.695-.532c-.003-1.293-.544-2.312-1.68-3.137l-.381-.236c-4.226-2.615-13.673-1.72-19.686 3.295l1.692 1.753a.66.66 0 0 1-.015.921.654.654 0 0 1-.294.167l-7.284 1.85a.65.65 0 0 1-.624-.174.649.649 0 0 1-.169-.626L2.41 4.13a.64.64 0 0 1 .388-.441.657.657 0 0 1 .593.037.633.633 0 0 1 .126.104l1.717 1.781C8.253 3.048 12.3 1.233 16.657.497c4.63-.78 8.904-.236 11.694 1.49.174.108.35.217.512.343a6.436 6.436 0 0 1 2.802 5.53 20.047 20.047 0 0 1 8.514 2.785l.57.353a3.384 3.384 0 0 1 1.318-.32c.457-.017.911.059 1.338.222.196.082.385.181.562.298Zm-29.97 6.403a4.602 4.602 0 0 0 1.805.568c3.774.48 9.252-1.714 11.962-6.734.173-.317.327-.63.46-.934a30.448 30.448 0 0 0-4.536.487c-3.253.585-8.745 2.49-10.175 4.695a1.24 1.24 0 0 0-.244 1.053 1.5 1.5 0 0 0 .734.869l-.007-.004Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255)))\"},children:[\"Press \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45)))\"},children:\"Ok \"}),\"to continue\"]})}),className:\"framer-ajdjza\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"ZKwa1m6Yg\",style:{\"--extracted-1w3ko1f\":\"var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45))\",\"--extracted-r6o4lv\":\"var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4J2k7.framer-1s81q7v, .framer-4J2k7 .framer-1s81q7v { display: block; }\",\".framer-4J2k7.framer-wr3ffj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 177px; }\",\".framer-4J2k7 .framer-1c53mq9 { aspect-ratio: 2.090909090909091 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 31px; }\",\".framer-4J2k7 .framer-ajdjza { flex: none; height: auto; max-width: 157px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4J2k7.framer-wr3ffj { gap: 0px; } .framer-4J2k7.framer-wr3ffj > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-4J2k7.framer-wr3ffj > :first-child { margin-left: 0px; } .framer-4J2k7.framer-wr3ffj > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 39\n * @framerIntrinsicWidth 177\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMTRc3gLdb=withCSS(Component,css,\"framer-4J2k7\");export default FramerMTRc3gLdb;FramerMTRc3gLdb.displayName=\"Beelbolt\";FramerMTRc3gLdb.defaultProps={height:39,width:177};addFonts(FramerMTRc3gLdb,[{explicitInter:true,fonts:[{family:\"Termina Test Demi\",source:\"custom\",url:\"https://framerusercontent.com/assets/AMvaJ5HVjKVpcjLSMyrV026urKs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMTRc3gLdb\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"39\",\"framerIntrinsicWidth\":\"177\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MTRc3gLdb.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{createId,HiddenComponentLabel,useMultiStepFormStore,getFormInfo,isAncestor}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js\";const OPTIMIZATION_CLASS_NAME=\"framerforms-multi-step-form\";const SUBMIT_BUTTON_HIDDEN_ATTRIBUTE=\"framerforms-submit-button-hidden\";/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n * @framerDisableUnlink\n */function MultiStepFormComponent(props){const{scrollToTop}=props;const id=props.id||createId();const isCanvas=RenderTarget.current()===RenderTarget.canvas;const isOptimizing=typeof window===\"undefined\";const[multiStepFormState,setMultiStepFormState]=useMultiStepFormStore();const[formInfo,setFormInfo]=useState(null);const stateRef=useRef(multiStepFormState[formInfo===null||formInfo===void 0?void 0:formInfo.formId]);const ref=useRef(null);const pageVideosRef=useRef({});const isFirstRenderRef=useRef(true);const state=multiStepFormState[formInfo===null||formInfo===void 0?void 0:formInfo.formId];const pageHistory=state===null||state===void 0?void 0:state.pageHistory;useEffect(()=>{const formInfo=getFormInfo(ref.current);setFormInfo(formInfo);const{formId,form,pages}=formInfo;function previousPage(){var _stateRef_current;const pageHistory=(_stateRef_current=stateRef.current)===null||_stateRef_current===void 0?void 0:_stateRef_current.pageHistory;if((pageHistory===null||pageHistory===void 0?void 0:pageHistory.length)>1){setMultiStepFormState(prev=>({[formId]:{...prev[formId],pageHistory:prev[formId].pageHistory.slice(0,-1),isEndPage:false}}));}}function nextPage(){const state=stateRef.current;if(state){const page=state.pageHistory[state.pageHistory.length-1];const{logicConfigs}=state;let newPage=null;if(logicConfigs.length&&pages){var _pages_children;const pageElement=(_pages_children=pages.children)===null||_pages_children===void 0?void 0:_pages_children[page];for(const logic of logicConfigs){if(isAncestor(pageElement,logic.ref.current)){const nextPageName=logic.getNextPage();if(nextPageName){const nextPageIndex=getChildIndexByDataFramerName(pages,nextPageName);if(nextPageIndex!==-1){newPage=nextPageIndex;}break;}}}}if(newPage===null&&page<state.totalPages-1){newPage=page+1;}const pageElement=pages.children[page];if(pageElement&&!isFormValid(pageElement)){newPage=null;}if(newPage){setMultiStepFormState(prev=>{const prevState=prev[formId];return{[formId]:{...prevState,pageHistory:[...prevState.pageHistory,newPage],isEndPage:isPageAnEndPage(newPage,prevState,pages,props.endPage,props.endPageCustom)}};});}}}function setPageHistoryLength(newLength){setMultiStepFormState(prev=>{var _prev_formId;var _prev_formId_pageHistory;const pageHistory=(_prev_formId_pageHistory=(_prev_formId=prev[formId])===null||_prev_formId===void 0?void 0:_prev_formId.pageHistory)!==null&&_prev_formId_pageHistory!==void 0?_prev_formId_pageHistory:[];return{[formId]:{...prev[formId],pageHistory:newLength>=pageHistory.length?pageHistory:pageHistory.slice(0,newLength),isEndPage:isPageAnEndPage(pageHistory[newLength-1],prev[formId],pages,props.endPage,props.endPageCustom)}};});}if(formId&&pages){setMultiStepFormState({[formId]:{totalPages:pages.children.length,pageHistory:[0],logicConfigs:[],isEndPage:pages.children.length==1,previousPage,nextPage,setPageHistoryLength}});}if(pages){const pageElements=pages.children;for(let i=0;i<pageElements.length;i++){const videos=pageElements[i].querySelectorAll(\"video\");if(!pageVideosRef.current[i]){pageVideosRef.current[i]=[];}for(const video of videos){pageVideosRef.current[i].push(video);if(video.hasAttribute(\"autoplay\")&&i!==0){const pauseVideo=()=>{if(!video.paused){setTimeout(()=>{if(!video.paused){video.pause();}},100)// 100 milliseconds = 0.1 seconds\n;}};if(!video.paused){// Video is already playing, pause it immediately\npauseVideo();}else{// Wait for the video to start playing, then pause it\nvideo.addEventListener(\"play\",pauseVideo,{once:true});}}}}}let unmountFunction=null;if(form){function onEnterPress(event){if(event.key!==\"Enter\"||event.target.tagName===\"TEXTAREA\"){return;}const currentInput=event.target;let previousElement=currentInput;let foundPage=false;while(previousElement&&!foundPage){const newElement=previousElement.parentElement;if(newElement==pages){foundPage=true;break;}previousElement=newElement;}const currentPage=previousElement;let stopEvent=true;if(currentPage){const inputs=getInputsOnPage(currentPage);const currentIndex=inputs.indexOf(currentInput);if(currentIndex<inputs.length-1){// Focus the next input on the current page\ninputs[currentIndex+1].focus();}else{const pageElements=Array.from(pages.children);const pageIndex=pageElements.indexOf(currentPage);if(pageIndex<pageElements.length-1){nextPage();}else{// Let the form submit if it's the last page\nstopEvent=false;}}}if(stopEvent){event.preventDefault();event.stopPropagation();}}// Override Enter key press event\nform.addEventListener(\"keydown\",onEnterPress,true);unmountFunction=()=>{form.removeEventListener(\"keydown\",onEnterPress,true);};}if(unmountFunction){return unmountFunction;}},[]);useEffect(()=>{stateRef.current=state;},[state]);useEffect(()=>{var _ref_current;if(state&&(!isCanvas||((_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.closest('[data-framer-component-container=\"true\"]')))){var _formInfo_form_querySelector,_formInfo_form;const submitButton=(_formInfo_form=formInfo.form)===null||_formInfo_form===void 0?void 0:(_formInfo_form_querySelector=_formInfo_form.querySelector('button[type=\"submit\"]'))===null||_formInfo_form_querySelector===void 0?void 0:_formInfo_form_querySelector.parentElement;if(submitButton){submitButton.setAttribute(SUBMIT_BUTTON_HIDDEN_ATTRIBUTE,state.isEndPage?\"false\":\"true\");}}},[state===null||state===void 0?void 0:state.isEndPage]);useEffect(()=>{const pages=formInfo===null||formInfo===void 0?void 0:formInfo.pages;if(pages&&pageHistory){var _state_logicConfigs;// Enable/disable form inputs on pages that have not been visited for submit validation\nif((state===null||state===void 0?void 0:(_state_logicConfigs=state.logicConfigs)===null||_state_logicConfigs===void 0?void 0:_state_logicConfigs.length)||props.endPage==\"customPages\"){for(let i=0;i<pages.children.length;i++){if(pageHistory.includes(i)){var _pages_children_i;const inputs=(_pages_children_i=pages.children[i])===null||_pages_children_i===void 0?void 0:_pages_children_i.querySelectorAll(`input[name][disabled=\"FramerForms\"], select[name][disabled=\"FramerForms\"], textarea[name][disabled=\"FramerForms\"]`);for(const input of inputs){input.removeAttribute(\"disabled\");}}else{var _pages_children_i1;const inputs=(_pages_children_i1=pages.children[i])===null||_pages_children_i1===void 0?void 0:_pages_children_i1.querySelectorAll(\"input[name]:not([disabled]), select[name]:not([disabled]), textarea[name]:not([disabled])\");for(const input of inputs){input.setAttribute(\"disabled\",\"FramerForms\");}}}}// Play/pause videos on form pages\nconst currentPage=pageHistory[pageHistory.length-1];if(pageVideosRef.current){for(const pageIndex of Object.keys(pageVideosRef.current)){const pageVideos=pageVideosRef.current[pageIndex];for(const video of pageVideos){if(pageIndex==currentPage){if(video.hasAttribute(\"autoplay\")){video.play();}}else if(!video.paused){video.pause();}}}}// Scroll to top of form\nif(scrollToTop&&formInfo.form&&!isFirstRenderRef.current){const rect=formInfo.form.getBoundingClientRect();const top=rect.top-scrollToTop.offset;const topIsInView=top>=0&&top<=window.innerHeight;if(!topIsInView){const windowScrollTop=window.pageYOffset||document.documentElement.scrollTop;window.scrollTo({top:windowScrollTop+top,behavior:scrollToTop.scrollStyle});}}if(!isFirstRenderRef.current){autoFocusInputOnPage(pages.children[currentPage]);}isFirstRenderRef.current=false;}fireAnalyticsEvent(props.analytics,pageHistory,formInfo===null||formInfo===void 0?void 0:formInfo.pages);},[pageHistory]);return /*#__PURE__*/_jsxs(HiddenComponentLabel,{text:\"Multi-Step Form\",children:[/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 452 60\",width:\"121\",height:\"16\",style:{marginBottom:5},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 58.178 27.448 L 58.178 0.912 L 33.172 0.912 C 14.852 0.912 0 15.76 0 34.08 L 0 59.086 L 58.178 59.086 L 58.178 27.46 C 58.172 44.93 44.008 59.09 26.538 59.09 L 26.538 27.45 L 58.178 27.45 Z\",fill:\"#473DFE\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 452.004 36.088 C 452.004 43.208 446.328 47.872 437.336 47.872 C 428.342 47.872 422.57 43.112 421.946 35.464 L 431.132 35.464 C 431.228 38.734 433.392 40.802 437.142 40.802 C 440.268 40.802 442.336 39.6 442.336 37.436 C 442.336 35.944 440.846 34.838 438.826 34.454 L 432.526 33.252 C 426.996 32.192 423.34 28.972 423.34 23.392 C 423.34 16.948 429.016 12.426 436.758 12.426 C 444.982 12.426 450.898 17.14 451.426 24.594 L 442.24 24.594 C 442 21.468 439.884 19.448 436.854 19.448 C 434.162 19.448 432.526 20.892 432.526 22.768 C 432.526 24.306 434.064 25.22 435.892 25.556 L 442.578 26.856 C 448.734 28.056 452.004 31.086 452.004 36.088 Z M 395.384 47.39 L 387.978 27.48 L 387.978 47.39 L 379.754 47.39 L 379.754 12.86 L 390.478 12.86 L 399.184 36.28 L 407.84 12.86 L 418.566 12.86 L 418.566 47.39 L 410.342 47.39 L 410.342 27.24 L 402.886 47.39 Z M 355.758 47.39 L 346.668 47.39 L 346.668 12.86 L 360.808 12.86 C 370.138 12.86 375.476 17.044 375.476 24.402 C 375.476 28.826 372.83 32.482 368.166 34.454 L 376.63 47.39 L 365.81 47.39 L 358.74 35.896 L 355.758 35.896 Z M 355.758 20.362 L 355.758 28.394 L 360.422 28.394 C 364.462 28.394 366.338 27.144 366.338 24.402 C 366.338 21.662 364.462 20.362 360.422 20.362 Z M 325.08 48.112 C 315.124 48.112 307.286 40.562 307.286 30.076 C 307.286 19.592 315.124 12.138 325.08 12.138 C 335.084 12.138 342.922 19.592 342.922 30.078 C 342.922 40.562 335.084 48.112 325.08 48.112 Z M 325.08 39.984 C 330.514 39.984 333.544 35.512 333.544 30.076 C 333.544 24.642 330.514 20.266 325.08 20.266 C 319.646 20.266 316.616 24.642 316.616 30.078 C 316.616 35.512 319.646 39.984 325.08 39.984 Z M 291.034 47.39 L 281.946 47.39 L 281.946 12.86 L 305.462 12.86 L 305.462 20.748 L 291.034 20.748 L 291.034 27.144 L 303.106 27.144 L 303.106 35.032 L 291.034 35.032 L 291.034 47.392 Z M 257.946 47.39 L 248.856 47.39 L 248.856 12.86 L 262.994 12.86 C 272.326 12.86 277.664 17.044 277.664 24.402 C 277.664 28.826 275.018 32.482 270.354 34.454 L 278.818 47.39 L 267.996 47.39 L 260.926 35.896 L 257.946 35.896 Z M 257.946 20.362 L 257.946 28.394 L 262.61 28.394 C 266.65 28.394 268.526 27.144 268.526 24.402 C 268.526 21.662 266.65 20.362 262.61 20.362 Z M 244.616 39.504 L 244.616 47.392 L 220.184 47.392 L 220.184 12.86 L 244.278 12.86 L 244.278 20.748 L 229.274 20.748 L 229.274 25.7 L 242.884 25.7 L 242.884 33.588 L 229.274 33.588 L 229.274 39.504 Z M 191.216 47.39 L 183.81 27.48 L 183.81 47.39 L 175.586 47.39 L 175.586 12.86 L 186.31 12.86 L 195.016 36.28 L 203.672 12.86 L 214.398 12.86 L 214.398 47.39 L 206.174 47.39 L 206.174 27.24 L 198.718 47.39 L 191.218 47.39 Z M 163.08 47.39 L 160.966 40.994 L 148.846 40.994 L 146.682 47.39 L 137.496 47.39 L 150.288 12.86 L 160.244 12.86 L 172.892 47.39 L 163.082 47.39 Z M 155.002 22.864 L 151.298 33.828 L 158.61 33.828 L 155 22.864 Z M 116.574 47.39 L 107.484 47.39 L 107.484 12.86 L 121.624 12.86 C 130.954 12.86 136.292 17.044 136.292 24.402 C 136.292 28.826 133.648 32.482 128.982 34.454 L 137.446 47.39 L 126.626 47.39 L 119.556 35.896 L 116.574 35.896 Z M 116.574 20.362 L 116.574 28.394 L 121.24 28.394 C 125.28 28.394 127.154 27.144 127.154 24.402 C 127.154 21.662 125.278 20.362 121.24 20.362 Z M 89.214 47.39 L 80.126 47.39 L 80.126 12.86 L 103.64 12.86 L 103.64 20.748 L 89.212 20.748 L 89.212 27.144 L 101.284 27.144 L 101.284 35.032 L 89.212 35.032 L 89.212 47.392 Z\",fill:\"#999\"})]}),/*#__PURE__*/_jsxs(\"div\",{ref:ref,id:id,\"data-framerforms-multi-step-form\":true,className:isOptimizing?OPTIMIZATION_CLASS_NAME:\"\",style:{display:\"none\"},children:[!isOptimizing&&!isCanvas&&/*#__PURE__*/_jsx(\"style\",{children:`form[framerforms-id=\"${formInfo===null||formInfo===void 0?void 0:formInfo.formId}\"] > [data-framer-name=\"Pages\" i] > *:not(:nth-child(${pageHistory?pageHistory[pageHistory.length-1]+1:1})) { display: none; }`}),isCanvas&&/*#__PURE__*/_jsx(\"style\",{children:`[data-framer-component-container=\"true\"] form[framerforms-id=\"${formInfo===null||formInfo===void 0?void 0:formInfo.formId}\"] > [data-framer-name=\"Pages\" i] > *:not(:first-child) { display: none; }`})]})]});}const MultiStepForm=withCSS(MultiStepFormComponent,[`form:has(.${OPTIMIZATION_CLASS_NAME}) > [data-framer-name=\"Pages\" i] > *:not(:first-child) { display: none; }`,`form:has(.${OPTIMIZATION_CLASS_NAME}) div:has(> button[type=\"submit\"]) { display: none; }`,`[${SUBMIT_BUTTON_HIDDEN_ATTRIBUTE}=\"true\"] { display: none; }`],OPTIMIZATION_CLASS_NAME);export default MultiStepForm;MultiStepForm.displayName=\"Multi-Step Form\";addPropertyControls(MultiStepForm,{endPage:{type:ControlType.Enum,defaultValue:\"lastPage\",options:[\"lastPage\",\"customPages\"],optionTitles:[\"Last Page\",\"Custom Pages\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},endPageCustom:{type:ControlType.Array,control:{type:ControlType.String,defaultValue:\"\",placeholder:\"Page Layer Name\",preventLocalization:true},title:\"Pages\",description:\"List of page names where the submit button is shown\",hidden:props=>props.endPage!==\"customPages\"},analytics:{type:ControlType.Object,optional:true,icon:\"interaction\",controls:{platform:{type:ControlType.Enum,options:[\"googleAnalytics\"],optionTitles:[\"Google Analytics 4\"]},googleAnalyticsEventName:{type:ControlType.String,placeholder:\"Event Name\",title:\"Event Name\",preventLocalization:true,hidden:props=>props.platform!==\"googleAnalytics\"},googleAnalyticsEventCategory:{type:ControlType.String,placeholder:\"Optional\",title:\"Category\",description:\"Make sure the Google Analytics 4 script is installed\",preventLocalization:true,hidden:props=>props.platform!==\"googleAnalytics\"}}},scrollToTop:{type:ControlType.Object,optional:true,title:\"Scroll to Top\",controls:{scrollStyle:{type:ControlType.Enum,defaultValue:\"smooth\",options:[\"smooth\",\"instant\"],optionTitles:[\"Smooth\",\"Instant\"],displaySegmentedControl:true,title:\"Scroll\"},offset:{type:ControlType.Number,defaultValue:32,step:1,description:\"When previous or next button is pressed, scroll to the top of the form with an offset\"}}}});//////////////////////////////////////////////////////////////\nfunction isFormValid(element){const inputs=element.querySelectorAll(\"input, select, textarea\");let invalidInputs=[];for(const input of inputs){if(isVisible(input)&&!input.reportValidity()){invalidInputs.push(input);}}// if (invalidInputs.length > 0) {\n//     console.log(\n//         \"Invalid inputs: \",\n//         invalidInputs.map((input) => input.name || input.type).join(\", \")\n//     )\n// }\nreturn invalidInputs.length===0;}function isVisible(element){return element.offsetParent!==null||element.type==\"hidden\";}function getChildIndexByDataFramerName(parentElement,name){const children=parentElement.children;for(let i=0;i<children.length;i++){if(children[i].getAttribute(\"data-framer-name\")===name){return i;}}return-1// Return -1 if no child with the specified attribute value is found\n;}function isPageAnEndPage(pageIndex,state,pages,endPageMode,customEndPages){let isEndPage=false;if(endPageMode===\"customPages\"&&pages){const step=pages.children[pageIndex];if(customEndPages.includes(step.getAttribute(\"data-framer-name\"))){isEndPage=true;}}else{isEndPage=pageIndex==state.totalPages-1;}return isEndPage;}function fireAnalyticsEvent(analytics,pageHistory,pages){if(!analytics||!pageHistory||!pages){return;}switch(analytics.platform){case\"googleAnalytics\":if(typeof window!==\"undefined\"){if(window.gtag){const pageIndex=pageHistory[pageHistory.length-1];const page=pages===null||pages===void 0?void 0:pages.children[pageIndex];const params={page_name:(page===null||page===void 0?void 0:page.getAttribute(\"data-framer-name\"))||(page===null||page===void 0?void 0:page.getAttribute(\"name\"))||`Page ${pageIndex+1}`};if(analytics.googleAnalyticsEventCategory){params.event_category=analytics.googleAnalyticsEventCategory;}window.gtag(\"event\",analytics.googleAnalyticsEventName,params);}else{console.error(\"Google Analytics gtag.js script is not installed.\");}}break;}}function getInputsOnPage(page){return Array.from(page.querySelectorAll('input:not([type=\"hidden\"]):not([disabled]):not([name=\"\"]):not([tabindex=\"-1\"]):not([data-framerforms-set-value-event]), textarea:not([disabled]):not([name=\"\"]):not([tabindex=\"-1\"]), select:not([disabled]):not([name=\"\"]):not([tabindex=\"-1\"]), button:not([disabled]):not([tabindex=\"-1\"])')).filter(el=>window.getComputedStyle(el).display!==\"none\");}function autoFocusInputOnPage(pageElement){if(!pageElement){return;}// Get all potential autofocus elements\nconst autofocusElements=pageElement.querySelectorAll(\"input[autofocus], select[autofocus], textarea[autofocus]\");// Convert NodeList to Array for easier manipulation\nconst elements=Array.from(autofocusElements);// Filter out hidden elements\nconst visibleElements=elements.filter(el=>{const style=window.getComputedStyle(el);return style.display!==\"none\"&&style.visibility!==\"hidden\"&&!el.hidden&&!el.disabled&&el.offsetParent!==null// Check if the element is rendered\n;});// If there are visible autofocus elements, focus the first one\nif(visibleElements.length>0){visibleElements[0].focus();}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"MultiStepForm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MultiStepForm.map", "// Generated by Framer (6f76210)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"N5yrSLf1u\",\"MEoKYc6YU\"];const serializationHash=\"framer-wFUnA\";const variantClassNames={MEoKYc6YU:\"framer-v-1yrz0db\",N5yrSLf1u:\"framer-v-toncdk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={next:\"MEoKYc6YU\",Pre:\"N5yrSLf1u\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"N5yrSLf1u\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"N5yrSLf1u\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-toncdk\",className,classNames),\"data-framer-name\":\"Pre\",layoutDependency:layoutDependency,layoutId:\"N5yrSLf1u\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({MEoKYc6YU:{\"data-framer-name\":\"next\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1viyc7a-container\",layoutDependency:layoutDependency,layoutId:\"CDPU77exB-container\",style:{rotate:0},variants:{MEoKYc6YU:{rotate:180}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-cf98d4ad-b00a-4f31-8fcb-9c6b065e273c, rgb(90, 49, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretUp\",id:\"CDPU77exB\",layoutId:\"CDPU77exB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wFUnA.framer-1juldzr, .framer-wFUnA .framer-1juldzr { display: block; }\",\".framer-wFUnA.framer-toncdk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-wFUnA .framer-1viyc7a-container { flex: none; height: 32px; position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wFUnA.framer-toncdk { gap: 0px; } .framer-wFUnA.framer-toncdk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wFUnA.framer-toncdk > :first-child { margin-left: 0px; } .framer-wFUnA.framer-toncdk > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 44\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"MEoKYc6YU\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQvJ16Dh1u=withCSS(Component,css,\"framer-wFUnA\");export default FramerQvJ16Dh1u;FramerQvJ16Dh1u.displayName=\"Button 4\";FramerQvJ16Dh1u.defaultProps={height:44,width:44};addPropertyControls(FramerQvJ16Dh1u,{variant:{options:[\"N5yrSLf1u\",\"MEoKYc6YU\"],optionTitles:[\"Pre\",\"next\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQvJ16Dh1u,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQvJ16Dh1u\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"44\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MEoKYc6YU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"44\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QvJ16Dh1u.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={prYu_h7_R:{hover:true},Zr1wAttIe:{hover:true}};const cycleOrder=[\"Zr1wAttIe\",\"prYu_h7_R\"];const serializationHash=\"framer-tpc3D\";const variantClassNames={prYu_h7_R:\"framer-v-7ilkin\",Zr1wAttIe:\"framer-v-62pyr2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Zr1wAttIe\",\"Variant 2\":\"prYu_h7_R\"};const getProps=({buttomText,buttonBgBackground,click,height,iconColor,id,link2,textColor,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,EXhEX8Lr6:(_ref=iconColor!==null&&iconColor!==void 0?iconColor:props.EXhEX8Lr6)!==null&&_ref!==void 0?_ref:\"var(--token-5ebb3a65-fba8-4034-92a5-668656037fe6, rgb(32, 0, 147))\",F6NklOLtp:(_ref1=buttonBgBackground!==null&&buttonBgBackground!==void 0?buttonBgBackground:props.F6NklOLtp)!==null&&_ref1!==void 0?_ref1:\"var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45))\",iWctBFWGY:click!==null&&click!==void 0?click:props.iWctBFWGY,lKmOTQdMB:link2!==null&&link2!==void 0?link2:props.lKmOTQdMB,ofi2OpWf0:(_ref2=buttomText!==null&&buttomText!==void 0?buttomText:props.ofi2OpWf0)!==null&&_ref2!==void 0?_ref2:\"Talk to an Expert\",rNP0_CAEK:(_ref3=textColor!==null&&textColor!==void 0?textColor:props.rNP0_CAEK)!==null&&_ref3!==void 0?_ref3:\"var(--token-99ab9b8a-b456-475a-85be-5cf2a30414c5, rgb(7, 1, 17))\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"Zr1wAttIe\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,rNP0_CAEK,ofi2OpWf0,EXhEX8Lr6,F6NklOLtp,iWctBFWGY,lKmOTQdMB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Zr1wAttIe\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapys1gyi=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(iWctBFWGY){const res=await iWctBFWGY(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"prYu_h7_R-hover\")return false;if(baseVariant===\"prYu_h7_R\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:lKmOTQdMB,nodeId:\"Zr1wAttIe\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-62pyr2\",className,classNames)} framer-7xrq5`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Zr1wAttIe\",onTap:onTapys1gyi,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:F6NklOLtp,borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({\"prYu_h7_R-hover\":{\"data-framer-name\":undefined},\"Zr1wAttIe-hover\":{\"data-framer-name\":undefined},prYu_h7_R:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-rNP0_CAEK-s9KZBiAUp))\"},children:\"Talk to an Expert\"})}),className:\"framer-1tdf5cr\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"vVcIxT19r\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-rNP0_CAEK-s9KZBiAUp)\",\"--variable-reference-rNP0_CAEK-s9KZBiAUp\":rNP0_CAEK},text:ofi2OpWf0,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vcnwns\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"zUWWw8onp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x18r2y-container\",layoutDependency:layoutDependency,layoutId:\"uyevsd6w2-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:EXhEX8Lr6,height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpLeft\",id:\"uyevsd6w2\",layoutId:\"uyevsd6w2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vo091x-container\",layoutDependency:layoutDependency,layoutId:\"nwzOVNMPQ-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:EXhEX8Lr6,height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpLeft\",id:\"nwzOVNMPQ\",layoutId:\"nwzOVNMPQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tpc3D.framer-7xrq5, .framer-tpc3D .framer-7xrq5 { display: block; }\",\".framer-tpc3D.framer-62pyr2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-tpc3D .framer-1tdf5cr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tpc3D .framer-1vcnwns { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-tpc3D .framer-1x18r2y-container { flex: none; height: 24px; left: calc(-154.16666666666666% - 24px / 2); position: absolute; top: calc(258.33333333333337% - 24px / 2); width: 24px; }\",\".framer-tpc3D .framer-vo091x-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tpc3D.framer-62pyr2 { gap: 0px; } .framer-tpc3D.framer-62pyr2 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-tpc3D.framer-62pyr2 > :first-child { margin-left: 0px; } .framer-tpc3D.framer-62pyr2 > :last-child { margin-right: 0px; } }\",\".framer-tpc3D.framer-v-62pyr2.hover .framer-1x18r2y-container { left: calc(50.00000000000002% - 24px / 2); top: calc(50.00000000000002% - 24px / 2); }\",\".framer-tpc3D.framer-v-62pyr2.hover .framer-vo091x-container { left: calc(237.5% - 24px / 2); top: calc(-166.66666666666666% - 24px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 242\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"prYu_h7_R\":{\"layout\":[\"auto\",\"auto\"]},\"WAL58vmPk\":{\"layout\":[\"auto\",\"auto\"]},\"ByuBHZ9op\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"rNP0_CAEK\":\"textColor\",\"ofi2OpWf0\":\"buttomText\",\"EXhEX8Lr6\":\"iconColor\",\"F6NklOLtp\":\"buttonBgBackground\",\"iWctBFWGY\":\"click\",\"lKmOTQdMB\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framers9KZBiAUp=withCSS(Component,css,\"framer-tpc3D\");export default Framers9KZBiAUp;Framers9KZBiAUp.displayName=\"Button/ Expert Button\";Framers9KZBiAUp.defaultProps={height:48,width:242};addPropertyControls(Framers9KZBiAUp,{variant:{options:[\"Zr1wAttIe\",\"prYu_h7_R\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},rNP0_CAEK:{defaultValue:\"var(--token-99ab9b8a-b456-475a-85be-5cf2a30414c5, rgb(7, 1, 17))\",title:\"Text color\",type:ControlType.Color},ofi2OpWf0:{defaultValue:\"Talk to an Expert\",displayTextArea:false,title:\"Buttom text\",type:ControlType.String},EXhEX8Lr6:{defaultValue:'var(--token-5ebb3a65-fba8-4034-92a5-668656037fe6, rgb(32, 0, 147)) /* {\"name\":\"Indigo 100%\"} */',title:\" icon Color\",type:ControlType.Color},F6NklOLtp:{defaultValue:'var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45)) /* {\"name\":\"Lime Yellow 100%\"} */',title:\" Button bg Background\",type:ControlType.Color},iWctBFWGY:{title:\"Click\",type:ControlType.EventHandler},lKmOTQdMB:{title:\"Link 2\",type:ControlType.Link}});addFonts(Framers9KZBiAUp,[{explicitInter:true,fonts:[{family:\"Termina Test Demi\",source:\"custom\",url:\"https://framerusercontent.com/assets/AMvaJ5HVjKVpcjLSMyrV026urKs.woff2\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framers9KZBiAUp\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"prYu_h7_R\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WAL58vmPk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ByuBHZ9op\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"rNP0_CAEK\\\":\\\"textColor\\\",\\\"ofi2OpWf0\\\":\\\"buttomText\\\",\\\"EXhEX8Lr6\\\":\\\"iconColor\\\",\\\"F6NklOLtp\\\":\\\"buttonBgBackground\\\",\\\"iWctBFWGY\\\":\\\"click\\\",\\\"lKmOTQdMB\\\":\\\"link2\\\"}\",\"framerIntrinsicWidth\":\"242\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./s9KZBiAUp.map", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonExpertButton from\"https://framerusercontent.com/modules/Ur2U2rsm9RFmG3HJwtdr/eGZffbfbhBvX4anFfRQF/s9KZBiAUp.js\";const ButtonExpertButtonFonts=getFonts(ButtonExpertButton);const cycleOrder=[\"VU4GOxwku\",\"e18P2RaHy\"];const serializationHash=\"framer-bJFfp\";const variantClassNames={e18P2RaHy:\"framer-v-ywlu5u\",VU4GOxwku:\"framer-v-ujs1p9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"VU4GOxwku\",Mobile:\"e18P2RaHy\"};const getProps=({buttomText,click,height,id,visible,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,m6mkXOXZZ:click!==null&&click!==void 0?click:props.m6mkXOXZZ,MN3q3uddB:(_ref=buttomText!==null&&buttomText!==void 0?buttomText:props.MN3q3uddB)!==null&&_ref!==void 0?_ref:\"Get Started\",qbIyZvUKu:(_ref1=visible!==null&&visible!==void 0?visible:props.qbIyZvUKu)!==null&&_ref1!==void 0?_ref1:true,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"VU4GOxwku\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,m6mkXOXZZ,qbIyZvUKu,MN3q3uddB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VU4GOxwku\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const iWctBFWGYqvsc4x=activeVariantCallback(async(...args)=>{if(m6mkXOXZZ){const res=await m6mkXOXZZ(...args);if(res===false)return false;}});const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ujs1p9\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"VU4GOxwku\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({e18P2RaHy:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[qbIyZvUKu&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fjo9zt\",\"data-framer-name\":\"Beelbolt\",layoutDependency:layoutDependency,layoutId:\"yI0wxHkg_\",style:{opacity:0},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1m4my1m\",\"data-framer-name\":\"Vector\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:43,layoutDependency:layoutDependency,layoutId:\"cJycvixLZ\",style:{rotate:-140},svg:'<svg width=\"43\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M3.353 23.998a3.393 3.393 0 0 1-.63-6.72c.209-.04.422-.06.635-.06A3.404 3.404 0 0 1 6.62 19.7h.255c1.725 0 4.446-.34 7.677-1.93a13.79 13.79 0 0 1-.33-2.332c-.412-7 3.84-12.708 8.256-14.719A7.32 7.32 0 0 1 25.477 0a4.199 4.199 0 0 1 3.007 1.162 4.06 4.06 0 0 1 1.18 3.08c-.091 4.16-5.161 9.606-7.107 11.353a32.092 32.092 0 0 1-4.564 3.45c.683 1.097 1.68 1.68 3.08 1.783h.448c4.969 0 12.532-5.732 15.007-13.16l-2.361-.6a.66.66 0 0 1-.472-.792.654.654 0 0 1 .162-.296l5.22-5.406a.65.65 0 0 1 .623-.18.65.65 0 0 1 .473.443l2.24 7.305a.64.64 0 0 1-.098.58.657.657 0 0 1-.524.28.633.633 0 0 1-.162-.023l-2.397-.61c-1.22 3.768-3.707 7.441-7.024 10.36-3.528 3.098-7.448 4.884-10.73 4.884-.204 0-.411 0-.615-.022a6.437 6.437 0 0 1-5.292-3.228 20.047 20.047 0 0 1-8.705 2.111h-.671a3.392 3.392 0 0 1-2.207 1.481c-.21.033-.423.048-.635.042ZM25.47 2.784a4.603 4.603 0 0 0-1.834.467c-3.463 1.577-6.966 6.325-6.63 12.02.02.361.054.708.1 1.036a30.448 30.448 0 0 0 3.602-2.8c2.458-2.209 6.126-6.719 6.182-9.346a1.24 1.24 0 0 0-.347-1.024 1.5 1.5 0 0 0-1.081-.353h.008Z\" fill=\"#6B7280\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5cee91fb-3937-44d4-8a09-8ab7fc260a61, rgb(107, 114, 128)))\"},children:\"Press Enter\"})}),className:\"framer-1er88eq\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"dvXRKSy8v\",style:{\"--extracted-r6o4lv\":\"var(--token-5cee91fb-3937-44d4-8a09-8ab7fc260a61, rgb(107, 114, 128))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WSJHg3PQ1\"},implicitPathVariables:undefined},{href:{webPageId:\"WSJHg3PQ1\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||43)-0-48)/2),...addPropertyOverrides({e18P2RaHy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||130)-0-134.6)/2+24+10)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gdjhtj-container\",layoutDependency:layoutDependency,layoutId:\"yJiHw7CFH-container\",children:/*#__PURE__*/_jsx(ButtonExpertButton,{EXhEX8Lr6:\"var(--token-5ebb3a65-fba8-4034-92a5-668656037fe6, rgb(32, 0, 147))\",F6NklOLtp:\"var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45))\",height:\"100%\",id:\"yJiHw7CFH\",iWctBFWGY:iWctBFWGYqvsc4x,layoutId:\"yJiHw7CFH\",lKmOTQdMB:resolvedLinks[0],ofi2OpWf0:MN3q3uddB,rNP0_CAEK:\"rgb(32, 0, 147)\",variant:\"prYu_h7_R\",width:\"100%\",...addPropertyOverrides({e18P2RaHy:{lKmOTQdMB:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4bmmpm\",\"data-framer-name\":\"Beelbolt\",layoutDependency:layoutDependency,layoutId:\"Ye4sFj7fE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2puypv\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:46,layoutDependency:layoutDependency,layoutId:\"v3dZHinh1\",style:{rotate:0},svg:'<svg width=\"46\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M43.967 11.198a3.392 3.392 0 0 1-.568 6.018c-.78.31-1.645.32-2.432.028a3.466 3.466 0 0 1-.572-.282 3.404 3.404 0 0 1-1.468-3.828L38.712 13c-1.467-.908-3.96-2.051-7.544-2.399-.253.744-.57 1.467-.946 2.157-3.333 6.17-9.953 8.786-14.765 8.173a7.322 7.322 0 0 1-2.929-.967 4.186 4.186 0 0 1-1.946-2.57 4.062 4.062 0 0 1 .617-3.24c2.267-3.49 9.444-5.453 12.018-5.915a32.09 32.09 0 0 1 5.695-.532c-.003-1.293-.544-2.312-1.68-3.137l-.381-.236c-4.226-2.615-13.673-1.72-19.686 3.295l1.692 1.753a.66.66 0 0 1-.015.921.654.654 0 0 1-.294.167l-7.284 1.85a.65.65 0 0 1-.624-.174.649.649 0 0 1-.169-.626L2.41 4.13a.64.64 0 0 1 .388-.441.657.657 0 0 1 .593.037.633.633 0 0 1 .126.104l1.717 1.781C8.253 3.048 12.3 1.233 16.657.497c4.63-.78 8.904-.236 11.694 1.49.174.108.35.217.512.343a6.436 6.436 0 0 1 2.802 5.53 20.047 20.047 0 0 1 8.514 2.785l.57.353a3.384 3.384 0 0 1 1.318-.32c.457-.017.911.059 1.338.222.196.082.385.181.562.298Zm-29.97 6.403a4.602 4.602 0 0 0 1.805.568c3.774.48 9.252-1.714 11.962-6.734.173-.317.327-.63.46-.934a30.448 30.448 0 0 0-4.536.487c-3.253.585-8.745 2.49-10.175 4.695a1.24 1.24 0 0 0-.244 1.053 1.5 1.5 0 0 0 .734.869l-.007-.004Z\" fill=\"#fff\"/></svg>',variants:{e18P2RaHy:{rotate:133}},withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255)))\"},children:\"Press Enter\"})}),className:\"framer-1oqzm2w\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"kvrokEVG6\",style:{\"--extracted-r6o4lv\":\"var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({e18P2RaHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255)))\"},children:\"Tap\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bJFfp.framer-1c7g8l1, .framer-bJFfp .framer-1c7g8l1 { display: block; }\",\".framer-bJFfp.framer-ujs1p9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 592px; }\",\".framer-bJFfp .framer-1fjo9zt, .framer-bJFfp .framer-4bmmpm { 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: 177px; }\",\".framer-bJFfp .framer-1m4my1m { aspect-ratio: 1.7916666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 42px; }\",\".framer-bJFfp .framer-1er88eq, .framer-bJFfp .framer-1oqzm2w { flex: none; height: auto; max-width: 157px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-bJFfp .framer-gdjhtj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-bJFfp .framer-2puypv { aspect-ratio: 2.090909090909091 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 31px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bJFfp.framer-ujs1p9, .framer-bJFfp .framer-1fjo9zt, .framer-bJFfp .framer-4bmmpm { gap: 0px; } .framer-bJFfp.framer-ujs1p9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bJFfp.framer-ujs1p9 > :first-child, .framer-bJFfp .framer-1fjo9zt > :first-child, .framer-bJFfp .framer-4bmmpm > :first-child { margin-left: 0px; } .framer-bJFfp.framer-ujs1p9 > :last-child, .framer-bJFfp .framer-1fjo9zt > :last-child, .framer-bJFfp .framer-4bmmpm > :last-child { margin-right: 0px; } .framer-bJFfp .framer-1fjo9zt > *, .framer-bJFfp .framer-4bmmpm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-bJFfp.framer-v-ywlu5u.framer-ujs1p9 { flex-direction: column; }\",\".framer-bJFfp.framer-v-ywlu5u .framer-4bmmpm { flex-direction: column; width: 344px; }\",\".framer-bJFfp.framer-v-ywlu5u .framer-2puypv { order: 0; }\",\".framer-bJFfp.framer-v-ywlu5u .framer-1oqzm2w { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bJFfp.framer-v-ywlu5u.framer-ujs1p9, .framer-bJFfp.framer-v-ywlu5u .framer-4bmmpm { gap: 0px; } .framer-bJFfp.framer-v-ywlu5u.framer-ujs1p9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bJFfp.framer-v-ywlu5u.framer-ujs1p9 > :first-child, .framer-bJFfp.framer-v-ywlu5u .framer-4bmmpm > :first-child { margin-top: 0px; } .framer-bJFfp.framer-v-ywlu5u.framer-ujs1p9 > :last-child, .framer-bJFfp.framer-v-ywlu5u .framer-4bmmpm > :last-child { margin-bottom: 0px; } .framer-bJFfp.framer-v-ywlu5u .framer-4bmmpm > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 43\n * @framerIntrinsicWidth 592\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"e18P2RaHy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"m6mkXOXZZ\":\"click\",\"qbIyZvUKu\":\"visible\",\"MN3q3uddB\":\"buttomText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerR9YaiE4Lk=withCSS(Component,css,\"framer-bJFfp\");export default FramerR9YaiE4Lk;FramerR9YaiE4Lk.displayName=\"Get Started 2\";FramerR9YaiE4Lk.defaultProps={height:43,width:592};addPropertyControls(FramerR9YaiE4Lk,{variant:{options:[\"VU4GOxwku\",\"e18P2RaHy\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},m6mkXOXZZ:{title:\"Click\",type:ControlType.EventHandler},qbIyZvUKu:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},MN3q3uddB:{defaultValue:\"Get Started\",displayTextArea:false,title:\"Buttom Text\",type:ControlType.String}});addFonts(FramerR9YaiE4Lk,[{explicitInter:true,fonts:[{family:\"Termina Test Demi\",source:\"custom\",url:\"https://framerusercontent.com/assets/233S1NdkxSUJdUNubAnxeIBwH0.woff2\"}]},...ButtonExpertButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerR9YaiE4Lk\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e18P2RaHy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"592\",\"framerVariables\":\"{\\\"m6mkXOXZZ\\\":\\\"click\\\",\\\"qbIyZvUKu\\\":\\\"visible\\\",\\\"MN3q3uddB\\\":\\\"buttomText\\\"}\",\"framerIntrinsicHeight\":\"43\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./R9YaiE4Lk.map", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={zH92vldKJ:{hover:true,pressed:true}};const cycleOrder=[\"zH92vldKJ\",\"azQHiNTUy\",\"FiIAa42XD\",\"G4hScwoV_\"];const serializationHash=\"framer-sd6zz\";const variantClassNames={azQHiNTUy:\"framer-v-16ce6xu\",FiIAa42XD:\"framer-v-amrzjh\",G4hScwoV_:\"framer-v-qo9wrx\",zH92vldKJ:\"framer-v-xf0zsw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"zH92vldKJ\",Disabled:\"FiIAa42XD\",Error:\"G4hScwoV_\",Loading:\"azQHiNTUy\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"zH92vldKJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zH92vldKJ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"azQHiNTUy\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"azQHiNTUy\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-xf0zsw\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"zH92vldKJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,opacity:1,...style},variants:{FiIAa42XD:{opacity:.5},G4hScwoV_:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"}},...addPropertyOverrides({\"zH92vldKJ-hover\":{\"data-framer-name\":undefined},\"zH92vldKJ-pressed\":{\"data-framer-name\":undefined},azQHiNTUy:{\"data-framer-name\":\"Loading\"},FiIAa42XD:{\"data-framer-name\":\"Disabled\"},G4hScwoV_:{\"data-framer-name\":\"Error\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5ebb3a65-fba8-4034-92a5-668656037fe6, rgb(32, 0, 147)))\"},children:\"Submit\"})}),className:\"framer-8z9v57\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"WCiiFvI8P\",style:{\"--extracted-r6o4lv\":\"var(--token-5ebb3a65-fba8-4034-92a5-668656037fe6, rgb(32, 0, 147))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{G4hScwoV_:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({G4hScwoV_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x9946h\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"fInmlvQwU\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-zbtuc1\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"zHzReP71I\",style:{background:'conic-gradient(from 0deg at 50% 50%, var(--token-99ab9b8a-b456-475a-85be-5cf2a30414c5, rgb(7, 1, 17)) /* {\"name\":\"Header text\"} */ 7.208614864864882deg, var(--token-99ab9b8a-b456-475a-85be-5cf2a30414c5, rgb(7, 1, 17)) /* {\"name\":\"Header text\"} */ 342deg)',mask:\"none\",WebkitMask:\"none\"},variants:{azQHiNTUy:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wg0q65\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"SstFLqaCU\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sd6zz.framer-5kztl3, .framer-sd6zz .framer-5kztl3 { display: block; }\",\".framer-sd6zz.framer-xf0zsw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 43px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-sd6zz .framer-8z9v57 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-sd6zz .framer-1x9946h { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-sd6zz .framer-zbtuc1 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-sd6zz .framer-wg0q65 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sd6zz.framer-xf0zsw { gap: 0px; } .framer-sd6zz.framer-xf0zsw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sd6zz.framer-xf0zsw > :first-child { margin-left: 0px; } .framer-sd6zz.framer-xf0zsw > :last-child { margin-right: 0px; } }\",\".framer-sd6zz.framer-v-16ce6xu.framer-xf0zsw, .framer-sd6zz.framer-v-amrzjh.framer-xf0zsw, .framer-sd6zz.framer-v-qo9wrx.framer-xf0zsw { cursor: unset; }\",\".framer-sd6zz.framer-v-16ce6xu .framer-zbtuc1 { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"azQHiNTUy\":{\"layout\":[\"fixed\",\"fixed\"]},\"FiIAa42XD\":{\"layout\":[\"fixed\",\"fixed\"]},\"G4hScwoV_\":{\"layout\":[\"fixed\",\"fixed\"]},\"mOM92LHgx\":{\"layout\":[\"fixed\",\"fixed\"]},\"BZ9uHG10b\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruECChUQVs=withCSS(Component,css,\"framer-sd6zz\");export default FrameruECChUQVs;FrameruECChUQVs.displayName=\"Button 3\";FrameruECChUQVs.defaultProps={height:40,width:240};addPropertyControls(FrameruECChUQVs,{variant:{options:[\"zH92vldKJ\",\"azQHiNTUy\",\"FiIAa42XD\",\"G4hScwoV_\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameruECChUQVs,[{explicitInter:true,fonts:[{family:\"Termina Test Demi\",source:\"custom\",url:\"https://framerusercontent.com/assets/233S1NdkxSUJdUNubAnxeIBwH0.woff2\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruECChUQVs\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"azQHiNTUy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FiIAa42XD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G4hScwoV_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mOM92LHgx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BZ9uHG10b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"240\",\"framerIntrinsicHeight\":\"40\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uECChUQVs.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import MultiStepFormButton from\"https://framerusercontent.com/modules/fPSKMdnAZGIeyDfLV8KP/UF1CreM6AP9OrHJ5kt1D/MultiStepFormButton.js\";import Beelbolt from\"https://framerusercontent.com/modules/Puote0zLOl5OG8YZp1eM/W40NhY29OhgsDWMjjL3F/MTRc3gLdb.js\";import MultiStepForm from\"https://framerusercontent.com/modules/wV9SghwspjN8vk1MgoSi/jK6W9I4VdUpVRrPPcIq5/MultiStepForm.js\";import Button4 from\"https://framerusercontent.com/modules/tJYbNughxA4SRQ8feJte/kjc1loSrPKPolWIAJTNl/QvJ16Dh1u.js\";import GetStarted2 from\"https://framerusercontent.com/modules/pRDSkcuzWvWaqiSpi7uy/E20is4IUL2MyQBZrrzr7/R9YaiE4Lk.js\";import Button3 from\"https://framerusercontent.com/modules/N4h6bUqrUWz76TQ6POwA/WifkLOmCzu9bLoakTeOE/uECChUQVs.js\";const GetStarted2Fonts=getFonts(GetStarted2);const MultiStepFormFonts=getFonts(MultiStepForm);const Button3Fonts=getFonts(Button3);const MultiStepFormButtonFonts=getFonts(MultiStepFormButton);const BeelboltFonts=getFonts(Beelbolt);const Button4Fonts=getFonts(Button4);const cycleOrder=[\"KZi1hD3Vm\",\"TlpSin6iJ\",\"VruAnzu2R\"];const serializationHash=\"framer-CD26Q\";const variantClassNames={KZi1hD3Vm:\"framer-v-1x5md1j\",TlpSin6iJ:\"framer-v-1d55c19\",VruAnzu2R:\"framer-v-fgi0fd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition2={damping:60,delay:0,mass:1,stiffness:250,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"KZi1hD3Vm\",\"Variant 2\":\"TlpSin6iJ\",\"Variant 3\":\"VruAnzu2R\"};const getProps=({fontSize,height,id,thanku,visible,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,DeBw0Kmu1:(_ref=visible!==null&&visible!==void 0?visible:props.DeBw0Kmu1)!==null&&_ref!==void 0?_ref:true,RUcOVZ02c:(_ref1=fontSize!==null&&fontSize!==void 0?fontSize:props.RUcOVZ02c)!==null&&_ref1!==void 0?_ref1:40,TkOIT8v6T:(_ref2=thanku!==null&&thanku!==void 0?thanku:props.TkOIT8v6T)!==null&&_ref2!==void 0?_ref2:40,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"KZi1hD3Vm\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RUcOVZ02c,DeBw0Kmu1,QWE_ABNXk,TkOIT8v6T,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KZi1hD3Vm\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onSuccessyfvn5m=activeVariantCallback(async(...args)=>{setVariant(\"VruAnzu2R\");});const m6mkXOXZZ1mmfmby=activeVariantCallback(async(...args)=>{setVariant(\"KZi1hD3Vm\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"TlpSin6iJ\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"TlpSin6iJ\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"VruAnzu2R\")return false;return true;};const isDisplayed3=()=>{if([\"TlpSin6iJ\",\"VruAnzu2R\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"VruAnzu2R\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(FormContainer,{...restProps,...gestureHandlers,action:\"https://api.framer.com/forms/v1/forms/22955b84-90b1-4480-a796-8b301ab28f84/submit\",className:cx(serializationHash,...sharedStyleClassNames,\"framer-1x5md1j\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KZi1hD3Vm\",onSuccess:onSuccessyfvn5m,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({TlpSin6iJ:{\"data-framer-name\":\"Variant 2\",\"data-highlight\":undefined,onSuccess:undefined},VruAnzu2R:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17bbj41\",\"data-framer-name\":\"Group 1\",layoutDependency:layoutDependency,layoutId:\"bHPYevR6H\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-RUcOVZ02c-THvSoCZGr) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Lorem ipsum dummy text is used as placeholder to Beebolt\"})}),className:\"framer-y70h4f\",\"data-framer-name\":\"Collaboration OS for Global Trade\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"lE56RKdHh\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-RUcOVZ02c-THvSoCZGr\":RUcOVZ02c},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.12em\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(181, 162, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Lorem ipsum dummy text is used as a plceholder\"})}),className:\"framer-q656ui\",\"data-framer-name\":\"AI-POWERED SOLUTIONS FOR MULTI-TIER SUPPLY CHAINS\",fonts:[\"GF;Manrope-800\"],layoutDependency:layoutDependency,layoutId:\"piAxQEdXT\",style:{\"--extracted-r6o4lv\":\"rgb(181, 162, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"bottom\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({TlpSin6iJ:{height:43,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w8nptk-container\",layoutDependency:layoutDependency,layoutId:\"u6U2x84NL-container\",children:/*#__PURE__*/_jsx(GetStarted2,{height:\"100%\",id:\"u6U2x84NL\",layoutId:\"u6U2x84NL\",m6mkXOXZZ:m6mkXOXZZ1mmfmby,MN3q3uddB:\"Get Started\",qbIyZvUKu:DeBw0Kmu1,style:{width:\"100%\"},type:\"submit\",variant:QWE_ABNXk,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1or4bvu-container\",layoutDependency:layoutDependency,layoutId:\"QRsbyieNP-container\",children:/*#__PURE__*/_jsx(MultiStepForm,{endPage:\"lastPage\",endPageCustom:[\"\"],height:\"100%\",id:\"QRsbyieNP\",layoutId:\"QRsbyieNP\",scrollToTop:{offset:0,scrollStyle:\"instant\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lbes2f\",\"data-framer-name\":\"Pages\",layoutDependency:layoutDependency,layoutId:\"iHlPvmjQH\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jwv786\",\"data-framer-name\":\"name\",layoutDependency:layoutDependency,layoutId:\"dWJirMkpb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255)))\"},children:\"What's your name?\"})}),className:\"framer-1hgbn6p\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"c1flyscrU\",style:{\"--extracted-1lwpl3i\":\"var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o2h8fq\",\"data-framer-name\":\"Main wrapper\",layoutDependency:layoutDependency,layoutId:\"SMjYhcV6j\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1urmt5p\",\"data-framer-name\":\"First Name\",layoutDependency:layoutDependency,layoutId:\"r0rcEQrK8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255)))\"},children:\"First name*\"})}),className:\"framer-15a7j3b\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"tnr6VV3sS\",style:{\"--extracted-r6o4lv\":\"var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-tskb3b\",inputName:\"First Name\",layoutDependency:layoutDependency,layoutId:\"nH7xAGkCQ\",placeholder:\"Jane\",required:true,style:{\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(196, 196, 196, 0.5)\",\"--framer-input-border-left-width\":\"0px\",\"--framer-input-border-right-width\":\"0px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"0px\",\"--framer-input-font-color\":\"rgb(255, 255, 255)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(196, 196, 196)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1pfu8pw\",\"data-framer-name\":\"Last Name\",layoutDependency:layoutDependency,layoutId:\"s96VBfbR7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255)))\"},children:\"Last name*\"})}),className:\"framer-16ye334\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"FmeI4xmpV\",style:{\"--extracted-r6o4lv\":\"var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-7soal6\",inputName:\"Last Name\",layoutDependency:layoutDependency,layoutId:\"FcUSTXR23\",placeholder:\"Smith\",required:true,style:{\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(196, 196, 196, 0.5)\",\"--framer-input-border-left-width\":\"0px\",\"--framer-input-border-right-width\":\"0px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"0px\",\"--framer-input-font-color\":\"rgb(255, 255, 255)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(196, 196, 196)\"},type:\"text\"})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-utcs4a\",\"data-framer-name\":\"Website\",layoutDependency:layoutDependency,layoutId:\"YyvnC0doK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255)))\"},children:\"What is your email address?\"})}),className:\"framer-rawq7n\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"ad2UHPYaF\",style:{\"--extracted-1lwpl3i\":\"var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xk93xr\",\"data-framer-name\":\"Main wrapper\",layoutDependency:layoutDependency,layoutId:\"Oh8_bmJ3U\",children:/*#__PURE__*/_jsx(motion.label,{className:\"framer-12peyw6\",\"data-framer-name\":\"Website url\",layoutDependency:layoutDependency,layoutId:\"otlFJ2pOt\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-po9uzs\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"ZJdmppUN5\",placeholder:\"Type your answer here...\",required:true,style:{\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(196, 196, 196, 0.5)\",\"--framer-input-border-left-width\":\"0px\",\"--framer-input-border-right-width\":\"0px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"0px\",\"--framer-input-font-color\":\"rgb(255, 255, 255)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(196, 196, 196)\"},type:\"email\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-do18tg\",\"data-framer-name\":\"Message\",layoutDependency:layoutDependency,layoutId:\"PIKHuhTXU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255)))\"},children:\"Please provide the name of your company.\"})}),className:\"framer-b18mww\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"S35gHZt2x\",style:{\"--extracted-1lwpl3i\":\"var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10rpobw\",\"data-framer-name\":\"Massage\",layoutDependency:layoutDependency,layoutId:\"uUn6jFiRR\",children:/*#__PURE__*/_jsx(motion.label,{className:\"framer-vegmu2\",\"data-framer-name\":\"massage\",layoutDependency:layoutDependency,layoutId:\"DgMAMLnuZ\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-td3qp\",inputName:\"Company Name\",layoutDependency:layoutDependency,layoutId:\"o9lYFilN4\",placeholder:\"Type your answer here...\",required:true,style:{\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(196, 196, 196, 0.5)\",\"--framer-input-border-left-width\":\"0px\",\"--framer-input-border-right-width\":\"0px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"0px\",\"--framer-input-font-color\":\"rgb(255, 255, 255)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(196, 196, 196)\"},type:\"text\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1176ctr\",\"data-framer-name\":\"Message\",layoutDependency:layoutDependency,layoutId:\"eL1e9S1ur\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255)))\"},children:\"Leave us a message (optional)\"})}),className:\"framer-b6cxx2\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"D3Djsfc8i\",style:{\"--extracted-1lwpl3i\":\"var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sr3itp\",\"data-framer-name\":\"Massage\",layoutDependency:layoutDependency,layoutId:\"X1DiOF09P\",children:/*#__PURE__*/_jsx(motion.label,{className:\"framer-159shdm\",\"data-framer-name\":\"massage\",layoutDependency:layoutDependency,layoutId:\"txY3z4oDW\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-dlkgtx\",inputName:\"Message\",layoutDependency:layoutDependency,layoutId:\"JyZIfcVLC\",placeholder:\"A space for anything you'd\\xa0like\\xa0to\\xa0share\",required:false,style:{\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(196, 196, 196, 0.5)\",\"--framer-input-border-left-width\":\"0px\",\"--framer-input-border-right-width\":\"0px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"0px\",\"--framer-input-font-color\":\"rgb(255, 255, 255)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(196, 196, 196)\"},type:\"text\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 600px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qh0xgr-container\",layoutDependency:layoutDependency,layoutId:\"Lyk5nRvlY-container\",children:/*#__PURE__*/_jsx(Button3,{height:\"100%\",id:\"Lyk5nRvlY\",layoutId:\"Lyk5nRvlY\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"zH92vldKJ\",width:\"100%\"})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1twwrry\",layoutDependency:layoutDependency,layoutId:\"shHtJyVIl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-id2zfn-container\",\"data-framer-name\":\"Next Button\",layoutDependency:layoutDependency,layoutId:\"hu6q9L2vk-container\",name:\"Next Button\",children:/*#__PURE__*/_jsx(MultiStepFormButton,{appearance:\"default\",autoHide:false,border:{color:\"rgba(0, 153, 255, 0)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(32, 0, 147)\",customLayer:[],fill:{color:\"var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45))\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"hu6q9L2vk\",layoutId:\"hu6q9L2vk\",name:\"Next Button\",padding:\"12px 24px 12px 24px\",page:\"next\",radius:\"4px\",shadows:\"\",text:\"Ok \",transition:{delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14zukhv-container\",\"data-framer-name\":\"Next Button\",layoutDependency:layoutDependency,layoutId:\"Cw4aU4bf1-container\",name:\"Next Button\",children:/*#__PURE__*/_jsx(MultiStepFormButton,{appearance:\"custom\",autoHide:false,border:{color:\"rgba(0, 153, 255, 0)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(32, 0, 147)\",customLayer:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"177px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-flupt2-container\",layoutDependency:layoutDependency,layoutId:\"Ornv0rq52-container\",children:/*#__PURE__*/_jsx(Beelbolt,{height:\"100%\",id:\"Ornv0rq52\",layoutId:\"Ornv0rq52\",style:{width:\"100%\"},width:\"100%\"})})})],fill:{color:\"var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45))\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"Cw4aU4bf1\",layoutId:\"Cw4aU4bf1\",name:\"Next Button\",padding:\"12px 24px 12px 24px\",page:\"next\",radius:\"4px\",shadows:\"\",style:{width:\"100%\"},text:\"Ok \",transition:{delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mfth20\",layoutDependency:layoutDependency,layoutId:\"noZktsArf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hm8dxk-container\",\"data-framer-name\":\"Previous Button\",layoutDependency:layoutDependency,layoutId:\"xj6GUTUyf-container\",name:\"Previous Button\",whileTap:animation,children:/*#__PURE__*/_jsx(MultiStepFormButton,{appearance:\"custom\",autoHide:false,border:{color:\"rgba(0, 153, 255, 0)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(32, 0, 147)\",customLayer:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16u16uh-container\",layoutDependency:layoutDependency,layoutId:\"F_XDN26WJ-container\",children:/*#__PURE__*/_jsx(Button4,{height:\"100%\",id:\"F_XDN26WJ\",layoutId:\"F_XDN26WJ\",variant:\"N5yrSLf1u\",width:\"100%\"})})})],fill:{color:\"var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45))\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"xj6GUTUyf\",layoutId:\"xj6GUTUyf\",name:\"Previous Button\",padding:\"12px 24px 12px 24px\",page:\"previous\",radius:\"4px\",shadows:\"\",text:\"Previous\",transition:{delay:0,duration:.9,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11vxdcw-container\",\"data-framer-name\":\"Previous Button\",layoutDependency:layoutDependency,layoutId:\"V317JZwVw-container\",name:\"Previous Button\",whileTap:animation,children:/*#__PURE__*/_jsx(MultiStepFormButton,{appearance:\"custom\",autoHide:false,border:{color:\"rgba(0, 153, 255, 0)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(32, 0, 147)\",customLayer:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y9avyk-container\",layoutDependency:layoutDependency,layoutId:\"bAXQusQ0R-container\",children:/*#__PURE__*/_jsx(Button4,{height:\"100%\",id:\"bAXQusQ0R\",layoutId:\"bAXQusQ0R\",variant:\"MEoKYc6YU\",width:\"100%\"})})})],fill:{color:\"var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45))\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"V317JZwVw\",layoutId:\"V317JZwVw\",name:\"Previous Button\",padding:\"12px 24px 12px 24px\",page:\"next\",radius:\"4px\",shadows:\"\",text:\"Previous\",transition:{delay:0,duration:.9,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7wxbio-container\",\"data-framer-name\":\"Next Button\",layoutDependency:layoutDependency,layoutId:\"aIJDxMjPL-container\",name:\"Next Button\",children:/*#__PURE__*/_jsx(MultiStepFormButton,{appearance:\"custom\",autoHide:false,border:{color:\"rgba(0, 153, 255, 0)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(32, 0, 147)\",customLayer:[],fill:{color:\"var(--token-699f2fea-9cc1-46c0-905b-cb958014cfac, rgb(227, 255, 45))\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"aIJDxMjPL\",layoutId:\"aIJDxMjPL\",name:\"Next Button\",padding:\"12px 24px 12px 24px\",page:\"next\",radius:\"4px\",shadows:\"\",text:\"Next\",transition:{delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hpfc29\",\"data-framer-name\":\"Group 1\",layoutDependency:layoutDependency,layoutId:\"dp14hdawh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-TkOIT8v6T-THvSoCZGr) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you for the submission!\"})}),className:\"framer-wsj7eb\",\"data-framer-name\":\"Collaboration OS for Global Trade\",fonts:[\"CUSTOM;Termina Test Demi\"],layoutDependency:layoutDependency,layoutId:\"fHJKQXM6n\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-TkOIT8v6T-THvSoCZGr\":TkOIT8v6T},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.12em\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(181, 162, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"We'll be in touch\\xa0soon\"})}),className:\"framer-z298wy\",\"data-framer-name\":\"AI-POWERED SOLUTIONS FOR MULTI-TIER SUPPLY CHAINS\",fonts:[\"GF;Manrope-800\"],layoutDependency:layoutDependency,layoutId:\"kKdq53gT7\",style:{\"--extracted-r6o4lv\":\"rgb(181, 162, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"bottom\",withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({VruAnzu2R:{height:43,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fycyx0-container\",layoutDependency:layoutDependency,layoutId:\"aHWpSet01-container\",children:/*#__PURE__*/_jsx(GetStarted2,{height:\"100%\",id:\"aHWpSet01\",layoutId:\"aHWpSet01\",MN3q3uddB:\"Back to Home\",qbIyZvUKu:DeBw0Kmu1,style:{width:\"100%\"},variant:QWE_ABNXk,width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CD26Q.framer-151hdjo, .framer-CD26Q .framer-151hdjo { display: block; }\",\".framer-CD26Q.framer-1x5md1j { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 632px; }\",\".framer-CD26Q .framer-17bbj41 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CD26Q .framer-y70h4f, .framer-CD26Q .framer-q656ui, .framer-CD26Q .framer-1hgbn6p, .framer-CD26Q .framer-15a7j3b, .framer-CD26Q .framer-16ye334, .framer-CD26Q .framer-rawq7n, .framer-CD26Q .framer-b18mww, .framer-CD26Q .framer-b6cxx2, .framer-CD26Q .framer-z298wy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CD26Q .framer-w8nptk-container, .framer-CD26Q .framer-1fycyx0-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-CD26Q .framer-1or4bvu-container, .framer-CD26Q .framer-id2zfn-container, .framer-CD26Q .framer-hm8dxk-container, .framer-CD26Q .framer-11vxdcw-container, .framer-CD26Q .framer-7wxbio-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-CD26Q .framer-1lbes2f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CD26Q .framer-1jwv786, .framer-CD26Q .framer-o2h8fq, .framer-CD26Q .framer-utcs4a, .framer-CD26Q .framer-xk93xr, .framer-CD26Q .framer-do18tg, .framer-CD26Q .framer-10rpobw, .framer-CD26Q .framer-1176ctr, .framer-CD26Q .framer-sr3itp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CD26Q .framer-1urmt5p, .framer-CD26Q .framer-1pfu8pw, .framer-CD26Q .framer-12peyw6, .framer-CD26Q .framer-vegmu2, .framer-CD26Q .framer-159shdm { 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; padding: 0px; position: relative; width: 100%; }\",'.framer-CD26Q .framer-tskb3b, .framer-CD26Q .framer-7soal6, .framer-CD26Q .framer-po9uzs { --framer-input-focused-border-color: var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, #ffffff); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 0px 0px 1px 0px; --framer-input-font-family: \"Termina Test Demi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 15px; --framer-input-padding: 12px; flex: none; height: 50px; position: relative; width: 100%; }','.framer-CD26Q .framer-td3qp, .framer-CD26Q .framer-dlkgtx { --framer-input-focused-border-color: var(--token-72ba5382-80e4-4ca9-98fb-3290c4e3a9d4, #ffffff); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 0px 0px 1px 0px; --framer-input-font-family: \"Termina Test Demi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 15px; --framer-input-padding: 12px; --framer-input-wrapper-height: auto; flex: none; height: auto; min-height: 50px; position: relative; width: 100%; }',\".framer-CD26Q .framer-1qh0xgr-container { flex: none; height: 43px; max-width: 600px; position: relative; width: 100%; }\",\".framer-CD26Q .framer-1twwrry { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CD26Q .framer-14zukhv-container { flex: none; height: auto; position: relative; width: 177px; }\",\".framer-CD26Q .framer-flupt2-container { height: auto; position: relative; width: 177px; }\",\".framer-CD26Q .framer-1mfth20 { align-content: center; align-items: center; bottom: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: absolute; right: 20px; width: 100%; z-index: 1; }\",\".framer-CD26Q .framer-16u16uh-container, .framer-CD26Q .framer-1y9avyk-container { height: auto; position: relative; width: auto; }\",\".framer-CD26Q .framer-1hpfc29 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CD26Q .framer-wsj7eb { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CD26Q.framer-1x5md1j, .framer-CD26Q .framer-17bbj41, .framer-CD26Q .framer-1lbes2f, .framer-CD26Q .framer-1jwv786, .framer-CD26Q .framer-o2h8fq, .framer-CD26Q .framer-1urmt5p, .framer-CD26Q .framer-1pfu8pw, .framer-CD26Q .framer-utcs4a, .framer-CD26Q .framer-xk93xr, .framer-CD26Q .framer-12peyw6, .framer-CD26Q .framer-do18tg, .framer-CD26Q .framer-10rpobw, .framer-CD26Q .framer-vegmu2, .framer-CD26Q .framer-1176ctr, .framer-CD26Q .framer-sr3itp, .framer-CD26Q .framer-159shdm, .framer-CD26Q .framer-1twwrry, .framer-CD26Q .framer-1mfth20, .framer-CD26Q .framer-1hpfc29 { gap: 0px; } .framer-CD26Q.framer-1x5md1j > *, .framer-CD26Q .framer-17bbj41 > *, .framer-CD26Q .framer-1hpfc29 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-CD26Q.framer-1x5md1j > :first-child, .framer-CD26Q .framer-17bbj41 > :first-child, .framer-CD26Q .framer-1lbes2f > :first-child, .framer-CD26Q .framer-1jwv786 > :first-child, .framer-CD26Q .framer-o2h8fq > :first-child, .framer-CD26Q .framer-1urmt5p > :first-child, .framer-CD26Q .framer-1pfu8pw > :first-child, .framer-CD26Q .framer-utcs4a > :first-child, .framer-CD26Q .framer-xk93xr > :first-child, .framer-CD26Q .framer-12peyw6 > :first-child, .framer-CD26Q .framer-do18tg > :first-child, .framer-CD26Q .framer-10rpobw > :first-child, .framer-CD26Q .framer-vegmu2 > :first-child, .framer-CD26Q .framer-1176ctr > :first-child, .framer-CD26Q .framer-sr3itp > :first-child, .framer-CD26Q .framer-159shdm > :first-child, .framer-CD26Q .framer-1hpfc29 > :first-child { margin-top: 0px; } .framer-CD26Q.framer-1x5md1j > :last-child, .framer-CD26Q .framer-17bbj41 > :last-child, .framer-CD26Q .framer-1lbes2f > :last-child, .framer-CD26Q .framer-1jwv786 > :last-child, .framer-CD26Q .framer-o2h8fq > :last-child, .framer-CD26Q .framer-1urmt5p > :last-child, .framer-CD26Q .framer-1pfu8pw > :last-child, .framer-CD26Q .framer-utcs4a > :last-child, .framer-CD26Q .framer-xk93xr > :last-child, .framer-CD26Q .framer-12peyw6 > :last-child, .framer-CD26Q .framer-do18tg > :last-child, .framer-CD26Q .framer-10rpobw > :last-child, .framer-CD26Q .framer-vegmu2 > :last-child, .framer-CD26Q .framer-1176ctr > :last-child, .framer-CD26Q .framer-sr3itp > :last-child, .framer-CD26Q .framer-159shdm > :last-child, .framer-CD26Q .framer-1hpfc29 > :last-child { margin-bottom: 0px; } .framer-CD26Q .framer-1lbes2f > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-CD26Q .framer-1jwv786 > *, .framer-CD26Q .framer-o2h8fq > *, .framer-CD26Q .framer-utcs4a > *, .framer-CD26Q .framer-xk93xr > *, .framer-CD26Q .framer-do18tg > *, .framer-CD26Q .framer-10rpobw > *, .framer-CD26Q .framer-1176ctr > *, .framer-CD26Q .framer-sr3itp > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-CD26Q .framer-1urmt5p > *, .framer-CD26Q .framer-1pfu8pw > *, .framer-CD26Q .framer-12peyw6 > *, .framer-CD26Q .framer-vegmu2 > *, .framer-CD26Q .framer-159shdm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-CD26Q .framer-1twwrry > *, .framer-CD26Q .framer-1mfth20 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CD26Q .framer-1twwrry > :first-child, .framer-CD26Q .framer-1mfth20 > :first-child { margin-left: 0px; } .framer-CD26Q .framer-1twwrry > :last-child, .framer-CD26Q .framer-1mfth20 > :last-child { margin-right: 0px; } }\",\".framer-CD26Q.framer-v-fgi0fd.framer-1x5md1j { width: min-content; }\",\".framer-CD26Q.framer-v-fgi0fd .framer-1lbes2f { min-height: 31px; width: 592px; }\",\".framer-CD26Q.framer-v-fgi0fd .framer-1hpfc29, .framer-CD26Q.framer-v-fgi0fd .framer-1fycyx0-container { align-self: stretch; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 925\n * @framerIntrinsicWidth 632\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TlpSin6iJ\":{\"layout\":[\"fixed\",\"auto\"]},\"VruAnzu2R\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"RUcOVZ02c\":\"fontSize\",\"DeBw0Kmu1\":\"visible\",\"TkOIT8v6T\":\"thanku\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTHvSoCZGr=withCSS(Component,css,\"framer-CD26Q\");export default FramerTHvSoCZGr;FramerTHvSoCZGr.displayName=\"Mutistep form 2\";FramerTHvSoCZGr.defaultProps={height:925,width:632};addPropertyControls(FramerTHvSoCZGr,{variant:{options:[\"KZi1hD3Vm\",\"TlpSin6iJ\",\"VruAnzu2R\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},RUcOVZ02c:{defaultValue:40,title:\"Font Size\",type:ControlType.Number},DeBw0Kmu1:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},TkOIT8v6T:{defaultValue:40,title:\"thanku\",type:ControlType.Number}});addFonts(FramerTHvSoCZGr,[{explicitInter:true,fonts:[{family:\"Termina Test Demi\",source:\"custom\",url:\"https://framerusercontent.com/assets/233S1NdkxSUJdUNubAnxeIBwH0.woff2\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_A87jxeN7B.woff2\",weight:\"800\"}]},...GetStarted2Fonts,...MultiStepFormFonts,...Button3Fonts,...MultiStepFormButtonFonts,...BeelboltFonts,...Button4Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTHvSoCZGr\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"925\",\"framerVariables\":\"{\\\"RUcOVZ02c\\\":\\\"fontSize\\\",\\\"DeBw0Kmu1\\\":\\\"visible\\\",\\\"TkOIT8v6T\\\":\\\"thanku\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TlpSin6iJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VruAnzu2R\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"632\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./THvSoCZGr.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Footer4 from\"#framer/local/canvasComponent/M7Bx3BvD1/M7Bx3BvD1.js\";import MutistepForm2 from\"#framer/local/canvasComponent/THvSoCZGr/THvSoCZGr.js\";import Navbar4 from\"#framer/local/canvasComponent/Wtd_X3piL/Wtd_X3piL.js\";import metadataProvider from\"#framer/local/webPageMetadata/NUMJcziBY/NUMJcziBY.js\";const MutistepForm2Fonts=getFonts(MutistepForm2);const Navbar4Fonts=getFonts(Navbar4);const Footer4Fonts=getFonts(Footer4);const breakpoints={a6ozIeZyY:\"(min-width: 810px) and (max-width: 1439px)\",gSAI0RP6M:\"(max-width: 809px)\",iM9wLeiWX:\"(min-width: 1440px) and (max-width: 1699px)\",KzxK3a1Qv:\"(min-width: 1700px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-V7Gqa\";const variantClassNames={a6ozIeZyY:\"framer-v-j9dajc\",gSAI0RP6M:\"framer-v-dck0x6\",iM9wLeiWX:\"framer-v-7cf9c3\",KzxK3a1Qv:\"framer-v-12cn9a8\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large Desktop\":\"KzxK3a1Qv\",Desktop:\"iM9wLeiWX\",Phone:\"gSAI0RP6M\",Tablet:\"a6ozIeZyY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"iM9wLeiWX\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"iM9wLeiWX\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(66, 43, 174); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-7cf9c3\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1062,pixelWidth:1600,src:\"https://framerusercontent.com/images/rl3FFxph4S3IGJCbTVZCm28rZzI.png\"},className:\"framer-1g3y0el\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gSAI0RP6M:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1466,pixelWidth:390,src:\"https://framerusercontent.com/images/773Un2uxcGhpA2FJJ6edf7wx7UQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1638,pixelWidth:3200,src:\"https://framerusercontent.com/images/xiPJsK2D5bzKTKE9LirRPdqcV6s.png\"},className:\"framer-7927zi\",\"data-framer-name\":\"Collaboration Everywhere\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6ozIeZyY:{height:870,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n0c4vo-container\",nodeId:\"gEXuo03xu\",scopeId:\"NUMJcziBY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gSAI0RP6M:{DeBw0Kmu1:false,RUcOVZ02c:22,TkOIT8v6T:32}},children:/*#__PURE__*/_jsx(MutistepForm2,{DeBw0Kmu1:true,height:\"100%\",id:\"gEXuo03xu\",layoutId:\"gEXuo03xu\",RUcOVZ02c:40,style:{height:\"100%\",width:\"100%\"},TkOIT8v6T:40,variant:\"KZi1hD3Vm\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7lk7dn-container\",nodeId:\"kSUHN_wc0\",scopeId:\"NUMJcziBY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gSAI0RP6M:{variant:\"M9tHduKXg\"}},children:/*#__PURE__*/_jsx(Navbar4,{height:\"100%\",id:\"kSUHN_wc0\",layoutId:\"kSUHN_wc0\",style:{width:\"100%\"},variant:\"OVrQmEiDK\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6ozIeZyY:{y:(componentViewport?.y||0)+0+870}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:423,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1e3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nz5jld-container\",nodeId:\"CZjuD7vsx\",scopeId:\"NUMJcziBY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a6ozIeZyY:{variant:\"e_eRd6jwo\"},gSAI0RP6M:{variant:\"WHyUpyaul\"}},children:/*#__PURE__*/_jsx(Footer4,{height:\"100%\",id:\"CZjuD7vsx\",layoutId:\"CZjuD7vsx\",style:{width:\"100%\"},variant:\"iizVsMkd0\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-V7Gqa.framer-1jvcffp, .framer-V7Gqa .framer-1jvcffp { display: block; }\",\".framer-V7Gqa.framer-7cf9c3 { align-content: center; align-items: center; background-color: #422bae; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-V7Gqa .framer-1g3y0el { flex: none; height: 1062px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-V7Gqa .framer-7927zi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-V7Gqa .framer-1n0c4vo-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-V7Gqa .framer-7lk7dn-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 10; }\",\".framer-V7Gqa .framer-nz5jld-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-V7Gqa.framer-7cf9c3, .framer-V7Gqa .framer-7927zi { gap: 0px; } .framer-V7Gqa.framer-7cf9c3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-V7Gqa.framer-7cf9c3 > :first-child, .framer-V7Gqa .framer-7927zi > :first-child { margin-top: 0px; } .framer-V7Gqa.framer-7cf9c3 > :last-child, .framer-V7Gqa .framer-7927zi > :last-child { margin-bottom: 0px; } .framer-V7Gqa .framer-7927zi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\"@media (max-width: 809px) { .framer-V7Gqa.framer-7cf9c3 { width: 390px; } .framer-V7Gqa .framer-1g3y0el { height: 714px; } .framer-V7Gqa .framer-7lk7dn-container { left: 50%; right: unset; transform: translateX(-50%); width: 100%; }}\",\"@media (min-width: 1700px) { .framer-V7Gqa.framer-7cf9c3 { width: 1700px; }}\",\"@media (min-width: 810px) and (max-width: 1439px) { .framer-V7Gqa.framer-7cf9c3 { width: 810px; } .framer-V7Gqa .framer-7927zi { gap: 0px; height: 870px; padding: 0px 20px 0px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-V7Gqa .framer-7927zi { gap: 0px; } .framer-V7Gqa .framer-7927zi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-V7Gqa .framer-7927zi > :first-child { margin-top: 0px; } .framer-V7Gqa .framer-7927zi > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 977\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gSAI0RP6M\":{\"layout\":[\"fixed\",\"auto\"]},\"KzxK3a1Qv\":{\"layout\":[\"fixed\",\"auto\"]},\"a6ozIeZyY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerNUMJcziBY=withCSS(Component,css,\"framer-V7Gqa\");export default FramerNUMJcziBY;FramerNUMJcziBY.displayName=\"Page\";FramerNUMJcziBY.defaultProps={height:977,width:1440};addFonts(FramerNUMJcziBY,[{explicitInter:true,fonts:[]},...MutistepForm2Fonts,...Navbar4Fonts,...Footer4Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNUMJcziBY\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gSAI0RP6M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KzxK3a1Qv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a6ozIeZyY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"977\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useMultiStepFormStore", "createStore", "HIDDEN_CLASS_NAME", "CANVAS_HIDDEN_CLASS_NAME", "createId", "HideElementComponent", "Y", "ref", "p", "HIDDEN_CLASS_NAME", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "createId", "u", "CANVAS_HIDDEN_CLASS_NAME", "Border", "Icon", "image", "color", "size", "style", "defaultImage", "p", "Border", "width", "transition", "borderColor", "opacity", "motion", "createBackground", "fill", "on", "focused", "invalid", "onOff", "colorA", "colorB", "fillProp", "onOff", "focus", "invalid", "optional", "hidden", "color", "colorA", "colorB", "colorOn", "colorAOn", "colorBOn", "colorOff", "colorAOff", "colorBOff", "ControlType", "props", "borderProp", "defaultValue", "colorFocus", "colorInvalid", "isAncestor", "ancestorElement", "descendantElement", "currentElement", "getFormInfo", "element", "form", "formId", "pages", "uuid", "d", "d2", "c", "r", "CANVAS_HIDDEN_CLASS_NAME", "MultiStepFormButton", "props", "_props_border", "_props_border1", "_props_font", "_props_style", "_props_border2", "prev", "isCanvas", "RenderTarget", "isOptimizing", "window", "multiStepFormState", "setMultiStepFormState", "useMultiStepFormStore", "formId", "setFormId", "ye", "ref", "pe", "state", "ue", "newFormId", "getFormInfo", "hidden", "page", "p", "HideElement", "onClick", "_props_click", "_props_customLayer", "_props_style1", "_props_style2", "layer", "width", "height", "q", "_props_border_colorFocus", "u", "motion", "createBackground", "Border", "addPropertyControls", "ControlType", "fillProp", "borderProp", "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", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "SVG", "RichText2", "css", "FramerMTRc3gLdb", "withCSS", "MTRc3gLdb_default", "addFonts", "OPTIMIZATION_CLASS_NAME", "SUBMIT_BUTTON_HIDDEN_ATTRIBUTE", "MultiStepFormComponent", "props", "scrollToTop", "id", "createId", "isCanvas", "RenderTarget", "isOptimizing", "window", "multiStepFormState", "setMultiStepFormState", "useMultiStepFormStore", "formInfo", "setFormInfo", "ye", "stateRef", "pe", "ref", "pageVideosRef", "isFirstRenderRef", "state", "pageHistory", "ue", "getFormInfo", "formId", "form", "pages", "previousPage", "_stateRef_current", "prev", "nextPage", "page", "logicConfigs", "newPage", "_pages_children", "pageElement", "logic", "isAncestor", "nextPageName", "nextPageIndex", "getChildIndexByDataFramerName", "isFormValid", "prevState", "isPageAnEndPage", "setPageHistoryLength", "newLength", "_prev_formId", "_prev_formId_pageHistory", "pageElements", "i", "videos", "video", "pauseVideo", "unmountFunction", "onEnterPress", "event", "currentInput", "previousElement", "foundPage", "newElement", "currentPage", "stopEvent", "inputs", "getInputsOnPage", "currentIndex", "_ref_current", "_formInfo_form_querySelector", "_formInfo_form", "submitButton", "_state_logicConfigs", "_pages_children_i", "input", "_pages_children_i1", "pageIndex", "pageVideos", "top", "windowScrollTop", "autoFocusInputOnPage", "fireAnalyticsEvent", "u", "HiddenComponentLabel", "p", "MultiStepForm", "withCSS", "MultiStepForm_default", "addPropertyControls", "ControlType", "element", "invalidInputs", "isVisible", "parentElement", "name", "children", "endPageMode", "customEndPages", "isEndPage", "step", "analytics", "params", "el", "autofocusElements", "visibleElements", "style", "PhosphorFonts", "getFonts", "Icon", "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", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerQvJ16Dh1u", "withCSS", "QvJ16Dh1u_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttomText", "buttonBgBackground", "click", "height", "iconColor", "id", "link2", "textColor", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "rNP0_CAEK", "ofi2OpWf0", "EXhEX8Lr6", "F6NklOLtp", "iWctBFWGY", "lKmOTQdMB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapys1gyi", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framers9KZBiAUp", "withCSS", "s9KZBiAUp_default", "addPropertyControls", "ControlType", "addFonts", "ButtonExpertButtonFonts", "getFonts", "s9KZBiAUp_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttomText", "click", "height", "id", "visible", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "m6mkXOXZZ", "qbIyZvUKu", "MN3q3uddB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "iWctBFWGYqvsc4x", "args", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "FramerR9YaiE4Lk", "withCSS", "R9YaiE4Lk_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FrameruECChUQVs", "withCSS", "uECChUQVs_default", "addPropertyControls", "ControlType", "addFonts", "GetStarted2Fonts", "getFonts", "R9YaiE4Lk_default", "MultiStepFormFonts", "MultiStepForm_default", "Button3Fonts", "uECChUQVs_default", "MultiStepFormButtonFonts", "MultiStepFormButton", "BeelboltFonts", "MTRc3gLdb_default", "Button4Fonts", "QvJ16Dh1u_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "fontSize", "height", "id", "thanku", "visible", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RUcOVZ02c", "DeBw0Kmu1", "QWE_ABNXk", "TkOIT8v6T", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSuccessyfvn5m", "args", "m6mkXOXZZ1mmfmby", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "FormContainer", "cx", "formState", "u", "l", "RichText2", "ComponentViewportProvider", "FormPlainTextInput2", "css", "FramerTHvSoCZGr", "withCSS", "THvSoCZGr_default", "addPropertyControls", "ControlType", "addFonts", "MutistepForm2Fonts", "getFonts", "THvSoCZGr_default", "Navbar4Fonts", "Wtd_X3piL_default", "Footer4Fonts", "M7Bx3BvD1_default", "breakpoints", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "Image2", "getLoadingLazyAtYPosition", "PropertyOverrides2", "ComponentViewportProvider", "Container", "THvSoCZGr_default", "Wtd_X3piL_default", "M7Bx3BvD1_default", "css", "FramerNUMJcziBY", "withCSS", "NUMJcziBY_default", "addFonts", "MutistepForm2Fonts", "Navbar4Fonts", "Footer4Fonts", "__FramerMetadata__"]
}
