{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/6u04Gttxprm2XOggLDuL/fhffe2Oz9ZwUFn6YsvcM/Kit_Form_Custom_Fields.js", "ssg:https://framerusercontent.com/modules/5tRuMXZZ3KGUICtw1gX3/9koNt5inbPVQMFj0eNs8/QgOu_j5X0.js", "ssg:https://framerusercontent.com/modules/c9BOblG8xlFUaXeEeYCD/a64bbdzKSzAsz3nc8yiF/q9idHivh9.js", "ssg:https://framerusercontent.com/modules/PpqUChNoZ0LjrBatvemZ/qMoDpjTjFSrx1Seindvv/A4L8Zag5c.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function KitForm(props){const{formId,heading,description,layout,gap,padding,borderRadius,bgColor,headingFont,descriptionFont,inputStyles=KitForm.defaultProps.inputStyles,buttonStyles=KitForm.defaultProps.buttonStyles,successMessageSettings=KitForm.defaultProps.successMessageSettings,errorMessageSettings=KitForm.defaultProps.errorMessageSettings}=props;const hasNoFields=!props.fields||props.fields.length===0;const fields=hasNoFields?KitForm.defaultProps.fields:props.fields;const{inputTextColor,inputBgColor,inputBorder,inputPlaceholderColor,inputFont,focusBgColor,focusBorder}=inputStyles;const{buttonLabel,buttonTextColor,buttonBgColor,buttonDisabledTextColor,buttonDisabledBgColor,buttonFont}=buttonStyles;const[isSubmitting,setIsSubmitting]=React.useState(false);const[success,setSuccess]=React.useState(false);const[error,setError]=React.useState(\"\");const[formValues,setFormValues]=React.useState({});const[captchaValue,setCaptchaValue]=React.useState(50);const isVertical=layout===\"vertical\";const formAction=`https://app.kit.com/forms/${formId}/subscriptions`;const isFormValid=captchaValue===50&&fields.every(field=>{if(!field.required)return true;return formValues[field.fieldName]?.trim()!==\"\";});const baseInputStyle={width:\"100%\",boxSizing:\"border-box\",color:inputTextColor,backgroundColor:inputBgColor,...inputBorder,borderRadius:\"8px\",padding:\"12px\",...inputFont,transition:\"all 0.3s ease\"};const focusStyles={backgroundColor:focusBgColor,...focusBorder};const placeholderStyles=`\n        ::placeholder {\n            color: ${inputPlaceholderColor};\n            opacity: 1;\n        }\n    `;const handleSubmit=async e=>{e.preventDefault();if(!isFormValid){setError(errorMessageSettings.text||\"Form is not valid.\");return;}setIsSubmitting(true);setSuccess(false);setError(\"\");const data={};fields.forEach(field=>{data[field.fieldName]=formValues[field.fieldName]||\"\";});try{const response=await fetch(formAction,{method:\"POST\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:new URLSearchParams(data).toString()});if(response.ok){setSuccess(true);setFormValues({});setCaptchaValue(50);}else{setError(errorMessageSettings.text||\"Submission failed.\");}}catch(err){setError(errorMessageSettings.text||\"Something went wrong.\");}finally{setIsSubmitting(false);}};return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"16px\",backgroundColor:bgColor,borderRadius:borderRadius,padding:padding,boxSizing:\"border-box\",width:\"100%\"},children:[/*#__PURE__*/_jsx(\"style\",{children:placeholderStyles}),heading&&/*#__PURE__*/_jsx(\"h2\",{style:{margin:0,...headingFont},children:heading}),description&&/*#__PURE__*/_jsx(\"p\",{style:{margin:0,...descriptionFont},children:description}),/*#__PURE__*/_jsxs(\"form\",{onSubmit:handleSubmit,style:{display:\"flex\",flexDirection:isVertical?\"column\":\"row\",gap:gap,alignItems:isVertical?\"stretch\":\"center\",width:\"100%\"},children:[fields.map((field,index)=>/*#__PURE__*/_jsx(\"input\",{type:\"text\",name:field.fieldName,placeholder:field.placeholder,required:field.required,value:formValues[field.fieldName]||\"\",onChange:e=>setFormValues({...formValues,[field.fieldName]:e.target.value}),style:baseInputStyle,onFocus:e=>Object.assign(e.target.style,focusStyles),onBlur:e=>Object.assign(e.target.style,{backgroundColor:inputBgColor,...inputBorder})},field.fieldName||index)),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",left:\"-9999px\"},children:/*#__PURE__*/_jsx(\"input\",{type:\"range\",min:\"0\",max:\"100\",value:captchaValue,onChange:e=>setCaptchaValue(parseInt(e.target.value,10))})}),/*#__PURE__*/_jsx(\"button\",{type:\"submit\",disabled:!isFormValid||isSubmitting,style:{border:\"none\",cursor:isFormValid&&!isSubmitting?\"pointer\":\"not-allowed\",fontWeight:\"bold\",padding:\"12px 20px\",fontSize:\"16px\",borderRadius:\"8px\",color:isFormValid?buttonTextColor:buttonDisabledTextColor,backgroundColor:isFormValid?buttonBgColor:buttonDisabledBgColor,...buttonFont},children:isSubmitting?\"Submitting...\":buttonLabel})]}),success&&/*#__PURE__*/_jsx(\"p\",{style:{padding:successMessageSettings.padding,borderRadius:successMessageSettings.borderRadius,backgroundColor:successMessageSettings.bgColor,...successMessageSettings.border,color:successMessageSettings.textColor,...successMessageSettings.font},children:successMessageSettings.text}),error&&/*#__PURE__*/_jsx(\"p\",{style:{padding:errorMessageSettings.padding,borderRadius:errorMessageSettings.borderRadius,backgroundColor:errorMessageSettings.bgColor,...errorMessageSettings.border,color:errorMessageSettings.textColor,...errorMessageSettings.font},children:error})]});}KitForm.displayName=\"Kit Form Advanced Fields\";KitForm.defaultProps={formId:\"\",fields:[{fieldName:\"fields[first_name]\",placeholder:\"First Name\",required:true},{fieldName:\"email_address\",placeholder:\"Email Address\",required:true}],heading:\"Join Our Newsletter\",description:\"Subscribe to get the latest updates.\",layout:\"vertical\",gap:12,padding:\"24px\",borderRadius:\"16px\",bgColor:\"#ffffff\",headingFont:{fontSize:24,fontWeight:700},descriptionFont:{fontSize:16,fontWeight:400},inputStyles:{inputTextColor:\"#333333\",inputBgColor:\"#f7f7f7\",inputBorder:{color:\"#cccccc\",width:1,style:\"solid\"},inputPlaceholderColor:\"#999999\",inputFont:{fontSize:16},focusBgColor:\"#ffffff\",focusBorder:{color:\"#785EDF\",width:1,style:\"solid\"}},buttonStyles:{buttonLabel:\"Subscribe\",buttonTextColor:\"#ffffff\",buttonBgColor:\"#785EDF\",buttonDisabledTextColor:\"#ffffff\",buttonDisabledBgColor:\"#cccccc\",buttonFont:{fontSize:16}},successMessageSettings:{text:\"Success! Please check your email.\",padding:\"12px\",borderRadius:\"8px\",bgColor:\"#d3fbeb\",border:{color:\"#10bf7a\",width:1,style:\"solid\"},textColor:\"#0c905c\",font:{fontSize:14}},errorMessageSettings:{text:\"Oops! Something went wrong.\",padding:\"12px\",borderRadius:\"8px\",bgColor:\"#fde8e2\",border:{color:\"#f2643b\",width:1,style:\"solid\"},textColor:\"#ea4110\",font:{fontSize:14}}};addPropertyControls(KitForm,{formId:{type:ControlType.String,title:\"Kit Form ID\"},fields:{type:ControlType.Array,title:\"Fields\",description:\"Add form fields\",propertyControl:{type:ControlType.Object,controls:{fieldName:{type:ControlType.String,title:\"Field Name\",defaultValue:\"fields[field_name]\",description:\"Format as fields[field_name], using lowercase letters and underscores.\"},placeholder:{type:ControlType.String,title:\"Placeholder\"},required:{type:ControlType.Boolean,title:\"Required\"}}}},heading:{type:ControlType.String,title:\"Heading\"},headingFont:{type:ControlType.Font,title:\"Heading Font\",controls:\"extended\"},description:{type:ControlType.String,title:\"Description\",displayTextArea:true},descriptionFont:{type:ControlType.Font,title:\"Description Font\",controls:\"extended\"},layout:{type:ControlType.Enum,title:\"Layout\",options:[\"vertical\",\"horizontal\"],optionTitles:[\"Vertical\",\"Horizontal\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",optionIcons:[\"direction-vertical\",\"direction-horizontal\"]},gap:{type:ControlType.Number,title:\"Gap\",min:0,max:40,displayStepper:true},padding:{type:ControlType.Padding,title:\"Padding\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\"},bgColor:{type:ControlType.Color,title:\"Background Color\"},inputStyles:{type:ControlType.Object,title:\"Input Fields Style\",controls:{inputTextColor:{type:ControlType.Color,title:\"Text Color\"},inputBgColor:{type:ControlType.Color,title:\"Background Color\"},inputBorder:{type:ControlType.Border,title:\"Border\"},inputPlaceholderColor:{type:ControlType.Color,title:\"Placeholder Color\"},inputFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},focusBgColor:{type:ControlType.Color,title:\"Focus Background\"},focusBorder:{type:ControlType.Border,title:\"Focus Border\"}}},buttonStyles:{type:ControlType.Object,title:\"Submit Button\",controls:{buttonLabel:{type:ControlType.String,title:\"Label\"},buttonTextColor:{type:ControlType.Color,title:\"Text Color\"},buttonBgColor:{type:ControlType.Color,title:\"Background\"},buttonDisabledTextColor:{type:ControlType.Color,title:\"Disabled Text\"},buttonDisabledBgColor:{type:ControlType.Color,title:\"Disabled Background\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"}}},successMessageSettings:{type:ControlType.Object,title:\"Success Message\",controls:{text:{type:ControlType.String,title:\"Text\"},padding:{type:ControlType.Padding,title:\"Padding\"},borderRadius:{type:ControlType.BorderRadius,title:\"Radius\"},bgColor:{type:ControlType.Color,title:\"Background\"},border:{type:ControlType.Border,title:\"Border\"},textColor:{type:ControlType.Color,title:\"Text Color\"},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"}}},errorMessageSettings:{type:ControlType.Object,title:\"Error Message\",controls:{text:{type:ControlType.String,title:\"Text\"},padding:{type:ControlType.Padding,title:\"Padding\"},borderRadius:{type:ControlType.BorderRadius,title:\"Radius\"},bgColor:{type:ControlType.Color,title:\"Background\"},border:{type:ControlType.Border,title:\"Border\"},textColor:{type:ControlType.Color,title:\"Text Color\"},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"}},description:\"Made with \u2764\uFE0F by [Supercharge Design](https://supercharge.design)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"KitForm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Kit_Form_Custom_Fields.map", "// Generated by Framer (5bbf1f3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-uMSo0 .framer-styles-preset-rtsbr9:not(.rich-text-wrapper), .framer-uMSo0 .framer-styles-preset-rtsbr9.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #d9d9d9; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-uMSo0\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={vIAeZNN1u:{hover:true}};const serializationHash=\"framer-Xm3wC\";const variantClassNames={vIAeZNN1u:\"framer-v-1lb63ne\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,link2,title,width,...props})=>{return{...props,kdnYPFpjP:link??props.kdnYPFpjP,pLApjPo8Y:title??props.pLApjPo8Y??\"Search Venues\",Qap2523Mp:link2??props.Qap2523Mp};};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,pLApjPo8Y,kdnYPFpjP,Qap2523Mp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"vIAeZNN1u\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Qap2523Mp,motionChild:true,nodeId:\"vIAeZNN1u\",openInNewTab:false,...addPropertyOverrides({\"vIAeZNN1u-hover\":{href:kdnYPFpjP}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1lb63ne\",className,classNames)} framer-1owbfyi`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vIAeZNN1u\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"vIAeZNN1u-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Search Venues\"})}),className:\"framer-3hvoiy\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"BBo2krjSl\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pLApjPo8Y,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-640svp\",layoutDependency:layoutDependency,layoutId:\"wIt7RezW3\",style:{backgroundColor:\"rgb(0, 0, 0)\",opacity:0},variants:{\"vIAeZNN1u-hover\":{backgroundColor:\"rgb(255, 255, 255)\",opacity:1}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Xm3wC.framer-1owbfyi, .framer-Xm3wC .framer-1owbfyi { display: block; }\",\".framer-Xm3wC.framer-1lb63ne { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Xm3wC .framer-3hvoiy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Xm3wC .framer-640svp { align-self: stretch; flex: none; height: 1px; overflow: hidden; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Xm3wC.framer-1lb63ne { gap: 0px; } .framer-Xm3wC.framer-1lb63ne > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Xm3wC.framer-1lb63ne > :first-child { margin-top: 0px; } .framer-Xm3wC.framer-1lb63ne > :last-child { margin-bottom: 0px; } }\",\".framer-Xm3wC.framer-v-1lb63ne.hover.framer-1lb63ne { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Xm3wC.framer-v-1lb63ne.hover.framer-1lb63ne { gap: 0px; } .framer-Xm3wC.framer-v-1lb63ne.hover.framer-1lb63ne > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Xm3wC.framer-v-1lb63ne.hover.framer-1lb63ne > :first-child { margin-top: 0px; } .framer-Xm3wC.framer-v-1lb63ne.hover.framer-1lb63ne > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 110\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"i9dbk9r5t\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"pLApjPo8Y\":\"title\",\"kdnYPFpjP\":\"link\",\"Qap2523Mp\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerq9idHivh9=withCSS(Component,css,\"framer-Xm3wC\");export default Framerq9idHivh9;Framerq9idHivh9.displayName=\"Footer link\";Framerq9idHivh9.defaultProps={height:30,width:110};addPropertyControls(Framerq9idHivh9,{pLApjPo8Y:{defaultValue:\"Search Venues\",displayTextArea:false,title:\"Title\",type:ControlType.String},kdnYPFpjP:{title:\"Link\",type:ControlType.Link},Qap2523Mp:{title:\"Link 2\",type:ControlType.Link}});addFonts(Framerq9idHivh9,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerq9idHivh9\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"pLApjPo8Y\\\":\\\"title\\\",\\\"kdnYPFpjP\\\":\\\"link\\\",\\\"Qap2523Mp\\\":\\\"link2\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"110\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"i9dbk9r5t\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"30\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./q9idHivh9.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import KitFormAdvancedFields from\"https://framerusercontent.com/modules/6u04Gttxprm2XOggLDuL/fhffe2Oz9ZwUFn6YsvcM/Kit_Form_Custom_Fields.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/j6QCmBhACvPRyaCxW2as/cufmBvUmV3EUSy0Zh0bk/A0VQqnHG1.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/5tRuMXZZ3KGUICtw1gX3/9koNt5inbPVQMFj0eNs8/QgOu_j5X0.js\";import Button5 from\"https://framerusercontent.com/modules/YU2Gy05FTpg81HOvQp4M/nVYHsFuEgp0C5kPxS6Dh/bOdqkxybp.js\";import FooterLink from\"https://framerusercontent.com/modules/c9BOblG8xlFUaXeEeYCD/a64bbdzKSzAsz3nc8yiF/q9idHivh9.js\";const FooterLinkFonts=getFonts(FooterLink);const Button5Fonts=getFonts(Button5);const KitFormAdvancedFieldsFonts=getFonts(KitFormAdvancedFields);const cycleOrder=[\"W6TK3KyII\",\"tt8916dqA\",\"WzQiYzZ_d\"];const serializationHash=\"framer-HFmGP\";const variantClassNames={tt8916dqA:\"framer-v-1hshyu5\",W6TK3KyII:\"framer-v-1nec638\",WzQiYzZ_d:\"framer-v-7fngdw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-2};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-5};const animation2={opacity:1,rotate:-180,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"W6TK3KyII\",Phone:\"WzQiYzZ_d\",Tablet:\"tt8916dqA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"W6TK3KyII\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"W6TK3KyII\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"WzQiYzZ_d\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1nec638\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"W6TK3KyII\",ref:refBinding,style:{backgroundColor:\"rgb(0, 0, 0)\",...style},...addPropertyOverrides({tt8916dqA:{\"data-framer-name\":\"Tablet\"},WzQiYzZ_d:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z2yvaj\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"PVjIWRHch\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1pcixvg\",\"data-styles-preset\":\"A0VQqnHG1\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"Book a memorable experience today!\"})}),className:\"framer-eb18a4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IXu_J2dCq\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WzQiYzZ_d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1pcixvg\",\"data-styles-preset\":\"A0VQqnHG1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"Book a memorable experience today!\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:374,pixelWidth:560,positionX:\"center\",positionY:\"center\",sizes:\"525px\",src:\"https://framerusercontent.com/images/JDYDx0xzhbTMLFz6IjOIF4H6FtI.png\",srcSet:\"https://framerusercontent.com/images/JDYDx0xzhbTMLFz6IjOIF4H6FtI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JDYDx0xzhbTMLFz6IjOIF4H6FtI.png 560w\"},className:\"framer-1n39o3v\",layoutDependency:layoutDependency,layoutId:\"fotyViGqS\",...addPropertyOverrides({WzQiYzZ_d:{background:{alt:\"\",fit:\"fit\",pixelHeight:374,pixelWidth:560,positionX:\"center\",positionY:\"center\",sizes:\"340px\",src:\"https://framerusercontent.com/images/JDYDx0xzhbTMLFz6IjOIF4H6FtI.png\",srcSet:\"https://framerusercontent.com/images/JDYDx0xzhbTMLFz6IjOIF4H6FtI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JDYDx0xzhbTMLFz6IjOIF4H6FtI.png 560w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r8escb\",layoutDependency:layoutDependency,layoutId:\"eeln_3nI2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3trzj8\",layoutDependency:layoutDependency,layoutId:\"PevPFXs1T\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-az5djx\",layoutDependency:layoutDependency,layoutId:\"L1RkzRsvr\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/venue-house/\",motionChild:true,nodeId:\"Tv5iC6_F6\",openInNewTab:true,scopeId:\"A4L8Zag5c\",...addPropertyOverrides({WzQiYzZ_d:{openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tzle8x framer-54vxt4\",\"data-framer-name\":\"Social link\",layoutDependency:layoutDependency,layoutId:\"Tv5iC6_F6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:20,pixelWidth:18,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Iymu1PAD3BKkJtHbJoPvMuIlU.svg\"},className:\"framer-1lxnv6b\",layoutDependency:layoutDependency,layoutId:\"HMegYskx_\",whileHover:animation})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/venuehouse\",motionChild:true,nodeId:\"e9ebZLxCQ\",openInNewTab:true,scopeId:\"A4L8Zag5c\",...addPropertyOverrides({WzQiYzZ_d:{openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-24akvk framer-54vxt4\",\"data-framer-name\":\"Social link\",layoutDependency:layoutDependency,layoutId:\"e9ebZLxCQ\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:20,pixelWidth:19,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OG8LUV4JNxuJvub77KhhLTg20iw.svg\"},className:\"framer-1ucyjtn\",layoutDependency:layoutDependency,layoutId:\"aWoNf8VDM\",whileHover:animation})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.threads.net/@venuehouse\",motionChild:true,nodeId:\"RZycIp8jV\",openInNewTab:true,scopeId:\"A4L8Zag5c\",...addPropertyOverrides({WzQiYzZ_d:{openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1q0xz4n framer-54vxt4\",\"data-framer-name\":\"Social link\",layoutDependency:layoutDependency,layoutId:\"RZycIp8jV\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:129,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3SYMq3EUizXsQs0LInXz3pPdr8.svg\"},className:\"framer-k27du9\",layoutDependency:layoutDependency,layoutId:\"HmzZCfgve\",whileHover:animation})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@venuehouse\",motionChild:true,nodeId:\"KvzlLNwMa\",openInNewTab:true,scopeId:\"A4L8Zag5c\",...addPropertyOverrides({WzQiYzZ_d:{openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wddq2i framer-54vxt4\",\"data-framer-name\":\"Social link\",layoutDependency:layoutDependency,layoutId:\"KvzlLNwMa\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:18,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tDDX0x5HBfZyX4vIJBzhOZYo8lk.svg\"},className:\"framer-ws2wrl\",layoutDependency:layoutDependency,layoutId:\"usOlziTDW\",whileHover:animation})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gns9kv\",layoutDependency:layoutDependency,layoutId:\"NfrppwhvR\",whileHover:animation1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pr3o6w\",layoutDependency:layoutDependency,layoutId:\"tIZaRhUWt\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:19,pixelWidth:20,src:\"https://framerusercontent.com/images/5dDXJ8CKFsu6hB68EhtY8iDJLU.svg\"},className:\"framer-8qizyf\",layoutDependency:layoutDependency,layoutId:\"C87zork0t\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@venuehouse.co\",motionChild:true,nodeId:\"F9z06C7Yh\",openInNewTab:true,scopeId:\"A4L8Zag5c\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rtsbr9\",\"data-styles-preset\":\"QgOu_j5X0\",children:\"hello@venuehouse.co\"})})})}),className:\"framer-9dwrcv\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"F9z06C7Yh\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nm3kta\",layoutDependency:layoutDependency,layoutId:\"O2735y1ED\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bWtPlpLjJ\"},implicitPathVariables:undefined},{href:{webPageId:\"bWtPlpLjJ\"},implicitPathVariables:undefined},{href:{webPageId:\"bWtPlpLjJ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nwgjpi-container\",layoutDependency:layoutDependency,layoutId:\"BaFpXilca-container\",nodeId:\"BaFpXilca\",rendersWithMotion:true,scopeId:\"A4L8Zag5c\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"BaFpXilca\",kdnYPFpjP:resolvedLinks[0],layoutId:\"BaFpXilca\",pLApjPo8Y:\"Search Venues\",width:\"100%\",...addPropertyOverrides({tt8916dqA:{kdnYPFpjP:resolvedLinks[1]},WzQiYzZ_d:{kdnYPFpjP:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"u0QKdQSn2\"},implicitPathVariables:undefined},{href:{webPageId:\"u0QKdQSn2\"},implicitPathVariables:undefined},{href:{webPageId:\"u0QKdQSn2\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rud3kb-container\",layoutDependency:layoutDependency,layoutId:\"VcNuYc89A-container\",nodeId:\"VcNuYc89A\",rendersWithMotion:true,scopeId:\"A4L8Zag5c\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"VcNuYc89A\",kdnYPFpjP:resolvedLinks1[0],layoutId:\"VcNuYc89A\",pLApjPo8Y:\"Why Us\",width:\"100%\",...addPropertyOverrides({tt8916dqA:{kdnYPFpjP:resolvedLinks1[1]},WzQiYzZ_d:{kdnYPFpjP:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gePET4ZMs\"},implicitPathVariables:undefined},{href:{webPageId:\"gePET4ZMs\"},implicitPathVariables:undefined},{href:{webPageId:\"gePET4ZMs\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wx3mbu-container\",layoutDependency:layoutDependency,layoutId:\"NA6Ds5WVb-container\",nodeId:\"NA6Ds5WVb\",rendersWithMotion:true,scopeId:\"A4L8Zag5c\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"NA6Ds5WVb\",kdnYPFpjP:resolvedLinks2[0],layoutId:\"NA6Ds5WVb\",pLApjPo8Y:\"Pricing\",width:\"100%\",...addPropertyOverrides({tt8916dqA:{kdnYPFpjP:resolvedLinks2[1]},WzQiYzZ_d:{kdnYPFpjP:resolvedLinks2[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-33hmiq-container\",layoutDependency:layoutDependency,layoutId:\"WbZVNYtgS-container\",nodeId:\"WbZVNYtgS\",rendersWithMotion:true,scopeId:\"A4L8Zag5c\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"WbZVNYtgS\",kdnYPFpjP:\"#testimonials\",layoutId:\"WbZVNYtgS\",pLApjPo8Y:\"Testimonials\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"U4Xt0qj14\"},implicitPathVariables:undefined},{href:{webPageId:\"U4Xt0qj14\"},implicitPathVariables:undefined},{href:{webPageId:\"U4Xt0qj14\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2g77sb-container\",layoutDependency:layoutDependency,layoutId:\"hVI2LLPOq-container\",nodeId:\"hVI2LLPOq\",rendersWithMotion:true,scopeId:\"A4L8Zag5c\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"hVI2LLPOq\",kdnYPFpjP:resolvedLinks3[0],layoutId:\"hVI2LLPOq\",pLApjPo8Y:\"Spotlight\",width:\"100%\",...addPropertyOverrides({tt8916dqA:{kdnYPFpjP:resolvedLinks3[1]},WzQiYzZ_d:{kdnYPFpjP:resolvedLinks3[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lwf_YQ8_c\"},implicitPathVariables:undefined},{href:{webPageId:\"lwf_YQ8_c\"},implicitPathVariables:undefined},{href:{webPageId:\"lwf_YQ8_c\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qy9yb3-container\",layoutDependency:layoutDependency,layoutId:\"fHhK6QIrN-container\",nodeId:\"fHhK6QIrN\",rendersWithMotion:true,scopeId:\"A4L8Zag5c\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"fHhK6QIrN\",kdnYPFpjP:resolvedLinks4[0],layoutId:\"fHhK6QIrN\",pLApjPo8Y:\"Contact\",width:\"100%\",...addPropertyOverrides({tt8916dqA:{kdnYPFpjP:resolvedLinks4[1]},WzQiYzZ_d:{kdnYPFpjP:resolvedLinks4[2]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xbeyen\",layoutDependency:layoutDependency,layoutId:\"mz9cSyVPJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t9xcrj\",layoutDependency:layoutDependency,layoutId:\"JYiYwCw2Z\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{WzQiYzZ_d:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(238, 238, 238, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({WzQiYzZ_d:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kn1pp9\",\"data-framer-name\":\"Location\",layoutDependency:layoutDependency,layoutId:\"U4_NcAebQ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:20,pixelWidth:21,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GGjRlLltXU2yW0hTfMcToowF6ZU.svg\"},className:\"framer-1y09ihw\",layoutDependency:layoutDependency,layoutId:\"gu8sF8qGI\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"875 Washington St, New York, NY 10014\"})}),className:\"framer-11idam0\",fonts:[\"FS;Manrope-medium\"],layoutDependency:layoutDependency,layoutId:\"WIy79eg35\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,...addPropertyOverrides({WzQiYzZ_d:{width:`max(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 50px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hecb0g-container\",layoutDependency:layoutDependency,layoutId:\"Tc41oXDAZ-container\",nodeId:\"Tc41oXDAZ\",rendersWithMotion:true,scopeId:\"A4L8Zag5c\",children:/*#__PURE__*/_jsx(Button5,{height:\"100%\",id:\"Tc41oXDAZ\",layoutId:\"Tc41oXDAZ\",m7xVJBHey:\"View Map\",uc87KC0Bh:\"https://maps.app.goo.gl/yVica1PuR7dQ6J289\",variant:\"WBq2iJy4d\",width:\"100%\",...addPropertyOverrides({WzQiYzZ_d:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ynw3l9\",layoutDependency:layoutDependency,layoutId:\"X1pUNcwdS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b3t86c\",layoutDependency:layoutDependency,layoutId:\"GXTDuJqRL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-176vwv9\",layoutDependency:layoutDependency,layoutId:\"EZjMkyQzm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1saWdodA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join\"})}),className:\"framer-19m283m\",fonts:[\"FS;Manrope-light\"],layoutDependency:layoutDependency,layoutId:\"YVlGEepC4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WzQiYzZ_d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1saWdodA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fs7ta9\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Gvj6RKSAI\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},whileHover:animation2,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:14,pixelWidth:14,src:\"https://framerusercontent.com/images/AAv3fp50o1DMOMHw7sCYG7ELU.svg\"},className:\"framer-1k9c3eg\",layoutDependency:layoutDependency,layoutId:\"fJwFl8OhO\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1saWdodA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"the\"})}),className:\"framer-2v0447\",fonts:[\"FS;Manrope-light\"],layoutDependency:layoutDependency,layoutId:\"tBgT0fVJd\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WzQiYzZ_d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1saWdodA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"the\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1saWdodA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Spotlight\"})}),className:\"framer-od3rbv\",fonts:[\"FS;Manrope-light\"],layoutDependency:layoutDependency,layoutId:\"wLQA7lGO1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WzQiYzZ_d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1saWdodA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Spotlight\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1saWdodA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"today\"})}),className:\"framer-1rmfl07\",fonts:[\"FS;Manrope-light\"],layoutDependency:layoutDependency,layoutId:\"CsQ038Hh0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WzQiYzZ_d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1saWdodA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"today\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1saWdodA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"for\"})}),className:\"framer-16t6t15\",fonts:[\"FS;Manrope-light\"],layoutDependency:layoutDependency,layoutId:\"YwHmhs2HM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ghvv\",layoutDependency:layoutDependency,layoutId:\"dWp3ItfQj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1saWdodA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-decoration\":\"underline\"},children:[\"industry insights, venue updates, and networking events \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"33px\"},children:\"happening\"}),\" near you!\"]})}),className:\"framer-bcg0iv\",fonts:[\"FS;Manrope-light\"],layoutDependency:layoutDependency,layoutId:\"PnDv44EOk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WzQiYzZ_d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1saWdodA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"45px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-decoration\":\"underline\"},children:\"for industry insights, venue updates, and networking events happening near you!\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ffhkwc-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fZvSsccWL-container\",nodeId:\"fZvSsccWL\",rendersWithMotion:true,scopeId:\"A4L8Zag5c\",children:/*#__PURE__*/_jsx(KitFormAdvancedFields,{bgColor:\"rgb(255, 255, 255)\",borderRadius:\"10px\",buttonStyles:{buttonBgColor:\"var(--token-20fdd87e-ab14-424b-beaf-b20b35b4be06, rgb(3, 2, 5))\",buttonDisabledBgColor:\"var(--token-8162f168-ed62-49f3-b338-425fedfa1e6f, rgb(255, 255, 255))\",buttonDisabledTextColor:\"rgb(255, 255, 255)\",buttonFont:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonLabel:\"Subscribe\",buttonTextColor:\"rgb(255, 255, 255)\"},description:\"\",descriptionFont:{},errorMessageSettings:{bgColor:\"rgb(253, 232, 226)\",border:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:1},borderRadius:\"8px\",font:{},padding:\"12px\",text:\"Oops! Something went wrong.\",textColor:\"rgb(234, 65, 16)\"},fields:[{fieldName:\"email_address\",placeholder:\"Enter your email\",required:true}],formId:\"7840181\",gap:26,heading:\"\",headingFont:{},height:\"100%\",id:\"fZvSsccWL\",inputStyles:{focusBgColor:\"rgb(255, 255, 255)\",focusBorder:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:1},inputBgColor:\"var(--token-8162f168-ed62-49f3-b338-425fedfa1e6f, rgb(255, 255, 255))\",inputBorder:{borderColor:'var(--token-8162f168-ed62-49f3-b338-425fedfa1e6f, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',borderStyle:\"solid\",borderWidth:1},inputFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},inputPlaceholderColor:\"var(--token-3991cae2-fa00-4648-803b-711c24c1718d, rgb(25, 26, 32))\",inputTextColor:\"var(--token-3991cae2-fa00-4648-803b-711c24c1718d, rgb(25, 26, 32))\"},layout:\"horizontal\",layoutId:\"fZvSsccWL\",padding:\"8px\",style:{maxWidth:\"100%\",width:\"100%\"},successMessageSettings:{bgColor:\"var(--token-8162f168-ed62-49f3-b338-425fedfa1e6f, rgb(255, 255, 255))\",border:{borderColor:'var(--token-8162f168-ed62-49f3-b338-425fedfa1e6f, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',borderStyle:\"solid\",borderWidth:1},borderRadius:\"8px\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:\"12px\",text:\"Great! Your email has been added to our mailing list.\",textColor:\"var(--token-3991cae2-fa00-4648-803b-711c24c1718d, rgb(25, 26, 32))\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pz7yn4\",layoutDependency:layoutDependency,layoutId:\"g0_VvLTfW\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:33,pixelWidth:174,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZfscRAzXV5pjKh2GVN5E8psZE8.svg\"},className:\"framer-13a2f9q\",layoutDependency:layoutDependency,layoutId:\"dD2Jcn_ks\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-weight\":\"600\"},children:\"100+\"}),\" Spotlight subscribers and growing\"]})}),className:\"framer-pg3tqe\",fonts:[\"FS;Manrope-regular\",\"FS;Manrope-semibold\"],layoutDependency:layoutDependency,layoutId:\"tJDZvkY6z\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WzQiYzZ_d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-weight\":\"600\"},children:\"100+\"}),\" Spotlight subscribers and growing\"]})})}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8auhl\",layoutDependency:layoutDependency,layoutId:\"xkj8Yp5rB\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{WzQiYzZ_d:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(238, 238, 238, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({WzQiYzZ_d:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.nohoprojects.com/\",motionChild:true,nodeId:\"ZsJvUOgk2\",openInNewTab:true,scopeId:\"A4L8Zag5c\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-rtsbr9\",\"data-styles-preset\":\"QgOu_j5X0\",children:[\"Website designed and powered by \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-weight\":\"600\",\"--framer-text-decoration\":\"underline\"},children:\"Noho Projects\"})]})})})}),className:\"framer-d9zxtm\",fonts:[\"FS;Manrope-regular\",\"FS;Manrope-semibold\"],layoutDependency:layoutDependency,layoutId:\"ZsJvUOgk2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WzQiYzZ_d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.nohoprojects.com/\",motionChild:true,nodeId:\"ZsJvUOgk2\",openInNewTab:true,scopeId:\"A4L8Zag5c\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-rtsbr9\",\"data-styles-preset\":\"QgOu_j5X0\",children:[\"Website designed and powered by \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-weight\":\"600\",\"--framer-text-decoration\":\"underline\"},children:\"Noho Projects\"})]})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qrxcgq\",layoutDependency:layoutDependency,layoutId:\"X_i0dKrA7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eAq_nWBd1\"},motionChild:true,nodeId:\"wjt4xGvn5\",openInNewTab:false,scopeId:\"A4L8Zag5c\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rtsbr9\",\"data-styles-preset\":\"QgOu_j5X0\",children:\"Privacy Policy\"})})})}),className:\"framer-1jz5qyw\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"wjt4xGvn5\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WzQiYzZ_d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eAq_nWBd1\"},motionChild:true,nodeId:\"wjt4xGvn5\",openInNewTab:false,scopeId:\"A4L8Zag5c\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rtsbr9\",\"data-styles-preset\":\"QgOu_j5X0\",children:\"Privacy Policy\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\\xa9 2025 Venue House. All Rights Reserved.\"})}),className:\"framer-1qmnnoh\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"cSwPOjDug\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WzQiYzZ_d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\\xa9 2025 Venue House. All Rights Reserved.\"})})}},baseVariant,gestureVariant)})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HFmGP.framer-54vxt4, .framer-HFmGP .framer-54vxt4 { display: block; }\",\".framer-HFmGP.framer-1nec638 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 40px 64px 40px; position: relative; width: 1200px; }\",\".framer-HFmGP .framer-z2yvaj { 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: 0px 25px 0px 25px; position: relative; width: 1px; }\",\".framer-HFmGP .framer-eb18a4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HFmGP .framer-1n39o3v { bottom: 14px; flex: none; left: 29px; overflow: visible; position: absolute; top: -19px; width: 525px; z-index: 0; }\",\".framer-HFmGP .framer-1r8escb { display: grid; flex: none; gap: 36px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HFmGP .framer-3trzj8 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HFmGP .framer-az5djx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HFmGP .framer-tzle8x, .framer-HFmGP .framer-24akvk, .framer-HFmGP .framer-1q0xz4n, .framer-HFmGP .framer-1wddq2i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-HFmGP .framer-1lxnv6b, .framer-HFmGP .framer-1ucyjtn, .framer-HFmGP .framer-k27du9, .framer-HFmGP .framer-ws2wrl { flex: none; height: 18px; overflow: hidden; position: relative; width: 18px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-HFmGP .framer-1gns9kv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-HFmGP .framer-pr3o6w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-HFmGP .framer-8qizyf, .framer-HFmGP .framer-1y09ihw { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-HFmGP .framer-9dwrcv, .framer-HFmGP .framer-11idam0, .framer-HFmGP .framer-19m283m, .framer-HFmGP .framer-2v0447, .framer-HFmGP .framer-od3rbv, .framer-HFmGP .framer-1rmfl07, .framer-HFmGP .framer-16t6t15, .framer-HFmGP .framer-1jz5qyw, .framer-HFmGP .framer-1qmnnoh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HFmGP .framer-1nm3kta { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 17px; height: min-content; justify-content: flex-start; justify-self: end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HFmGP .framer-1nwgjpi-container, .framer-HFmGP .framer-1rud3kb-container, .framer-HFmGP .framer-wx3mbu-container, .framer-HFmGP .framer-33hmiq-container, .framer-HFmGP .framer-2g77sb-container, .framer-HFmGP .framer-1qy9yb3-container, .framer-HFmGP .framer-hecb0g-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HFmGP .framer-xbeyen { display: grid; flex: none; gap: 36px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-HFmGP .framer-t9xcrj { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-HFmGP .framer-1kn1pp9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HFmGP .framer-1ynw3l9 { align-content: flex-start; align-items: flex-start; align-self: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-HFmGP .framer-1b3t86c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HFmGP .framer-176vwv9, .framer-HFmGP .framer-pz7yn4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HFmGP .framer-1fs7ta9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 42px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-HFmGP .framer-1k9c3eg { flex: none; height: 12px; overflow: hidden; position: relative; width: 12px; }\",\".framer-HFmGP .framer-6ghvv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HFmGP .framer-bcg0iv, .framer-HFmGP .framer-pg3tqe { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-HFmGP .framer-ffhkwc-container { flex: none; height: auto; max-width: 450px; position: relative; width: 100%; }\",\".framer-HFmGP .framer-13a2f9q { flex: none; height: 27px; overflow: hidden; position: relative; width: 145px; }\",\".framer-HFmGP .framer-8auhl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HFmGP .framer-d9zxtm { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HFmGP .framer-qrxcgq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HFmGP.framer-1nec638, .framer-HFmGP .framer-z2yvaj, .framer-HFmGP .framer-3trzj8, .framer-HFmGP .framer-az5djx, .framer-HFmGP .framer-tzle8x, .framer-HFmGP .framer-24akvk, .framer-HFmGP .framer-1q0xz4n, .framer-HFmGP .framer-1wddq2i, .framer-HFmGP .framer-1gns9kv, .framer-HFmGP .framer-pr3o6w, .framer-HFmGP .framer-1nm3kta, .framer-HFmGP .framer-t9xcrj, .framer-HFmGP .framer-1kn1pp9, .framer-HFmGP .framer-1ynw3l9, .framer-HFmGP .framer-1b3t86c, .framer-HFmGP .framer-176vwv9, .framer-HFmGP .framer-1fs7ta9, .framer-HFmGP .framer-6ghvv, .framer-HFmGP .framer-pz7yn4, .framer-HFmGP .framer-qrxcgq { gap: 0px; } .framer-HFmGP.framer-1nec638 > *, .framer-HFmGP .framer-tzle8x > *, .framer-HFmGP .framer-24akvk > *, .framer-HFmGP .framer-1q0xz4n > *, .framer-HFmGP .framer-1wddq2i > *, .framer-HFmGP .framer-1gns9kv > *, .framer-HFmGP .framer-pr3o6w > *, .framer-HFmGP .framer-176vwv9 > *, .framer-HFmGP .framer-1fs7ta9 > *, .framer-HFmGP .framer-6ghvv > *, .framer-HFmGP .framer-pz7yn4 > *, .framer-HFmGP .framer-qrxcgq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HFmGP.framer-1nec638 > :first-child, .framer-HFmGP .framer-3trzj8 > :first-child, .framer-HFmGP .framer-az5djx > :first-child, .framer-HFmGP .framer-tzle8x > :first-child, .framer-HFmGP .framer-24akvk > :first-child, .framer-HFmGP .framer-1q0xz4n > :first-child, .framer-HFmGP .framer-1wddq2i > :first-child, .framer-HFmGP .framer-1gns9kv > :first-child, .framer-HFmGP .framer-pr3o6w > :first-child, .framer-HFmGP .framer-1nm3kta > :first-child, .framer-HFmGP .framer-1kn1pp9 > :first-child, .framer-HFmGP .framer-176vwv9 > :first-child, .framer-HFmGP .framer-1fs7ta9 > :first-child, .framer-HFmGP .framer-6ghvv > :first-child, .framer-HFmGP .framer-pz7yn4 > :first-child, .framer-HFmGP .framer-qrxcgq > :first-child { margin-left: 0px; } .framer-HFmGP.framer-1nec638 > :last-child, .framer-HFmGP .framer-3trzj8 > :last-child, .framer-HFmGP .framer-az5djx > :last-child, .framer-HFmGP .framer-tzle8x > :last-child, .framer-HFmGP .framer-24akvk > :last-child, .framer-HFmGP .framer-1q0xz4n > :last-child, .framer-HFmGP .framer-1wddq2i > :last-child, .framer-HFmGP .framer-1gns9kv > :last-child, .framer-HFmGP .framer-pr3o6w > :last-child, .framer-HFmGP .framer-1nm3kta > :last-child, .framer-HFmGP .framer-1kn1pp9 > :last-child, .framer-HFmGP .framer-176vwv9 > :last-child, .framer-HFmGP .framer-1fs7ta9 > :last-child, .framer-HFmGP .framer-6ghvv > :last-child, .framer-HFmGP .framer-pz7yn4 > :last-child, .framer-HFmGP .framer-qrxcgq > :last-child { margin-right: 0px; } .framer-HFmGP .framer-z2yvaj > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-HFmGP .framer-z2yvaj > :first-child, .framer-HFmGP .framer-t9xcrj > :first-child, .framer-HFmGP .framer-1ynw3l9 > :first-child, .framer-HFmGP .framer-1b3t86c > :first-child { margin-top: 0px; } .framer-HFmGP .framer-z2yvaj > :last-child, .framer-HFmGP .framer-t9xcrj > :last-child, .framer-HFmGP .framer-1ynw3l9 > :last-child, .framer-HFmGP .framer-1b3t86c > :last-child { margin-bottom: 0px; } .framer-HFmGP .framer-3trzj8 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-HFmGP .framer-az5djx > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-HFmGP .framer-1nm3kta > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-HFmGP .framer-t9xcrj > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-HFmGP .framer-1kn1pp9 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-HFmGP .framer-1ynw3l9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-HFmGP .framer-1b3t86c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-HFmGP.framer-v-1hshyu5.framer-1nec638 { width: 800px; }\",\".framer-HFmGP.framer-v-1hshyu5 .framer-z2yvaj { gap: 0px; }\",\".framer-HFmGP.framer-v-1hshyu5 .framer-1n39o3v { bottom: 68px; left: unset; right: 69px; }\",\".framer-HFmGP.framer-v-1hshyu5 .framer-1r8escb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; padding: 30px 0px 0px 0px; }\",\".framer-HFmGP.framer-v-1hshyu5 .framer-3trzj8 { align-self: unset; }\",\".framer-HFmGP.framer-v-1hshyu5 .framer-1nm3kta { align-self: unset; width: 557px; }\",\".framer-HFmGP.framer-v-1hshyu5 .framer-xbeyen { grid-template-columns: repeat(1, minmax(50px, 1fr)); }\",\".framer-HFmGP.framer-v-1hshyu5 .framer-t9xcrj { padding: 20px 0px 0px 0px; }\",\".framer-HFmGP.framer-v-1hshyu5 .framer-1ynw3l9 { padding: 30px 0px 0px 0px; }\",\".framer-HFmGP.framer-v-1hshyu5 .framer-8auhl { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; justify-content: flex-start; padding: 30px 0px 0px 0px; }\",\".framer-HFmGP.framer-v-1hshyu5 .framer-qrxcgq { flex: none; justify-content: flex-start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HFmGP.framer-v-1hshyu5 .framer-z2yvaj, .framer-HFmGP.framer-v-1hshyu5 .framer-1r8escb, .framer-HFmGP.framer-v-1hshyu5 .framer-8auhl { gap: 0px; } .framer-HFmGP.framer-v-1hshyu5 .framer-z2yvaj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HFmGP.framer-v-1hshyu5 .framer-z2yvaj > :first-child, .framer-HFmGP.framer-v-1hshyu5 .framer-1r8escb > :first-child, .framer-HFmGP.framer-v-1hshyu5 .framer-8auhl > :first-child { margin-top: 0px; } .framer-HFmGP.framer-v-1hshyu5 .framer-z2yvaj > :last-child, .framer-HFmGP.framer-v-1hshyu5 .framer-1r8escb > :last-child, .framer-HFmGP.framer-v-1hshyu5 .framer-8auhl > :last-child { margin-bottom: 0px; } .framer-HFmGP.framer-v-1hshyu5 .framer-1r8escb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-HFmGP.framer-v-1hshyu5 .framer-8auhl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-HFmGP.framer-v-7fngdw.framer-1nec638 { padding: 64px 24px 64px 24px; width: 390px; }\",\".framer-HFmGP.framer-v-7fngdw .framer-z2yvaj { gap: 0px; padding: 0px; }\",\".framer-HFmGP.framer-v-7fngdw .framer-1n39o3v { bottom: unset; height: 471px; left: calc(50.00000000000002% - 340px / 2); top: 91px; width: 340px; }\",\".framer-HFmGP.framer-v-7fngdw .framer-1r8escb { gap: 22px; grid-template-columns: repeat(1, minmax(50px, 1fr)); padding: 52px 0px 20px 0px; }\",\".framer-HFmGP.framer-v-7fngdw .framer-3trzj8 { flex-direction: column; gap: 52px; }\",\".framer-HFmGP.framer-v-7fngdw .framer-1nm3kta { gap: 27px; justify-content: center; padding: 30px 0px 0px 0px; z-index: 2; }\",\".framer-HFmGP.framer-v-7fngdw .framer-xbeyen { grid-template-columns: repeat(1, minmax(50px, 1fr)); padding: 0px 0px 20px 0px; }\",\".framer-HFmGP.framer-v-7fngdw .framer-t9xcrj { align-content: center; align-items: center; padding: 60px 0px 0px 0px; }\",\".framer-HFmGP.framer-v-7fngdw .framer-hecb0g-container { width: 100%; }\",\".framer-HFmGP.framer-v-7fngdw .framer-176vwv9 { flex-wrap: wrap; gap: 5px; justify-content: center; }\",\".framer-HFmGP.framer-v-7fngdw .framer-1fs7ta9 { height: 29px; width: 29px; }\",\".framer-HFmGP.framer-v-7fngdw .framer-pz7yn4 { flex-direction: column; justify-content: center; }\",\".framer-HFmGP.framer-v-7fngdw .framer-pg3tqe { flex: none; width: 100%; }\",\".framer-HFmGP.framer-v-7fngdw .framer-8auhl { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 14px; justify-content: center; }\",\".framer-HFmGP.framer-v-7fngdw .framer-d9zxtm, .framer-HFmGP.framer-v-7fngdw .framer-1jz5qyw, .framer-HFmGP.framer-v-7fngdw .framer-1qmnnoh { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HFmGP.framer-v-7fngdw .framer-qrxcgq { flex: none; flex-direction: column; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HFmGP.framer-v-7fngdw .framer-z2yvaj, .framer-HFmGP.framer-v-7fngdw .framer-1r8escb, .framer-HFmGP.framer-v-7fngdw .framer-3trzj8, .framer-HFmGP.framer-v-7fngdw .framer-1nm3kta, .framer-HFmGP.framer-v-7fngdw .framer-176vwv9, .framer-HFmGP.framer-v-7fngdw .framer-pz7yn4, .framer-HFmGP.framer-v-7fngdw .framer-8auhl, .framer-HFmGP.framer-v-7fngdw .framer-qrxcgq { gap: 0px; } .framer-HFmGP.framer-v-7fngdw .framer-z2yvaj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HFmGP.framer-v-7fngdw .framer-z2yvaj > :first-child, .framer-HFmGP.framer-v-7fngdw .framer-3trzj8 > :first-child, .framer-HFmGP.framer-v-7fngdw .framer-pz7yn4 > :first-child, .framer-HFmGP.framer-v-7fngdw .framer-8auhl > :first-child, .framer-HFmGP.framer-v-7fngdw .framer-qrxcgq > :first-child { margin-top: 0px; } .framer-HFmGP.framer-v-7fngdw .framer-z2yvaj > :last-child, .framer-HFmGP.framer-v-7fngdw .framer-3trzj8 > :last-child, .framer-HFmGP.framer-v-7fngdw .framer-pz7yn4 > :last-child, .framer-HFmGP.framer-v-7fngdw .framer-8auhl > :last-child, .framer-HFmGP.framer-v-7fngdw .framer-qrxcgq > :last-child { margin-bottom: 0px; } .framer-HFmGP.framer-v-7fngdw .framer-1r8escb > *, .framer-HFmGP.framer-v-7fngdw .framer-1r8escb > :first-child, .framer-HFmGP.framer-v-7fngdw .framer-1r8escb > :last-child { margin: 0px; } .framer-HFmGP.framer-v-7fngdw .framer-3trzj8 > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-HFmGP.framer-v-7fngdw .framer-1nm3kta > * { margin: 0px; margin-left: calc(27px / 2); margin-right: calc(27px / 2); } .framer-HFmGP.framer-v-7fngdw .framer-1nm3kta > :first-child, .framer-HFmGP.framer-v-7fngdw .framer-176vwv9 > :first-child { margin-left: 0px; } .framer-HFmGP.framer-v-7fngdw .framer-1nm3kta > :last-child, .framer-HFmGP.framer-v-7fngdw .framer-176vwv9 > :last-child { margin-right: 0px; } .framer-HFmGP.framer-v-7fngdw .framer-176vwv9 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-HFmGP.framer-v-7fngdw .framer-pz7yn4 > *, .framer-HFmGP.framer-v-7fngdw .framer-qrxcgq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HFmGP.framer-v-7fngdw .framer-8auhl > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-HFmGP[data-border=\"true\"]::after, .framer-HFmGP [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 842\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tt8916dqA\":{\"layout\":[\"fixed\",\"auto\"]},\"WzQiYzZ_d\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerA4L8Zag5c=withCSS(Component,css,\"framer-HFmGP\");export default FramerA4L8Zag5c;FramerA4L8Zag5c.displayName=\"Footer\";FramerA4L8Zag5c.defaultProps={height:842,width:1200};addPropertyControls(FramerA4L8Zag5c,{variant:{options:[\"W6TK3KyII\",\"tt8916dqA\",\"WzQiYzZ_d\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerA4L8Zag5c,[{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:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BNWG6MUI4RTC6WEND2VPDH4MHMIVU3XZ/R5YXY5FMVG6PXU36GNEEA24MIPMEPGSM/CIM4KQCLZSMMLWPVH25IDDSTY4ENPHEY.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/R46SR2KWPHAT6QKQ5J22GMKGX57ZRVAR/Z5WLPW3IGEZJHN5HBLPCBJIK6QBBSHX6/2W7RU2QRQHEAEGUDZDHBPHR6WI27JNIQ.woff2\",weight:\"300\"},{family:\"Inter Display\",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/MaMAn5Jp5gJg1z3VaLH65QwWPLc.woff2\",weight:\"300\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/fEqgEChcTaneQFxeugexHq7Bk.woff2\",weight:\"300\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/nL7d8Ph0ViwUQorApF89PoAagQI.woff2\",weight:\"300\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/YOHXUQlY1iC2t7qT4HeLSoBDtn4.woff2\",weight:\"300\"},{family:\"Inter Display\",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/TfzHIi6ZmZDuhnIFGcgM6Ipuim4.woff2\",weight:\"300\"},{family:\"Inter Display\",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/6e1qKhy2mljzCRhlGpuCksCGjGI.woff2\",weight:\"300\"},{family:\"Inter Display\",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/ub5XwqqEAMrXQz31ej6fNqbxnBc.woff2\",weight:\"300\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6U2SGH566NSNERG6RGEV3DSNEK7DL2RF/JRDYRKMSAW2H35IWEQIPL67HAJQ35MG5/JNU3GNMUBPWW6V6JTED3S27XL5HN7NM5.woff2\",weight:\"600\"}]},...FooterLinkFonts,...Button5Fonts,...KitFormAdvancedFieldsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA4L8Zag5c\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"842\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tt8916dqA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WzQiYzZ_d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./A4L8Zag5c.map"],
  "mappings": "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",
  "names": ["KitForm", "props", "formId", "heading", "description", "layout", "gap", "padding", "borderRadius", "bgColor", "headingFont", "descriptionFont", "inputStyles", "buttonStyles", "successMessageSettings", "errorMessageSettings", "fields", "inputTextColor", "inputBgColor", "inputBorder", "inputPlaceholderColor", "inputFont", "focusBgColor", "focusBorder", "buttonLabel", "buttonTextColor", "buttonBgColor", "buttonDisabledTextColor", "buttonDisabledBgColor", "buttonFont", "isSubmitting", "setIsSubmitting", "ye", "success", "setSuccess", "error", "setError", "formValues", "setFormValues", "captchaValue", "setCaptchaValue", "isVertical", "formAction", "isFormValid", "field", "baseInputStyle", "focusStyles", "placeholderStyles", "handleSubmit", "e", "data", "u", "p", "index", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "link2", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pLApjPo8Y", "kdnYPFpjP", "Qap2523Mp", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "css", "Framerq9idHivh9", "withCSS", "q9idHivh9_default", "addPropertyControls", "ControlType", "addFonts", "FooterLinkFonts", "getFonts", "q9idHivh9_default", "Button5Fonts", "bOdqkxybp_default", "KitFormAdvancedFieldsFonts", "KitForm", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "LayoutGroup", "u", "RichText2", "Image2", "Link", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerA4L8Zag5c", "withCSS", "A4L8Zag5c_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
