{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/QOVXBlV2UNTt0qPAuW0e/Input.js", "ssg:https://framerusercontent.com/modules/waGLSIWDFWnbsTMiV4Nn/g76rFOPTSYyQvMUi0ZG9/ro7OPezbn.js", "ssg:https://framerusercontent.com/modules/iojqKaEvD2bzpdbGpC3C/ptTiZsKEpJGo5y7sZVVz/EmQwZtn0P.js", "ssg:https://framerusercontent.com/modules/12WDG2CcWd2xCXv7DsSP/b2FcXZik03VKGrJ9Zurb/ZcKtm2Egi.js"],
  "sourcesContent": ["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\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var ref;const[,domain,parameters]=(ref=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&ref!==void 0?ref:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null,];};function isExternalURL(url){try{return!!new URL(url);}catch{}try{return!!new URL(`https://${url}`);}catch{}return false;}/**\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 * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,formsparkID,getwaitlistAPI,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */ setLoading(false);setFocus(false);setEmail(\"\");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;}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const formBody=`email=${encodeURIComponent(email)}`;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://submit-form.com/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const data1=new FormData(event.target);const entries1=Object.fromEntries(data1.entries());fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries1)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,email,onSubmit,validateForm,isLoading,]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.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(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/ _jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/ _jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),/*#__PURE__*/ _jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3}}),!button.shouldAppear&&isLoading&&/*#__PURE__*/ _jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/ _jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,fontWeight:button.fontWeight,fontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(Spinner,{color: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.paddingPerSide?props.paddingRight:props.padding}:{};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\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},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\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",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\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},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},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:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{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}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-BA6Lr .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-BA6Lr .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-6eaa8ac8-f85d-4464-b4f3-63c0814b9cb8, #101114) /* {\"name\":\"text1\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64)); --framer-link-text-decoration: none; }'];export const className=\"framer-BA6Lr\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-RGD2F .framer-styles-preset-148v0dr:not(.rich-text-wrapper), .framer-RGD2F .framer-styles-preset-148v0dr.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #101113; --framer-link-hover-text-decoration: none; --framer-link-text-color: rgba(16, 17, 19, 0.6); --framer-link-text-decoration: none; }\"];export const className=\"framer-RGD2F\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/QOVXBlV2UNTt0qPAuW0e/Input.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/iojqKaEvD2bzpdbGpC3C/ptTiZsKEpJGo5y7sZVVz/EmQwZtn0P.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/waGLSIWDFWnbsTMiV4Nn/g76rFOPTSYyQvMUi0ZG9/ro7OPezbn.js\";const InputFonts=getFonts(Input);const cycleOrder=[\"piwaAFH6t\",\"dl4qvlPLF\",\"uDYU6NtI5\",\"gAgVYvohx\",\"KOLNlRTWb\",\"Xk2XWIsk5\"];const serializationHash=\"framer-YccaW\";const variantClassNames={dl4qvlPLF:\"framer-v-82jq6t\",gAgVYvohx:\"framer-v-mjrhlg\",KOLNlRTWb:\"framer-v-6cdov0\",piwaAFH6t:\"framer-v-13ko9qp\",uDYU6NtI5:\"framer-v-zfczoi\",Xk2XWIsk5:\"framer-v-uearnd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:40,delay:0,mass:2,stiffness:400,type:\"spring\"};const animation={boxShadow:\"0px 8px 12px 0px rgba(0, 0, 0, 0.06)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop Light\":\"gAgVYvohx\",\"Phone Light\":\"Xk2XWIsk5\",\"Tablet Light\":\"KOLNlRTWb\",Desktop:\"piwaAFH6t\",Phone:\"dl4qvlPLF\",Tablet:\"uDYU6NtI5\"};const getProps=({height,id,image,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;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:\"piwaAFH6t\",wYY6g1PIv:(_ref1=image!==null&&image!==void 0?image:props.wYY6g1PIv)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/h7MRa2WtIvOttPQwIT0acCPczP0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/h7MRa2WtIvOttPQwIT0acCPczP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/h7MRa2WtIvOttPQwIT0acCPczP0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h7MRa2WtIvOttPQwIT0acCPczP0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/h7MRa2WtIvOttPQwIT0acCPczP0.png 3072w\"}};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,wYY6g1PIv,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"piwaAFH6t\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"gAgVYvohx\",\"KOLNlRTWb\",\"Xk2XWIsk5\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13ko9qp\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"piwaAFH6t\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dl4qvlPLF:{\"data-framer-name\":\"Phone\"},gAgVYvohx:{\"data-framer-name\":\"Desktop Light\"},KOLNlRTWb:{\"data-framer-name\":\"Tablet Light\"},uDYU6NtI5:{\"data-framer-name\":\"Tablet\"},Xk2XWIsk5:{\"data-framer-name\":\"Phone Light\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1788w93\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"bmEh9xzKl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nq61pu\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"Dm2Gqxjvb\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fBEQtcrYy\"},children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-aaw0iw framer-59eal6\",\"data-framer-name\":\"Logo and supporting text\",layoutDependency:layoutDependency,layoutId:\"fY4WNCW5Z\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},whileHover:animation,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1svfkv4\",layoutDependency:layoutDependency,layoutId:\"JyMre5Oab\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:1536,pixelHeight:3072,pixelWidth:3072,sizes:\"31px\",...toResponsiveImage(wYY6g1PIv)},className:\"framer-gfynnh\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Lil94Q5Ez\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmlnaHRlb3VzLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Righteous\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6eaa8ac8-f85d-4464-b4f3-63c0814b9cb8, rgb(16, 17, 20)))\"},children:\"Giftit\"})}),className:\"framer-10b8d2h\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Righteous-regular\"],layoutDependency:layoutDependency,layoutId:\"sVWgN1TDp\",style:{\"--extracted-r6o4lv\":\"var(--token-6eaa8ac8-f85d-4464-b4f3-63c0814b9cb8, rgb(16, 17, 20))\",\"--framer-paragraph-spacing\":\"16px\"},variants:{gAgVYvohx:{\"--extracted-r6o4lv\":\"rgb(16, 17, 19)\"},KOLNlRTWb:{\"--extracted-r6o4lv\":\"rgb(16, 17, 19)\"},Xk2XWIsk5:{\"--extracted-r6o4lv\":\"rgb(16, 17, 19)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gAgVYvohx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmlnaHRlb3VzLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Righteous\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 17, 19))\"},children:\"Giftit\"})})},KOLNlRTWb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmlnaHRlb3VzLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Righteous\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 17, 19))\"},children:\"Giftit\"})})},Xk2XWIsk5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmlnaHRlb3VzLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Righteous\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 17, 19))\"},children:\"Giftit\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64)))\"},children:\"Gift without guessing\"})}),className:\"framer-ovamqz\",\"data-framer-name\":\"Supporting text\",fonts:[\"CUSTOM;Gilroy SemiBold\"],layoutDependency:layoutDependency,layoutId:\"F_TwkDVWE\",style:{\"--extracted-r6o4lv\":\"var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64))\",\"--framer-paragraph-spacing\":\"16px\"},variants:{gAgVYvohx:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"},KOLNlRTWb:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"},Xk2XWIsk5:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gAgVYvohx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:\"Gift without guessing\"})})},KOLNlRTWb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:\"Gift without guessing\"})})},Xk2XWIsk5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:\"Gift without guessing\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s11p4a\",\"data-framer-name\":\"_Footer links column\",layoutDependency:layoutDependency,layoutId:\"XcBpwvERq\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fqc1pw\",\"data-framer-name\":\"Footer links\",layoutDependency:layoutDependency,layoutId:\"DYtlh1chC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", \"Gilroy SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fBEQtcrYy\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Home\"})})})}),className:\"framer-e6nl6c\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Gilroy SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I652:40828;3288:570930;3287:433397\",style:{\"--extracted-r6o4lv\":\"var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64))\",\"--framer-paragraph-spacing\":\"16px\"},variants:{gAgVYvohx:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"},KOLNlRTWb:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"},Xk2XWIsk5:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"}},verticalAlignment:\"top\",whileHover:animation1,withExternalLayout:true,...addPropertyOverrides({gAgVYvohx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", \"Gilroy SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fBEQtcrYy\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Home\"})})})})},KOLNlRTWb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", \"Gilroy SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fBEQtcrYy\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Home\"})})})})},Xk2XWIsk5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", \"Gilroy SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fBEQtcrYy\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Home\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", \"Gilroy SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"liHyJVKV9\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"B\"})}),\"log\"]})}),className:\"framer-13t5fw9\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Gilroy SemiBold\"],layoutDependency:layoutDependency,layoutId:\"cCix08vBN\",style:{\"--extracted-r6o4lv\":\"var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",whileHover:animation1,withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5c5ddk\",\"data-framer-name\":\"_Footer links column\",layoutDependency:layoutDependency,layoutId:\"uhTlChJnB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bpn6y7\",\"data-framer-name\":\"Footer links\",layoutDependency:layoutDependency,layoutId:\"I652:40495;3288:570972\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SPqssbzLx\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Terms\"})})})}),className:\"framer-74iad8\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Gilroy SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I652:40495;3288:570973;3288:570930;3287:433397\",style:{\"--extracted-r6o4lv\":\"var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64))\",\"--framer-paragraph-spacing\":\"16px\"},variants:{gAgVYvohx:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"},KOLNlRTWb:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"},Xk2XWIsk5:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"}},verticalAlignment:\"top\",whileHover:animation1,withExternalLayout:true,...addPropertyOverrides({gAgVYvohx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SPqssbzLx\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Terms\"})})})})},KOLNlRTWb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SPqssbzLx\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Terms\"})})})})},Xk2XWIsk5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SPqssbzLx\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Terms\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QF0F8tkmS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Privacy\"})})})}),className:\"framer-18qs17w\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Gilroy SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I652:40495;3288:570974;3288:570930;3287:433397\",style:{\"--extracted-r6o4lv\":\"var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64))\",\"--framer-paragraph-spacing\":\"16px\"},variants:{gAgVYvohx:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"},KOLNlRTWb:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"},Xk2XWIsk5:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"}},verticalAlignment:\"top\",whileHover:animation1,withExternalLayout:true,...addPropertyOverrides({gAgVYvohx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QF0F8tkmS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Privacy\"})})})})},KOLNlRTWb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QF0F8tkmS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Privacy\"})})})})},Xk2XWIsk5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QF0F8tkmS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Privacy\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@giftit.social\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Contact\"})})})}),className:\"framer-1rfy517\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Gilroy SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I652:40495;3288:570978;3288:570930;3287:433397\",style:{\"--extracted-r6o4lv\":\"var(--token-2be7f897-f93a-4fcc-84aa-32107b89d795, rgba(16, 17, 20, 0.64))\",\"--framer-paragraph-spacing\":\"16px\"},variants:{gAgVYvohx:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"},KOLNlRTWb:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"},Xk2XWIsk5:{\"--extracted-r6o4lv\":\"rgba(16, 17, 19, 0.6)\"}},verticalAlignment:\"top\",whileHover:animation1,withExternalLayout:true,...addPropertyOverrides({gAgVYvohx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@giftit.social\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Contact\"})})})})},KOLNlRTWb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@giftit.social\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Contact\"})})})})},Xk2XWIsk5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(16, 17, 19, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@giftit.social\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-148v0dr\",\"data-styles-preset\":\"EmQwZtn0P\",children:\"Contact\"})})})})}},baseVariant,gestureVariant)})]})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ub5jor\",\"data-border\":true,\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"j7YbIIXNy\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-fdc68768-22a8-4d4a-bd88-fde1d02c300a, rgba(16, 17, 20, 0.08))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{gAgVYvohx:{\"--border-color\":\"rgba(16, 17, 19, 0.08)\"},KOLNlRTWb:{\"--border-color\":\"rgba(16, 17, 19, 0.08)\"},Xk2XWIsk5:{\"--border-color\":\"rgba(16, 17, 19, 0.08)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-142kuo1\",layoutDependency:layoutDependency,layoutId:\"PqcsVXVri\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/giftit_app\",openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-13nzsmr framer-59eal6\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pZSrRVnKD\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.8 3 L 13.582 10.105 M 4.05 21 L 10.682 13.421 M 13.583 10.105 L 9.267 4.013 C 9.004 3.642 8.873 3.457 8.703 3.323 C 8.553 3.204 8.381 3.115 8.197 3.061 C 7.99 3 7.763 3 7.308 3 L 5.62 3 C 4.87 3 4.494 3 4.292 3.156 C 4.116 3.291 4.009 3.498 4 3.72 C 3.99 3.975 4.207 4.281 4.64 4.894 L 10.681 13.421 M 13.582 10.105 L 19.958 19.106 C 20.392 19.719 20.608 20.025 20.598 20.28 C 20.589 20.502 20.483 20.708 20.307 20.844 C 20.104 21 19.729 21 18.979 21 L 17.29 21 C 16.835 21 16.608 21 16.4 20.939 C 16.216 20.885 16.045 20.796 15.895 20.677 C 15.725 20.544 15.594 20.358 15.331 19.987 L 10.68 13.421\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-2c4cd0fa-f525-4722-a10c-6d8f021e8709, rgba(16, 17, 20, 0.48)) /* {&quot;name&quot;:&quot;text3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:478580984,withExternalLayout:true,...addPropertyOverrides({dl4qvlPLF:{svgContentId:9068515576},gAgVYvohx:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.8 3 L 13.582 10.105 M 4.05 21 L 10.682 13.421 M 13.583 10.105 L 9.267 4.013 C 9.004 3.642 8.873 3.457 8.703 3.323 C 8.553 3.204 8.381 3.115 8.197 3.061 C 7.99 3 7.763 3 7.308 3 L 5.62 3 C 4.87 3 4.494 3 4.292 3.156 C 4.116 3.291 4.009 3.498 4 3.72 C 3.99 3.975 4.207 4.281 4.64 4.894 L 10.681 13.421 M 13.582 10.105 L 19.958 19.106 C 20.392 19.719 20.608 20.025 20.598 20.28 C 20.589 20.502 20.483 20.708 20.307 20.844 C 20.104 21 19.729 21 18.979 21 L 17.29 21 C 16.835 21 16.608 21 16.4 20.939 C 16.216 20.885 16.045 20.796 15.895 20.677 C 15.725 20.544 15.594 20.358 15.331 19.987 L 10.68 13.421\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10551822431},KOLNlRTWb:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.8 3 L 13.582 10.105 M 4.05 21 L 10.682 13.421 M 13.583 10.105 L 9.267 4.013 C 9.004 3.642 8.873 3.457 8.703 3.323 C 8.553 3.204 8.381 3.115 8.197 3.061 C 7.99 3 7.763 3 7.308 3 L 5.62 3 C 4.87 3 4.494 3 4.292 3.156 C 4.116 3.291 4.009 3.498 4 3.72 C 3.99 3.975 4.207 4.281 4.64 4.894 L 10.681 13.421 M 13.582 10.105 L 19.958 19.106 C 20.392 19.719 20.608 20.025 20.598 20.28 C 20.589 20.502 20.483 20.708 20.307 20.844 C 20.104 21 19.729 21 18.979 21 L 17.29 21 C 16.835 21 16.608 21 16.4 20.939 C 16.216 20.885 16.045 20.796 15.895 20.677 C 15.725 20.544 15.594 20.358 15.331 19.987 L 10.68 13.421\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10551822431},uDYU6NtI5:{svgContentId:9068515576},Xk2XWIsk5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.8 3 L 13.582 10.105 M 4.05 21 L 10.682 13.421 M 13.583 10.105 L 9.267 4.013 C 9.004 3.642 8.873 3.457 8.703 3.323 C 8.553 3.204 8.381 3.115 8.197 3.061 C 7.99 3 7.763 3 7.308 3 L 5.62 3 C 4.87 3 4.494 3 4.292 3.156 C 4.116 3.291 4.009 3.498 4 3.72 C 3.99 3.975 4.207 4.281 4.64 4.894 L 10.681 13.421 M 13.582 10.105 L 19.958 19.106 C 20.392 19.719 20.608 20.025 20.598 20.28 C 20.589 20.502 20.483 20.708 20.307 20.844 C 20.104 21 19.729 21 18.979 21 L 17.29 21 C 16.835 21 16.608 21 16.4 20.939 C 16.216 20.885 16.045 20.796 15.895 20.677 C 15.725 20.544 15.594 20.358 15.331 19.987 L 10.68 13.421\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10551822431}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://instagram.com/giftit.app\",openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1r5liiq framer-59eal6\",\"data-framer-name\":\"instagram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vuJwQoJ8N\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17.046 7 L 17.056 7 M 3.046 12 C 3.046 9.486 3.046 8.23 3.4 7.22 C 4.033 5.41 5.456 3.987 7.266 3.354 C 8.276 3 9.533 3 12.046 3 C 14.56 3 15.816 3 16.827 3.354 C 18.637 3.987 20.06 5.41 20.693 7.219 C 21.046 8.229 21.046 9.486 21.046 12 C 21.046 14.514 21.046 15.77 20.693 16.78 C 20.06 18.59 18.637 20.013 16.827 20.646 C 15.817 21 14.56 21 12.047 21 C 9.533 21 8.276 21 7.266 20.646 C 5.457 20.013 4.034 18.591 3.4 16.782 C 3.046 15.772 3.046 14.515 3.046 12.001 Z M 15.824 11.44 C 16.04 12.797 15.51 14.165 14.437 15.023 C 13.364 15.881 11.912 16.096 10.636 15.587 C 9.36 15.077 8.456 13.921 8.269 12.56 C 7.984 10.486 9.422 8.569 11.492 8.263 C 13.563 7.956 15.495 9.373 15.824 11.44 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-2c4cd0fa-f525-4722-a10c-6d8f021e8709, rgba(16, 17, 20, 0.48)) /* {&quot;name&quot;:&quot;text3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:981901471,withExternalLayout:true,...addPropertyOverrides({dl4qvlPLF:{svgContentId:9571836063},gAgVYvohx:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17.046 7 L 17.056 7 M 3.046 12 C 3.046 9.486 3.046 8.23 3.4 7.22 C 4.033 5.41 5.456 3.987 7.266 3.354 C 8.276 3 9.533 3 12.046 3 C 14.56 3 15.816 3 16.827 3.354 C 18.637 3.987 20.06 5.41 20.693 7.219 C 21.046 8.229 21.046 9.486 21.046 12 C 21.046 14.514 21.046 15.77 20.693 16.78 C 20.06 18.59 18.637 20.013 16.827 20.646 C 15.817 21 14.56 21 12.047 21 C 9.533 21 8.276 21 7.266 20.646 C 5.457 20.013 4.034 18.591 3.4 16.782 C 3.046 15.772 3.046 14.515 3.046 12.001 Z M 15.824 11.44 C 16.04 12.797 15.51 14.165 14.437 15.023 C 13.364 15.881 11.912 16.096 10.636 15.587 C 9.36 15.077 8.456 13.921 8.269 12.56 C 7.984 10.486 9.422 8.569 11.492 8.263 C 13.563 7.956 15.495 9.373 15.824 11.44 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10061676072},KOLNlRTWb:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17.046 7 L 17.056 7 M 3.046 12 C 3.046 9.486 3.046 8.23 3.4 7.22 C 4.033 5.41 5.456 3.987 7.266 3.354 C 8.276 3 9.533 3 12.046 3 C 14.56 3 15.816 3 16.827 3.354 C 18.637 3.987 20.06 5.41 20.693 7.219 C 21.046 8.229 21.046 9.486 21.046 12 C 21.046 14.514 21.046 15.77 20.693 16.78 C 20.06 18.59 18.637 20.013 16.827 20.646 C 15.817 21 14.56 21 12.047 21 C 9.533 21 8.276 21 7.266 20.646 C 5.457 20.013 4.034 18.591 3.4 16.782 C 3.046 15.772 3.046 14.515 3.046 12.001 Z M 15.824 11.44 C 16.04 12.797 15.51 14.165 14.437 15.023 C 13.364 15.881 11.912 16.096 10.636 15.587 C 9.36 15.077 8.456 13.921 8.269 12.56 C 7.984 10.486 9.422 8.569 11.492 8.263 C 13.563 7.956 15.495 9.373 15.824 11.44 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10061676072},uDYU6NtI5:{svgContentId:9571836063},Xk2XWIsk5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17.046 7 L 17.056 7 M 3.046 12 C 3.046 9.486 3.046 8.23 3.4 7.22 C 4.033 5.41 5.456 3.987 7.266 3.354 C 8.276 3 9.533 3 12.046 3 C 14.56 3 15.816 3 16.827 3.354 C 18.637 3.987 20.06 5.41 20.693 7.219 C 21.046 8.229 21.046 9.486 21.046 12 C 21.046 14.514 21.046 15.77 20.693 16.78 C 20.06 18.59 18.637 20.013 16.827 20.646 C 15.817 21 14.56 21 12.047 21 C 9.533 21 8.276 21 7.266 20.646 C 5.457 20.013 4.034 18.591 3.4 16.782 C 3.046 15.772 3.046 14.515 3.046 12.001 Z M 15.824 11.44 C 16.04 12.797 15.51 14.165 14.437 15.023 C 13.364 15.881 11.912 16.096 10.636 15.587 C 9.36 15.077 8.456 13.921 8.269 12.56 C 7.984 10.486 9.422 8.569 11.492 8.263 C 13.563 7.956 15.495 9.373 15.824 11.44 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10061676072}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/giftitapp/\",openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1awtyza framer-59eal6\",\"data-framer-name\":\"linkedin\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VRaMtLcr1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 8 11 L 8 16 M 11 10 L 11 12 M 11 16 L 11 12.23 C 11 11.515 11.505 10.899 12.206 10.759 L 13.608 10.479 C 14.195 10.362 14.804 10.514 15.267 10.893 C 15.73 11.272 15.999 11.839 16 12.438 L 16 16 M 8 8 L 8.01 8 M 3 12 C 3 9.486 3 8.23 3.354 7.22 C 3.987 5.41 5.41 3.987 7.219 3.354 C 8.23 3 9.486 3 12 3 C 14.514 3 15.77 3 16.78 3.354 C 18.59 3.987 20.013 5.41 20.646 7.219 C 21 8.23 21 9.486 21 12 C 21 14.514 21 15.77 20.646 16.78 C 20.013 18.59 18.59 20.013 16.781 20.646 C 15.77 21 14.514 21 12 21 C 9.486 21 8.23 21 7.22 20.646 C 5.41 20.013 3.987 18.59 3.354 16.781 C 3 15.77 3 14.514 3 12 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-2c4cd0fa-f525-4722-a10c-6d8f021e8709, rgba(16, 17, 20, 0.48)) /* {&quot;name&quot;:&quot;text3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:1438282835,withExternalLayout:true,...addPropertyOverrides({dl4qvlPLF:{svgContentId:10028217427},gAgVYvohx:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 8 11 L 8 16 M 11 10 L 11 12 M 11 16 L 11 12.23 C 11 11.515 11.505 10.899 12.206 10.759 L 13.608 10.479 C 14.195 10.362 14.804 10.514 15.267 10.893 C 15.73 11.272 15.999 11.839 16 12.438 L 16 16 M 8 8 L 8.01 8 M 3 12 C 3 9.486 3 8.23 3.354 7.22 C 3.987 5.41 5.41 3.987 7.219 3.354 C 8.23 3 9.486 3 12 3 C 14.514 3 15.77 3 16.78 3.354 C 18.59 3.987 20.013 5.41 20.646 7.219 C 21 8.23 21 9.486 21 12 C 21 14.514 21 15.77 20.646 16.78 C 20.013 18.59 18.59 20.013 16.781 20.646 C 15.77 21 14.514 21 12 21 C 9.486 21 8.23 21 7.22 20.646 C 5.41 20.013 3.987 18.59 3.354 16.781 C 3 15.77 3 14.514 3 12 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8620459564},KOLNlRTWb:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 8 11 L 8 16 M 11 10 L 11 12 M 11 16 L 11 12.23 C 11 11.515 11.505 10.899 12.206 10.759 L 13.608 10.479 C 14.195 10.362 14.804 10.514 15.267 10.893 C 15.73 11.272 15.999 11.839 16 12.438 L 16 16 M 8 8 L 8.01 8 M 3 12 C 3 9.486 3 8.23 3.354 7.22 C 3.987 5.41 5.41 3.987 7.219 3.354 C 8.23 3 9.486 3 12 3 C 14.514 3 15.77 3 16.78 3.354 C 18.59 3.987 20.013 5.41 20.646 7.219 C 21 8.23 21 9.486 21 12 C 21 14.514 21 15.77 20.646 16.78 C 20.013 18.59 18.59 20.013 16.781 20.646 C 15.77 21 14.514 21 12 21 C 9.486 21 8.23 21 7.22 20.646 C 5.41 20.013 3.987 18.59 3.354 16.781 C 3 15.77 3 14.514 3 12 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8620459564},uDYU6NtI5:{svgContentId:10028217427},Xk2XWIsk5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 8 11 L 8 16 M 11 10 L 11 12 M 11 16 L 11 12.23 C 11 11.515 11.505 10.899 12.206 10.759 L 13.608 10.479 C 14.195 10.362 14.804 10.514 15.267 10.893 C 15.73 11.272 15.999 11.839 16 12.438 L 16 16 M 8 8 L 8.01 8 M 3 12 C 3 9.486 3 8.23 3.354 7.22 C 3.987 5.41 5.41 3.987 7.219 3.354 C 8.23 3 9.486 3 12 3 C 14.514 3 15.77 3 16.78 3.354 C 18.59 3.987 20.013 5.41 20.646 7.219 C 21 8.23 21 9.486 21 12 C 21 14.514 21 15.77 20.646 16.78 C 20.013 18.59 18.59 20.013 16.781 20.646 C 15.77 21 14.514 21 12 21 C 9.486 21 8.23 21 7.22 20.646 C 5.41 20.013 3.987 18.59 3.354 16.781 C 3 15.77 3 14.514 3 12 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8620459564}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@giftit.app\",openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1ph3bp8 framer-59eal6\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"FanLwCTXZ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.444 7.556 C 17.363 7.209 15.596 5.84 14.739 3.912 L 13.889 2 L 13.889 17.556 C 13.888 20.01 11.899 21.999 9.445 21.999 C 6.991 21.999 5.001 20.009 5.001 17.555 C 5.001 15.101 6.99 13.112 9.444 13.111\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-2c4cd0fa-f525-4722-a10c-6d8f021e8709, rgba(16, 17, 20, 0.48)) /* {&quot;name&quot;:&quot;text3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:4239534668,withExternalLayout:true,...addPropertyOverrides({dl4qvlPLF:{svgContentId:12829469260},gAgVYvohx:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.444 7.556 C 17.363 7.209 15.596 5.84 14.739 3.912 L 13.889 2 L 13.889 17.556 C 13.888 20.01 11.899 21.999 9.445 21.999 C 6.991 21.999 5.001 20.009 5.001 17.555 C 5.001 15.101 6.99 13.112 9.444 13.111\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9409951380},KOLNlRTWb:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.444 7.556 C 17.363 7.209 15.596 5.84 14.739 3.912 L 13.889 2 L 13.889 17.556 C 13.888 20.01 11.899 21.999 9.445 21.999 C 6.991 21.999 5.001 20.009 5.001 17.555 C 5.001 15.101 6.99 13.112 9.444 13.111\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9409951380},uDYU6NtI5:{svgContentId:12829469260},Xk2XWIsk5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.444 7.556 C 17.363 7.209 15.596 5.84 14.739 3.912 L 13.889 2 L 13.889 17.556 C 13.888 20.01 11.899 21.999 9.445 21.999 C 6.991 21.999 5.001 20.009 5.001 17.555 C 5.001 15.101 6.99 13.112 9.444 13.111\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(16, 17, 20, 0.45)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9409951380}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gilroy SemiBold\", \"Gilroy SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2c4cd0fa-f525-4722-a10c-6d8f021e8709, rgba(16, 17, 20, 0.48)))\"},children:\"Copyright \\xa9 2024 The Fire Company. All rights reserved.\"})}),className:\"framer-1w193ak\",\"data-framer-name\":\"Footer text\",fonts:[\"CUSTOM;Gilroy SemiBold\"],layoutDependency:layoutDependency,layoutId:\"e1T8fwaf0\",style:{\"--extracted-r6o4lv\":\"var(--token-2c4cd0fa-f525-4722-a10c-6d8f021e8709, rgba(16, 17, 20, 0.48))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h3p59n-container\",layoutDependency:layoutDependency,layoutId:\"KBZao4Uhb-container\",children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Gilroy SemiBold\", \"Gilroy SemiBold Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:20,buttonPaddingBottom:8,buttonPaddingLeft:16,buttonPaddingPerSide:true,buttonPaddingRight:16,buttonPaddingTop:8,color:\"rgb(255, 255, 255)\",fill:\"var(--token-6c381d47-58b7-4868-9340-5259812f8d73, rgb(247, 91, 107))\",insetWhenDocked:5,isDocked:true,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:120},font:{fontFamily:'\"Gilroy Medium\", \"Gilroy Medium Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},formsparkID:\"\",gap:12,getwaitlistAPI:\"\",height:\"100%\",id:\"KBZao4Uhb\",input:{borderRadius:16,color:\"var(--token-6eaa8ac8-f85d-4464-b4f3-63c0814b9cb8, rgb(16, 17, 20))\",fill:\"var(--token-6615fbf5-67db-4edc-893e-e1b1a6aaf65b, rgba(16, 17, 20, 0.06))\",fixedHeight:50,focusObject:{focusColor:\"var(--token-fdc68768-22a8-4d4a-bd88-fde1d02c300a, rgba(16, 17, 20, 0.08))\",focusWidthFrom:0,focusWidthTo:2},height:true,padding:12,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:16,placeholder:\"your@email.com\",placeholderColor:\"var(--token-2c4cd0fa-f525-4722-a10c-6d8f021e8709, rgba(16, 17, 20, 0.48))\"},layout:\"horizontal\",layoutId:\"KBZao4Uhb\",loopsID:\"clkcq9n76008ylh0od2gbmtkk\",mailchimpURL:\"\",redirectAs:\"overlay\",service:\"loops\",style:{width:\"100%\"},width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YccaW.framer-59eal6, .framer-YccaW .framer-59eal6 { display: block; }\",\".framer-YccaW.framer-13ko9qp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px; position: relative; width: 1200px; }\",\".framer-YccaW .framer-1788w93 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YccaW .framer-nq61pu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YccaW .framer-aaw0iw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-YccaW .framer-1svfkv4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-YccaW .framer-gfynnh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; width: 31px; }\",\".framer-YccaW .framer-10b8d2h, .framer-YccaW .framer-ovamqz, .framer-YccaW .framer-e6nl6c, .framer-YccaW .framer-13t5fw9, .framer-YccaW .framer-74iad8, .framer-YccaW .framer-18qs17w, .framer-YccaW .framer-1rfy517 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-YccaW .framer-1s11p4a, .framer-YccaW .framer-5c5ddk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 300px; }\",\".framer-YccaW .framer-fqc1pw, .framer-YccaW .framer-bpn6y7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-YccaW .framer-1ub5jor { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-YccaW .framer-142kuo1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-YccaW .framer-13nzsmr, .framer-YccaW .framer-1r5liiq, .framer-YccaW .framer-1awtyza, .framer-YccaW .framer-1ph3bp8 { flex: none; height: 24px; position: relative; text-decoration: none; width: 24px; }\",\".framer-YccaW .framer-1w193ak { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-YccaW .framer-1h3p59n-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YccaW.framer-13ko9qp, .framer-YccaW .framer-1788w93, .framer-YccaW .framer-nq61pu, .framer-YccaW .framer-aaw0iw, .framer-YccaW .framer-1svfkv4, .framer-YccaW .framer-1s11p4a, .framer-YccaW .framer-fqc1pw, .framer-YccaW .framer-5c5ddk, .framer-YccaW .framer-bpn6y7, .framer-YccaW .framer-1ub5jor, .framer-YccaW .framer-142kuo1 { gap: 0px; } .framer-YccaW.framer-13ko9qp > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-YccaW.framer-13ko9qp > :first-child, .framer-YccaW .framer-1788w93 > :first-child, .framer-YccaW .framer-aaw0iw > :first-child, .framer-YccaW .framer-1s11p4a > :first-child, .framer-YccaW .framer-fqc1pw > :first-child, .framer-YccaW .framer-5c5ddk > :first-child, .framer-YccaW .framer-bpn6y7 > :first-child { margin-top: 0px; } .framer-YccaW.framer-13ko9qp > :last-child, .framer-YccaW .framer-1788w93 > :last-child, .framer-YccaW .framer-aaw0iw > :last-child, .framer-YccaW .framer-1s11p4a > :last-child, .framer-YccaW .framer-fqc1pw > :last-child, .framer-YccaW .framer-5c5ddk > :last-child, .framer-YccaW .framer-bpn6y7 > :last-child { margin-bottom: 0px; } .framer-YccaW .framer-1788w93 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-YccaW .framer-nq61pu > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-YccaW .framer-nq61pu > :first-child, .framer-YccaW .framer-1svfkv4 > :first-child, .framer-YccaW .framer-1ub5jor > :first-child, .framer-YccaW .framer-142kuo1 > :first-child { margin-left: 0px; } .framer-YccaW .framer-nq61pu > :last-child, .framer-YccaW .framer-1svfkv4 > :last-child, .framer-YccaW .framer-1ub5jor > :last-child, .framer-YccaW .framer-142kuo1 > :last-child { margin-right: 0px; } .framer-YccaW .framer-aaw0iw > *, .framer-YccaW .framer-1s11p4a > *, .framer-YccaW .framer-5c5ddk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-YccaW .framer-1svfkv4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-YccaW .framer-fqc1pw > *, .framer-YccaW .framer-bpn6y7 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-YccaW .framer-1ub5jor > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-YccaW .framer-142kuo1 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-YccaW.framer-v-82jq6t.framer-13ko9qp { padding: 32px 16px 32px 16px; width: 390px; }\",\".framer-YccaW.framer-v-82jq6t .framer-nq61pu, .framer-YccaW.framer-v-uearnd .framer-nq61pu { flex-direction: column; }\",\".framer-YccaW.framer-v-82jq6t .framer-aaw0iw, .framer-YccaW.framer-v-uearnd .framer-aaw0iw { flex: none; width: 100%; }\",\".framer-YccaW.framer-v-82jq6t .framer-1ub5jor { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-YccaW.framer-v-82jq6t .framer-142kuo1 { order: 1; }\",\".framer-YccaW.framer-v-82jq6t .framer-1w193ak { flex: none; order: 2; width: 100%; }\",\".framer-YccaW.framer-v-82jq6t .framer-1h3p59n-container { flex: none; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YccaW.framer-v-82jq6t .framer-nq61pu, .framer-YccaW.framer-v-82jq6t .framer-1ub5jor { gap: 0px; } .framer-YccaW.framer-v-82jq6t .framer-nq61pu > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-YccaW.framer-v-82jq6t .framer-nq61pu > :first-child, .framer-YccaW.framer-v-82jq6t .framer-1ub5jor > :first-child { margin-top: 0px; } .framer-YccaW.framer-v-82jq6t .framer-nq61pu > :last-child, .framer-YccaW.framer-v-82jq6t .framer-1ub5jor > :last-child { margin-bottom: 0px; } .framer-YccaW.framer-v-82jq6t .framer-1ub5jor > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-YccaW.framer-v-zfczoi.framer-13ko9qp, .framer-YccaW.framer-v-6cdov0.framer-13ko9qp { padding: 32px; width: 810px; }\",\".framer-YccaW.framer-v-zfczoi .framer-1s11p4a, .framer-YccaW.framer-v-zfczoi .framer-5c5ddk, .framer-YccaW.framer-v-6cdov0 .framer-1s11p4a, .framer-YccaW.framer-v-6cdov0 .framer-5c5ddk { flex: 1 0 0px; width: 1px; }\",\".framer-YccaW.framer-v-zfczoi .framer-1w193ak { flex: none; white-space: pre; width: auto; }\",\".framer-YccaW.framer-v-uearnd.framer-13ko9qp { padding: 32px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YccaW.framer-v-uearnd .framer-nq61pu { gap: 0px; } .framer-YccaW.framer-v-uearnd .framer-nq61pu > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-YccaW.framer-v-uearnd .framer-nq61pu > :first-child { margin-top: 0px; } .framer-YccaW.framer-v-uearnd .framer-nq61pu > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-YccaW[data-border=\"true\"]::after, .framer-YccaW [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 323\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dl4qvlPLF\":{\"layout\":[\"fixed\",\"auto\"]},\"uDYU6NtI5\":{\"layout\":[\"fixed\",\"auto\"]},\"gAgVYvohx\":{\"layout\":[\"fixed\",\"auto\"]},\"KOLNlRTWb\":{\"layout\":[\"fixed\",\"auto\"]},\"Xk2XWIsk5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"wYY6g1PIv\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZcKtm2Egi=withCSS(Component,css,\"framer-YccaW\");export default FramerZcKtm2Egi;FramerZcKtm2Egi.displayName=\"Footer\";FramerZcKtm2Egi.defaultProps={height:323,width:1200};addPropertyControls(FramerZcKtm2Egi,{variant:{options:[\"piwaAFH6t\",\"dl4qvlPLF\",\"uDYU6NtI5\",\"gAgVYvohx\",\"KOLNlRTWb\",\"Xk2XWIsk5\"],optionTitles:[\"Desktop\",\"Phone\",\"Tablet\",\"Desktop Light\",\"Tablet Light\",\"Phone Light\"],title:\"Variant\",type:ControlType.Enum},wYY6g1PIv:{__defaultAssetReference:\"data:framer/asset-reference,h7MRa2WtIvOttPQwIT0acCPczP0.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerZcKtm2Egi,[{explicitInter:true,fonts:[{family:\"Righteous\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/righteous/v17/1cXxaUPXBpj2rGoU7C9minuEicG01A.woff2\",weight:\"400\"},{family:\"Gilroy SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/icK3bpuPJUlTvwjzcybTK3fOkvc.woff2\"},{family:\"Gilroy Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/tzrLOw3C431usJhEUwAKp6dIgYY.woff2\"}]},...InputFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZcKtm2Egi\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"323\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dl4qvlPLF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uDYU6NtI5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gAgVYvohx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KOLNlRTWb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Xk2XWIsk5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"wYY6g1PIv\\\":\\\"image\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZcKtm2Egi.map"],
  "mappings": "6RAAwP,IAAMA,GAAW,wJAA8JC,GAAe,qCAA2CC,GAAcC,GAAeH,GAAW,KAAK,OAAOG,CAAK,EAAE,YAAY,CAAC,EAAUC,GAAkBC,GAAK,CAAC,IAAIC,EAAI,GAAK,CAAC,CAACC,EAAOC,CAAU,GAAGF,EAAID,EAAI,QAAQ,QAAQ,GAAG,EAAE,MAAMJ,EAAc,KAAK,MAAMK,IAAM,OAAOA,EAAI,CAAC,KAAK,KAAK,IAAI,EAAE,MAAM,CAACC,EAAOC,EAAW,IAAI,gBAAgBA,CAAU,EAAE,IAAK,CAAE,EAAE,SAASC,GAAcJ,EAAI,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,IAAI,IAAIA,CAAG,CAAE,MAAC,CAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,IAAI,IAAI,WAAWA,GAAK,CAAE,MAAC,CAAM,CAAC,MAAO,EAAM,CAIl4B,IAAMK,GAAQ,KAWRC,GAAMC,EAAQ,SAAe,CAAC,QAAAC,EAAQ,WAAAC,EAAW,aAAAC,EAAa,QAAAC,EAAQ,YAAAC,EAAY,eAAAC,EAAe,MAAAC,EAAM,OAAAC,EAAO,KAAAC,EAAK,OAAAC,EAAO,KAAAC,EAAK,IAAAC,EAAI,MAAAC,EAAM,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACvB,EAAMwB,CAAQ,EAAEC,EAAS,EAAE,EAAO,CAACC,EAAQC,CAAQ,EAAEF,EAAS,EAAK,EAAO,CAACG,EAAUC,CAAU,EAAEJ,EAAS,EAAK,EAAO,CAACK,GAAQC,CAAQ,EAAEN,EAAS,EAAK,EACtT,CAAC,eAAAO,GAAe,WAAAC,GAAW,aAAAC,EAAa,cAAAC,GAAc,YAAAC,GAAY,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,GAAa,YAAAC,EAAY,aAAAC,EAAa,OAAAC,GAAO,YAAAC,EAAW,EAAE3B,EAAW,CAAC,qBAAA4B,GAAqB,iBAAAC,GAAiB,mBAAAC,GAAmB,oBAAAC,GAAoB,kBAAAC,GAAkB,cAAAC,CAAa,EAAEhC,EAAaiC,GAAalB,GAAe,GAAGC,QAAgBhB,EAAO,SAASiB,EAAajB,EAAO,gBAAgBiB,OAAkBC,QAAmBC,OAAgB,GAAGC,OAAapB,EAAO,SAASoB,EAAQpB,EAAO,gBAAgBoB,OAAaA,OAAaA,MAAkBc,GAAmBP,GAAqB,GAAG3B,EAAO,SAAS,EAAE4B,QAAsBC,QAAwB7B,EAAO,SAAS,EAAE8B,QAAyBC,OAAsB,GAAG/B,EAAO,SAAS,EAAEgC,OAAmBA,OAAmBhC,EAAO,SAAS,EAAEgC,OAAmBA,MAAwBG,GAAOC,GAAU,EAAQC,EAAU,IAAI,CAA4D,GAA/CzB,EAAW,EAAK,EAAEE,EAAS,EAAK,EAAEP,EAAS,EAAE,EAAKb,IAAa,QAAQS,GAAM,CAACM,EAAQ,CAAC,GAAK,CAAC6B,EAAKC,CAAI,EAAEpC,EAAK,MAAM,GAAG,EAAO,CAAC,QAAAqC,EAAQ,cAAAC,CAAa,EAAEC,GAA0BP,GAAO,OAAOG,CAAI,EAA2D,GAAtDE,GAASL,GAAO,SAASK,EAAQD,EAAKE,CAAa,EAAMpD,GAAcc,CAAI,EAAG,OAAAO,EAAS,EAAI,EAAEiC,EAAa,MAAM,OAAO,EAAS,GAAQ,EAAQC,EAAaC,EAAY9D,GAAWA,IAAQ,IAAI,CAACD,GAAcC,CAAK,GAAG2B,EAAS,EAAI,EAAEiC,EAAa,MAAM,OAAO,EAAS,IAAc,GAAO,CAAC7D,EAAa,CAAC,EAAQgE,GAAaD,EAAYE,GAAO,CAACrC,EAAS,EAAK,EAAEH,EAASwC,EAAM,OAAO,KAAK,CAAE,EAAE,CAAC,CAAC,EAAQC,GAAYH,EAAYE,GAAO,CAACjC,EAAS,EAAI,CAAE,EAAE,CAAC,CAAC,EAAQmC,GAAWJ,EAAYE,GAAO,CAACjC,EAAS,EAAK,EAAEJ,EAAS,EAAK,CAAE,EAAE,CAAC,CAAC,EAAQwC,GAAaL,EAAYE,GAAO,CACnnD,GADonDA,EAAM,eAAe,EACtoD,CAAApC,EAAkC,IAAjBC,EAAW,EAAI,EAAKnB,IAAU,YAAY,CAAC,GAAK,CAACN,EAAOC,CAAU,EAAEJ,GAAkBW,CAAY,EAAE,GAAG,CAACiD,EAAa7D,CAAK,GAAG,CAACI,GAAQ,CAACC,EAAW,CAACwB,EAAW,EAAK,EAAE,OACzLxB,EAAW,IAAI,SAASL,CAAK,EAAE,MAAM,WAAWI,mBAAwB,CAAC,OAAO,OAAO,KAAK,UAAU,QAAQ,CAAC,eAAe,iDAAiD,EAAE,KAAKC,EAAW,SAAS,CAAC,CAAC,EAAE,KAAK+D,GAAU,CAACd,EAAU,EAAK3C,IAAa,WAAoDY,IAAS,CAAE,CAAC,EAAE,MAAM8C,GAAO,CAAC,QAAQ,MAAMA,CAAK,EAAExC,EAAW,EAAK,EAAEF,EAAS,EAAI,EAAEiC,EAAa,MAAM,OAAO,CAAE,CAAC,EAAG,GAAGlD,IAAU,QAAQ,CAAC,GAAG,CAACmD,EAAa7D,CAAK,EAAE,CAAC6B,EAAW,EAAK,EAAE,OAAQ,IAAMyC,EAAS,SAAS,mBAAmBtE,CAAK,IAAI,MAAM,4CAA4Ca,IAAU,CAAC,OAAO,OAAO,QAAQ,CAAC,eAAe,mCAAmC,EAAE,KAAKyD,CAAQ,CAAC,EAAE,KAAK,IAAI,CAAChB,EAAU,EAAK3C,IAAa,WAAoDY,IAAS,CAAE,CAAC,EAAE,MAAM8C,GAAO,CAAC,QAAQ,MAAMA,CAAK,EAAExC,EAAW,EAAK,EAAEF,EAAS,EAAI,EAAEiC,EAAa,MAAM,OAAO,CAAE,CAAC,EAAG,GAAGlD,IAAU,YAAY,CAAC,GAAG,CAACmD,EAAa7D,CAAK,EAAE,CAAC6B,EAAW,EAAK,EAAE,OAAQ,IAAM0C,EAAK,IAAI,SAASP,EAAM,MAAM,EAAQQ,EAAQ,OAAO,YAAYD,EAAK,QAAQ,CAAC,EAAE,MAAM,2BAA2BzD,IAAc,CAAC,OAAO,OAAO,QAAQ,CAAC,eAAe,mBAAmB,OAAO,kBAAkB,EAAE,KAAK,KAAK,UAAU0D,CAAO,CAAC,CAAC,EAAE,KAAK,IAAI,CAAClB,EAAU,EAA4C/B,IAAS,CAAE,CAAC,EAAE,MAAM8C,GAAO,CAAC,QAAQ,MAAMA,CAAK,EAAExC,EAAW,EAAK,EAAEF,EAAS,EAAI,EAAEiC,EAAa,MAAM,OAAO,CAAE,CAAC,EAAG,GAAGlD,IAAU,cAAc,CAAC,GAAG,CAACmD,EAAa7D,CAAK,EAAE,CAAC6B,EAAW,EAAK,EAAE,OAAQ,IAAM4C,EAAM,IAAI,SAAST,EAAM,MAAM,EAAQU,EAAS,OAAO,YAAYD,EAAM,QAAQ,CAAC,EAAE,MAAM;AAAA,UAC/hD,CAAC,OAAO,OAAO,QAAQ,CAAC,eAAe,mBAAmB,OAAO,kBAAkB,EAAE,KAAK,KAAK,UAAUC,CAAQ,CAAC,CAAC,EAAE,KAAK,IAAI,CAACpB,EAAU,EAAK3C,IAAa,WAAoDY,IAAS,CAAE,CAAC,EAAE,MAAM8C,GAAO,CAAC,QAAQ,MAAMA,CAAK,EAAExC,EAAW,EAAK,EAAEF,EAAS,EAAI,EAAEiC,EAAa,MAAM,OAAO,CAAE,CAAC,GAAG,EAAE,CAAChD,EAAaE,EAAYd,EAAMuB,EAASsC,EAAajC,CAAU,CAAC,EACxYgC,EAAae,GAAqB,EAClCC,GAAgB5D,EAAM,YAAY,eAAewB,EAAY,oBAAoBA,EAAY,aAAa,KAAWqC,GAAc7D,EAAM,YAAY,eAAewB,EAAY,kBAAkBA,EAAY,aAAa,KAAWsC,EAAa9D,EAAM,aAAa,GAAGyB,EAAa,aAAaA,EAAa,aAAaA,EAAa,gBAAgBA,EAAa,cAAc,KAAWsC,EAAa/D,EAAM,aAAa,eAAeuB,GAAa,iBAAiBA,GAAa,cAAc,KACxeyC,GAAa,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,EAAQC,GAAc,CAAC,QAAQ,CAAC,UAAUC,GAAiBN,GAAgBE,EAAaC,CAAY,CAAC,EAAE,QAAQ,CAAC,UAAUG,GAAiBL,GAAcC,EAAaC,CAAY,CAAC,CAAC,EAAE,OAAqBI,EAAKC,EAAO,IAAI,CAAC,MAAM,CAAC,GAAG9D,EAAM,GAAG+D,GAAgB,oCAAoCrE,EAAM,gBAAgB,EAAE,SAASgE,GAAa,QAAQpB,EAAa,SAAuB0B,EAAM,OAAO,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,SAAS,WAAW,cAAcnE,IAAS,WAAW,SAAS,MAAM,MAAMF,EAAO,MAAM,IAAIA,EAAO,SAAS,EAAEI,CAAG,EAAE,SAAS8C,GAAa,OAAO,OAAO,SAAS,CAACzD,IAAU,eAA6ByE,EAAK,QAAQ,CAAC,KAAK,SAAS,KAAK,UAAU,MAAMpE,CAAc,CAAC,EAAgBoE,EAAKC,EAAO,MAAM,CAAC,KAAK,QAAQ,KAAK,QAAQ,YAAYpE,EAAM,YAAY,MAAMhB,EAAM,UAAU,GAAGO,yBAA8B,SAASwD,GAAa,QAAQE,GAAY,OAAOC,GAAW,aAAa,MAAM,eAAe,MAAM,YAAY,MAAM,WAAW,QAAQ,MAAM,CAAC,GAAGqB,GAAa,QAAQrC,GAAa,aAAAZ,EAAa,SAAS,GAAG,GAAGpB,EAAK,WAAWF,EAAM,KAAK,OAAO0B,GAAO,OAAOC,GAAY,MAAM3B,EAAM,MAAM,UAAUkE,GAAiBN,GAAgBE,EAAaC,CAAY,CAAC,EAAE,SAASE,GAAc,QAAQ,GAAM,QAAQnD,GAAQ,UAAU,UAAU,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,EAAE,CAACb,EAAO,cAAcW,GAAyBuD,EAAKK,GAAQ,CAAC,aAAavE,EAAO,aAAa,eAAee,GAAe,WAAWC,GAAW,aAAaC,EAAa,QAAQG,EAAQ,MAAMrB,EAAM,KAAK,CAAC,EAAEC,EAAO,cAA4BqE,EAAM,MAAM,CAAC,MAAM,CAAC,SAASrE,EAAO,SAAS,WAAW,WAAW,IAAIA,EAAO,SAASA,EAAO,gBAAgB,EAAE,MAAMA,EAAO,SAASA,EAAO,gBAAgB,EAAE,OAAOA,EAAO,SAASA,EAAO,gBAAgB,CAAC,EAAE,SAAS,CAAekE,EAAKC,EAAO,MAAM,CAAC,KAAK,SAAS,MAAMnE,EAAO,MAAM,MAAM,CAAC,GAAGsE,GAAa,MAAMtE,EAAO,SAASA,EAAO,gBAAgB,OAAO,OAAOyB,GAAO,OAAOC,GAAY,OAAO,UAAU,QAAQQ,GAAmB,aAAalC,EAAO,SAASqB,EAAarB,EAAO,gBAAgBqB,EAAa,WAAWrB,EAAO,WAAW,SAAS,GAAG,GAAGA,EAAO,WAAW,WAAWA,EAAO,KAAK,MAAMA,EAAO,MAAM,OAAO,EAAE,UAAUwE,GAAgBxE,CAAM,CAAC,CAAC,CAAC,EAAEW,GAAyBuD,EAAK,MAAM,CAAC,MAAM,CAAC,aAAalE,EAAO,SAASqB,EAAarB,EAAO,gBAAgBqB,EAAa,SAAS,WAAW,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,MAAM,OAAO,OAAO,OAAO,MAAM,EAAE,OAAO,EAAE,MAAMrB,EAAO,MAAM,WAAWA,EAAO,IAAI,EAAE,SAAuBkE,EAAKK,GAAQ,CAAC,MAAMvE,EAAO,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,EAAE,CAAC,IAAIV,mGAAyG,CAAC,EAAQiF,GAAQE,GAAO,CAAC,IAAMC,EAAgBD,EAAM,aAAqH,CAAC,EAAzG,CAAC,SAAS,WAAW,IAAI,kBAAkB,MAAMA,EAAM,eAAeA,EAAM,aAAaA,EAAM,OAAO,EAAK,OAAqBP,EAAKC,EAAO,IAAI,CAAC,MAAM,CAAC,OAAO,GAAG,MAAM,GAAG,GAAGO,CAAc,EAAE,QAAQ,CAAC,OAAO,CAAC,EAAE,QAAQ,CAAC,OAAO,GAAG,EAAE,WAAW,CAAC,SAAS,EAAE,OAAO,GAAQ,EAAE,SAAuBR,EAAKC,EAAO,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,EAAE,SAAuBE,EAAM,MAAM,CAAC,MAAM,6BAA6B,MAAM,KAAK,OAAO,KAAK,MAAM,CAAC,KAAK,eAAe,MAAMI,EAAM,KAAK,EAAE,SAAS,CAAeP,EAAK,OAAO,CAAC,EAAE,2NAA2N,KAAK,eAAe,QAAQ,KAAK,CAAC,EAAgBA,EAAK,OAAO,CAAC,EAAE,yKAAyK,KAAK,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,EAAES,EAAoBpF,GAAM,CAAC,QAAQ,CAAC,MAAM,UAAU,KAAKqF,EAAY,KAAK,QAAQ,CAAC,QAAQ,YAAY,YAAY,aAAa,EAAE,aAAa,CAAC,QAAQ,YAAY,YAAY,cAAc,EAAE,aAAa,OAAO,EAAE,aAAa,CAAC,MAAM,MAAM,YAAY,uDAAuD,KAAKA,EAAY,OAAO,OAAOH,GAAOA,EAAM,UAAU,WAAW,EAAE,QAAQ,CAAC,MAAM,KAAK,YAAY,4BAA4B,KAAKG,EAAY,OAAO,OAAOH,GAAOA,EAAM,UAAU,OAAO,EAAE,YAAY,CAAC,MAAM,KAAK,YAAY,WAAW,KAAKG,EAAY,OAAO,OAAOH,GAAOA,EAAM,UAAU,WAAW,EAAE,eAAe,CAAC,MAAM,KAAK,YAAY,OAAO,KAAKG,EAAY,OAAO,OAAOH,GAAOA,EAAM,UAAU,aAAa,EAAE,WAAW,CAAC,MAAM,UAAU,KAAKG,EAAY,KAAK,QAAQ,CAAC,OAAO,SAAS,EAAE,aAAa,CAAC,YAAY,cAAc,EAAE,aAAa,MAAM,EAAE,KAAK,CAAC,MAAM,WAAW,KAAKA,EAAY,KAAK,OAAOH,GAAOA,EAAM,aAAa,SAAS,EAAE,SAAS,CAAC,MAAM,SAAS,KAAKG,EAAY,aAAa,OAAOH,GAAOA,EAAM,aAAa,MAAM,EAAE,OAAO,CAAC,MAAM,SAAS,KAAKG,EAAY,KAAK,QAAQ,CAAC,aAAa,UAAU,EAAE,wBAAwB,GAAK,OAAOH,GAAOA,EAAM,OAAO,QAAQ,EAAE,KAAK,CAAC,KAAKG,EAAY,KAAK,MAAM,OAAO,SAAS,UAAU,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,SAAS,CAAC,YAAY,CAAC,MAAM,cAAc,KAAKA,EAAY,OAAO,aAAa,gBAAgB,EAAE,iBAAiB,CAAC,MAAM,IAAI,KAAKA,EAAY,MAAM,aAAa,oBAAoB,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,MAAM,aAAa,SAAS,EAAE,MAAM,CAAC,MAAM,OAAO,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,OAAO,CAAC,MAAM,SAAS,KAAKA,EAAY,QAAQ,aAAa,OAAO,cAAc,OAAO,EAAE,YAAY,CAAC,MAAM,IAAI,KAAKA,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,aAAa,GAAG,OAAOH,GAAOA,EAAM,MAAM,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKG,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,GAAG,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,SAAS,GAAK,SAAS,CAAC,eAAe,CAAC,MAAM,OAAO,KAAKA,EAAY,OAAO,eAAe,GAAK,aAAa,CAAC,EAAE,aAAa,CAAC,MAAM,KAAK,KAAKA,EAAY,OAAO,eAAe,GAAK,aAAa,CAAC,EAAE,WAAW,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,MAAM,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,GAAK,SAAS,CAAC,YAAY,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,eAAe,GAAK,aAAa,CAAC,EAAE,YAAY,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,uBAAuB,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,GAAK,SAAS,CAAC,YAAY,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,kBAAkB,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,CAAC,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,CAAC,EAAE,WAAW,CAAC,MAAM,WAAW,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,SAAS,CAAC,aAAa,CAAC,MAAM,OAAO,KAAKA,EAAY,QAAQ,aAAa,EAAI,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,WAAW,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,SAAS,UAAU,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,MAAM,CAAC,MAAM,OAAO,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,SAAS,CAAC,MAAM,SAAS,KAAKA,EAAY,QAAQ,aAAa,EAAK,EAAE,gBAAgB,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,IAAI,EAAE,aAAa,IAAI,eAAe,GAAK,OAAOH,GAAO,CAACA,EAAM,QAAQ,EAAE,gBAAgB,CAAC,MAAM,QAAQ,KAAKG,EAAY,OAAO,IAAI,EAAE,aAAa,EAAE,eAAe,GAAK,OAAOH,GAAO,CAACA,EAAM,QAAQ,EAAE,cAAc,CAAC,MAAM,UAAU,KAAKG,EAAY,YAAY,UAAU,uBAAuB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,GAAG,UAAU,CAAC,mBAAmB,qBAAqB,sBAAsB,mBAAoB,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,GAAK,SAAS,CAAC,YAAY,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,kBAAkB,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,CAAC,EAAE,QAAQ,CAAC,MAAM,WAAW,KAAKA,EAAY,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,CAAC,EAAE,WAAW,CAAC,MAAM,WAAW,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,aAAa,GAAG,OAAOH,GAAOA,EAAM,OAAO,QAAQ,CAAC,CAAC,EAAE,IAAMH,GAAa,CAAC,iBAAiB,OAAO,WAAW,OAAO,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,OAAO,MAAM,EAAQF,GAAgB,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,eAAe,SAAS,WAAW,QAAQ,EAAE,SAASI,GAAgBxE,EAAO,CAAC,OAAGA,EAAO,aAAoB,GAAGA,EAAO,aAAa,aAAaA,EAAO,aAAa,aAAaA,EAAO,aAAa,gBAAgBA,EAAO,aAAa,cAA0B,MAAO,CAAC,SAASiE,MAAoBY,EAAQ,CAAC,IAAMC,EAAO,CAAC,EAAE,OAAAD,EAAQ,QAAQE,GAAQA,GAAQD,EAAO,KAAKC,CAAM,CAAC,EAASD,EAAO,KAAK,IAAI,CAAE,CAAC,IAAOE,GAAQzF,GCtBv6R0F,EAAU,0BAA0B,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,EAAeC,GAAI,CAAC,+dAA+d,EAAeC,GAAU,eCAxkBC,EAAU,0BAA0B,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,EAAeC,GAAI,CAAC,iWAAiW,EAAeC,GAAU,eCC4N,IAAMC,GAAWC,GAASC,EAAK,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,UAAU,uCAAuC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,KAAK,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,GAAW,CAAC,CAAC,MAAAH,EAAM,SAAAI,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWR,GAAmCK,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,cAAc,YAAY,eAAe,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAKC,EAAM,MAAM,CAAC,GAAGH,EAAM,SAASE,GAAMD,EAAuCP,GAAwBM,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,YAAY,WAAWC,EAAML,GAAmCE,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,CAAC,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,CAAE,EAAQC,GAAuB,CAACJ,EAAM5B,IAAWA,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAuBK,GAA6BC,GAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAvC,EAAQ,UAAAwC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,GAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiBlB,GAAuBJ,EAAM5B,CAAQ,EAAQmD,EAAWC,GAAO,IAAI,EAAQC,EAAY,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAAST,CAAW,EAAmCU,EAAsBC,GAAM,EAAQC,EAAsB,CAAahB,GAAuBA,EAAS,EAAQiB,GAAkBC,GAAqB,EAAE,OAAoBxC,EAAKyC,GAAY,CAAC,GAAGlB,GAA4Ca,EAAgB,SAAsBpC,EAAKC,GAAS,CAAC,QAAQnB,EAAS,QAAQ,GAAM,SAAsBkB,EAAKR,GAAW,CAAC,MAAMP,GAAY,SAAsByD,EAAMxC,EAAO,IAAI,CAAC,GAAGuB,EAAU,UAAUkB,GAAGjE,GAAkB,GAAG4D,EAAsB,iBAAiBhB,EAAUK,CAAU,EAAE,mBAAmB,UAAU,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIZ,GAA6BgB,EAAK,MAAM,CAAC,GAAGZ,CAAK,EAAE,GAAGzC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,aAAa,CAAC,EAAE8C,EAAYE,CAAc,EAAE,SAAS,CAAc5B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBU,EAAMxC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,SAAsBF,EAAMxC,EAAO,EAAE,CAAC,UAAU,8BAA8B,mBAAmB,2BAA2B,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,WAAW7C,GAAU,SAAS,CAAcuD,EAAMxC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK6C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,GAAGzD,GAAkBoC,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBQ,EAAiB,SAAS,WAAW,CAAC,EAAehC,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,iBAAiB,EAAE,UAAU,CAAC,qBAAqB,iBAAiB,EAAE,UAAU,CAAC,qBAAqB,iBAAiB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,EAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,0CAA0C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,0CAA0C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,0CAA0C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,oGAAoG,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,wBAAwB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,4EAA4E,6BAA6B,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uBAAuB,EAAE,UAAU,CAAC,qBAAqB,uBAAuB,EAAE,UAAU,CAAC,qBAAqB,uBAAuB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,EAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBU,EAAMxC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,uBAAuB,OAAO,sBAAsB,oGAAoG,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,wBAAwB,EAAE,iBAAiB8B,EAAiB,SAAS,qCAAqC,MAAM,CAAC,qBAAqB,4EAA4E,6BAA6B,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uBAAuB,EAAE,UAAU,CAAC,qBAAqB,uBAAuB,EAAE,UAAU,CAAC,qBAAqB,uBAAuB,CAAC,EAAE,kBAAkB,MAAM,WAAWzC,EAAW,mBAAmB,GAAK,GAAGX,EAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,EAAYE,CAAc,CAAC,CAAC,EAAe5B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBuC,EAAMxC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,uBAAuB,OAAO,sBAAsB,oGAAoG,EAAE,SAAS,CAAcF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,wBAAwB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,4EAA4E,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,WAAWzC,EAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBU,EAAMxC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB8B,EAAiB,SAAS,yBAAyB,SAAS,CAAchC,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,oGAAoG,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,wBAAwB,EAAE,iBAAiB8B,EAAiB,SAAS,iDAAiD,MAAM,CAAC,qBAAqB,4EAA4E,6BAA6B,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uBAAuB,EAAE,UAAU,CAAC,qBAAqB,uBAAuB,EAAE,UAAU,CAAC,qBAAqB,uBAAuB,CAAC,EAAE,kBAAkB,MAAM,WAAWzC,EAAW,mBAAmB,GAAK,GAAGX,EAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,EAAYE,CAAc,CAAC,CAAC,EAAe5B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,oGAAoG,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,wBAAwB,EAAE,iBAAiB8B,EAAiB,SAAS,iDAAiD,MAAM,CAAC,qBAAqB,4EAA4E,6BAA6B,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uBAAuB,EAAE,UAAU,CAAC,qBAAqB,uBAAuB,EAAE,UAAU,CAAC,qBAAqB,uBAAuB,CAAC,EAAE,kBAAkB,MAAM,WAAWzC,EAAW,mBAAmB,GAAK,GAAGX,EAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,EAAYE,CAAc,CAAC,CAAC,EAAe5B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,oGAAoG,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,4BAA4B,aAAa,GAAK,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,wBAAwB,EAAE,iBAAiB8B,EAAiB,SAAS,iDAAiD,MAAM,CAAC,qBAAqB,4EAA4E,6BAA6B,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uBAAuB,EAAE,UAAU,CAAC,qBAAqB,uBAAuB,EAAE,UAAU,CAAC,qBAAqB,uBAAuB,CAAC,EAAE,kBAAkB,MAAM,WAAWzC,EAAW,mBAAmB,GAAK,GAAGX,EAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,4BAA4B,aAAa,GAAK,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,4BAA4B,aAAa,GAAK,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,gCAAgC,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAsBF,EAAK4C,EAAK,CAAC,KAAK,4BAA4B,aAAa,GAAK,aAAa,GAAM,SAAsB5C,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAMxC,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4EAA4E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAS,CAAC,UAAU,CAAC,iBAAiB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,wBAAwB,CAAC,EAAE,SAAS,CAAcU,EAAMxC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK4C,EAAK,CAAC,KAAK,iCAAiC,aAAa,GAAK,SAAsB5C,EAAK+C,EAAI,CAAC,GAAG,IAAI,UAAU,+BAA+B,mBAAmB,UAAU,OAAO,WAAW,iBAAiBf,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,k8BAAk8B,aAAa,UAAU,mBAAmB,GAAK,GAAGpD,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,o2BAAo2B,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,o2BAAo2B,aAAa,WAAW,EAAE,UAAU,CAAC,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,o2BAAo2B,aAAa,WAAW,CAAC,EAAE8C,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK4C,EAAK,CAAC,KAAK,mCAAmC,aAAa,GAAK,SAAsB5C,EAAK+C,EAAI,CAAC,GAAG,IAAI,UAAU,+BAA+B,mBAAmB,YAAY,OAAO,WAAW,iBAAiBf,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,2hCAA2hC,aAAa,UAAU,mBAAmB,GAAK,GAAGpD,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,67BAA67B,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,67BAA67B,aAAa,WAAW,EAAE,UAAU,CAAC,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,67BAA67B,aAAa,WAAW,CAAC,EAAE8C,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK4C,EAAK,CAAC,KAAK,8CAA8C,aAAa,GAAK,SAAsB5C,EAAK+C,EAAI,CAAC,GAAG,IAAI,UAAU,+BAA+B,mBAAmB,WAAW,OAAO,WAAW,iBAAiBf,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,47BAA47B,aAAa,WAAW,mBAAmB,GAAK,GAAGpD,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,81BAA81B,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,81BAA81B,aAAa,UAAU,EAAE,UAAU,CAAC,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,81BAA81B,aAAa,UAAU,CAAC,EAAE8C,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK4C,EAAK,CAAC,KAAK,qCAAqC,aAAa,GAAK,SAAsB5C,EAAK+C,EAAI,CAAC,GAAG,IAAI,UAAU,+BAA+B,mBAAmB,UAAU,OAAO,WAAW,iBAAiBf,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,mjBAAmjB,aAAa,WAAW,mBAAmB,GAAK,GAAGpD,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,qdAAqd,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,qdAAqd,aAAa,UAAU,EAAE,UAAU,CAAC,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,qdAAqd,aAAa,UAAU,CAAC,EAAE8C,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,oGAAoG,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,wBAAwB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,4EAA4E,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEG,EAAY,GAAgBnC,EAAKgD,GAA0B,CAAC,SAAsBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,GAAM,CAAC,OAAO,CAAC,WAAW,CAAC,WAAW,+DAA+D,SAAS,OAAO,cAAc,MAAM,WAAW,KAAK,EAAE,cAAc,GAAG,oBAAoB,EAAE,kBAAkB,GAAG,qBAAqB,GAAK,mBAAmB,GAAG,iBAAiB,EAAE,MAAM,qBAAqB,KAAK,uEAAuE,gBAAgB,EAAE,SAAS,GAAK,MAAM,YAAY,aAAa,GAAK,gBAAgB,GAAG,EAAE,KAAK,CAAC,WAAW,2DAA2D,SAAS,OAAO,cAAc,MAAM,WAAW,KAAK,EAAE,YAAY,GAAG,IAAI,GAAG,eAAe,GAAG,OAAO,OAAO,GAAG,YAAY,MAAM,CAAC,aAAa,GAAG,MAAM,qEAAqE,KAAK,4EAA4E,YAAY,GAAG,YAAY,CAAC,WAAW,4EAA4E,eAAe,EAAE,aAAa,CAAC,EAAE,OAAO,GAAK,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,YAAY,iBAAiB,iBAAiB,2EAA2E,EAAE,OAAO,aAAa,SAAS,YAAY,QAAQ,4BAA4B,aAAa,GAAG,WAAW,UAAU,QAAQ,QAAQ,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyE,GAAI,CAAC,kFAAkF,gFAAgF,2QAA2Q,6RAA6R,yRAAyR,qTAAqT,qRAAqR,4KAA4K,wSAAwS,4TAA4T,gUAAgU,+RAA+R,oRAAoR,mNAAmN,uKAAuK,uHAAuH,m7EAAm7E,+FAA+F,yHAAyH,0HAA0H,gIAAgI,8DAA8D,uFAAuF,iGAAiG,utBAAutB,8HAA8H,0NAA0N,+FAA+F,gFAAgF,+aAA+a,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAS90kDC,EAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,SAASA,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,SAAS,gBAAgB,eAAe,aAAa,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,4GAA4G,MAAM,QAAQ,KAAKA,EAAY,eAAe,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,iFAAiF,OAAO,KAAK,EAAE,CAAC,OAAO,kBAAkB,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAG5E,GAAW,GAAGkF,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "ref", "domain", "parameters", "isExternalURL", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "formsparkID", "getwaitlistAPI", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "formControls", "validateForm", "te", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "formBody", "data", "entries", "data1", "entries1", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "Input_default", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "InputFonts", "getFonts", "Input_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "toResponsiveImage", "value", "transition3", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "wYY6g1PIv", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "Image2", "RichText", "SVG", "ComponentViewportProvider", "css", "FramerZcKtm2Egi", "withCSS", "ZcKtm2Egi_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
