{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/hGSBVKvrhkdqO7mFtN2U/4jmb3BLizKRZxLoltvrg/BaseForm.js", "ssg:https://framerusercontent.com/modules/6kBnb2DbNiqsY9aaLTD1/jdBDC5IxRTC2VKuZmW9M/suCmzpHhM.js"],
  "sourcesContent": ["/*\nMIT License\nCopyright \u00A9 Joel Whitaker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nThe Software is provided \"as is\", without warranty of any kind, express or\nimplied, including but not limited to the warranties of merchantability,\nfitness for a particular purpose and noninfringement. In no event shall the\nauthors or copyright holders be liable for any claim, damages or other\nliability, whether in an action of contract, tort or otherwise, arising from,\nout of or in connection with the Software or the use or other dealings in the\nSoftware.\n*/import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";var FieldType;(function(FieldType){FieldType[\"Text\"]=\"text\";FieldType[\"Number\"]=\"number\";FieldType[\"Email\"]=\"email\";FieldType[\"Url\"]=\"url\";FieldType[\"Tel\"]=\"tel\";FieldType[\"TextArea\"]=\"textarea\";FieldType[\"Select\"]=\"select\";FieldType[\"Checkbox\"]=\"checkbox\";FieldType[\"Radio\"]=\"radio\";FieldType[\"Time\"]=\"time\";FieldType[\"Week\"]=\"week\";FieldType[\"Month\"]=\"month\";FieldType[\"Date\"]=\"date\";FieldType[\"DateTimeLocal\"]=\"datetime-local\";FieldType[\"Password\"]=\"password\";FieldType[\"Hidden\"]=\"hidden\";})(FieldType||(FieldType={}));function isExternalURL(url){try{return!!new URL(url);}catch{}try{return!!new URL(`https://${url}`);}catch{}return false;}function hasMinMaxStep(type){return[\"time\",\"week\",\"number\",\"date\",\"datetime-local\"].includes(type);}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * BASEFORM\n * By Joel Whitaker (Alphi.dev)\n * Based on INPUT by Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const BaseForm=withCSS(function BaseForm({url,method,contentType,redirectAs,link,inputs,button,styles,extraHeaders,extraFields,style,onSubmit}){const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[getFocus,setFocus]=useState(null);const{paddingPerSide:labelPaddingPerSide,paddingTop:labelPaddingTop,paddingRight:labelPaddingRight,paddingBottom:labelPaddingBottom,paddingLeft:labelPaddingLeft,padding:labelPadding,borderRadius:labelBorderRadius,borderObject:labelBorderObject,shadowObject:labelShadowObject}=styles.label;const{paddingPerSide:inputPaddingPerSide,paddingTop:inputPaddingTop,paddingRight:inputPaddingRight,paddingBottom:inputPaddingBottom,paddingLeft:inputPaddingLeft,padding:inputPadding,borderRadius:inputBorderRadius,borderObject:inputBorderObject,focusObject:inputFocusObject,shadowObject:inputShadowObject}=styles.input;const{paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,paddingBottom:buttonPaddingBottom,paddingLeft:buttonPaddingLeft,padding:buttonPadding,borderRadius:buttonBorderRadius,borderObject:buttonBorderObject,shadowObject:buttonShadowObject}=styles.button;const labelPaddingValue=labelPaddingPerSide?`${labelPaddingTop}px ${labelPaddingRight}px ${labelPaddingBottom}px ${labelPaddingLeft}px`:`${labelPadding}px ${labelPadding}px ${labelPadding}px ${labelPadding}px`;const inputPaddingValue=inputPaddingPerSide?`${inputPaddingTop}px ${inputPaddingRight}px ${inputPaddingBottom}px ${inputPaddingLeft}px`:`${inputPadding}px ${inputPadding}px ${inputPadding}px ${inputPadding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${buttonPaddingTop}px ${buttonPaddingRight}px ${buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${buttonPadding}px ${buttonPadding}px ${buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(null);if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(isExternalURL(link)){setError(true);formControls.start(\"error\");return false;}}return;};const handleChange=useCallback(event=>{setError(false);},[]);const handleFocus=useCallback((event,input)=>{setFocus(input.name);},[]);const handleBlur=useCallback(event=>{setFocus(null);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);setError(false);const headers=new Headers;if(extraHeaders){for(const[key,value]of Object.entries(extraHeaders)){headers.append(key,value);}}const formData=new FormData(event.target);let requestOptions={method:method,headers:headers};if(method===\"get\"){// Add form fields to URL for GET requests\nconst urlSearchParams=new URLSearchParams;for(const[name,value]of formData){urlSearchParams.append(name,value.toString());}const queryString=urlSearchParams.toString();url+=queryString?`?${queryString}`:\"\";}else{headers.append(\"Content-Type\",contentType);if(contentType===\"application/json\"){headers.append(\"accept\",\"application/json\");}if(contentType===\"application/x-www-form-urlencoded\"){const urlSearchParams=new URLSearchParams;for(const[name,value]of formData){urlSearchParams.append(name,value.toString());}if(extraFields){for(const[key,value]of Object.entries(extraFields)){urlSearchParams.append(key,value.toString());}}requestOptions[\"body\"]=urlSearchParams.toString();}else if(contentType===\"application/json\"){const bodyObject={};for(const[name,value]of formData){bodyObject[name]=value;}if(extraFields){for(const[key,value]of Object.entries(extraFields)){bodyObject[key]=value;}}requestOptions[\"body\"]=JSON.stringify(bodyObject);}}fetch(url,requestOptions).then(response=>{const statusCode=response.status;const contentType=response.headers.get(\"content-type\");if(contentType&&contentType.includes(\"application/json\")){return response.json().then(data=>({statusCode,data}));}else if(contentType&&contentType.includes(\"text/plain\")){return response.text().then(data=>({statusCode,data}));}else{throw new Error(\"Unsupported response type\");}}).then(({statusCode,data})=>{if(statusCode>=200&&statusCode<300){// Reset state\nsetLoading(false);event.target.reset();// Handle success\nonSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}else{// Handle errors\nlet errorMessage=\"An error occurred submitting the form\";throw new Error(errorMessage);}}).catch(error=>{console.error(error);setError(true);setLoading(false);formControls.start(\"error\");});},[onSubmit,isLoading]);// Animation\nconst formControls=useAnimationControls();// Label Box Shadow Styles\nconst labelShadowStyles=styles.label.shadowObject?`${labelShadowObject.shadowX}px ${labelShadowObject.shadowY}px ${labelShadowObject.shadowBlur}px ${labelShadowObject.shadowColor}`:null;const labelBorderStyles=styles.label.borderObject?`inset 0 0 0 ${labelBorderObject.borderWidth}px ${labelBorderObject.borderColor}`:null;// Input Box Shadow Styles\nconst inputFocusStylesFrom=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthFrom}px ${inputFocusObject.focusColor}`:null;const inputFocusStylesTo=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthTo}px ${inputFocusObject.focusColor}`:null;const inputShadowStyles=styles.input.shadowObject?`${inputShadowObject.shadowX}px ${inputShadowObject.shadowY}px ${inputShadowObject.shadowBlur}px ${inputShadowObject.shadowColor}`:null;const inputBorderStyles=styles.input.borderObject?`inset 0 0 0 ${inputBorderObject.borderWidth}px ${inputBorderObject.borderColor}`:null;// Button Box Shadow Styles\nconst buttonShadowStyles=styles.button.shadowObject?`${buttonShadowObject.shadowX}px ${buttonShadowObject.shadowY}px ${buttonShadowObject.shadowBlur}px ${buttonShadowObject.shadowColor}`:null;const buttonBorderStyles=styles.button.borderObject?`inset 0 0 0 ${buttonBorderObject.borderWidth}px ${buttonBorderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},focused:{boxShadow:dynamicBoxShadow(inputFocusStylesTo,inputShadowStyles,inputBorderStyles)}};const label=input=>{if(!input.label){return null;}return /*#__PURE__*/_jsxs(\"label\",{htmlFor:input.name,style:{marginBottom:\"0.375rem\",alignSelf:\"flex-start\",padding:labelPaddingValue,borderRadius:labelBorderRadius,fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color,boxShadow:dynamicBoxShadow(labelShadowStyles,labelBorderStyles)},children:[input.label,requiredFlag(input.required)]});};const getInputSpan=input=>{return input.gridColumn>styles.form.columns?styles.form.columns:input.gridColumn;};const getButtonSpan=()=>{const totalSpan=inputs.reduce((sum,input)=>sum+Number(input.gridColumn),0);const shouldBeInline=totalSpan===styles.form.columns-1;return shouldBeInline?1:styles.form.columns;};const baseInput=input=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/_jsx(motion.input,{name:input.name,type:input.type,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},min:input.min,max:input.max,step:input.step})]});};const textareaInput=input=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/_jsx(motion.textarea,{name:input.name,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3}})]});};const optionsHMTL=options=>{return options.map(option=>{return /*#__PURE__*/_jsx(\"option\",{value:option.value,children:option.text});});};const selectInput=input=>{let options=[];if(input.placeholder){options.push({text:input.placeholder,value:\"\"});}options=options.concat(input.options);return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",display:\"inline-block\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{...selectChevron,borderColor:`${styles.input.color} transparent transparent transparent`}}),/*#__PURE__*/_jsx(motion.select,{name:input.name,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},disabled:isLoading,children:optionsHMTL(options)})]})]});};function checkboxInput(input){return /*#__PURE__*/_jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/_jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/_jsx(motion.input,{name:input.name,type:\"checkbox\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}function radioInput(input){return /*#__PURE__*/_jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/_jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/_jsx(motion.input,{name:input.name,type:\"radio\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}const inputsHTML=inputs.map(input=>{let inputElement=null;if(input.type===\"select\"){inputElement=selectInput(input);}else if(input.type===\"textarea\"){inputElement=textareaInput(input);}else if(input.type===\"checkbox\"){inputElement=checkboxInput(input);}else if(input.type===\"radio\"){inputElement=radioInput(input);}else{inputElement=baseInput(input);}return inputElement;});return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":styles.input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",display:\"grid\",gridTemplateColumns:styles.form.columns>1&&getButtonSpan()===1?\"1fr auto\":`repeat(${styles.form.columns}, 1fr)`,gap:`${styles.form.rowGap}px ${styles.form.columnGap}px`,background:styles.form.fill},onSubmit:handleSubmit,method:\"POST\",children:[inputsHTML,/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",gridColumn:`span ${getButtonSpan()}`},children:[!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,padding:buttonPadding,color:styles.input.color}),button.shouldAppear&&/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",display:\"flex\",flexDirection:\"column\"},children:/*#__PURE__*/_jsxs(\"div\",{style:{height:\"100%\",display:\"flex\",position:\"relative\",alignSelf:styles.button.align},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:\"100%\",height:\"100%\",cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:buttonBorderRadius,fontWeight:styles.button.fontWeight,fontSize:16,...styles.button.font,background:styles.button.fill,color:styles.button.color,zIndex:1,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:buttonBorderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:styles.button.color,background:styles.button.fill,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)},children:/*#__PURE__*/_jsx(Spinner,{color:styles.button.color})})]})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.inputPaddingPerSide?props.inputPaddingRight:props.inputPadding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};const basePropertyControls={url:{title:\"Url\",type:ControlType.String},method:{type:ControlType.Enum,defaultValue:\"post\",options:[\"get\",\"post\",\"put\",\"patch\",\"delete\"],optionTitles:[\"Get\",\"Post\",\"Put\",\"Patch\",\"Delete\"]},contentType:{type:ControlType.Enum,defaultValue:\"application/json\",options:[\"application/json\",\"application/x-www-form-urlencoded\"],optionTitles:[\"json\",\"x-www-form-urlencoded\"],hidden:props=>props.method===\"get\"},inputs:{title:\"Inputs\",type:ControlType.Array,control:{type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String},name:{title:\"Name\",type:ControlType.String},placeholder:{title:\"Placeholder\",type:ControlType.String,hidden:props=>props.type===\"checkbox\"},type:{type:ControlType.Enum,options:Object.values(FieldType),optionTitles:Object.keys(FieldType)},options:{type:ControlType.Array,title:\"Options\",control:{type:ControlType.Object,title:\"Option\",controls:{text:{type:ControlType.String,title:\"Text\"},value:{type:ControlType.String,title:\"Value\"}}},hidden:props=>props.type!==\"select\"},min:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},max:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},step:{type:ControlType.Number,hidden:props=>!hasMinMaxStep(props.type)},value:{type:ControlType.String},required:{type:ControlType.Boolean},gridColumn:{title:\"Grid Col\",type:ControlType.Enum,defaultValue:1,displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"1\",\"2\",\"3\"],optionTitles:[\"1\",\"2\",\"3\"]}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Submit\"}}},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},styles:{type:ControlType.Object,controls:{form:{type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#fff\"},columns:{title:\"Columns\",type:ControlType.Enum,options:[\"1\",\"2\",\"3\"],displaySegmentedControl:true},rowGap:{title:\"Row gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},columnGap:{title:\"Col Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8}}},label:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"transparent\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},input:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},align:{title:\"Align\",type:ControlType.Enum,segmentedControlDirection:\"vertical\",options:[\"flex-start\",\"center\",\"flex-end\",\"stretch\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Stretch\"],defaultValue:\"stretch\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}}}}};addPropertyControls(BaseForm,basePropertyControls);const defaultStyle={WebkitAppearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};const selectChevron={position:\"absolute\",top:\"50%\",right:\"12px\",transform:\"translateY(-50%)\",width:\"0\",height:\"0\",borderStyle:\"solid\",borderWidth:\"5px 5px 0 5px\",pointerEvents:\"none\"};function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}function requiredFlag(isRequired){if(isRequired){return /*#__PURE__*/_jsx(\"span\",{children:\"*\"});}return null;}BaseForm.defaultProps={url:\"\",styles:{form:{columns:1,rowGap:8,columnGap:8},label:{color:\"#000\"},input:{borderObject:{borderColor:\"#ccc\"}},button:{}},inputs:[{name:\"name\",label:\"Name\",placeholder:\"Jane\",type:\"text\",required:false},{name:\"email\",label:\"Email\",placeholder:\"jane@example.com\",type:\"email\",required:false},{name:\"service\",label:\"Service\",placeholder:\"- select -\",type:\"select\",required:false,options:[]},{name:\"message\",label:\"Message\",placeholder:\"\",type:\"textarea\",required:false},{name:\"terms\",label:\"I accept the terms & conditions\",type:\"checkbox\",required:false}]};export default BaseForm;export{basePropertyControls};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BaseForm\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"basePropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BaseForm.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,LazyValue,Link,optimizeAppear,optimizeAppearTransformTemplate,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Logo from\"#framer/local/canvasComponent/bDou7mQgS/bDou7mQgS.js\";import Navbar from\"#framer/local/canvasComponent/geqk6jVkC/geqk6jVkC.js\";import Footer from\"#framer/local/canvasComponent/Gf1uVj6DQ/Gf1uVj6DQ.js\";import BaseForm from\"#framer/local/codeFile/f8Up_lJ/BaseForm.js\";import*as sharedStyle4 from\"#framer/local/css/bxP2b_0Ko/bxP2b_0Ko.js\";import*as sharedStyle from\"#framer/local/css/IOEcq6nbj/IOEcq6nbj.js\";import*as sharedStyle3 from\"#framer/local/css/k44p3jO_l/k44p3jO_l.js\";import*as sharedStyle2 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle1 from\"#framer/local/css/TjJlMJ6w8/TjJlMJ6w8.js\";import metadataProvider from\"#framer/local/webPageMetadata/suCmzpHhM/suCmzpHhM.js\";const LogoFonts=getFonts(Logo);const NavbarFonts=getFonts(Navbar);const BaseFormFonts=getFonts(BaseForm);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const ContainerWithFX=withFX(Container);const cycleOrder=[\"JK5JQQQ_5\",\"vRgxHesXZ\",\"tXdLw_lRR\"];const breakpoints={JK5JQQQ_5:\"(min-width: 1200px)\",tXdLw_lRR:\"(max-width: 809px)\",vRgxHesXZ:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Cq6l8\";const variantClassNames={JK5JQQQ_5:\"framer-v-3z4cjy\",tXdLw_lRR:\"framer-v-1lfy3bo\",vRgxHesXZ:\"framer-v-16r5m4y\"};const valuesByLocaleId={Rfib7ROex:new LazyValue(()=>import(\"./suCmzpHhM-0.js\"))};const preloadLocalizedValues=locale=>{const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:30,delay:0,mass:2,stiffness:100,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-10};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:30,delay:.3,mass:2,stiffness:100,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-30};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const transition3={damping:30,delay:.2,mass:2,stiffness:100,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:90};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:60};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:90};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:90};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:120};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:120};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:160};const transition4={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:160};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"JK5JQQQ_5\",Phone:\"tXdLw_lRR\",Tablet:\"vRgxHesXZ\"};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:\"JK5JQQQ_5\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-Cq6l8`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-Cq6l8`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"JK5JQQQ_5\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-3z4cjy\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{\"data-framer-appear-id\":\"1lmzo8j\",animate:optimizeAppear(\"animate\",\"1lmzo8j\",animation,\"1lfy3bo\"),initial:optimizeAppear(\"initial\",\"1lmzo8j\",animation1,\"1lfy3bo\")},vRgxHesXZ:{\"data-framer-appear-id\":\"omvf51\",animate:optimizeAppear(\"animate\",\"omvf51\",animation,\"16r5m4y\"),initial:optimizeAppear(\"initial\",\"omvf51\",animation1,\"16r5m4y\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"oib4h2\",animation,\"3z4cjy\"),className:\"framer-oib4h2-container\",\"data-framer-appear-id\":\"oib4h2\",\"data-framer-name\":\"Process Logo\",initial:optimizeAppear(\"initial\",\"oib4h2\",animation1,\"3z4cjy\"),layoutScroll:true,name:\"Process Logo\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{ifUOndEDH:resolvedLinks[2],variant:\"zWV8cxgzT\"},vRgxHesXZ:{ifUOndEDH:resolvedLinks[1],variant:\"zWV8cxgzT\"}},children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"H2FQhc0iP\",ifUOndEDH:resolvedLinks[0],layoutId:\"H2FQhc0iP\",name:\"Process Logo\",variant:\"sP4e3iZKf\",width:\"100%\",YIltgZQMx:addImageAlt({src:\"https://framerusercontent.com/images/ImiRltpaArpM8U7EiaG6I0bxE.png\"},\"\")})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{\"data-framer-appear-id\":\"hlxg6u\",animate:optimizeAppear(\"animate\",\"hlxg6u\",animation2,\"1lfy3bo\"),initial:optimizeAppear(\"initial\",\"hlxg6u\",animation3,\"1lfy3bo\"),transformTemplate:undefined},vRgxHesXZ:{\"data-framer-appear-id\":\"twwku2\",animate:optimizeAppear(\"animate\",\"twwku2\",animation2,\"16r5m4y\"),initial:optimizeAppear(\"initial\",\"twwku2\",animation3,\"16r5m4y\"),transformTemplate:optimizeAppearTransformTemplate(\"twwku2\",transformTemplate1)}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"16flt7f\",animation2,\"3z4cjy\"),className:\"framer-16flt7f-container\",\"data-framer-appear-id\":\"16flt7f\",initial:optimizeAppear(\"initial\",\"16flt7f\",animation3,\"3z4cjy\"),layoutScroll:true,style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"16flt7f\",transformTemplate1),children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{style:{width:\"100%\"},variant:\"xZMChLWbK\"},vRgxHesXZ:{variant:\"zWjVcnPlS\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"S7fCUazve\",layoutId:\"S7fCUazve\",variant:\"ebLRlZjPs\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rh892c\",\"data-framer-name\":\"Landing\",name:\"Landing\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{\"data-framer-appear-id\":\"wk6b3z\",animate:optimizeAppear(\"animate\",\"wk6b3z\",animation,\"1lfy3bo\"),initial:optimizeAppear(\"initial\",\"wk6b3z\",animation4,\"1lfy3bo\")},vRgxHesXZ:{\"data-framer-appear-id\":\"kjqhs5\",animate:optimizeAppear(\"animate\",\"kjqhs5\",animation,\"16r5m4y\"),initial:optimizeAppear(\"initial\",\"kjqhs5\",animation4,\"16r5m4y\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"1pk0sdq\",animation,\"3z4cjy\"),children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Get in touch. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-06538032-c0a4-4346-b17b-14a1de931108, rgb(113, 112, 115))\"},children:\"Partner with us and make magic happen.\"})]})}),className:\"framer-1pk0sdq\",\"data-framer-appear-id\":\"1pk0sdq\",fonts:[\"Inter\"],initial:optimizeAppear(\"initial\",\"1pk0sdq\",animation4,\"3z4cjy\"),style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q7tdyx\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{\"data-framer-appear-id\":\"ebp444\",animate:optimizeAppear(\"animate\",\"ebp444\",animation5,\"1lfy3bo\"),initial:optimizeAppear(\"initial\",\"ebp444\",animation6,\"1lfy3bo\")},vRgxHesXZ:{\"data-framer-appear-id\":\"w6bvr3\",animate:optimizeAppear(\"animate\",\"w6bvr3\",animation5,\"16r5m4y\"),initial:optimizeAppear(\"initial\",\"w6bvr3\",animation6,\"16r5m4y\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"x29ia\",animation5,\"3z4cjy\"),className:\"framer-x29ia\",\"data-border\":true,\"data-framer-appear-id\":\"x29ia\",\"data-framer-name\":\"Form\",initial:optimizeAppear(\"initial\",\"x29ia\",animation6,\"3z4cjy\"),name:\"Form\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-25nuf8\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{children:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Work together. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-06538032-c0a4-4346-b17b-14a1de931108, rgb(113, 112, 115))\"},children:\"Start today.\"})]})})},vRgxHesXZ:{children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Work together. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-06538032-c0a4-4346-b17b-14a1de931108, rgb(113, 112, 115))\"},children:\"Start today.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1q1tllb\",\"data-styles-preset\":\"IOEcq6nbj\",children:[\"Work together. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-06538032-c0a4-4346-b17b-14a1de931108, rgb(113, 112, 115))\"},children:\"Start today.\"})]})}),className:\"framer-rvgk75\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1jm41cg\",\"data-styles-preset\":\"TjJlMJ6w8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5553722d-43da-4a73-a7ce-d2499d28fa68, rgb(135, 134, 138))\"},children:[\"Please fill out this form, and we will respond to you within one business day. Alternatively, you can drop us an \",/*#__PURE__*/_jsx(Link,{href:\"https://layoutgallery.lemonsqueezy.com/checkout/buy/0030e544-6138-4335-89ee-3f3721c1decd\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"email\"})}),\".\"]})})},vRgxHesXZ:{children:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1jm41cg\",\"data-styles-preset\":\"TjJlMJ6w8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5553722d-43da-4a73-a7ce-d2499d28fa68, rgb(135, 134, 138))\"},children:[\"Please fill out this form, and we will respond to you within one business day. Alternatively, you can drop us an \",/*#__PURE__*/_jsx(Link,{href:\"https://layoutgallery.lemonsqueezy.com/checkout/buy/0030e544-6138-4335-89ee-3f3721c1decd\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"email\"})}),\".\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1jm41cg\",\"data-styles-preset\":\"TjJlMJ6w8\",style:{\"--framer-text-color\":\"var(--token-5553722d-43da-4a73-a7ce-d2499d28fa68, rgb(135, 134, 138))\"},children:[\"Please fill out this form, and we will respond to you within one business day. Alternatively, you can drop us an \",/*#__PURE__*/_jsx(Link,{href:\"https://layoutgallery.lemonsqueezy.com/checkout/buy/0030e544-6138-4335-89ee-3f3721c1decd\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"email\"})}),\".\"]})}),className:\"framer-1h9xr76\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11ficlk\",\"data-framer-name\":\"Form\",name:\"Form\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":ZSJWx5Y7R\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":ZSJWx5Y7R\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":ZSJWx5Y7R\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29;return _jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yayixe-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{link:resolvedLinks1[2]},vRgxHesXZ:{link:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(BaseForm,{button:{label:(_getLocalizedValue=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Submit\",shouldAppear:true},contentType:\"application/json\",height:\"100%\",id:\"y37mayPDd\",inputs:[{gridColumn:\"1\",label:(_getLocalizedValue1=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"First Name\",max:\"\",min:\"\",name:(_getLocalizedValue2=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"First Name\",options:[],placeholder:(_getLocalizedValue3=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Jane\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"1\",label:(_getLocalizedValue4=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"Last Name\",max:\"\",min:\"\",name:(_getLocalizedValue5=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"Last Name\",options:[],placeholder:(_getLocalizedValue6=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"Doe\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:(_getLocalizedValue7=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"Email\",max:\"\",min:\"\",name:(_getLocalizedValue8=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:\"email\",options:[],placeholder:(_getLocalizedValue9=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:\"jane@example.com\",required:true,step:0,type:\"email\",value:\"\"},{gridColumn:\"2\",label:(_getLocalizedValue10=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:\"Business\",max:\"\",min:\"\",name:(_getLocalizedValue11=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:\"Business\",options:[],placeholder:(_getLocalizedValue12=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:\"Your Business\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:(_getLocalizedValue13=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:\"Budget\",max:\"\",min:\"\",name:(_getLocalizedValue14=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:\"Budget\",options:[{text:(_getLocalizedValue15=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:\"$5,000 - $10,000\",value:(_getLocalizedValue16=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:\"$5,000 - $10,000\"},{text:(_getLocalizedValue17=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:\"$10,000 - $30,000\",value:(_getLocalizedValue18=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:\"$10,000 - $30,000\"},{text:(_getLocalizedValue19=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:\"$30,000 - $50,000\",value:(_getLocalizedValue20=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:\"$30,000 - $50,000\"},{text:(_getLocalizedValue21=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:\"$50,000 - $100,000\",value:(_getLocalizedValue22=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:\"$50,000 - $100,000\"},{text:(_getLocalizedValue23=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:\"$100,000 +\",value:(_getLocalizedValue24=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:\"$100,000 +\"}],placeholder:(_getLocalizedValue25=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:\"- select -\",required:true,step:0,type:\"select\",value:\"\"},{gridColumn:\"2\",label:(_getLocalizedValue26=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:\"Message\",max:\"\",min:\"\",name:(_getLocalizedValue27=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:\"message\",options:[],placeholder:(_getLocalizedValue28=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:\"Your Message\",required:true,step:0,type:\"textarea\",value:\"\"}],layoutId:\"y37mayPDd\",link:resolvedLinks1[0],method:\"post\",redirectAs:\"link\",style:{width:\"100%\"},styles:{button:{align:\"stretch\",borderRadius:8,color:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",fill:\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15},form:{columnGap:16,columns:\"2\",fill:\"var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255))\",rowGap:24},input:{borderRadius:8,color:\"var(--token-d4389f1b-5b95-4515-8b2f-79789fffb29d, rgb(19, 19, 20))\",fill:\"var(--token-5d5b2bf4-8bd3-4671-b8c8-7ef0c88f4c80, rgba(222, 222, 222, 0.8))\",font:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,placeholderColor:\"rgba(19, 19, 20, 0.3)\"},label:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgba(0, 0, 0, 0)\",font:{},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0}},url:(_getLocalizedValue29=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:\"https://submit-form.com/y83g7beTS\",width:\"100%\"})})})});}})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tg9v67\",\"data-framer-name\":\"Contacts\",name:\"Contacts\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-alm6j4\",\"data-border\":true,\"data-framer-name\":\"Contact\",name:\"Contact\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1b5vkpe\",\"data-styles-preset\":\"k44p3jO_l\",style:{\"--framer-text-alignment\":\"center\"},children:\"General\"})}),className:\"framer-1dmt8ul\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue8=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n7ng81\",\"data-styles-preset\":\"bxP2b_0Ko\",style:{\"--framer-text-alignment\":\"center\"},children:\"hello@promo.dev\"})}),className:\"framer-1az14c5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12l3axt\",\"data-border\":true,\"data-framer-name\":\"Contact\",name:\"Contact\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1b5vkpe\",\"data-styles-preset\":\"k44p3jO_l\",style:{\"--framer-text-alignment\":\"center\"},children:\"Careers\"})}),className:\"framer-etztqv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n7ng81\",\"data-styles-preset\":\"bxP2b_0Ko\",style:{\"--framer-text-alignment\":\"center\"},children:\"hello@promo.dev\"})}),className:\"framer-1oxjlby\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qa6p80\",\"data-border\":true,\"data-framer-name\":\"Contact\",name:\"Contact\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue11=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1b5vkpe\",\"data-styles-preset\":\"k44p3jO_l\",style:{\"--framer-text-alignment\":\"center\"},children:\"Press\"})}),className:\"framer-1xvuvpd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue12=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n7ng81\",\"data-styles-preset\":\"bxP2b_0Ko\",style:{\"--framer-text-alignment\":\"center\"},children:\"hello@promo.dev\"})}),className:\"framer-zf8g1x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14w2k0m\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{width:\"calc(100vw - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max(100vw - 80px, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-157l2mw-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tXdLw_lRR:{variant:\"imnebtjsk\"},vRgxHesXZ:{variant:\"uo5u8vAKR\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"zcVYRK1ic\",layoutId:\"zcVYRK1ic\",style:{width:\"100%\"},variant:\"bp9Y39OvE\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Cq6l8 { background: var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255)); }`,\".framer-Cq6l8.framer-3m8ppv, .framer-Cq6l8 .framer-3m8ppv { display: block; }\",\".framer-Cq6l8.framer-3z4cjy { align-content: center; align-items: center; background-color: var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, #ffffff); 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-Cq6l8 .framer-oib4h2-container { flex: none; height: auto; left: 40px; position: fixed; top: 40px; width: auto; z-index: 10; }\",\".framer-Cq6l8 .framer-16flt7f-container { flex: none; height: auto; left: 50%; position: fixed; top: 40px; transform: translateX(-50%); width: auto; z-index: 9; }\",\".framer-Cq6l8 .framer-rh892c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; max-width: 1200px; overflow: visible; padding: 180px 40px 80px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-Cq6l8 .framer-1pk0sdq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; }\",'.framer-Cq6l8 .framer-q7tdyx { align-content: center; align-items: center; background: radial-gradient(50% 50% at 50% 50%, var(--token-a3c395b2-feb8-4959-a202-34d19c05e988, #fafafa) /* {\"name\":\"Gray 100\"} */ 10.97972972972973%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; z-index: 1; }',\".framer-Cq6l8 .framer-x29ia { --border-bottom-width: 1px; --border-color: rgba(212, 212, 212, 0.6); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, #ffffff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-Cq6l8 .framer-25nuf8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; max-width: 500px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Cq6l8 .framer-rvgk75, .framer-Cq6l8 .framer-1dmt8ul, .framer-Cq6l8 .framer-etztqv, .framer-Cq6l8 .framer-1xvuvpd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cq6l8 .framer-1h9xr76, .framer-Cq6l8 .framer-1az14c5, .framer-Cq6l8 .framer-1oxjlby, .framer-Cq6l8 .framer-zf8g1x { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cq6l8 .framer-11ficlk { align-content: center; align-items: center; background-color: var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, #ffffff); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-Cq6l8 .framer-1yayixe-container, .framer-Cq6l8 .framer-157l2mw-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Cq6l8 .framer-1tg9v67 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Cq6l8 .framer-alm6j4, .framer-Cq6l8 .framer-1qa6p80 { --border-bottom-width: 1px; --border-color: rgba(212, 212, 212, 0.6); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; aspect-ratio: 0.99 / 1; background-color: var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, #ffffff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 350px); justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Cq6l8 .framer-12l3axt { --border-bottom-width: 1px; --border-color: rgba(212, 212, 212, 0.6); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; aspect-ratio: 0.9914285714285714 / 1; background-color: var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, #ffffff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 350px); justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Cq6l8 .framer-14w2k0m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Cq6l8.framer-3z4cjy, .framer-Cq6l8 .framer-rh892c, .framer-Cq6l8 .framer-q7tdyx, .framer-Cq6l8 .framer-x29ia, .framer-Cq6l8 .framer-25nuf8, .framer-Cq6l8 .framer-11ficlk, .framer-Cq6l8 .framer-1tg9v67, .framer-Cq6l8 .framer-alm6j4, .framer-Cq6l8 .framer-12l3axt, .framer-Cq6l8 .framer-1qa6p80, .framer-Cq6l8 .framer-14w2k0m { gap: 0px; } .framer-Cq6l8.framer-3z4cjy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Cq6l8.framer-3z4cjy > :first-child, .framer-Cq6l8 .framer-rh892c > :first-child, .framer-Cq6l8 .framer-q7tdyx > :first-child, .framer-Cq6l8 .framer-25nuf8 > :first-child, .framer-Cq6l8 .framer-alm6j4 > :first-child, .framer-Cq6l8 .framer-12l3axt > :first-child, .framer-Cq6l8 .framer-1qa6p80 > :first-child { margin-top: 0px; } .framer-Cq6l8.framer-3z4cjy > :last-child, .framer-Cq6l8 .framer-rh892c > :last-child, .framer-Cq6l8 .framer-q7tdyx > :last-child, .framer-Cq6l8 .framer-25nuf8 > :last-child, .framer-Cq6l8 .framer-alm6j4 > :last-child, .framer-Cq6l8 .framer-12l3axt > :last-child, .framer-Cq6l8 .framer-1qa6p80 > :last-child { margin-bottom: 0px; } .framer-Cq6l8 .framer-rh892c > *, .framer-Cq6l8 .framer-q7tdyx > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Cq6l8 .framer-x29ia > *, .framer-Cq6l8 .framer-1tg9v67 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Cq6l8 .framer-x29ia > :first-child, .framer-Cq6l8 .framer-11ficlk > :first-child, .framer-Cq6l8 .framer-1tg9v67 > :first-child, .framer-Cq6l8 .framer-14w2k0m > :first-child { margin-left: 0px; } .framer-Cq6l8 .framer-x29ia > :last-child, .framer-Cq6l8 .framer-11ficlk > :last-child, .framer-Cq6l8 .framer-1tg9v67 > :last-child, .framer-Cq6l8 .framer-14w2k0m > :last-child { margin-right: 0px; } .framer-Cq6l8 .framer-25nuf8 > *, .framer-Cq6l8 .framer-alm6j4 > *, .framer-Cq6l8 .framer-12l3axt > *, .framer-Cq6l8 .framer-1qa6p80 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Cq6l8 .framer-11ficlk > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-Cq6l8 .framer-14w2k0m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\"@media (min-width: 1200px) { .framer-Cq6l8 .hidden-3z4cjy { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-Cq6l8 .hidden-16r5m4y { display: none !important; } .${metadata.bodyClassName}-framer-Cq6l8 { background: var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255)); } .framer-Cq6l8.framer-3z4cjy { width: 810px; } .framer-Cq6l8 .framer-q7tdyx, .framer-Cq6l8 .framer-1tg9v67 { gap: 20px; } .framer-Cq6l8 .framer-x29ia { flex-direction: column; gap: 100px; max-width: 800px; padding: 80px; } .framer-Cq6l8 .framer-25nuf8 { align-content: center; align-items: center; flex: none; width: 100%; } .framer-Cq6l8 .framer-11ficlk { flex: none; padding: 0px; width: 100%; } .framer-Cq6l8 .framer-alm6j4, .framer-Cq6l8 .framer-1qa6p80 { height: var(--framer-aspect-ratio-supported, 233px); } .framer-Cq6l8 .framer-12l3axt { height: var(--framer-aspect-ratio-supported, 232px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Cq6l8 .framer-q7tdyx, .framer-Cq6l8 .framer-x29ia, .framer-Cq6l8 .framer-1tg9v67 { gap: 0px; } .framer-Cq6l8 .framer-q7tdyx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Cq6l8 .framer-q7tdyx > :first-child, .framer-Cq6l8 .framer-x29ia > :first-child { margin-top: 0px; } .framer-Cq6l8 .framer-q7tdyx > :last-child, .framer-Cq6l8 .framer-x29ia > :last-child { margin-bottom: 0px; } .framer-Cq6l8 .framer-x29ia > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-Cq6l8 .framer-1tg9v67 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Cq6l8 .framer-1tg9v67 > :first-child { margin-left: 0px; } .framer-Cq6l8 .framer-1tg9v67 > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .framer-Cq6l8 .hidden-1lfy3bo { display: none !important; } .${metadata.bodyClassName}-framer-Cq6l8 { background: var(--token-bc858b8b-52d3-487d-9657-b26f5f9e69a6, rgb(255, 255, 255)); } .framer-Cq6l8.framer-3z4cjy { width: 390px; } .framer-Cq6l8 .framer-oib4h2-container { left: 20px; top: 35px; } .framer-Cq6l8 .framer-16flt7f-container { left: 0px; right: 0px; top: 35px; transform: unset; width: unset; } .framer-Cq6l8 .framer-rh892c { padding: 180px 20px 80px 20px; } .framer-Cq6l8 .framer-1pk0sdq { max-width: 280px; width: 100%; } .framer-Cq6l8 .framer-q7tdyx { gap: 20px; padding: 0px 20px 0px 20px; } .framer-Cq6l8 .framer-x29ia { flex-direction: column; gap: 60px; max-width: 800px; } .framer-Cq6l8 .framer-25nuf8 { align-content: center; align-items: center; flex: none; max-width: unset; width: 100%; } .framer-Cq6l8 .framer-11ficlk { flex: none; padding: 0px; width: 100%; } .framer-Cq6l8 .framer-1tg9v67 { flex-direction: column; gap: 20px; } .framer-Cq6l8 .framer-alm6j4, .framer-Cq6l8 .framer-12l3axt, .framer-Cq6l8 .framer-1qa6p80 { aspect-ratio: 1.55 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 226px); width: 100%; } .framer-Cq6l8 .framer-14w2k0m { flex-direction: column; padding: 20px; } .framer-Cq6l8 .framer-157l2mw-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Cq6l8 .framer-q7tdyx, .framer-Cq6l8 .framer-x29ia, .framer-Cq6l8 .framer-1tg9v67, .framer-Cq6l8 .framer-14w2k0m { gap: 0px; } .framer-Cq6l8 .framer-q7tdyx > *, .framer-Cq6l8 .framer-1tg9v67 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Cq6l8 .framer-q7tdyx > :first-child, .framer-Cq6l8 .framer-x29ia > :first-child, .framer-Cq6l8 .framer-1tg9v67 > :first-child, .framer-Cq6l8 .framer-14w2k0m > :first-child { margin-top: 0px; } .framer-Cq6l8 .framer-q7tdyx > :last-child, .framer-Cq6l8 .framer-x29ia > :last-child, .framer-Cq6l8 .framer-1tg9v67 > :last-child, .framer-Cq6l8 .framer-14w2k0m > :last-child { margin-bottom: 0px; } .framer-Cq6l8 .framer-x29ia > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Cq6l8 .framer-14w2k0m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-Cq6l8[data-border=\"true\"]::after, .framer-Cq6l8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1760\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vRgxHesXZ\":{\"layout\":[\"fixed\",\"auto\"]},\"tXdLw_lRR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramersuCmzpHhM=withCSS(Component,css,\"framer-Cq6l8\");export default FramersuCmzpHhM;FramersuCmzpHhM.displayName=\"Contact\";FramersuCmzpHhM.defaultProps={height:1760,width:1200};addFonts(FramersuCmzpHhM,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...LogoFonts,...NavbarFonts,...BaseFormFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersuCmzpHhM\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vRgxHesXZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tXdLw_lRR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1760\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["FieldType", "isExternalURL", "url", "hasMinMaxStep", "type", "VERSION", "BaseForm", "withCSS", "method", "contentType", "redirectAs", "link", "inputs", "button", "styles", "extraHeaders", "extraFields", "style", "onSubmit", "isError", "setError", "ye", "isLoading", "setLoading", "getFocus", "setFocus", "labelPaddingPerSide", "labelPaddingTop", "labelPaddingRight", "labelPaddingBottom", "labelPaddingLeft", "labelPadding", "labelBorderRadius", "labelBorderObject", "labelShadowObject", "inputPaddingPerSide", "inputPaddingTop", "inputPaddingRight", "inputPaddingBottom", "inputPaddingLeft", "inputPadding", "inputBorderRadius", "inputBorderObject", "inputFocusObject", "inputShadowObject", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "buttonBorderRadius", "buttonBorderObject", "buttonShadowObject", "labelPaddingValue", "inputPaddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "formControls", "handleChange", "te", "event", "handleFocus", "input", "handleBlur", "handleSubmit", "headers", "key", "value", "formData", "requestOptions", "urlSearchParams", "name", "queryString", "bodyObject", "response", "statusCode", "data", "errorMessage", "error", "useAnimationControls", "labelShadowStyles", "labelBorderStyles", "inputFocusStylesFrom", "inputFocusStylesTo", "inputShadowStyles", "inputBorderStyles", "buttonShadowStyles", "buttonBorderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "label", "u", "requiredFlag", "getInputSpan", "getButtonSpan", "sum", "baseInput", "p", "motion", "defaultStyle", "textareaInput", "optionsHMTL", "options", "option", "selectInput", "selectChevron", "checkboxInput", "radioInput", "inputsHTML", "inputElement", "containerStyles", "Spinner", "props", "noButtonStyles", "basePropertyControls", "ControlType", "addPropertyControls", "shadows", "output", "shadow", "isRequired", "BaseForm_default", "LogoFonts", "getFonts", "bDou7mQgS_default", "NavbarFonts", "geqk6jVkC_default", "BaseFormFonts", "BaseForm_default", "MotionDivWithFX", "withFX", "motion", "FooterFonts", "Gf1uVj6DQ_default", "ContainerWithFX", "Container", "breakpoints", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "transition1", "animation", "animation1", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "animation6", "animation7", "animation8", "animation9", "animation10", "animation11", "animation12", "animation13", "transition4", "animation14", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "robotsTag", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "preloadPromise", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides", "optimizeAppear", "Container", "bDou7mQgS_default", "optimizeAppearTransformTemplate", "geqk6jVkC_default", "RichText", "Link", "resolvedLinks1", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "BaseForm_default", "MotionDivWithFX", "ContainerWithFX", "Gf1uVj6DQ_default", "css", "FramersuCmzpHhM", "withCSS", "suCmzpHhM_default", "addFonts", "LogoFonts", "NavbarFonts", "BaseFormFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
