{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/GiYxuGnO0IqI8414eRVt/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/asydHDts5g0SLLYx4UPp/9GiOwf7BkkLc9P7tfwyD/ButtonsInput.js", "ssg:https://framerusercontent.com/modules/tN5l0aqIzWiUvVuvMcpG/Xwfci2DZQf8W2rAZoadg/TextInput.js", "ssg:https://framerusercontent.com/modules/QwNwNrKQZ3d4u4Vyvvr2/2c4PyUZCbGXaa6BDUwjl/PhoneNumberValidator.js", "ssg:https://framerusercontent.com/modules/fcATwWV9fXtL7wuJrBer/w7L6HHpwGpueevMXF8Dw/mzJSMTadZ.js", "ssg:https://framerusercontent.com/modules/5C9JPBapcr8BtSfwOjtZ/X3UUwaRWHl6bEFnriEpX/pgcG3mzC9.js", "ssg:https://framerusercontent.com/modules/1O7ccSLYi91mkFatigby/kTkDs2JvuAWL79Yuo1VW/o1OxUqHGd.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},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,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\",{...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\":{\"shadowsProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFormInfo\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HIDDEN_CLASS_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenComponentLabel\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCanvasState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiStepFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenInput\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isAncestor\":{\"type\":\"function\",\"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,Image}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{Border,createBackground,fillProp,borderProp,shadowsProp,createId,HiddenInput,useMultiStepFormStore,getFormInfo}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/GiYxuGnO0IqI8414eRVt/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n */export default function ButtonsInput(props){const{clickAction,options,textOptions,imageOptions,layout,border,shadows,valueSeparator}=props;const id=props.id||createId();const isCanvas=RenderTarget.current()===RenderTarget.canvas;const multiSelect=clickAction===\"nextPage\"?false:props.multiSelect;const[multiStepFormState,setMultiStepFormState]=useMultiStepFormStore();const[value,setValue]=useState([]);const[invalid,setInvalid]=useState(false);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);},[]);useEffect(()=>{if(invalid){var _props_invalidEvent;(_props_invalidEvent=props.invalidEvent)===null||_props_invalidEvent===void 0?void 0:_props_invalidEvent.call(props);}},[invalid]);function onSetValueEvent(event){setValue(multiSelect?event.detail.split(valueSeparator):[event.detail]);}const imageStyle={position:\"relative\",width:\"100%\",height:\"auto\",aspectRatio:imageOptions.aspectRatioMode==\"fixed\"?imageOptions.aspectRatio:undefined,borderRadius:imageOptions.radius,pointerEvents:\"none\",userSelect:\"none\",objectFit:\"cover\"};const rows=[];for(let i=0;i<options.length;i++){const option=options[i];const selected=multiSelect?value.includes(option.value):value.length===1&&value[0]===option.value;if(i%layout.columns==0){rows.push([]);}let layoutProps={};if(options.length%layout.columns==0||options.length-i>=layout.columns){layoutProps={flex:1};}else{layoutProps={flexBasis:`calc(${100/layout.columns}% - ${layout.gapH*(1-1/layout.columns)}px)`};}const color=invalid&&(textOptions===null||textOptions===void 0?void 0:textOptions.colorInvalid)||(selected?textOptions===null||textOptions===void 0?void 0:textOptions.colorOn:textOptions===null||textOptions===void 0?void 0:textOptions.colorOff);const boxShadow=invalid&&(shadows===null||shadows===void 0?void 0:shadows.invalid)||(selected?shadows===null||shadows===void 0?void 0:shadows.on:shadows===null||shadows===void 0?void 0:shadows.off);const borderColor=invalid&&(border===null||border===void 0?void 0:border.colorInvalid)||(selected?border===null||border===void 0?void 0:border.colorOn:border===null||border===void 0?void 0:border.colorOff);const onClick=()=>{if(multiSelect){setValue(selected?value.filter(v=>v!==option.value):[...value,option.value]);}else{setValue(selected?[]:[option.value]);}setInvalid(false);if(clickAction==\"nextPage\"&&state){var _state_nextPage;(_state_nextPage=state.nextPage)===null||_state_nextPage===void 0?void 0:_state_nextPage.call(state);}};var _textOptions_gap;rows[rows.length-1].push(/*#__PURE__*/_jsxs(motion.button,{type:\"button\",onClick:onClick,onKeyDown:event=>{if(event.key===\"Enter\"){onClick();}},onFocus:()=>{var _props_focusEvent;(_props_focusEvent=props.focusEvent)===null||_props_focusEvent===void 0?void 0:_props_focusEvent.call(props);if(invalid){setInvalid(false);}},onBlur:props.blurEvent,whileFocus:{...createBackground(props.fill,null,true,invalid),color:(textOptions===null||textOptions===void 0?void 0:textOptions.colorFocus)||color,boxShadow:(shadows===null||shadows===void 0?void 0:shadows.focus)||boxShadow,borderColor:(border===null||border===void 0?void 0:border.colorFocus)||borderColor},animate:{...createBackground(props.fill,selected,false,invalid),color,boxShadow,borderColor},style:{position:\"relative\",display:\"flex\",flexDirection:(textOptions===null||textOptions===void 0?void 0:textOptions.location)==\"bottom\"?\"column-reverse\":\"column\",gap:(_textOptions_gap=textOptions===null||textOptions===void 0?void 0:textOptions.gap)!==null&&_textOptions_gap!==void 0?_textOptions_gap:0,padding:props.padding,borderRadius:props.radius,cursor:\"pointer\",overflow:\"hidden\",outline:\"none\",border:\"none\",...textOptions.font,...layoutProps},initial:false,transition:props.transition,children:[textOptions&&/*#__PURE__*/_jsx(\"span\",{style:{minHeight:\"1lh\",width:\"100%\"},children:option.title}),option.image&&/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",flex:1,display:\"flex\",alignItems:imageOptions.alignV},children:isCanvas?/*#__PURE__*/_jsx(\"img\",{src:option.image.src,alt:option.image.alt||option.title||option.value,style:imageStyle}):/*#__PURE__*/_jsx(Image,{className:`${id}-image`,background:{fit:\"fill\",...option.image,alt:option.image.alt||option.title||option.value},style:imageStyle})}),border&&/*#__PURE__*/_jsx(Border,{...border,transition:props.transition})]},option.value));}return /*#__PURE__*/_jsxs(\"div\",{ref:ref,style:{display:\"flex\",flexDirection:\"column\",gap:layout.gapV,flex:1,userSelect:\"none\"},children:[/*#__PURE__*/_jsx(\"button\",{type:\"button\",style:{display:\"none\"}}),/*#__PURE__*/_jsx(HiddenInput,{name:props.name,required:props.required,value:value.join(valueSeparator),setInvalid:setInvalid,onSetValueEvent:onSetValueEvent}),rows.map((items,index)=>/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"row\",gap:layout.gapH,width:\"100%\",alignItems:layout.height==\"fill\"?\"stretch\":layout.alignV,justifyContent:layout.alignH},children:items})),/*#__PURE__*/_jsx(\"style\",{children:`\n\t\t\t\t.${id}-image > div {\n\t\t\t\t\tposition: relative !important;\n\t\t\t\t\t${imageOptions.aspectRatioMode==\"fixed\"?\"height: 100%;\":\"\"}\n\t\t\t\t}\n\t\t\t`})]});}ButtonsInput.displayName=\"Buttons Input\";addPropertyControls(ButtonsInput,{name:{type:ControlType.String,defaultValue:\"Buttons\",placeholder:\"Name\"},required:{type:ControlType.Boolean,defaultValue:false},clickAction:{type:ControlType.Enum,defaultValue:\"select\",options:[\"select\",\"nextPage\"],optionTitles:[\"Select\",\"Go To Next Page\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},multiSelect:{type:ControlType.Boolean,defaultValue:false,title:\"Multi-Select\",hidden:props=>props.clickAction!==\"select\"},valueSeparator:{type:ControlType.String,defaultValue:\", \",hidden:props=>!props.multiSelect||props.clickAction!==\"select\"},options:{type:ControlType.Array,defaultValue:[{value:\"Option1\",title:\"Option 1\"},{value:\"Option2\",title:\"Option 2\"},{value:\"Option3\",title:\"Option 3\"}],control:{type:ControlType.Object,controls:{value:{type:ControlType.String,defaultValue:\"\"},title:{type:ControlType.String,defaultValue:\"\"},image:{type:ControlType.ResponsiveImage}}}},layout:{type:ControlType.Object,controls:{columns:{type:ControlType.Number,defaultValue:3,min:1,step:1,displayStepper:true},height:{type:ControlType.Enum,defaultValue:\"fit\",options:[\"fit\",\"fill\"],optionTitles:[\"Fit\",\"Fill\"],displaySegmentedControl:true,hidden:props=>props.columns==1},alignH:{type:ControlType.Enum,defaultValue:\"start\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],displaySegmentedControl:true,title:\"Align\",hidden:props=>props.columns==1},alignV:{type:ControlType.Enum,defaultValue:\"start\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Top\",\"Center\",\"Bottom\"],displaySegmentedControl:true,title:\" \",hidden:props=>props.columns==1||props.height==\"fill\"},gapH:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>props.columns==1},gapV:{type:ControlType.Number,defaultValue:10,min:0,step:1}}},textOptions:{type:ControlType.Object,optional:true,title:\"Text\",defaultValue:{location:\"top\",gap:10},controls:{location:{type:ControlType.Enum,defaultValue:\"top\",options:[\"top\",\"bottom\"],optionTitles:[\"Top\",\"Bottom\"],displaySegmentedControl:true},gap:{type:ControlType.Number,defaultValue:10,min:0,step:1},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:12,lineHeight:1,textAlign:\"center\"}},colorOn:{type:ControlType.Color,defaultValue:\"#0099FF\"},colorOff:{type:ControlType.Color,defaultValue:\"#999\"},colorFocus:{type:ControlType.Color,optional:true,title:\"Focus\"},colorInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\"}}},imageOptions:{type:ControlType.Object,title:\"Images\",controls:{aspectRatioMode:{type:ControlType.Enum,defaultValue:\"auto\",options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"],displaySegmentedControl:true,title:\"Aspect Ratio\"},aspectRatio:{type:ControlType.String,defaultValue:\"1 / 1\",placeholder:\"Width / Height\",title:\" \",hidden:props=>props.aspectRatioMode!=\"fixed\"},alignV:{type:ControlType.Enum,defaultValue:\"center\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Top\",\"Center\",\"Bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],displaySegmentedControl:true,title:\"Align\",hidden:props=>props.aspectRatioMode!=\"auto\"},radius:{type:ControlType.BorderRadius,defaultValue:\"0px\"}}},fill:fillProp({onOff:true,invalid:true}),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"10px\"},border:borderProp({onOff:true,invalid:true}),shadows:shadowsProp(),transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:1500,damping:70}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"},invalidEvent:{type:ControlType.EventHandler,title:\"Invalid\"}});function ImagePlaceholder({radius=\"0px\"}){return /*#__PURE__*/_jsxs(\"svg\",{width:\"100%\",height:\"100%\",viewBox:\"0 0 38 38\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",style:{border:\"1px solid #808080\",backgroundColor:\"#80808033\",borderRadius:radius},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M22 15H22.01\",stroke:\"#808080\",\"stroke-width\":\"2\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M10 13C10 12.2044 10.3161 11.4413 10.8787 10.8787C11.4413 10.3161 12.2044 10 13 10H25C25.7956 10 26.5587 10.3161 27.1213 10.8787C27.6839 11.4413 28 12.2044 28 13V25C28 25.7956 27.6839 26.5587 27.1213 27.1213C26.5587 27.6839 25.7956 28 25 28H13C12.2044 28 11.4413 27.6839 10.8787 27.1213C10.3161 26.5587 10 25.7956 10 25V13Z\",stroke:\"#808080\",\"stroke-width\":\"2\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M10 23.0001L15 18.0001C15.928 17.1071 17.072 17.1071 18 18.0001L23 23.0001\",stroke:\"#808080\",\"stroke-width\":\"2\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M21 21.0001L22 20.0001C22.928 19.1071 24.072 19.1071 25 20.0001L28 23.0001\",stroke:\"#808080\",\"stroke-width\":\"2\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\"})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ButtonsInput\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState}from\"react\";import{motion}from\"framer\";import{createBackground,Border,parsePadding,fillProp,borderProp,shadowsProp,createId}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/GiYxuGnO0IqI8414eRVt/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n */export default function TextInput(props){const{type,textAreaHeight,shadows,border}=props;const id=props.id||createId();const Element=type==\"textArea\"?\"textarea\":\"input\";const[focused,setFocused]=useState(false);const[invalid,setInvalid]=useState(false);let attributes={};let styles={};if(type==\"textArea\"){const[pt,pr,pb,pl]=parsePadding(props.padding);const heightMode=textAreaHeight.mode;const autoHeightSupported=typeof CSS!==\"undefined\"?CSS.supports(\"field-sizing\",\"content\"):true;attributes.rows=heightMode==\"fixed\"?textAreaHeight.lines:1;styles={display:\"block\",minHeight:heightMode==\"auto\"&&!autoHeightSupported?`calc(${textAreaHeight.fallbackLines}lh + ${pt+pb}px)`:heightMode!==\"fixed\"?`calc(${textAreaHeight.minLines}lh + ${pt+pb}px)`:undefined,maxHeight:heightMode!==\"fixed\"?`calc(${textAreaHeight.maxLines}lh + ${pt+pb}px)`:undefined,fieldSizing:heightMode==\"auto\"&&autoHeightSupported?\"content\":undefined,resize:heightMode==\"resizable\"?\"vertical\":\"none\"};}const onFocus=()=>{var _props_focusEvent;setFocused(true);(_props_focusEvent=props.focusEvent)===null||_props_focusEvent===void 0?void 0:_props_focusEvent.call(props);if(invalid){setInvalid(false);}};const onBlur=()=>{var _props_blurEvent;setFocused(false);(_props_blurEvent=props.blurEvent)===null||_props_blurEvent===void 0?void 0:_props_blurEvent.call(props);};const onInvalid=event=>{var _props_invalidEvent;event.preventDefault();setInvalid(true);(_props_invalidEvent=props.invalidEvent)===null||_props_invalidEvent===void 0?void 0:_props_invalidEvent.call(props);};return /*#__PURE__*/_jsxs(motion.div,{id:id,onFocus:onFocus,onBlur:onBlur,animate:{...createBackground(props.fill,null,focused,invalid),boxShadow:invalid&&(shadows===null||shadows===void 0?void 0:shadows.invalid)||focused&&(shadows===null||shadows===void 0?void 0:shadows.focus)||(shadows===null||shadows===void 0?void 0:shadows.default),borderColor:invalid&&(border===null||border===void 0?void 0:border.colorInvalid)||focused&&(border===null||border===void 0?void 0:border.colorFocus)||(border===null||border===void 0?void 0:border.color)},style:{borderRadius:props.radius,overflow:type==\"textArea\"&&props.textAreaScrollbar==\"auto\"?\"hidden\":\"visible\",...props.style},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(Element,{name:props.name,required:props.required,autoFocus:props.autoFocus,placeholder:props.placeholder,minLength:props.minLengthEnabled?props.minLength:undefined,maxLength:props.maxLengthEnabled?props.maxLength:undefined,defaultValue:props.value,onInvalid:onInvalid,style:{display:\"block\",padding:props.padding,color:props.color,background:\"none\",border:\"none\",textOverflow:\"ellipsis\",...styles,...props.font,...props.style},...attributes}),/*#__PURE__*/_jsx(Border,{...props.border,transition:props.transition}),/*#__PURE__*/_jsx(\"style\",{children:`#${id} input::placeholder, #${id} textarea::placeholder {\n                    color: ${props.placeholderColor};\n                }\n                #${id} input:focus {\n                    outline: none;\n                }`}),type==\"textArea\"&&props.textAreaScrollbar==\"hidden\"&&/*#__PURE__*/_jsx(\"style\",{children:`#${id} textarea::-webkit-scrollbar {\n                        display: none; /* WebKit browsers (Chrome, Safari) */\n                    }\n                    #${id} textarea {\n                        -ms-overflow-style: none; /* IE and Edge */\n                        scrollbar-width: none; /* Firefox */\n                    }`})]});}TextInput.displayName=\"Text Input\";addPropertyControls(TextInput,{name:{type:ControlType.String,defaultValue:\"Text\"},required:{type:ControlType.Boolean,defaultValue:false},autoFocus:{type:ControlType.Boolean,defaultValue:false,title:\"Auto-Focus\"},minLengthEnabled:{type:ControlType.Boolean,defaultValue:false,title:\"Min Length\"},minLength:{type:ControlType.Number,defaultValue:100,min:0,step:1,displayStepper:true,title:\" \",hidden:props=>!props.minLengthEnabled},maxLengthEnabled:{type:ControlType.Boolean,defaultValue:false,title:\"Max Length\"},maxLength:{type:ControlType.Number,defaultValue:100,min:0,step:1,displayStepper:true,title:\" \",hidden:props=>!props.maxLengthEnabled},value:{type:ControlType.String,placeholder:\"Default Value\"},type:{type:ControlType.Enum,defaultValue:\"input\",options:[\"textArea\",\"input\"],optionTitles:[\"Yes\",\"No\"],displaySegmentedControl:true,title:\"Text Area\"},textAreaHeight:{type:ControlType.Object,title:\"Height\",controls:{mode:{type:ControlType.Enum,defaultValue:\"auto\",options:[\"auto\",\"resizable\",\"fixed\"],optionTitles:[\"Auto\",\"Resizable\",\"Fixed\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},minLines:{type:ControlType.Number,defaultValue:3,min:1,step:1,displayStepper:true,hidden:props=>props.mode===\"fixed\"},maxLines:{type:ControlType.Number,defaultValue:8,min:1,step:1,displayStepper:true,hidden:props=>props.mode===\"fixed\"},lines:{type:ControlType.Number,defaultValue:5,min:1,step:1,displayStepper:true,hidden:props=>props.mode!==\"fixed\"},fallbackLines:{type:ControlType.Number,defaultValue:5,min:1,step:1,title:\"Fallback\",description:\"Auto height is [not supported on all browsers](https://caniuse.com/mdn-css_properties_field-sizing_content). Fallback is used when auto height is not supported.\",hidden:props=>props.mode!==\"auto\"}},hidden:props=>props.type!=\"textArea\"},textAreaScrollbar:{type:ControlType.Enum,defaultValue:\"hidden\",options:[\"auto\",\"hidden\"],optionTitles:[\"Auto\",\"Hidden\"],displaySegmentedControl:true,title:\"Scrollbar\",hidden:props=>props.type!=\"textArea\"},placeholder:{type:ControlType.String,defaultValue:\"Write here...\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2}},color:{type:ControlType.Color,defaultValue:\"#999999\"},placeholderColor:{type:ControlType.Color,defaultValue:\"#999999\",title:\"Placeholder\"},fill:fillProp(),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"12px\"},border:borderProp(),shadows:shadowsProp(),transition:{type:ControlType.Transition,defaultValue:{type:false}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"},invalidEvent:{type:ControlType.EventHandler,title:\"Invalid\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextInput\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({isValid:true});export function setParent(Component){return props=>{const[store]=useStore();return /*#__PURE__*/_jsx(Component,{...props,variant:store.isValid?\"Default\":\"Error\"});};}export function withValidation(Component){return props=>{const[value,setValue]=useState(\"\");const[isFocused,setIsFocused]=useState(false);const[store,setStore]=useStore();const phoneRegex=/^\\+\\d{1,3}[-\\s]?(\\(\\d{3}\\)|\\d{3})[-\\s]?\\d{3}[-\\s]?\\d{4}$/;const getIsValid=async()=>{try{const isValid=phoneRegex.test(value);await setStore({isValid});}catch(error){console.error(\"Validation error:\",error);}};useEffect(()=>{if(!isFocused||value.length<=1)return;const handler=setTimeout(()=>{getIsValid();},800);return()=>{clearTimeout(handler);};},[value,isFocused]);return /*#__PURE__*/_jsx(Component,{...props,onChange:e=>setValue(e.target.value),onFocus:()=>setIsFocused(true),onBlur:getIsValid});};}\nexport const __FramerMetadata__ = {\"exports\":{\"setParent\":{\"type\":\"reactHoc\",\"name\":\"setParent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withValidation\":{\"type\":\"reactHoc\",\"name\":\"withValidation\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PhoneNumberValidator.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,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={AxsvUxhuf:{hover:true,pressed:true}};const cycleOrder=[\"AxsvUxhuf\",\"Ib8k6O7kA\",\"nM5bjW_tZ\",\"YwKVP5jPG\",\"ae3KlbCx1\"];const serializationHash=\"framer-LsowX\";const variantClassNames={ae3KlbCx1:\"framer-v-1p5sl28\",AxsvUxhuf:\"framer-v-1xh4zas\",Ib8k6O7kA:\"framer-v-qjczo2\",nM5bjW_tZ:\"framer-v-6dtgnr\",YwKVP5jPG:\"framer-v-18x2wpc\"};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:.2,ease:[.44,0,.56,1],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:\"AxsvUxhuf\",Disabled:\"nM5bjW_tZ\",Error:\"ae3KlbCx1\",Loading:\"Ib8k6O7kA\",Success:\"YwKVP5jPG\"};const getProps=({height,id,mouseEnter,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,kR_BdJCiH:mouseEnter!==null&&mouseEnter!==void 0?mouseEnter:props.kR_BdJCiH,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"AxsvUxhuf\"};};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,kR_BdJCiH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AxsvUxhuf\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1hqdpvq=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(kR_BdJCiH){const res=await kR_BdJCiH(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Ib8k6O7kA\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Ib8k6O7kA\")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-1xh4zas\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"AxsvUxhuf\",onMouseEnter:onMouseEnter1hqdpvq,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(51, 51, 51)\",opacity:1,...style},variants:{\"AxsvUxhuf-hover\":{backgroundColor:\"rgba(51, 51, 51, 0.85)\"},ae3KlbCx1:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"},nM5bjW_tZ:{opacity:.5}},...addPropertyOverrides({\"AxsvUxhuf-hover\":{\"data-framer-name\":undefined},\"AxsvUxhuf-pressed\":{\"data-framer-name\":undefined},ae3KlbCx1:{\"data-framer-name\":\"Error\"},Ib8k6O7kA:{\"data-framer-name\":\"Loading\"},nM5bjW_tZ:{\"data-framer-name\":\"Disabled\"},YwKVP5jPG:{\"data-framer-name\":\"Success\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,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, 255, 255))\"},children:\"Submit\"})}),className:\"framer-162gii7\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"RW4T6j3P0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{ae3KlbCx1:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ae3KlbCx1:{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:\"INCOMPLETE\"})})},YwKVP5jPG:{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, 255, 255))\"},children:\"Thanks!\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xpdotl\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"k5DKj5cqq\",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-1com2ze\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"ITunt4wbe\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{Ib8k6O7kA:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",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-enf9es\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"hisE7ZFiQ\",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-LsowX.framer-1tfn655, .framer-LsowX .framer-1tfn655 { display: block; }\",\".framer-LsowX.framer-1xh4zas { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-LsowX .framer-162gii7 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-LsowX .framer-1xpdotl { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-LsowX .framer-1com2ze { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-LsowX .framer-enf9es { 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-LsowX.framer-1xh4zas { gap: 0px; } .framer-LsowX.framer-1xh4zas > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-LsowX.framer-1xh4zas > :first-child { margin-left: 0px; } .framer-LsowX.framer-1xh4zas > :last-child { margin-right: 0px; } }\",\".framer-LsowX.framer-v-qjczo2.framer-1xh4zas, .framer-LsowX.framer-v-6dtgnr.framer-1xh4zas, .framer-LsowX.framer-v-18x2wpc.framer-1xh4zas, .framer-LsowX.framer-v-1p5sl28.framer-1xh4zas { cursor: unset; }\",\".framer-LsowX.framer-v-qjczo2 .framer-1com2ze { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ib8k6O7kA\":{\"layout\":[\"fixed\",\"fixed\"]},\"nM5bjW_tZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"YwKVP5jPG\":{\"layout\":[\"fixed\",\"fixed\"]},\"ae3KlbCx1\":{\"layout\":[\"fixed\",\"fixed\"]},\"BW3lNZpgk\":{\"layout\":[\"fixed\",\"fixed\"]},\"X0DfVhQp2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"kR_BdJCiH\":\"mouseEnter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermzJSMTadZ=withCSS(Component,css,\"framer-LsowX\");export default FramermzJSMTadZ;FramermzJSMTadZ.displayName=\"Button\";FramermzJSMTadZ.defaultProps={height:40,width:240};addPropertyControls(FramermzJSMTadZ,{variant:{options:[\"AxsvUxhuf\",\"Ib8k6O7kA\",\"nM5bjW_tZ\",\"YwKVP5jPG\",\"ae3KlbCx1\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum},kR_BdJCiH:{title:\"Mouse Enter\",type:ControlType.EventHandler}});addFonts(FramermzJSMTadZ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\":\"FramermzJSMTadZ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"kR_BdJCiH\\\":\\\"mouseEnter\\\"}\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"240\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ib8k6O7kA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nM5bjW_tZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YwKVP5jPG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ae3KlbCx1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BW3lNZpgk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X0DfVhQp2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mzJSMTadZ.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonsInput from\"https://framerusercontent.com/modules/asydHDts5g0SLLYx4UPp/9GiOwf7BkkLc9P7tfwyD/ButtonsInput.js\";import TextInput from\"https://framerusercontent.com/modules/tN5l0aqIzWiUvVuvMcpG/Xwfci2DZQf8W2rAZoadg/TextInput.js\";import{setParent}from\"https://framerusercontent.com/modules/QwNwNrKQZ3d4u4Vyvvr2/2c4PyUZCbGXaa6BDUwjl/PhoneNumberValidator.js\";import Button from\"https://framerusercontent.com/modules/fcATwWV9fXtL7wuJrBer/w7L6HHpwGpueevMXF8Dw/mzJSMTadZ.js\";const FormPlainTextInputSetParent=setParent(FormPlainTextInput);const TextInputFonts=getFonts(TextInput);const ButtonsInputFonts=getFonts(ButtonsInput);const ButtonFonts=getFonts(Button);const cycleOrder=[\"rIgJjiF42\",\"eA4gKeLF3\",\"iMSqEBeMs\",\"eg3dBRyPi\"];const serializationHash=\"framer-z61EL\";const variantClassNames={eA4gKeLF3:\"framer-v-6ofnv\",eg3dBRyPi:\"framer-v-1sn0chf\",iMSqEBeMs:\"framer-v-12cf2pj\",rIgJjiF42:\"framer-v-3k81gm\"};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:.8,ease:[.44,0,.56,1],type:\"tween\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,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={\"Desktop Large\":\"eg3dBRyPi\",\"Desktop Small\":\"rIgJjiF42\",\"Variant 3\":\"iMSqEBeMs\",Mobile:\"eA4gKeLF3\"};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:\"rIgJjiF42\"};};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:\"rIgJjiF42\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const kR_BdJCiH25cmb=activeVariantCallback(async(...args)=>{setVariant(\"eg3dBRyPi\");});const onTap25cmb=activeVariantCallback(async(...args)=>{setVariant(\"eg3dBRyPi\");});const onTapl1d3gc=activeVariantCallback(async(...args)=>{setVariant(\"iMSqEBeMs\");});const onTapropc5t=activeVariantCallback(async(...args)=>{setVariant(\"rIgJjiF42\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"eA4gKeLF3\")return false;return true;};const isDisplayed1=()=>{if([\"iMSqEBeMs\",\"eg3dBRyPi\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"eA4gKeLF3\",\"eg3dBRyPi\"].includes(baseVariant))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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-3k81gm\",className,classNames),\"data-framer-name\":\"Desktop Small\",layoutDependency:layoutDependency,layoutId:\"rIgJjiF42\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,...style},...addPropertyOverrides({eA4gKeLF3:{\"data-framer-name\":\"Mobile\"},eg3dBRyPi:{\"data-framer-name\":\"Desktop Large\"},iMSqEBeMs:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hagmk4\",\"data-framer-name\":\"Section\",layoutDependency:layoutDependency,layoutId:\"BZy0MLRH_\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-105nmfj\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"AKYUKrnM2\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lb8f3y\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"maffhtYJ4\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/410f59ff-0778-4e97-ae0d-b7f3fcd0835d/submit\",className:\"framer-bz8bxf\",layoutDependency:layoutDependency,layoutId:\"uXIINLZH1\",redirectUrl:{webPageId:\"s7phgMd0U\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"60px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 23, 40))\"},children:\"Laat je horen!\"})}),className:\"framer-19u83op\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"AXUejEyWc\",style:{\"--extracted-r6o4lv\":\"rgb(15, 23, 40)\",\"--framer-paragraph-spacing\":\"49px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(90, 90, 90))\"},children:\"We onderzoeken graag wat we kunnen betekenen.\"})}),className:\"framer-uuzd2r\",\"data-framer-name\":\"You can reach us anytime via hi@untitledui.com\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"IQqcZyUrL\",style:{\"--extracted-r6o4lv\":\"rgb(90, 90, 90)\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-hpf5uy\",layoutDependency:layoutDependency,layoutId:\"Jwodi9Pnz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Naam\"})}),className:\"framer-r8p8h1\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"eFj6Rq_s2\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1gilmbt\",inputName:\"Naam\",layoutDependency:layoutDependency,layoutId:\"O6FvPI6fs\",placeholder:\"Jouw naam\",required:true,style:{\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgb(178, 178, 178)\",\"--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(0, 0, 0)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-14a4ldu\",layoutDependency:layoutDependency,layoutId:\"m7Ck4z35W\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Telefoonnummer\"})}),className:\"framer-j0j17n\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"m5rRqfQPf\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInputSetParent,{className:\"framer-tftqez\",inputName:\"Telefoon\",layoutDependency:layoutDependency,layoutId:\"ax7ZTj0h2\",placeholder:\"+31 (06) 000-000\",required:true,style:{\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgb(178, 178, 178)\",\"--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(0, 0, 0)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"tel\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1isz2uz\",layoutDependency:layoutDependency,layoutId:\"utCd5jvCF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Email\"})}),className:\"framer-q6yed8\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"F0q0OLqka\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1qvbk85\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"BJT7oPjU8\",placeholder:\"jan@example.com\",required:true,style:{\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgb(178, 178, 178)\",\"--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(0, 0, 0)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1hc0hbv\",layoutDependency:layoutDependency,layoutId:\"bmfd69MZL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Hoe kunnen we helpen?\"})}),className:\"framer-19lb8iu\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"HNIY6tZBA\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a0mo9e-container\",layoutDependency:layoutDependency,layoutId:\"VVFSGjat7-container\",children:/*#__PURE__*/_jsx(TextInput,{autoFocus:false,border:{color:\"rgb(178, 178, 178)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"0px 0px 1px 0px\"},color:\"rgb(0, 0, 0)\",fill:{color:\"rgba(187, 187, 187, 0)\",colorA:\"rgb(187, 187, 187)\",colorB:\"rgb(103, 103, 103)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"VVFSGjat7\",layoutId:\"VVFSGjat7\",maxLength:100,maxLengthEnabled:false,minLength:100,minLengthEnabled:false,name:\"Text\",padding:\"12px\",placeholder:\"Schrijf je bericht...\",placeholderColor:\"rgb(153, 153, 153)\",radius:\"0px\",required:true,style:{width:\"100%\"},textAreaHeight:{fallbackLines:5,lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:\"hidden\",transition:{duration:0,type:\"tween\"},type:\"textArea\",value:\"\",width:\"100%\",...addPropertyOverrides({iMSqEBeMs:{font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.2em\"}}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1dlz25s\",layoutDependency:layoutDependency,layoutId:\"OHoSESwB7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Ik ben geinteresseerd in\"})}),className:\"framer-9gd4b7\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"hkUzWfFH3\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pg0r90-container\",layoutDependency:layoutDependency,layoutId:\"tdOQ0v2db-container\",children:/*#__PURE__*/_jsx(ButtonsInput,{border:{colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",colorOff:\"rgb(0, 0, 0)\",colorOn:\"rgb(0, 153, 255)\",style:\"solid\",width:\"1px\"},clickAction:\"select\",fill:{colorAOff:\"rgb(187, 187, 187)\",colorAOn:\"rgb(102, 194, 255)\",colorBOff:\"rgb(103, 103, 103)\",colorBOn:\"rgb(0, 153, 255)\",colorOff:\"rgba(187, 187, 187, 0)\",colorOn:\"rgba(70, 219, 167, 0.61)\",gradientAngle:0,type:\"color\"},height:\"100%\",id:\"tdOQ0v2db\",imageOptions:{alignV:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},layout:{alignH:\"start\",alignV:\"start\",columns:2,gapH:10,gapV:10,height:\"fit\"},layoutId:\"tdOQ0v2db\",multiSelect:false,name:\"Buttons\",options:[{title:\"Brand Video\",value:\"Option1\"},{title:\"Talking Head video\",value:\"Option2\"},{title:\"Fotografie\",value:\"Option3\"},{title:\"Financial aid\",value:\"Option4\"}],padding:\"10px\",radius:\"6px\",required:false,style:{width:\"100%\"},textOptions:{colorFocus:\"rgb(0, 153, 255)\",colorOff:\"rgb(0, 0, 0)\",colorOn:\"rgb(0, 153, 255)\",font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"},valueSeparator:\", \",width:\"100%\",...addPropertyOverrides({eg3dBRyPi:{options:[{title:\"Creative Strategy\",value:\"Creative Strategy\"},{title:\"Video Production\",value:\"Video Production\"},{title:\"Photography\",value:\"Photography\"},{title:\"General Info\",value:\"General Info\"}]},iMSqEBeMs:{border:{colorFocus:\"rgb(0, 255, 255)\",colorInvalid:\"rgb(196, 188, 188)\",colorOff:\"rgb(0, 0, 0)\",colorOn:\"rgba(0, 201, 131, 0.85)\",style:\"solid\",width:\"1px\"},fill:{colorAOff:\"rgb(187, 187, 187)\",colorAOn:\"rgb(102, 194, 255)\",colorBOff:\"rgb(103, 103, 103)\",colorBOn:\"rgb(0, 153, 255)\",colorOff:\"rgba(187, 187, 187, 0)\",colorOn:\"var(--token-2e92707b-84dc-4bb3-8dfb-4763ae6b3949, rgba(70, 219, 167, 0.61))\",gradientAngle:0,type:\"color\"},layout:{alignH:\"start\",alignV:\"start\",columns:1,gapH:10,gapV:10,height:\"fit\"},options:[{title:\"Creative Strategy\",value:\"Option1\"},{title:\"Video Production\",value:\"Option2\"},{title:\"Photograpy\",value:\"Fotografie\"},{title:\"General Info\",value:\" Generiek\"}],textOptions:{colorFocus:\"rgb(156, 166, 173)\",colorOff:\"rgb(0, 0, 0)\",colorOn:\"rgb(46, 166, 124)\",font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},gap:10,location:\"top\"}}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||462)-0-788.5999999999999)/2)+40+0+0+0+0+645.5999999999999,...addPropertyOverrides({eg3dBRyPi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||912.5)-0-1490.6)/2)+40+0+0+0+0+1250.6},iMSqEBeMs:{width:\"240px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||961)-0-1373.6)/2)+30+0+0+0+0+1250.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h36t54-container\",layoutDependency:layoutDependency,layoutId:\"tTZLaQ9Nc-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"tTZLaQ9Nc\",kR_BdJCiH:kR_BdJCiH25cmb,layoutId:\"tTZLaQ9Nc\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"ae3KlbCx1\",incomplete:\"AxsvUxhuf\",pending:\"Ib8k6O7kA\",success:\"YwKVP5jPG\"},\"AxsvUxhuf\"),width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15uiwbq\",\"data-framer-name\":\"Unfold\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PqmpxHUPQ\",onTap:onTap25cmb,whileHover:animation,...addPropertyOverrides({eA4gKeLF3:{onTap:onTapl1d3gc},eg3dBRyPi:{onTap:onTapropc5t}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pihqal\",\"data-framer-name\":\"Icon\",fill:\"rgb(79, 79, 79)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"sWsE0i7fA\",style:{rotate:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24Zm0 192a88 88 0 1 1 88-88 88.1 88.1 0 0 1-88 88Zm37.66-85.66a8 8 0 0 1 0 11.32l-32 32a8 8 0 0 1-11.32 0l-32-32a8 8 0 0 1 11.32-11.32L120 148.69V88a8 8 0 0 1 16 0v60.69l18.34-18.35a8 8 0 0 1 11.32 0Z\"/></svg>',variants:{eg3dBRyPi:{rotate:180}},withExternalLayout:true})})]})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-z61EL.framer-iriner, .framer-z61EL .framer-iriner { display: block; }\",\".framer-z61EL.framer-3k81gm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 480px; }\",\".framer-z61EL .framer-hagmk4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-z61EL .framer-105nmfj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z61EL .framer-1lb8f3y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-z61EL .framer-bz8bxf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-z61EL .framer-19u83op, .framer-z61EL .framer-uuzd2r { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-z61EL .framer-hpf5uy, .framer-z61EL .framer-14a4ldu, .framer-z61EL .framer-1isz2uz { 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-z61EL .framer-r8p8h1, .framer-z61EL .framer-j0j17n, .framer-z61EL .framer-q6yed8, .framer-z61EL .framer-19lb8iu, .framer-z61EL .framer-9gd4b7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-z61EL .framer-1gilmbt, .framer-z61EL .framer-tftqez, .framer-z61EL .framer-1qvbk85 { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-z61EL .framer-1hc0hbv, .framer-z61EL .framer-1dlz25s { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-z61EL .framer-1a0mo9e-container, .framer-z61EL .framer-1pg0r90-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-z61EL .framer-1h36t54-container { flex: none; height: 63px; position: relative; width: 100%; }\",\".framer-z61EL .framer-15uiwbq { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 74px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z61EL .framer-pihqal { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); position: relative; width: 57px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-z61EL.framer-3k81gm, .framer-z61EL .framer-hagmk4, .framer-z61EL .framer-105nmfj, .framer-z61EL .framer-1lb8f3y, .framer-z61EL .framer-bz8bxf, .framer-z61EL .framer-hpf5uy, .framer-z61EL .framer-14a4ldu, .framer-z61EL .framer-1isz2uz, .framer-z61EL .framer-1hc0hbv, .framer-z61EL .framer-1dlz25s, .framer-z61EL .framer-15uiwbq { gap: 0px; } .framer-z61EL.framer-3k81gm > *, .framer-z61EL .framer-105nmfj > *, .framer-z61EL .framer-15uiwbq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-z61EL.framer-3k81gm > :first-child, .framer-z61EL .framer-hagmk4 > :first-child, .framer-z61EL .framer-105nmfj > :first-child, .framer-z61EL .framer-15uiwbq > :first-child { margin-left: 0px; } .framer-z61EL.framer-3k81gm > :last-child, .framer-z61EL .framer-hagmk4 > :last-child, .framer-z61EL .framer-105nmfj > :last-child, .framer-z61EL .framer-15uiwbq > :last-child { margin-right: 0px; } .framer-z61EL .framer-hagmk4 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-z61EL .framer-1lb8f3y > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-z61EL .framer-1lb8f3y > :first-child, .framer-z61EL .framer-bz8bxf > :first-child, .framer-z61EL .framer-hpf5uy > :first-child, .framer-z61EL .framer-14a4ldu > :first-child, .framer-z61EL .framer-1isz2uz > :first-child, .framer-z61EL .framer-1hc0hbv > :first-child, .framer-z61EL .framer-1dlz25s > :first-child { margin-top: 0px; } .framer-z61EL .framer-1lb8f3y > :last-child, .framer-z61EL .framer-bz8bxf > :last-child, .framer-z61EL .framer-hpf5uy > :last-child, .framer-z61EL .framer-14a4ldu > :last-child, .framer-z61EL .framer-1isz2uz > :last-child, .framer-z61EL .framer-1hc0hbv > :last-child, .framer-z61EL .framer-1dlz25s > :last-child { margin-bottom: 0px; } .framer-z61EL .framer-bz8bxf > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-z61EL .framer-hpf5uy > *, .framer-z61EL .framer-14a4ldu > *, .framer-z61EL .framer-1isz2uz > *, .framer-z61EL .framer-1hc0hbv > *, .framer-z61EL .framer-1dlz25s > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-z61EL.framer-v-6ofnv.framer-3k81gm, .framer-z61EL.framer-v-12cf2pj.framer-3k81gm { width: min-content; }\",\".framer-z61EL.framer-v-6ofnv .framer-hagmk4 { width: 300px; }\",\".framer-z61EL.framer-v-6ofnv .framer-15uiwbq { height: 57px; }\",\".framer-z61EL.framer-v-12cf2pj .framer-hagmk4 { padding: 30px; width: 300px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 462\n * @framerIntrinsicWidth 480\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"480px\",null,null]},\"eA4gKeLF3\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"480px\",null,null]},\"iMSqEBeMs\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"480px\",null,null]},\"eg3dBRyPi\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"480px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpgcG3mzC9=withCSS(Component,css,\"framer-z61EL\");export default FramerpgcG3mzC9;FramerpgcG3mzC9.displayName=\"Contact Form\";FramerpgcG3mzC9.defaultProps={height:462,width:480};addPropertyControls(FramerpgcG3mzC9,{variant:{options:[\"rIgJjiF42\",\"eA4gKeLF3\",\"iMSqEBeMs\",\"eg3dBRyPi\"],optionTitles:[\"Desktop Small\",\"Mobile\",\"Variant 3\",\"Desktop Large\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerpgcG3mzC9,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TextInputFonts,...ButtonsInputFonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpgcG3mzC9\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"480\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"480px\\\",null,null]},\\\"eA4gKeLF3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"480px\\\",null,null]},\\\"iMSqEBeMs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"480px\\\",null,null]},\\\"eg3dBRyPi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"480px\\\",null,null]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"462\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pgcG3mzC9.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import Navigation2 from\"#framer/local/canvasComponent/FU7KvxMtl/FU7KvxMtl.js\";import SectionFooter from\"#framer/local/canvasComponent/nh3n7J7uP/nh3n7J7uP.js\";import ComponentLinkMedium from\"#framer/local/canvasComponent/nvz5zLBqM/nvz5zLBqM.js\";import ContactForm from\"#framer/local/canvasComponent/pgcG3mzC9/pgcG3mzC9.js\";import*as sharedStyle from\"#framer/local/css/gLApuNlzm/gLApuNlzm.js\";import*as sharedStyle1 from\"#framer/local/css/jQIy9zk2A/jQIy9zk2A.js\";import*as sharedStyle2 from\"#framer/local/css/oV_Qzyeui/oV_Qzyeui.js\";import metadataProvider from\"#framer/local/webPageMetadata/o1OxUqHGd/o1OxUqHGd.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const Navigation2Fonts=getFonts(Navigation2);const ContainerWithFX=withFX(Container);const ContactFormFonts=getFonts(ContactForm);const ComponentLinkMediumFonts=getFonts(ComponentLinkMedium);const SectionFooterFonts=getFonts(SectionFooter);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionAWithFX=withFX(motion.a);const breakpoints={CdaIX3aWA:\"(min-width: 1200px)\",iECxMRQPs:\"(max-width: 809px)\",yOUEsUUKu:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-cwHue\";const variantClassNames={CdaIX3aWA:\"framer-v-6s75i8\",iECxMRQPs:\"framer-v-22gxeo\",yOUEsUUKu:\"framer-v-yie43z\"};const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.2,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition3={delay:0,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const animation4={opacity:1,rotate:0,scale:1,skewX:0,skewY:0,x:10,y:0};const transition4={delay:.2,duration:1.1,ease:[.44,0,.56,1],type:\"tween\"};const textEffect={effect:animation4,tokenization:\"word\",transition:transition4,trigger:\"onInView\",type:\"appear\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"CdaIX3aWA\",Phone:\"iECxMRQPs\",Tablet:\"yOUEsUUKu\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"CdaIX3aWA\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"CdaIX3aWA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-6ad5d364-1608-4ebe-9cde-66c6f4a7b50d, rgb(10, 10, 9)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-6s75i8\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-deroc7-container\",isModuleExternal:true,nodeId:\"RyyEYRE_z\",scopeId:\"o1OxUqHGd\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"RyyEYRE_z\",intensity:15,layoutId:\"RyyEYRE_z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iECxMRQPs:{y:(componentViewport?.y||0)+0+200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:97,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a02bsw-container\",nodeId:\"EA5xGHAWh\",rendersWithMotion:true,scopeId:\"o1OxUqHGd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iECxMRQPs:{variant:\"UGoAY5bxF\"},yOUEsUUKu:{variant:\"gn028xf5m\"}},children:/*#__PURE__*/_jsx(Navigation2,{height:\"100%\",id:\"EA5xGHAWh\",layoutId:\"EA5xGHAWh\",style:{width:\"100%\"},variant:\"tv3szmhZD\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1oiqfv6\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1ubszeo\",\"data-framer-name\":\"Section / Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wn4qf4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yOUEsUUKu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.025em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5deccf51-d234-49e0-afd0-abc521b2ec82, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:[\"laat van je horen,\",/*#__PURE__*/_jsx(\"br\",{}),\"we luisteren.\"]})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1s986ox\",\"data-styles-preset\":\"gLApuNlzm\",children:\"laat van je horen, we luisteren.\"})}),className:\"framer-bpasp6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iECxMRQPs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-cd27887e-f53e-4f63-8f91-b07aa312d3dd, rgba(255, 255, 255, 0.8))\",\"--framer-text-transform\":\"uppercase\"},children:[\"Marketingtuig\",/*#__PURE__*/_jsx(\"br\",{}),\"Schaverijstraat 11\",/*#__PURE__*/_jsx(\"br\",{}),\"3534 AS UTRECHT\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"tel:+31302072462\",motionChild:true,nodeId:\"PWnUrxGj3\",openInNewTab:false,scopeId:\"o1OxUqHGd\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qdqb07\",\"data-styles-preset\":\"jQIy9zk2A\",children:\"T 030 2072462\"})}),/*#__PURE__*/_jsx(\"br\",{}),\"KVK \u202D30279599\u202C\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-cd27887e-f53e-4f63-8f91-b07aa312d3dd, rgba(255, 255, 255, 0.8))\",\"--framer-text-transform\":\"uppercase\"},children:[\"Marketingtuig\",/*#__PURE__*/_jsx(\"br\",{}),\"Schaverijstraat 11\",/*#__PURE__*/_jsx(\"br\",{}),\"3534 AS UTRECHT\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"tel:+31302072462\",motionChild:true,nodeId:\"PWnUrxGj3\",openInNewTab:false,scopeId:\"o1OxUqHGd\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qdqb07\",\"data-styles-preset\":\"jQIy9zk2A\",children:\"T 030 2072462\"})}),/*#__PURE__*/_jsx(\"br\",{}),\"KVK \u202D30279599\u202C\"]})}),className:\"framer-1nqq62t\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iECxMRQPs:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+297+0+0+64+303},yOUEsUUKu:{width:\"353px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:462,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ho70z7-container\",nodeId:\"NQH9HpEFr\",scopeId:\"o1OxUqHGd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iECxMRQPs:{style:{width:\"100%\"},variant:\"eA4gKeLF3\"},yOUEsUUKu:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ContactForm,{height:\"100%\",id:\"NQH9HpEFr\",layoutId:\"NQH9HpEFr\",variant:\"rIgJjiF42\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-139b6eo\",\"data-framer-name\":\"Section / Contact\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xh5j3s\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nlrqtx\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iECxMRQPs:{y:(componentViewport?.y||0)+0+297+0+893+64+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-131kd5a-container\",nodeId:\"E3K_ld2jn\",scopeId:\"o1OxUqHGd\",children:/*#__PURE__*/_jsx(ComponentLinkMedium,{height:\"100%\",id:\"E3K_ld2jn\",KOt0N8eT2:\"instagram.com/marketingtuig\",layoutId:\"E3K_ld2jn\",style:{height:\"100%\"},uv2sRgJfG:\"Instagram\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iECxMRQPs:{y:(componentViewport?.y||0)+0+297+0+893+64+0+0+0+54}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11apl8n-container\",nodeId:\"x2A33Kwl7\",scopeId:\"o1OxUqHGd\",children:/*#__PURE__*/_jsx(ComponentLinkMedium,{height:\"100%\",id:\"x2A33Kwl7\",KOt0N8eT2:\"https://www.linkedin.com/company/marketingtuig\",layoutId:\"x2A33Kwl7\",style:{height:\"100%\"},uv2sRgJfG:\"LinkedIn\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iECxMRQPs:{y:(componentViewport?.y||0)+0+297+0+893+64+0+0+0+108}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d9nudf-container\",nodeId:\"YmpnLvxOt\",scopeId:\"o1OxUqHGd\",children:/*#__PURE__*/_jsx(ComponentLinkMedium,{height:\"100%\",id:\"YmpnLvxOt\",KOt0N8eT2:\"mailto:info@marketingtuig.nl\",layoutId:\"YmpnLvxOt\",style:{height:\"100%\"},uv2sRgJfG:\"info@marketingtuig.nl\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t9rw8u\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-elknxf\",\"data-styles-preset\":\"oV_Qzyeui\",children:\"Wij vertalen idee\\xebn naar beeld en strategie naar actie, zodat jouw merk altijd een stap voor blijft met werk dat werkt en een merk dat blijft groeien.\"})}),className:\"framer-ozs05f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iECxMRQPs:{y:(componentViewport?.y||0)+0+1623}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:544,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dlsj1g-container\",nodeId:\"FDsh3VWIt\",scopeId:\"o1OxUqHGd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iECxMRQPs:{variant:\"rhO2OGVQj\"},yOUEsUUKu:{variant:\"rOMeGhxuf\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"FDsh3VWIt\",layoutId:\"FDsh3VWIt\",style:{width:\"100%\"},variant:\"oEKVWi8WC\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"tel:+31303691406\",motionChild:true,nodeId:\"aKGvHh425\",openInNewTab:false,scopeId:\"o1OxUqHGd\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation1},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vf3t48 framer-1iw0mla\",\"data-framer-name\":\"Call2Action Button\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1tqcdp4\",\"data-framer-appear-id\":\"1tqcdp4\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2888fm\",\"data-framer-name\":\"Icon\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M146.2 46.45a6 6 0 0 1 7.35-4.25 84.24 84.24 0 0 1 60.25 60.25 6 6 0 0 1-4.25 7.35 5.94 5.94 0 0 1-1.55.2 6 6 0 0 1-5.8-4.45 72.34 72.34 0 0 0-51.75-51.75 6 6 0 0 1-4.25-7.35Zm-3.75 39.35C157 89.68 166.32 99 170.2 113.55A6 6 0 0 0 176 118a5.94 5.94 0 0 0 1.55-.2 6 6 0 0 0 4.25-7.35c-5-18.71-17.54-31.25-36.25-36.25a6 6 0 1 0-3.1 11.6Zm79.44 97A54.25 54.25 0 0 1 168 230C89.7 230 26 166.3 26 88a54.25 54.25 0 0 1 47.17-53.89 14 14 0 0 1 14.56 8.39l21.1 47.1a14 14 0 0 1-1.12 13.28 6 6 0 0 1-.42.57l-21.07 25.06a1.89 1.89 0 0 0 0 1.67c7.66 15.68 24.1 32 40 39.65a1.88 1.88 0 0 0 1.68-.06l24.69-21a4.81 4.81 0 0 1 .56-.42 14 14 0 0 1 13.28-1.22l47.24 21.17a14 14 0 0 1 8.22 14.53ZM210 181.32a2 2 0 0 0-1.21-2l-47.25-21.17a1.92 1.92 0 0 0-1.6.1l-24.68 21c-.18.15-.37.29-.56.42a14 14 0 0 1-13.77 1c-18.36-8.87-36.66-27-45.53-45.19a14 14 0 0 1 .91-13.73 4.73 4.73 0 0 1 .43-.57l21.05-25.09a2 2 0 0 0 0-1.67L76.74 47.31A2 2 0 0 0 74.9 46h-.23A42.24 42.24 0 0 0 38 88c0 71.68 58.32 130 130 130a42.24 42.24 0 0 0 42-36.68Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vmf55g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS12YXJpYWJsZVZGPUluZG5hSFFpSURRNE9BPT0=\",\"--framer-font-family\":'\"Satoshi Variable\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-variation-axes\":'\"wght\" 488'},children:\"BEL DIRECT\"})}),className:\"framer-1je7a7a\",fonts:[\"FS;Satoshi-variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS12YXJpYWJsZVZGPUluZG5hSFFpSURrd01BPT0=\",\"--framer-font-family\":'\"Satoshi Variable\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-variation-axes\":'\"wght\" 900'},children:\"030 3691406\"})}),className:\"framer-rf78ke\",effect:textEffect,fonts:[\"FS;Satoshi-variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cwHue.framer-1iw0mla, .framer-cwHue .framer-1iw0mla { display: block; }\",\".framer-cwHue.framer-6s75i8 { align-content: center; align-items: center; background-color: var(--token-6ad5d364-1608-4ebe-9cde-66c6f4a7b50d, #0a0a09); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-cwHue .framer-deroc7-container, .framer-cwHue .framer-1ho70z7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-cwHue .framer-a02bsw-container { flex: none; height: auto; position: sticky; width: 100%; z-index: 1; }\",\".framer-cwHue .framer-1oiqfv6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cwHue .framer-1ubszeo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 128px 80px 128px 80px; position: relative; width: 100%; }\",\".framer-cwHue .framer-1wn4qf4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 26px 0px 26px 0px; position: relative; width: 1px; }\",\".framer-cwHue .framer-bpasp6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 1000px; position: relative; width: 100%; }\",\".framer-cwHue .framer-1nqq62t { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 180px; word-break: break-word; word-wrap: break-word; }\",\".framer-cwHue .framer-139b6eo { align-content: center; align-items: center; background-color: var(--token-6ad5d364-1608-4ebe-9cde-66c6f4a7b50d, #0a0a09); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 128px 80px 128px 80px; position: relative; width: 100%; }\",\".framer-cwHue .framer-xh5j3s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-cwHue .framer-1nlrqtx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-cwHue .framer-131kd5a-container, .framer-cwHue .framer-11apl8n-container, .framer-cwHue .framer-1d9nudf-container { flex: none; height: 30px; position: relative; width: auto; }\",\".framer-cwHue .framer-1t9rw8u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-cwHue .framer-ozs05f { -webkit-user-select: none; flex: 1 0 0px; height: auto; max-width: 640px; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-cwHue .framer-dlsj1g-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-cwHue .framer-1vf3t48 { align-content: center; align-items: center; background-color: #ffffff; bottom: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 60px; justify-content: center; overflow: hidden; padding: 10px 20px 10px 10px; position: fixed; right: 0px; text-decoration: none; width: 231px; z-index: 3; }\",\".framer-cwHue .framer-1tqcdp4 { align-content: center; align-items: center; aspect-ratio: 0.9772727272727273 / 1; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 48px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 46px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-cwHue .framer-2888fm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-cwHue .framer-1vmf55g { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: 46px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-cwHue .framer-1je7a7a, .framer-cwHue .framer-rf78ke { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cwHue.framer-6s75i8, .framer-cwHue .framer-1oiqfv6, .framer-cwHue .framer-1ubszeo, .framer-cwHue .framer-1wn4qf4, .framer-cwHue .framer-139b6eo, .framer-cwHue .framer-xh5j3s, .framer-cwHue .framer-1nlrqtx, .framer-cwHue .framer-1t9rw8u, .framer-cwHue .framer-1vf3t48, .framer-cwHue .framer-1tqcdp4, .framer-cwHue .framer-1vmf55g { gap: 0px; } .framer-cwHue.framer-6s75i8 > *, .framer-cwHue .framer-1oiqfv6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cwHue.framer-6s75i8 > :first-child, .framer-cwHue .framer-1oiqfv6 > :first-child, .framer-cwHue .framer-1wn4qf4 > :first-child, .framer-cwHue .framer-1nlrqtx > :first-child, .framer-cwHue .framer-1tqcdp4 > :first-child, .framer-cwHue .framer-1vmf55g > :first-child { margin-top: 0px; } .framer-cwHue.framer-6s75i8 > :last-child, .framer-cwHue .framer-1oiqfv6 > :last-child, .framer-cwHue .framer-1wn4qf4 > :last-child, .framer-cwHue .framer-1nlrqtx > :last-child, .framer-cwHue .framer-1tqcdp4 > :last-child, .framer-cwHue .framer-1vmf55g > :last-child { margin-bottom: 0px; } .framer-cwHue .framer-1ubszeo > *, .framer-cwHue .framer-139b6eo > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-cwHue .framer-1ubszeo > :first-child, .framer-cwHue .framer-139b6eo > :first-child, .framer-cwHue .framer-xh5j3s > :first-child, .framer-cwHue .framer-1t9rw8u > :first-child, .framer-cwHue .framer-1vf3t48 > :first-child { margin-left: 0px; } .framer-cwHue .framer-1ubszeo > :last-child, .framer-cwHue .framer-139b6eo > :last-child, .framer-cwHue .framer-xh5j3s > :last-child, .framer-cwHue .framer-1t9rw8u > :last-child, .framer-cwHue .framer-1vf3t48 > :last-child { margin-right: 0px; } .framer-cwHue .framer-1wn4qf4 > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-cwHue .framer-xh5j3s > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-cwHue .framer-1nlrqtx > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-cwHue .framer-1t9rw8u > * { margin: 0px; margin-left: calc(62px / 2); margin-right: calc(62px / 2); } .framer-cwHue .framer-1vf3t48 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-cwHue .framer-1tqcdp4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cwHue .framer-1vmf55g > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-cwHue.framer-6s75i8 { width: 810px; } .framer-cwHue .framer-1ubszeo, .framer-cwHue .framer-139b6eo { padding: 80px 64px 80px 64px; } .framer-cwHue .framer-1wn4qf4 { gap: 20px; } .framer-cwHue .framer-bpasp6 { --framer-text-wrap: balance; order: 0; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-cwHue .framer-1nqq62t, .framer-cwHue .framer-1t9rw8u { order: 1; } .framer-cwHue .framer-1ho70z7-container { width: 353px; } .framer-cwHue .framer-xh5j3s { gap: 64px; } .framer-cwHue .framer-1nlrqtx, .framer-cwHue .framer-ozs05f { order: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cwHue .framer-1wn4qf4, .framer-cwHue .framer-xh5j3s { gap: 0px; } .framer-cwHue .framer-1wn4qf4 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-cwHue .framer-1wn4qf4 > :first-child { margin-top: 0px; } .framer-cwHue .framer-1wn4qf4 > :last-child { margin-bottom: 0px; } .framer-cwHue .framer-xh5j3s > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-cwHue .framer-xh5j3s > :first-child { margin-left: 0px; } .framer-cwHue .framer-xh5j3s > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-cwHue.framer-6s75i8 { width: 390px; } .framer-cwHue .framer-1ubszeo { align-content: center; align-items: center; flex-direction: column; padding: 64px 40px 64px 40px; } .framer-cwHue .framer-1wn4qf4 { flex: none; gap: 23px; width: 100%; } .framer-cwHue .framer-1ho70z7-container { width: 100%; } .framer-cwHue .framer-139b6eo { padding: 64px 40px 64px 40px; } .framer-cwHue .framer-xh5j3s { flex-direction: column; gap: 32px; } .framer-cwHue .framer-1nlrqtx { flex: none; gap: 24px; width: 100%; } .framer-cwHue .framer-1t9rw8u { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cwHue .framer-1ubszeo, .framer-cwHue .framer-1wn4qf4, .framer-cwHue .framer-xh5j3s, .framer-cwHue .framer-1nlrqtx { gap: 0px; } .framer-cwHue .framer-1ubszeo > *, .framer-cwHue .framer-1nlrqtx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-cwHue .framer-1ubszeo > :first-child, .framer-cwHue .framer-1wn4qf4 > :first-child, .framer-cwHue .framer-xh5j3s > :first-child, .framer-cwHue .framer-1nlrqtx > :first-child { margin-top: 0px; } .framer-cwHue .framer-1ubszeo > :last-child, .framer-cwHue .framer-1wn4qf4 > :last-child, .framer-cwHue .framer-xh5j3s > :last-child, .framer-cwHue .framer-1nlrqtx > :last-child { margin-bottom: 0px; } .framer-cwHue .framer-1wn4qf4 > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-cwHue .framer-xh5j3s > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1773\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yOUEsUUKu\":{\"layout\":[\"fixed\",\"auto\"]},\"iECxMRQPs\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framero1OxUqHGd=withCSS(Component,css,\"framer-cwHue\");export default Framero1OxUqHGd;Framero1OxUqHGd.displayName=\"Page\";Framero1OxUqHGd.defaultProps={height:1773,width:1200};const variationAxes=[{defaultValue:900,maxValue:900,minValue:300,name:\"Weight\",tag:\"wght\"}];addFonts(Framero1OxUqHGd,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NWBQYJIM7GCZ5XWD7D26ARB3VDY55ZRT/K63EV2KZIGKLE7RANQ2U42S6SVHU5RJ7/X6XYTKIVDUW7GZTZPZNN4EUM5KH54KHF.woff2\",variationAxes,weight:\"400\"}]},...SmoothScrollFonts,...Navigation2Fonts,...ContactFormFonts,...ComponentLinkMediumFonts,...SectionFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero1OxUqHGd\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yOUEsUUKu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iECxMRQPs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1773\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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", "HiddenInput", "Y", "name", "required", "value", "setInvalid", "onSetValueEvent", "noPrefill", "parentRef", "internalRef", "pe", "ref", "ue", "p", "event", "HideElementComponent", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "u", "Border", "Icon", "image", "color", "size", "style", "defaultImage", "p", "Border", "width", "transition", "borderColor", "opacity", "motion", "createBackground", "fill", "on", "focused", "invalid", "onOff", "colorA", "colorB", "parsePadding", "padding", "parsedValues", "value", "fillProp", "focus", "optional", "hidden", "colorOn", "colorAOn", "colorBOn", "colorOff", "colorAOff", "colorBOff", "ControlType", "props", "borderProp", "defaultValue", "colorFocus", "colorInvalid", "shadowsProp", "getFormInfo", "element", "form", "formId", "pages", "uuid", "d", "d2", "c", "r", "ButtonsInput", "props", "clickAction", "options", "textOptions", "imageOptions", "layout", "border", "shadows", "valueSeparator", "id", "createId", "isCanvas", "RenderTarget", "multiSelect", "multiStepFormState", "setMultiStepFormState", "useMultiStepFormStore", "value", "setValue", "ye", "invalid", "setInvalid", "formId", "setFormId", "ref", "pe", "state", "ue", "newFormId", "getFormInfo", "_props_invalidEvent", "onSetValueEvent", "event", "imageStyle", "rows", "i", "option", "selected", "layoutProps", "color", "boxShadow", "borderColor", "onClick", "v", "_state_nextPage", "_textOptions_gap", "u", "motion", "_props_focusEvent", "createBackground", "p", "Image2", "Border", "HiddenInput", "items", "index", "addPropertyControls", "ControlType", "fillProp", "borderProp", "shadowsProp", "TextInput", "props", "type", "textAreaHeight", "shadows", "border", "id", "createId", "Element", "focused", "setFocused", "ye", "invalid", "setInvalid", "attributes", "styles", "pt", "pr", "pb", "pl", "parsePadding", "heightMode", "autoHeightSupported", "onFocus", "_props_focusEvent", "onBlur", "_props_blurEvent", "onInvalid", "event", "_props_invalidEvent", "u", "motion", "createBackground", "p", "Border", "addPropertyControls", "ControlType", "fillProp", "borderProp", "shadowsProp", "useStore", "createStore", "setParent", "Component", "props", "store", "p", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "mouseEnter", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kR_BdJCiH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1hqdpvq", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramermzJSMTadZ", "withCSS", "mzJSMTadZ_default", "addPropertyControls", "ControlType", "addFonts", "FormPlainTextInputSetParent", "setParent", "FormPlainTextInput2", "TextInputFonts", "getFonts", "TextInput", "ButtonsInputFonts", "ButtonsInput", "ButtonFonts", "mzJSMTadZ_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "formVariants", "form", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "transition2", "animation", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "kR_BdJCiH25cmb", "args", "onTap25cmb", "onTapl1d3gc", "onTapropc5t", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "FormContainer", "formState", "u", "l", "RichText2", "ComponentViewportProvider", "SVG", "css", "FramerpgcG3mzC9", "withCSS", "pgcG3mzC9_default", "addPropertyControls", "ControlType", "addFonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "Navigation2Fonts", "FU7KvxMtl_default", "ContainerWithFX", "withFX", "Container", "ContactFormFonts", "pgcG3mzC9_default", "ComponentLinkMediumFonts", "nvz5zLBqM_default", "SectionFooterFonts", "nh3n7J7uP_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionAWithFX", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "animation3", "animation4", "transition4", "textEffect", "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", "ComponentViewportProvider", "Container", "SmoothScroll", "PropertyOverrides2", "ContainerWithFX", "FU7KvxMtl_default", "x", "RichText2", "Link", "pgcG3mzC9_default", "nvz5zLBqM_default", "nh3n7J7uP_default", "MotionAWithFX", "MotionDivWithOptimizedAppearEffect", "SVG", "css", "Framero1OxUqHGd", "withCSS", "o1OxUqHGd_default", "variationAxes", "addFonts", "SmoothScrollFonts", "Navigation2Fonts", "ContactFormFonts", "ComponentLinkMediumFonts", "SectionFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
