{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/InputSites.js@1.12.0", "ssg:https://framerusercontent.com/modules/tEJqoun4MtBed1OjNwKy/oIG6qvkLwFygGXycIYZs/Input_Mailchimp.js", "ssg:https://framerusercontent.com/modules/wwGopBbbyBbES712ulWi/jcchA33mRg8cGh9312WD/l_UYznPLZ.js", "ssg:https://framerusercontent.com/modules/rMD4UYgcX04uZw7NoEZb/P2XQzKfcIMcLJV1fPty4/QiHSkbeZ1.js", "ssg:https://framerusercontent.com/modules/pYnVZeoVVpnmTtZe9MLm/G3ra64SagSp2bG5kmycF/FlMXIkOV8.js", "ssg:https://framerusercontent.com/modules/Vg1uwZCpKZce1Wh43tj0/KXDfUtj6w3xA5KrArn6u/NWoMEXidP.js", "ssg:https://framerusercontent.com/modules/Du2KFZFBqi20LV5JYiYG/x42LZOo4KK7LPbVXJ1P9/rDqm1J34p.js", "ssg:https://framerusercontent.com/modules/CnxFS5soVinecfWJ273u/mCiyG4R2xD3cMR5i8mUD/uWG6mUv3O.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 _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;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,loopsUserGroup,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,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(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};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 emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";const formBody=hasUserGroup?emailBody+\"&\"+userGroupBody:emailBody;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",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://api.formspark.io/${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 formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).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===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;data.api_key=convertkitAPI;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).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,convertkitFormID,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}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__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},\"data-1p-ignore\":true}),!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,\nfontSize: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\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],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\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,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\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},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\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import Input from\"https://framer.com/m/framer/InputSites.js@1.12.0\";import{ControlType,addPropertyControls}from\"framer\";/**\n * INPUT - MAILCHIMP\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */export default function Mailchimp(props){// This is a React component containing an Example component\n// - Replace <Example /> with your own code\n// - Find inspiration: https://www.framer.com/developers/\nreturn /*#__PURE__*/_jsx(Input,{...props,service:\"mailchimp\"});}addPropertyControls(Mailchimp,{mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String},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}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Mailchimp\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input_Mailchimp.map", "// Generated by Framer (575e68f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-9a0ZD .framer-styles-preset-157ey4f:not(.rich-text-wrapper), .framer-9a0ZD .framer-styles-preset-157ey4f.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #0099ff; --framer-link-text-decoration: none; }\"];export const className=\"framer-9a0ZD\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf240c2)\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 Mailchimp from\"https://framerusercontent.com/modules/tEJqoun4MtBed1OjNwKy/oIG6qvkLwFygGXycIYZs/Input_Mailchimp.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wwGopBbbyBbES712ulWi/jcchA33mRg8cGh9312WD/l_UYznPLZ.js\";import*as localizedValues from\"./QiHSkbeZ1-0.js\";const MailchimpFonts=getFonts(Mailchimp);const cycleOrder=[\"JupSAEs3d\",\"hjV20Fwa4\",\"UnuGNvfrb\"];const serializationHash=\"framer-r7Yxa\";const variantClassNames={hjV20Fwa4:\"framer-v-1igjenv\",JupSAEs3d:\"framer-v-4gbb15\",UnuGNvfrb:\"framer-v-1suuzfv\"};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 valuesByLocaleId={Y30xftvHo:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop \":\"JupSAEs3d\",Phone:\"UnuGNvfrb\",Tablet:\"hjV20Fwa4\"};const getProps=({height,id,padding,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,N6kQOkg6N:(_ref=padding!==null&&padding!==void 0?padding:props.N6kQOkg6N)!==null&&_ref!==void 0?_ref:\"80px 0px 80px 0px\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"JupSAEs3d\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,N6kQOkg6N,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JupSAEs3d\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4gbb15\",className,classNames),\"data-framer-name\":\"Desktop \",layoutDependency:layoutDependency,layoutId:\"JupSAEs3d\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1ub87w3\":numberToPixelString(N6kQOkg6N),backgroundColor:\"rgb(247, 246, 244)\",...style},...addPropertyOverrides({hjV20Fwa4:{\"data-framer-name\":\"Tablet\"},UnuGNvfrb:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-xrbteg framer-2tfk76\",\"data-framer-name\":\"Content\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nYQzgUorU\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 90 45\"><path d=\"M 45.859 0.897 L 71.494 0.897 C 71.547 0.897 71.599 0.919 71.636 0.957 L 88.792 18.415 C 88.917 18.541 88.827 18.755 88.65 18.755 L 84.486 18.755 C 84.375 18.755 84.286 18.844 84.286 18.955 L 84.286 43.162\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(0, 0, 0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 0.225 42.873 L 0.225 41.683 C 0.501 41.671 0.73 41.635 0.91 41.575 C 1.102 41.515 1.246 41.377 1.343 41.16 C 1.451 40.944 1.505 40.595 1.505 40.114 L 1.505 33.208 C 1.505 32.883 1.511 32.571 1.523 32.27 C 1.547 31.97 1.565 31.741 1.577 31.585 C 1.385 31.597 1.144 31.609 0.856 31.621 C 0.567 31.621 0.357 31.627 0.225 31.639 L 0.225 30.25 L 5.4 30.25 L 5.4 31.441 C 5.136 31.453 4.907 31.489 4.715 31.549 C 4.522 31.609 4.372 31.747 4.264 31.964 C 4.168 32.168 4.12 32.517 4.12 33.01 L 4.12 35.823 L 9.079 35.823 L 9.079 33.208 C 9.079 32.883 9.085 32.571 9.097 32.27 C 9.109 31.97 9.127 31.741 9.151 31.585 C 8.958 31.597 8.718 31.609 8.43 31.621 C 8.141 31.621 7.931 31.627 7.798 31.639 L 7.798 30.25 L 12.974 30.25 L 12.974 31.441 C 12.709 31.453 12.481 31.489 12.289 31.549 C 12.096 31.609 11.946 31.747 11.838 31.964 C 11.742 32.168 11.693 32.517 11.693 33.01 L 11.693 39.916 C 11.693 40.241 11.688 40.553 11.675 40.854 C 11.663 41.154 11.645 41.383 11.621 41.539 C 11.814 41.515 12.054 41.503 12.343 41.503 C 12.643 41.491 12.854 41.485 12.974 41.485 L 12.974 42.873 L 7.798 42.873 L 7.798 41.683 C 8.075 41.671 8.303 41.635 8.484 41.575 C 8.676 41.515 8.82 41.377 8.916 41.16 C 9.025 40.944 9.079 40.595 9.079 40.114 L 9.079 37.193 L 4.12 37.247 L 4.12 39.916 C 4.12 40.241 4.114 40.553 4.102 40.854 C 4.09 41.154 4.072 41.383 4.048 41.539 C 4.24 41.515 4.48 41.503 4.769 41.503 C 5.069 41.491 5.28 41.485 5.4 41.485 L 5.4 42.873 Z M 23.449 43.162 C 22.307 43.162 21.334 42.97 20.528 42.585 C 19.735 42.2 19.091 41.689 18.599 41.052 C 18.106 40.403 17.745 39.688 17.517 38.906 C 17.288 38.125 17.174 37.343 17.174 36.562 C 17.174 35.804 17.3 35.041 17.553 34.272 C 17.817 33.49 18.208 32.775 18.725 32.126 C 19.254 31.477 19.915 30.954 20.708 30.557 C 21.502 30.16 22.434 29.962 23.504 29.962 C 24.597 29.962 25.541 30.16 26.335 30.557 C 27.128 30.954 27.777 31.483 28.282 32.144 C 28.787 32.793 29.16 33.502 29.4 34.272 C 29.653 35.041 29.779 35.804 29.779 36.562 C 29.779 37.307 29.647 38.065 29.382 38.834 C 29.13 39.603 28.739 40.319 28.21 40.98 C 27.693 41.629 27.038 42.158 26.244 42.567 C 25.451 42.964 24.519 43.162 23.449 43.162 Z M 23.648 41.845 C 24.273 41.845 24.796 41.695 25.217 41.395 C 25.637 41.082 25.974 40.679 26.226 40.186 C 26.479 39.694 26.659 39.159 26.767 38.582 C 26.876 37.992 26.93 37.421 26.93 36.868 C 26.93 36.039 26.858 35.282 26.713 34.596 C 26.569 33.911 26.347 33.322 26.046 32.829 C 25.746 32.324 25.361 31.94 24.892 31.675 C 24.435 31.399 23.894 31.266 23.269 31.278 C 22.656 31.29 22.139 31.459 21.718 31.783 C 21.297 32.096 20.961 32.504 20.708 33.009 C 20.456 33.502 20.276 34.043 20.167 34.632 C 20.059 35.221 20.005 35.792 20.005 36.345 C 20.005 36.911 20.065 37.512 20.185 38.149 C 20.318 38.786 20.522 39.387 20.799 39.952 C 21.075 40.517 21.448 40.974 21.917 41.323 C 22.385 41.671 22.963 41.845 23.648 41.845 Z M 40.433 43.054 C 40.025 42.056 39.616 41.064 39.207 40.078 C 38.81 39.093 38.408 38.107 37.999 37.121 C 37.903 36.893 37.776 36.574 37.62 36.165 C 37.476 35.745 37.32 35.264 37.151 34.723 C 36.995 34.182 36.851 33.623 36.719 33.046 C 36.743 33.719 36.761 34.356 36.773 34.957 C 36.785 35.546 36.785 36.111 36.773 36.652 C 36.773 36.917 36.773 37.187 36.773 37.464 C 36.773 37.74 36.767 38.017 36.755 38.293 C 36.755 38.558 36.755 38.828 36.755 39.105 C 36.755 39.369 36.755 39.64 36.755 39.916 C 36.755 40.241 36.743 40.553 36.719 40.854 C 36.706 41.154 36.688 41.383 36.664 41.539 C 36.869 41.515 37.115 41.503 37.404 41.503 C 37.704 41.491 37.915 41.485 38.035 41.485 L 38.035 42.873 L 33.923 42.873 L 33.923 41.683 C 34.2 41.671 34.428 41.635 34.609 41.575 C 34.801 41.515 34.945 41.377 35.042 41.16 C 35.15 40.944 35.204 40.595 35.204 40.114 L 35.312 33.208 C 35.324 32.883 35.336 32.571 35.348 32.27 C 35.36 31.97 35.372 31.741 35.384 31.585 C 35.192 31.597 34.951 31.609 34.663 31.621 C 34.374 31.621 34.164 31.627 34.032 31.639 L 34.032 30.25 L 38.017 30.25 L 40.74 37.229 C 40.848 37.506 40.968 37.83 41.101 38.203 C 41.233 38.564 41.359 38.918 41.479 39.267 C 41.599 39.604 41.69 39.874 41.75 40.078 L 41.768 40.078 C 41.924 39.658 42.068 39.249 42.201 38.852 C 42.333 38.455 42.471 38.071 42.615 37.698 C 43.084 36.448 43.547 35.204 44.004 33.965 C 44.473 32.727 44.942 31.489 45.41 30.25 L 49.576 30.25 L 49.576 31.441 C 49.311 31.453 49.077 31.489 48.873 31.549 C 48.668 31.609 48.512 31.747 48.404 31.964 C 48.308 32.168 48.266 32.517 48.278 33.01 L 48.548 39.916 C 48.572 40.241 48.572 40.553 48.548 40.854 C 48.524 41.154 48.5 41.383 48.476 41.539 C 48.68 41.515 48.927 41.503 49.215 41.503 C 49.516 41.491 49.726 41.485 49.846 41.485 L 49.846 42.873 L 44.833 42.873 L 44.833 41.683 C 45.11 41.671 45.344 41.635 45.537 41.575 C 45.741 41.515 45.891 41.377 45.987 41.16 C 46.096 40.944 46.138 40.595 46.114 40.114 L 45.969 36.291 C 45.969 36.147 45.957 35.901 45.933 35.552 C 45.909 35.191 45.885 34.801 45.861 34.38 C 45.849 33.947 45.837 33.545 45.825 33.172 C 45.789 33.256 45.753 33.34 45.717 33.424 C 45.681 33.496 45.651 33.575 45.627 33.659 L 42.11 43.054 Z M 60.516 38.528 C 60.516 38.023 60.438 37.662 60.282 37.446 C 60.125 37.217 59.909 37.073 59.633 37.013 C 59.368 36.953 59.074 36.929 58.749 36.941 L 58.28 36.959 L 58.28 39.916 C 58.28 40.241 58.274 40.547 58.262 40.836 C 58.25 41.124 58.232 41.347 58.208 41.503 L 60.624 41.503 C 60.985 41.503 61.334 41.425 61.67 41.269 C 62.007 41.1 62.283 40.83 62.5 40.457 C 62.716 40.072 62.824 39.555 62.824 38.906 L 63.996 38.906 L 63.906 42.873 L 54.385 42.873 L 54.385 41.683 C 54.661 41.671 54.89 41.635 55.07 41.575 C 55.263 41.515 55.407 41.377 55.503 41.16 C 55.611 40.944 55.665 40.595 55.665 40.114 L 55.665 33.208 C 55.665 32.883 55.671 32.571 55.683 32.27 C 55.707 31.97 55.725 31.741 55.737 31.585 C 55.545 31.597 55.305 31.609 55.016 31.621 C 54.728 31.621 54.517 31.627 54.385 31.639 L 54.385 30.25 L 63.401 30.25 L 63.51 33.749 L 62.319 33.749 C 62.319 33.088 62.205 32.589 61.977 32.252 C 61.748 31.916 61.466 31.693 61.129 31.585 C 60.793 31.465 60.462 31.411 60.137 31.423 L 59.488 31.441 C 59.236 31.441 59.019 31.477 58.839 31.549 C 58.659 31.609 58.52 31.753 58.424 31.982 C 58.328 32.198 58.28 32.541 58.28 33.01 L 58.28 35.714 L 60.39 35.714 L 60.318 34.146 L 61.706 34.146 L 61.706 38.528 Z M 75.808 34.29 C 75.7 33.617 75.508 33.058 75.231 32.613 C 74.955 32.156 74.6 31.813 74.167 31.585 C 73.747 31.357 73.254 31.248 72.689 31.26 C 72.172 31.26 71.715 31.404 71.318 31.693 C 70.933 31.982 70.741 32.354 70.741 32.811 C 70.741 33.184 70.843 33.508 71.048 33.785 C 71.264 34.061 71.589 34.32 72.021 34.56 C 72.454 34.801 73.001 35.059 73.662 35.336 C 74.119 35.516 74.588 35.727 75.069 35.967 C 75.55 36.207 75.995 36.496 76.403 36.832 C 76.812 37.157 77.143 37.542 77.395 37.986 C 77.648 38.419 77.774 38.93 77.774 39.519 C 77.774 40.229 77.581 40.86 77.197 41.413 C 76.812 41.966 76.271 42.399 75.574 42.711 C 74.889 43.012 74.083 43.162 73.157 43.162 C 72.677 43.162 72.154 43.084 71.589 42.928 C 71.036 42.783 70.513 42.567 70.02 42.278 L 70.074 43.036 L 68.685 43.036 L 68.685 38.816 L 69.875 38.816 C 70.044 39.826 70.429 40.589 71.03 41.106 C 71.643 41.611 72.37 41.864 73.212 41.864 C 73.644 41.864 74.023 41.785 74.348 41.629 C 74.672 41.473 74.925 41.269 75.105 41.016 C 75.285 40.752 75.375 40.469 75.375 40.169 C 75.375 39.748 75.225 39.399 74.925 39.123 C 74.636 38.846 74.269 38.612 73.825 38.419 C 73.392 38.227 72.947 38.041 72.49 37.86 C 71.913 37.62 71.372 37.367 70.867 37.103 C 70.374 36.827 69.942 36.514 69.569 36.165 C 69.196 35.817 68.908 35.42 68.703 34.975 C 68.499 34.518 68.397 33.995 68.397 33.406 C 68.397 33.033 68.469 32.649 68.613 32.252 C 68.757 31.843 68.992 31.471 69.316 31.134 C 69.641 30.785 70.074 30.503 70.615 30.287 C 71.156 30.07 71.823 29.962 72.616 29.962 C 73.097 29.962 73.62 30.034 74.185 30.178 C 74.762 30.323 75.255 30.539 75.664 30.828 L 75.592 30.088 L 76.998 30.088 L 76.998 34.29 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 0.014 25.227 C 0.379 25.208 0.629 25.126 0.764 24.982 C 0.898 24.828 0.971 24.621 0.98 24.362 C 0.999 24.093 1.009 23.79 1.009 23.453 L 1.009 17.221 C 1.009 17.029 1.014 16.846 1.024 16.673 C 1.033 16.49 1.043 16.326 1.052 16.182 C 0.879 16.192 0.706 16.201 0.533 16.211 C 0.36 16.221 0.187 16.23 0.014 16.24 L 0.014 15.605 C 0.523 15.595 1.048 15.591 1.586 15.591 C 2.125 15.581 2.673 15.576 3.231 15.576 C 4.164 15.576 4.947 15.682 5.582 15.894 C 6.217 16.105 6.703 16.418 7.039 16.831 C 7.376 17.245 7.559 17.759 7.587 18.375 C 7.607 18.75 7.549 19.144 7.414 19.558 C 7.289 19.962 7.049 20.347 6.693 20.712 C 6.347 21.068 5.856 21.356 5.222 21.578 C 4.587 21.799 3.774 21.909 2.784 21.909 C 2.745 21.909 2.673 21.909 2.567 21.909 C 2.461 21.909 2.36 21.905 2.264 21.895 L 2.264 23.987 C 2.264 24.246 2.259 24.472 2.25 24.665 C 2.25 24.848 2.24 25.001 2.221 25.126 C 2.375 25.117 2.524 25.107 2.668 25.098 C 2.812 25.088 2.957 25.083 3.101 25.083 C 3.255 25.073 3.404 25.064 3.548 25.054 L 3.548 25.703 L 0.014 25.703 Z M 2.264 21.303 C 2.447 21.323 2.601 21.337 2.726 21.347 C 2.86 21.347 3.019 21.347 3.202 21.347 C 3.75 21.347 4.25 21.241 4.702 21.029 C 5.154 20.808 5.515 20.496 5.784 20.092 C 6.053 19.688 6.188 19.207 6.188 18.649 C 6.188 18.197 6.116 17.812 5.972 17.495 C 5.827 17.168 5.621 16.908 5.351 16.716 C 5.092 16.514 4.779 16.37 4.414 16.283 C 4.048 16.187 3.644 16.139 3.202 16.139 C 2.865 16.139 2.63 16.211 2.495 16.355 C 2.37 16.5 2.298 16.701 2.279 16.961 C 2.269 17.211 2.264 17.509 2.264 17.856 Z M 14.201 25.934 C 13.287 25.934 12.504 25.78 11.85 25.473 C 11.196 25.165 10.662 24.756 10.248 24.247 C 9.844 23.727 9.546 23.155 9.354 22.53 C 9.162 21.905 9.065 21.279 9.065 20.654 C 9.065 20.048 9.166 19.438 9.368 18.822 C 9.57 18.197 9.878 17.625 10.292 17.106 C 10.715 16.586 11.239 16.168 11.864 15.85 C 12.499 15.533 13.239 15.374 14.086 15.374 C 14.971 15.374 15.735 15.533 16.38 15.85 C 17.024 16.168 17.553 16.591 17.966 17.12 C 18.39 17.639 18.702 18.207 18.904 18.822 C 19.116 19.438 19.222 20.048 19.222 20.654 C 19.222 21.251 19.121 21.861 18.919 22.487 C 18.716 23.102 18.404 23.674 17.981 24.203 C 17.567 24.723 17.048 25.141 16.423 25.458 C 15.798 25.776 15.057 25.934 14.201 25.934 Z M 14.23 25.343 C 14.826 25.343 15.346 25.218 15.788 24.968 C 16.23 24.708 16.596 24.367 16.884 23.943 C 17.183 23.511 17.404 23.035 17.548 22.515 C 17.702 21.986 17.779 21.457 17.779 20.928 C 17.779 20.332 17.697 19.741 17.534 19.154 C 17.37 18.567 17.13 18.033 16.812 17.553 C 16.495 17.072 16.101 16.687 15.629 16.399 C 15.168 16.1 14.639 15.951 14.042 15.951 C 13.446 15.951 12.922 16.081 12.47 16.341 C 12.028 16.601 11.657 16.947 11.359 17.38 C 11.071 17.803 10.849 18.279 10.696 18.808 C 10.551 19.327 10.479 19.856 10.479 20.395 C 10.479 20.924 10.551 21.477 10.696 22.054 C 10.849 22.631 11.08 23.169 11.388 23.669 C 11.696 24.17 12.085 24.573 12.556 24.881 C 13.028 25.189 13.586 25.343 14.23 25.343 Z M 26.751 18.664 C 26.722 18.202 26.612 17.764 26.419 17.351 C 26.227 16.937 25.948 16.601 25.583 16.341 C 25.217 16.081 24.751 15.951 24.183 15.951 C 23.587 15.951 23.13 16.12 22.813 16.456 C 22.495 16.793 22.337 17.187 22.337 17.639 C 22.337 18.043 22.452 18.385 22.683 18.664 C 22.914 18.933 23.212 19.173 23.577 19.385 C 23.952 19.587 24.347 19.784 24.76 19.976 C 25.126 20.14 25.491 20.318 25.857 20.51 C 26.222 20.693 26.554 20.904 26.852 21.145 C 27.15 21.385 27.386 21.674 27.559 22.01 C 27.742 22.337 27.833 22.732 27.833 23.193 C 27.833 23.722 27.698 24.194 27.429 24.607 C 27.17 25.021 26.79 25.348 26.29 25.588 C 25.789 25.819 25.179 25.934 24.457 25.934 C 24.025 25.934 23.577 25.872 23.116 25.747 C 22.654 25.622 22.245 25.439 21.89 25.199 L 21.962 25.819 L 21.212 25.819 L 21.125 22.746 L 21.688 22.746 C 21.736 23.593 22.029 24.237 22.568 24.679 C 23.106 25.112 23.755 25.328 24.515 25.328 C 24.89 25.328 25.236 25.261 25.554 25.127 C 25.871 24.982 26.121 24.776 26.304 24.506 C 26.496 24.237 26.592 23.91 26.592 23.525 C 26.592 23.092 26.477 22.732 26.246 22.443 C 26.015 22.155 25.717 21.905 25.352 21.693 C 24.986 21.481 24.597 21.279 24.183 21.087 C 23.818 20.924 23.457 20.751 23.101 20.568 C 22.745 20.385 22.418 20.178 22.12 19.947 C 21.832 19.707 21.596 19.423 21.413 19.096 C 21.24 18.769 21.154 18.375 21.154 17.913 C 21.154 17.663 21.197 17.394 21.284 17.106 C 21.37 16.817 21.519 16.543 21.731 16.283 C 21.952 16.014 22.25 15.798 22.625 15.634 C 23.01 15.461 23.496 15.374 24.082 15.374 C 24.448 15.374 24.856 15.427 25.309 15.533 C 25.77 15.629 26.198 15.822 26.592 16.11 L 26.535 15.49 L 27.271 15.49 L 27.271 18.664 Z M 37.259 18.649 C 37.249 18.082 37.192 17.61 37.086 17.235 C 36.98 16.86 36.792 16.581 36.523 16.399 C 36.263 16.206 35.884 16.115 35.383 16.125 L 34.157 16.125 L 34.143 23.987 C 34.143 24.247 34.138 24.473 34.128 24.665 C 34.128 24.848 34.119 25.001 34.1 25.127 C 34.301 25.117 34.499 25.107 34.691 25.098 C 34.893 25.088 35.095 25.078 35.297 25.069 L 35.297 25.704 L 31.907 25.704 L 31.907 25.227 C 32.272 25.208 32.517 25.122 32.642 24.968 C 32.777 24.814 32.849 24.607 32.859 24.348 C 32.878 24.078 32.888 23.78 32.888 23.453 L 32.902 16.139 L 31.416 16.153 C 30.81 16.153 30.382 16.355 30.132 16.759 C 29.882 17.163 29.757 17.793 29.757 18.649 L 29.223 18.649 L 29.31 15.605 L 37.721 15.605 L 37.807 18.649 Z M 47.338 18.822 C 47.242 17.918 46.924 17.216 46.386 16.716 C 45.857 16.216 45.174 15.966 44.337 15.966 C 43.827 15.966 43.347 16.076 42.895 16.298 C 42.452 16.509 42.063 16.817 41.726 17.221 C 41.389 17.625 41.125 18.111 40.933 18.678 C 40.74 19.245 40.644 19.885 40.644 20.597 C 40.644 21.501 40.817 22.299 41.163 22.991 C 41.51 23.684 41.976 24.222 42.563 24.607 C 43.149 24.992 43.799 25.184 44.51 25.184 C 45.135 25.184 45.751 25.045 46.357 24.766 C 46.963 24.477 47.458 24.064 47.843 23.525 L 48.218 23.828 C 47.804 24.396 47.357 24.833 46.876 25.141 C 46.395 25.449 45.914 25.656 45.434 25.761 C 44.962 25.877 44.53 25.934 44.135 25.934 C 43.414 25.934 42.75 25.805 42.144 25.545 C 41.548 25.285 41.029 24.925 40.586 24.463 C 40.154 23.992 39.817 23.448 39.577 22.833 C 39.346 22.208 39.23 21.534 39.23 20.813 C 39.23 20.13 39.331 19.467 39.533 18.822 C 39.745 18.178 40.057 17.596 40.471 17.077 C 40.884 16.557 41.404 16.144 42.029 15.836 C 42.664 15.528 43.399 15.374 44.236 15.374 C 44.775 15.374 45.284 15.447 45.765 15.591 C 46.246 15.735 46.708 15.956 47.15 16.254 L 47.078 15.475 L 47.857 15.475 L 47.857 18.822 Z M 48.859 25.703 L 48.859 25.227 C 49.148 25.227 49.369 25.151 49.523 24.997 C 49.677 24.843 49.802 24.631 49.898 24.362 C 50.004 24.093 50.124 23.78 50.258 23.424 L 53.23 15.331 L 53.576 15.331 L 56.794 23.54 C 56.871 23.741 56.957 24.001 57.053 24.319 C 57.149 24.636 57.188 24.905 57.169 25.127 C 57.332 25.117 57.496 25.107 57.659 25.098 C 57.823 25.088 57.986 25.078 58.15 25.069 L 58.15 25.703 L 54.846 25.703 L 54.846 25.227 C 55.212 25.218 55.452 25.136 55.567 24.982 C 55.683 24.828 55.726 24.646 55.697 24.434 C 55.668 24.222 55.62 24.03 55.553 23.857 L 55.048 22.501 L 51.297 22.587 L 50.792 24.131 C 50.725 24.362 50.662 24.545 50.605 24.679 C 50.557 24.814 50.499 24.963 50.432 25.127 C 50.624 25.117 50.812 25.107 50.994 25.098 C 51.187 25.088 51.374 25.078 51.557 25.069 L 51.557 25.703 Z M 51.514 21.967 L 54.846 21.967 L 53.822 19.212 C 53.716 18.913 53.605 18.62 53.49 18.332 C 53.384 18.033 53.278 17.735 53.173 17.437 L 53.144 17.437 C 53.048 17.707 52.947 17.976 52.841 18.245 C 52.745 18.514 52.644 18.789 52.538 19.067 Z M 59.202 25.704 L 59.202 25.227 C 59.568 25.208 59.818 25.127 59.953 24.982 C 60.087 24.828 60.159 24.622 60.169 24.362 C 60.188 24.093 60.198 23.79 60.198 23.453 L 60.198 17.221 C 60.198 17.029 60.203 16.846 60.212 16.673 C 60.222 16.49 60.231 16.327 60.241 16.182 C 60.068 16.192 59.895 16.201 59.722 16.211 C 59.549 16.221 59.375 16.23 59.202 16.24 L 59.202 15.605 C 59.741 15.596 60.284 15.586 60.833 15.576 C 61.39 15.567 61.948 15.572 62.506 15.591 C 63.439 15.6 64.189 15.711 64.756 15.923 C 65.334 16.125 65.757 16.418 66.026 16.803 C 66.295 17.178 66.43 17.635 66.43 18.173 C 66.44 18.548 66.367 18.933 66.213 19.327 C 66.069 19.712 65.8 20.058 65.406 20.366 C 65.021 20.674 64.463 20.904 63.732 21.058 C 63.925 21.193 64.093 21.366 64.237 21.578 C 64.381 21.789 64.545 22.035 64.728 22.313 L 65.709 23.857 C 65.872 24.117 66.031 24.352 66.185 24.564 C 66.339 24.766 66.516 24.929 66.718 25.054 C 66.92 25.17 67.17 25.227 67.469 25.227 L 67.469 25.704 L 65.651 25.704 C 65.372 25.454 65.136 25.203 64.944 24.953 C 64.761 24.703 64.569 24.42 64.367 24.102 L 63.4 22.559 C 63.275 22.357 63.131 22.126 62.968 21.866 C 62.814 21.597 62.636 21.371 62.434 21.188 C 62.28 21.198 62.116 21.203 61.943 21.203 C 61.78 21.203 61.616 21.198 61.453 21.188 L 61.453 23.987 C 61.453 24.247 61.448 24.473 61.438 24.665 C 61.438 24.848 61.429 25.001 61.41 25.127 C 61.525 25.117 61.64 25.112 61.756 25.112 C 61.871 25.102 61.987 25.093 62.102 25.083 C 62.217 25.074 62.333 25.069 62.448 25.069 L 62.448 25.704 Z M 62.347 20.654 C 62.876 20.635 63.338 20.549 63.732 20.395 C 64.136 20.241 64.453 19.995 64.684 19.659 C 64.915 19.322 65.031 18.88 65.031 18.332 C 65.031 17.966 64.978 17.649 64.872 17.38 C 64.776 17.101 64.622 16.87 64.41 16.687 C 64.199 16.504 63.929 16.37 63.602 16.283 C 63.275 16.187 62.891 16.139 62.448 16.139 C 62.092 16.139 61.842 16.211 61.698 16.355 C 61.563 16.5 61.487 16.701 61.467 16.961 C 61.458 17.211 61.453 17.509 61.453 17.856 L 61.453 20.625 C 61.607 20.635 61.751 20.645 61.886 20.654 C 62.03 20.664 62.184 20.664 62.347 20.654 Z M 68.694 25.227 C 69.059 25.208 69.309 25.127 69.444 24.982 C 69.579 24.828 69.651 24.622 69.66 24.362 C 69.68 24.093 69.689 23.79 69.689 23.453 L 69.689 17.221 C 69.689 17.029 69.694 16.846 69.704 16.673 C 69.713 16.49 69.723 16.327 69.733 16.182 C 69.559 16.192 69.386 16.201 69.213 16.211 C 69.04 16.221 68.867 16.23 68.694 16.24 L 68.694 15.605 L 72.098 15.591 C 72.964 15.591 73.757 15.692 74.479 15.894 C 75.2 16.096 75.82 16.408 76.34 16.831 C 76.869 17.245 77.273 17.774 77.552 18.418 C 77.84 19.053 77.984 19.803 77.984 20.669 C 77.984 21.332 77.869 21.967 77.638 22.573 C 77.407 23.179 77.061 23.718 76.599 24.189 C 76.138 24.65 75.561 25.021 74.868 25.3 C 74.185 25.569 73.392 25.704 72.488 25.704 L 68.694 25.704 Z M 70.944 24.001 C 70.944 24.261 70.94 24.482 70.93 24.665 C 70.93 24.848 70.92 25.001 70.901 25.126 C 71.161 25.136 71.396 25.146 71.608 25.155 C 71.829 25.155 72.012 25.155 72.156 25.155 C 72.31 25.155 72.406 25.155 72.445 25.155 C 73.07 25.155 73.632 25.04 74.133 24.809 C 74.642 24.578 75.075 24.261 75.431 23.857 C 75.796 23.443 76.075 22.962 76.268 22.414 C 76.47 21.856 76.571 21.255 76.571 20.611 C 76.571 19.697 76.402 18.909 76.066 18.245 C 75.739 17.572 75.234 17.053 74.551 16.687 C 73.868 16.312 72.998 16.124 71.94 16.124 C 71.584 16.124 71.334 16.197 71.19 16.341 C 71.055 16.485 70.978 16.687 70.959 16.947 C 70.949 17.206 70.944 17.509 70.944 17.856 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:9849624095,withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-okntls\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4445\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c1pyl1\",\"data-framer-name\":\"Newsletter\",layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4446\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"16px\"},children:\"Sign up to receive new listings and open houses. \"})})}),className:\"framer-1847qa5\",\"data-framer-name\":\"Join our newsletter to stay up to date on features and releases.\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4451\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-54nsaz-container\",layoutDependency:layoutDependency,layoutId:\"ssDkCk2PS-container\",children:/*#__PURE__*/_jsx(Mailchimp,{button:{buttonFont:{},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"rgb(51, 51, 51)\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100},font:{},gap:10,height:\"100%\",id:\"ssDkCk2PS\",input:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgb(235, 235, 235)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"horizontal\",layoutId:\"ssDkCk2PS\",mailchimpURL:\"https://postcardhomes.us13.list-manage.com/subscribe/post?u=f8324b12f153f8eb3396b4051&amp;id=436d4bbe54&amp;f_id=00b0c2e1f0\",redirectAs:\"link\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12068g2\",\"data-framer-name\":\"Actions\",layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4452\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\"},children:\"By subscribing you agree to receive updates from our company.\"})}),className:\"framer-6f7wkr\",\"data-framer-name\":\"By subscribing you agree to with our Privacy Policy and provide consent to receive updates from our company.\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4456\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fcmfta\",\"data-framer-name\":\"Socials\",layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4484\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7lvhu8\",\"data-framer-name\":\"Social Links\",layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4486\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-157ey4f\",\"data-styles-preset\":\"l_UYznPLZ\",children:\"Home\"})})})}),className:\"framer-8ju88n\",\"data-framer-name\":\"Follow Us\",fonts:[\"GF;Roboto-700\"],layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4485\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UnuGNvfrb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-157ey4f\",\"data-styles-preset\":\"l_UYznPLZ\",children:\"Home\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FK_VhGXeo\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-157ey4f\",\"data-styles-preset\":\"l_UYznPLZ\",children:\"Contact\"})})})}),className:\"framer-4220oz\",\"data-framer-name\":\"Facebook\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4489\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KmFyPERh2\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-157ey4f\",\"data-styles-preset\":\"l_UYznPLZ\",children:\"Sales History\"})})})}),className:\"framer-6tkjji\",\"data-framer-name\":\"Instagram\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4492\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TMcdjn3tb\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-157ey4f\",\"data-styles-preset\":\"l_UYznPLZ\",children:\"Buyers Guide\"})})})}),className:\"framer-1jmmup7\",\"data-framer-name\":\"LinkedIn\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4495\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"su3EB3bJz\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-157ey4f\",\"data-styles-preset\":\"l_UYznPLZ\",children:\"Sellers Guide\"})})})}),className:\"framer-l8b6r5\",\"data-framer-name\":\"LinkedIn\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"c7tzBya_y\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dU0iRvNC1\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-157ey4f\",\"data-styles-preset\":\"l_UYznPLZ\",children:\"About us\"})})})}),className:\"framer-1qc84k7\",\"data-framer-name\":\"Instagram\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"fRpP9VQUH\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:417,pixelWidth:1500,sizes:\"467px\",src:\"https://framerusercontent.com/images/s2Z6C2g45AJDey8qlZ5OujrzEU.png\",srcSet:\"https://framerusercontent.com/images/s2Z6C2g45AJDey8qlZ5OujrzEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/s2Z6C2g45AJDey8qlZ5OujrzEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s2Z6C2g45AJDey8qlZ5OujrzEU.png 1500w\"},className:\"framer-1heurvi\",\"data-framer-name\":\"image 4\",layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4496\",...addPropertyOverrides({UnuGNvfrb:{background:{alt:\"\",fit:\"fill\",pixelHeight:417,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - ${N6kQOkg6N*2}px)`,src:\"https://framerusercontent.com/images/s2Z6C2g45AJDey8qlZ5OujrzEU.png\",srcSet:\"https://framerusercontent.com/images/s2Z6C2g45AJDey8qlZ5OujrzEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/s2Z6C2g45AJDey8qlZ5OujrzEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s2Z6C2g45AJDey8qlZ5OujrzEU.png 1500w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19helr2\",\"data-framer-name\":\"Credits\",layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4497\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13be9g4\",\"data-border\":true,\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4498\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(0, 0, 0)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nnxuk8\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4499\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"\\xa9 2024 Postcard Homes. All rights reserved.\"})}),className:\"framer-u2rb3v\",\"data-framer-name\":\"\\xa9 2023 Relume. All rights reserved.\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"I816:3229;740:4500\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-r7Yxa.framer-2tfk76, .framer-r7Yxa .framer-2tfk76 { display: block; }\",\".framer-r7Yxa.framer-4gbb15 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: var(--1ub87w3); position: relative; width: 1440px; }\",\".framer-r7Yxa .framer-xrbteg { flex: none; height: 45px; position: relative; text-decoration: none; width: 90px; }\",\".framer-r7Yxa .framer-okntls { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-r7Yxa .framer-1c1pyl1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-r7Yxa .framer-1847qa5, .framer-r7Yxa .framer-6f7wkr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 588px; word-break: break-word; word-wrap: break-word; }\",\".framer-r7Yxa .framer-54nsaz-container { flex: none; height: auto; position: relative; width: 430px; }\",\".framer-r7Yxa .framer-12068g2 { 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: 100%; }\",\".framer-r7Yxa .framer-fcmfta { align-content: flex-end; align-items: flex-end; 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; width: 1px; }\",\".framer-r7Yxa .framer-7lvhu8 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-r7Yxa .framer-8ju88n { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-r7Yxa .framer-4220oz, .framer-r7Yxa .framer-6tkjji, .framer-r7Yxa .framer-1jmmup7, .framer-r7Yxa .framer-l8b6r5, .framer-r7Yxa .framer-1qc84k7, .framer-r7Yxa .framer-u2rb3v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-r7Yxa .framer-1heurvi { aspect-ratio: 5.795918367346939 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); position: relative; width: 467px; }\",\".framer-r7Yxa .framer-19helr2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-r7Yxa .framer-13be9g4 { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-r7Yxa .framer-1nnxuk8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-r7Yxa.framer-4gbb15, .framer-r7Yxa .framer-okntls, .framer-r7Yxa .framer-1c1pyl1, .framer-r7Yxa .framer-12068g2, .framer-r7Yxa .framer-fcmfta, .framer-r7Yxa .framer-7lvhu8, .framer-r7Yxa .framer-19helr2, .framer-r7Yxa .framer-1nnxuk8 { gap: 0px; } .framer-r7Yxa.framer-4gbb15 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-r7Yxa.framer-4gbb15 > :first-child, .framer-r7Yxa .framer-1c1pyl1 > :first-child, .framer-r7Yxa .framer-12068g2 > :first-child, .framer-r7Yxa .framer-fcmfta > :first-child, .framer-r7Yxa .framer-7lvhu8 > :first-child, .framer-r7Yxa .framer-19helr2 > :first-child { margin-top: 0px; } .framer-r7Yxa.framer-4gbb15 > :last-child, .framer-r7Yxa .framer-1c1pyl1 > :last-child, .framer-r7Yxa .framer-12068g2 > :last-child, .framer-r7Yxa .framer-fcmfta > :last-child, .framer-r7Yxa .framer-7lvhu8 > :last-child, .framer-r7Yxa .framer-19helr2 > :last-child { margin-bottom: 0px; } .framer-r7Yxa .framer-okntls > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-r7Yxa .framer-okntls > :first-child, .framer-r7Yxa .framer-1nnxuk8 > :first-child { margin-left: 0px; } .framer-r7Yxa .framer-okntls > :last-child, .framer-r7Yxa .framer-1nnxuk8 > :last-child { margin-right: 0px; } .framer-r7Yxa .framer-1c1pyl1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-r7Yxa .framer-12068g2 > *, .framer-r7Yxa .framer-fcmfta > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-r7Yxa .framer-7lvhu8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-r7Yxa .framer-19helr2 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-r7Yxa .framer-1nnxuk8 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } }\",\".framer-r7Yxa.framer-v-1igjenv.framer-4gbb15 { width: 700px; }\",\".framer-r7Yxa.framer-v-1igjenv .framer-12068g2 { width: 338px; }\",\".framer-r7Yxa.framer-v-1igjenv .framer-6f7wkr { width: 405px; }\",\".framer-r7Yxa.framer-v-1igjenv .framer-8ju88n { align-self: unset; width: 338px; }\",\".framer-r7Yxa.framer-v-1suuzfv.framer-4gbb15 { width: 300px; }\",\".framer-r7Yxa.framer-v-1suuzfv .framer-okntls { flex-direction: column; gap: 30px; }\",\".framer-r7Yxa.framer-v-1suuzfv .framer-1c1pyl1 { flex: none; order: 1; width: 100%; }\",\".framer-r7Yxa.framer-v-1suuzfv .framer-1847qa5, .framer-r7Yxa.framer-v-1suuzfv .framer-6f7wkr { width: 100%; }\",\".framer-r7Yxa.framer-v-1suuzfv .framer-fcmfta { align-content: flex-start; align-items: flex-start; flex: none; order: 0; width: 100%; }\",\".framer-r7Yxa.framer-v-1suuzfv .framer-7lvhu8 { align-content: flex-start; align-items: flex-start; gap: 15px; }\",\".framer-r7Yxa.framer-v-1suuzfv .framer-1heurvi { height: var(--framer-aspect-ratio-supported, 52px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-r7Yxa.framer-v-1suuzfv .framer-okntls, .framer-r7Yxa.framer-v-1suuzfv .framer-7lvhu8 { gap: 0px; } .framer-r7Yxa.framer-v-1suuzfv .framer-okntls > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-r7Yxa.framer-v-1suuzfv .framer-okntls > :first-child, .framer-r7Yxa.framer-v-1suuzfv .framer-7lvhu8 > :first-child { margin-top: 0px; } .framer-r7Yxa.framer-v-1suuzfv .framer-okntls > :last-child, .framer-r7Yxa.framer-v-1suuzfv .framer-7lvhu8 > :last-child { margin-bottom: 0px; } .framer-r7Yxa.framer-v-1suuzfv .framer-7lvhu8 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",...sharedStyle.css,'.framer-r7Yxa[data-border=\"true\"]::after, .framer-r7Yxa [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 623.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]},\"hjV20Fwa4\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]},\"UnuGNvfrb\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]}}}\n * @framerVariables {\"N6kQOkg6N\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQiHSkbeZ1=withCSS(Component,css,\"framer-r7Yxa\");export default FramerQiHSkbeZ1;FramerQiHSkbeZ1.displayName=\"Footer\";FramerQiHSkbeZ1.defaultProps={height:623.5,width:1440};addPropertyControls(FramerQiHSkbeZ1,{variant:{options:[\"JupSAEs3d\",\"hjV20Fwa4\",\"UnuGNvfrb\"],optionTitles:[\"Desktop \",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},N6kQOkg6N:{defaultValue:\"80px 0px 80px 0px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerQiHSkbeZ1,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Me4GZLCzYlKw.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmWUlvBh05IsDqlA.woff2\",weight:\"700\"}]},...MailchimpFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQiHSkbeZ1\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]},\\\"hjV20Fwa4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]},\\\"UnuGNvfrb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]}}}\",\"framerVariables\":\"{\\\"N6kQOkg6N\\\":\\\"padding\\\"}\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"623.5\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QiHSkbeZ1.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={Js2C16ZZT:{hover:true,pressed:true},XTt_RQDX9:{pressed:true}};const cycleOrder=[\"Js2C16ZZT\",\"XTt_RQDX9\"];const serializationHash=\"framer-MtbCZ\";const variantClassNames={Js2C16ZZT:\"framer-v-t6zun1\",XTt_RQDX9:\"framer-v-9t3qc1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Js2C16ZZT\",Phone:\"XTt_RQDX9\"};const getProps=({background,backgroundPressed,fontSize,height,hoverBackground,hoverTextColor,id,link,textColor,title,width,...props})=>{return{...props,AvtAp89ow:hoverBackground??props.AvtAp89ow??\"var(--token-03aa428a-ef4f-4a7c-a9ec-832783fa1ac2, rgb(34, 86, 112))\",kUM4cyIPV:backgroundPressed??props.kUM4cyIPV??\"var(--token-5d29b89b-7f60-427a-9f64-0f50cce7828e, rgb(75, 111, 129))\",MR6qPvNNd:hoverTextColor??props.MR6qPvNNd??\"rgb(255, 255, 255)\",PSitQYH_k:textColor??props.PSitQYH_k??\"rgb(255, 255, 255)\",T3Y3S9E1K:fontSize??props.T3Y3S9E1K??16,TfXLJqf_W:title??props.TfXLJqf_W??\"Button\",uaF_RSddM:background??props.uaF_RSddM??\"var(--token-5d29b89b-7f60-427a-9f64-0f50cce7828e, rgb(75, 111, 129))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Js2C16ZZT\",xsszW39od:link??props.xsszW39od};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,uaF_RSddM,TfXLJqf_W,T3Y3S9E1K,xsszW39od,kUM4cyIPV,PSitQYH_k,AvtAp89ow,MR6qPvNNd,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Js2C16ZZT\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:xsszW39od,motionChild:true,nodeId:\"Js2C16ZZT\",scopeId:\"FlMXIkOV8\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-t6zun1\",className,classNames)} framer-1d0aa8z`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Js2C16ZZT\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:uaF_RSddM,borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,boxShadow:\"0px 2px 5px 1px rgba(0, 0, 0, 0.25)\",...style},variants:{\"Js2C16ZZT-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-03aa428a-ef4f-4a7c-a9ec-832783fa1ac2, rgb(34, 86, 112))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:AvtAp89ow,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.25)\"},\"Js2C16ZZT-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:kUM4cyIPV,boxShadow:\"none\"},\"XTt_RQDX9-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(21, 53, 69)\"}},...addPropertyOverrides({\"Js2C16ZZT-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"Js2C16ZZT-pressed\":{\"data-framer-name\":undefined},\"XTt_RQDX9-pressed\":{\"data-framer-name\":undefined},XTt_RQDX9:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TG9yYS1tZWRpdW0=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"calc(var(--variable-reference-T3Y3S9E1K-FlMXIkOV8) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-PSitQYH_k-FlMXIkOV8))\"},children:\"Button\"})}),className:\"framer-flunqr\",fonts:[\"FS;Lora-medium\"],layoutDependency:layoutDependency,layoutId:\"xPjD793ia\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-PSitQYH_k-FlMXIkOV8)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-MR6qPvNNd-FlMXIkOV8\":MR6qPvNNd,\"--variable-reference-PSitQYH_k-FlMXIkOV8\":PSitQYH_k,\"--variable-reference-T3Y3S9E1K-FlMXIkOV8\":T3Y3S9E1K},text:TfXLJqf_W,variants:{\"Js2C16ZZT-hover\":{\"--extracted-r6o4lv\":\"var(--variable-reference-MR6qPvNNd-FlMXIkOV8)\",\"--variable-reference-MR6qPvNNd-FlMXIkOV8\":MR6qPvNNd}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"Js2C16ZZT-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TG9yYS1tZWRpdW0=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"calc(var(--variable-reference-T3Y3S9E1K-FlMXIkOV8) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-MR6qPvNNd-FlMXIkOV8))\"},children:\"Button\"})})},XTt_RQDX9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TG9yYS1tZWRpdW0=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-PSitQYH_k-FlMXIkOV8))\"},children:\"Button\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MtbCZ.framer-1d0aa8z, .framer-MtbCZ .framer-1d0aa8z { display: block; }\",\".framer-MtbCZ.framer-t6zun1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 20px 10px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-MtbCZ .framer-flunqr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MtbCZ.framer-t6zun1 { gap: 0px; } .framer-MtbCZ.framer-t6zun1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MtbCZ.framer-t6zun1 > :first-child { margin-left: 0px; } .framer-MtbCZ.framer-t6zun1 > :last-child { margin-right: 0px; } }\",\".framer-MtbCZ.framer-v-9t3qc1.framer-t6zun1 { padding: 6px 12px 6px 12px; }\",'.framer-MtbCZ[data-border=\"true\"]::after, .framer-MtbCZ [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 44\n * @framerIntrinsicWidth 91.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"XTt_RQDX9\":{\"layout\":[\"auto\",\"auto\"]},\"wtOD_mA5t\":{\"layout\":[\"auto\",\"auto\"]},\"OkiTWIuQC\":{\"layout\":[\"auto\",\"auto\"]},\"HMfZA6FED\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"uaF_RSddM\":\"background\",\"TfXLJqf_W\":\"title\",\"T3Y3S9E1K\":\"fontSize\",\"xsszW39od\":\"link\",\"kUM4cyIPV\":\"backgroundPressed\",\"PSitQYH_k\":\"textColor\",\"AvtAp89ow\":\"hoverBackground\",\"MR6qPvNNd\":\"hoverTextColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerFlMXIkOV8=withCSS(Component,css,\"framer-MtbCZ\");export default FramerFlMXIkOV8;FramerFlMXIkOV8.displayName=\"Button MainNav\";FramerFlMXIkOV8.defaultProps={height:44,width:91.5};addPropertyControls(FramerFlMXIkOV8,{variant:{options:[\"Js2C16ZZT\",\"XTt_RQDX9\"],optionTitles:[\"Variant 1\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},uaF_RSddM:{defaultValue:'var(--token-5d29b89b-7f60-427a-9f64-0f50cce7828e, rgb(75, 111, 129)) /* {\"name\":\"Blue Main\"} */',title:\"Background\",type:ControlType.Color},TfXLJqf_W:{defaultValue:\"Button\",displayTextArea:false,title:\"Title\",type:ControlType.String},T3Y3S9E1K:{defaultValue:16,title:\"Font Size\",type:ControlType.Number},xsszW39od:{title:\"Link\",type:ControlType.Link},kUM4cyIPV:{defaultValue:'var(--token-5d29b89b-7f60-427a-9f64-0f50cce7828e, rgb(75, 111, 129)) /* {\"name\":\"Blue Main\"} */',title:\"Background Pressed\",type:ControlType.Color},PSitQYH_k:{defaultValue:\"rgb(255, 255, 255)\",title:\"Text Color\",type:ControlType.Color},AvtAp89ow:{defaultValue:'var(--token-03aa428a-ef4f-4a7c-a9ec-832783fa1ac2, rgb(34, 86, 112)) /* {\"name\":\"Dark Blue\"} */',title:\"Hover Background\",type:ControlType.Color},MR6qPvNNd:{defaultValue:\"rgb(255, 255, 255)\",title:\"Hover Text Color \",type:ControlType.Color}});addFonts(FramerFlMXIkOV8,[{explicitInter:true,fonts:[{family:\"Lora\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UZVLDSVSCU6EHBA34MAMH3Z2RHDHB3QE/2GS24NKY26JCCD3ZHG5B4BSZKB4M5UH3/FKKAYEWGEGLZTIS3AJ3RN5KHPKRTYLGL.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFlMXIkOV8\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"91.5\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"uaF_RSddM\\\":\\\"background\\\",\\\"TfXLJqf_W\\\":\\\"title\\\",\\\"T3Y3S9E1K\\\":\\\"fontSize\\\",\\\"xsszW39od\\\":\\\"link\\\",\\\"kUM4cyIPV\\\":\\\"backgroundPressed\\\",\\\"PSitQYH_k\\\":\\\"textColor\\\",\\\"AvtAp89ow\\\":\\\"hoverBackground\\\",\\\"MR6qPvNNd\\\":\\\"hoverTextColor\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XTt_RQDX9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wtOD_mA5t\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OkiTWIuQC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HMfZA6FED\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"44\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FlMXIkOV8.map", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-MITbk .framer-styles-preset-165ablm:not(.rich-text-wrapper), .framer-MITbk .framer-styles-preset-165ablm.rich-text-wrapper a { --framer-link-current-text-color: #000000; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #333333; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #333333; --framer-link-text-decoration: none; transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-MITbk\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./rDqm1J34p-0.js\";const cycleOrder=[\"QNvhxrVuU\",\"jeeOV9xww\"];const serializationHash=\"framer-28DqV\";const variantClassNames={jeeOV9xww:\"framer-v-b9u6hg\",QNvhxrVuU:\"framer-v-15i9j3k\"};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 valuesByLocaleId={Y30xftvHo:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Logo Black\":\"QNvhxrVuU\",\"Logo White\":\"jeeOV9xww\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"QNvhxrVuU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QNvhxrVuU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:2740,pixelWidth:5148,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/oIyhZVQTTAI2OwTH7RnVXoWQnU.png\",srcSet:\"https://framerusercontent.com/images/oIyhZVQTTAI2OwTH7RnVXoWQnU.png?scale-down-to=512 512w,https://framerusercontent.com/images/oIyhZVQTTAI2OwTH7RnVXoWQnU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oIyhZVQTTAI2OwTH7RnVXoWQnU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/oIyhZVQTTAI2OwTH7RnVXoWQnU.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/oIyhZVQTTAI2OwTH7RnVXoWQnU.png 5148w\"},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-15i9j3k\",className,classNames)} framer-1p1b6ug`,\"data-framer-name\":\"Logo Black\",layoutDependency:layoutDependency,layoutId:\"QNvhxrVuU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({jeeOV9xww:{\"data-framer-name\":\"Logo White\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:2740,pixelWidth:5148,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/wZAEnI6lai1orpb3oW5M5DFq8w.png\",srcSet:\"https://framerusercontent.com/images/wZAEnI6lai1orpb3oW5M5DFq8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/wZAEnI6lai1orpb3oW5M5DFq8w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wZAEnI6lai1orpb3oW5M5DFq8w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wZAEnI6lai1orpb3oW5M5DFq8w.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/wZAEnI6lai1orpb3oW5M5DFq8w.png 5148w\"}}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-28DqV.framer-1p1b6ug, .framer-28DqV .framer-1p1b6ug { display: block; }\",\".framer-28DqV.framer-15i9j3k { height: 50px; overflow: hidden; position: relative; text-decoration: none; width: 103px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 103\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jeeOV9xww\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrDqm1J34p=withCSS(Component,css,\"framer-28DqV\");export default FramerrDqm1J34p;FramerrDqm1J34p.displayName=\"Logo\";FramerrDqm1J34p.defaultProps={height:50,width:103};addPropertyControls(FramerrDqm1J34p,{variant:{options:[\"QNvhxrVuU\",\"jeeOV9xww\"],optionTitles:[\"Logo Black\",\"Logo White\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrDqm1J34p,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrDqm1J34p\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"103\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jeeOV9xww\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"50\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rDqm1J34p.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Vg1uwZCpKZce1Wh43tj0/KXDfUtj6w3xA5KrArn6u/NWoMEXidP.js\";import ButtonMainNav from\"https://framerusercontent.com/modules/pYnVZeoVVpnmTtZe9MLm/G3ra64SagSp2bG5kmycF/FlMXIkOV8.js\";import Logo from\"https://framerusercontent.com/modules/Du2KFZFBqi20LV5JYiYG/x42LZOo4KK7LPbVXJ1P9/rDqm1J34p.js\";import*as localizedValues from\"./uWG6mUv3O-0.js\";const LogoFonts=getFonts(Logo);const ButtonMainNavFonts=getFonts(ButtonMainNav);const LogoControls=getPropertyControls(Logo);const cycleOrder=[\"vpOiGPDnl\",\"oqqBiOyNi\",\"wZko9ix4i\"];const serializationHash=\"framer-2tHXn\";const variantClassNames={oqqBiOyNi:\"framer-v-cd31xb\",vpOiGPDnl:\"framer-v-budzxc\",wZko9ix4i:\"framer-v-10gktvx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={Y30xftvHo:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Logo Black\":\"QNvhxrVuU\",\"Logo White\":\"jeeOV9xww\"};const humanReadableVariantMap={\"Phone Open\":\"wZko9ix4i\",Desktop:\"vpOiGPDnl\",Phone:\"oqqBiOyNi\"};const getProps=({color,height,id,padding,variant1,width,...props})=>{return{...props,aKiqQ5oaw:padding??props.aKiqQ5oaw??\"12px 0px 12px 0px\",DlSeoUDaO:humanReadableEnumMap[variant1]??variant1??props.DlSeoUDaO??\"QNvhxrVuU\",iq2RjPACN:color??props.iq2RjPACN??\"rgb(0, 0, 0)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"vpOiGPDnl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,iq2RjPACN,aKiqQ5oaw,DlSeoUDaO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vpOiGPDnl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1krmsgw=activeVariantCallback(async(...args)=>{setVariant(\"wZko9ix4i\");});const onTapwunrps=activeVariantCallback(async(...args)=>{setVariant(\"oqqBiOyNi\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"oqqBiOyNi\",\"wZko9ix4i\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"oqqBiOyNi\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-budzxc\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"vpOiGPDnl\",ref:ref??ref1,style:{\"--1q2k3vx\":numberToPixelString(aKiqQ5oaw),\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-a8899b18-654f-4700-b008-f55194f45556, rgb(247, 246, 244))\",...style},variants:{oqqBiOyNi:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({oqqBiOyNi:{\"data-border\":true,\"data-framer-name\":\"Phone\"},wZko9ix4i:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xc6b15\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"ZZibP3R4h\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"103px\",...addPropertyOverrides({oqqBiOyNi:{height:38,width:\"78px\"},wZko9ix4i:{height:38,width:\"78px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yaldl0-container\",layoutDependency:layoutDependency,layoutId:\"NyLqG9ysW-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"NyLqG9ysW\",layoutId:\"NyLqG9ysW\",style:{height:\"100%\",width:\"100%\"},variant:DlSeoUDaO,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b9lqec\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"a9O1FKis3\",...addPropertyOverrides({oqqBiOyNi:{\"data-highlight\":true,onTap:onTap1krmsgw},wZko9ix4i:{\"data-highlight\":true,onTap:onTapwunrps}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a87djw\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"LOcVxWgCR\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{wZko9ix4i:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cg5aaj\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"LGeiwJmEL\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{wZko9ix4i:{rotate:45}}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ls7srl\",\"data-framer-name\":\"links\",layoutDependency:layoutDependency,layoutId:\"ZVkQC1S9a\",style:{opacity:1},variants:{oqqBiOyNi:{opacity:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-184bj8x\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"ft0Mi7dw1\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{oqqBiOyNi:{backgroundColor:\"var(--token-a8899b18-654f-4700-b008-f55194f45556, rgb(247, 246, 244))\"},wZko9ix4i:{backgroundColor:\"var(--token-a8899b18-654f-4700-b008-f55194f45556, rgb(247, 246, 244))\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TG9yYS1tZWRpdW0=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KmFyPERh2\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Sales History\"})})})}),className:\"framer-14cvov8\",fonts:[\"FS;Lora-medium\"],layoutDependency:layoutDependency,layoutId:\"HEHtCIzvk\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-iq2RjPACN-uWG6mUv3O)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-iq2RjPACN-uWG6mUv3O\":iq2RjPACN},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oqqBiOyNi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KmFyPERh2\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Sales History\"})})})}),fonts:[\"GF;Roboto Condensed-regular\"]},wZko9ix4i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KmFyPERh2\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Sales History\"})})})}),fonts:[\"GF;Roboto Condensed-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TG9yYS1tZWRpdW0=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dU0iRvNC1\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Our Team\"})})})}),className:\"framer-1xb8qe4\",fonts:[\"FS;Lora-medium\"],layoutDependency:layoutDependency,layoutId:\"VkXnXHt_p\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-iq2RjPACN-uWG6mUv3O)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-iq2RjPACN-uWG6mUv3O\":iq2RjPACN},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oqqBiOyNi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dU0iRvNC1\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Our Team\"})})})}),fonts:[\"GF;Roboto Condensed-regular\"]},wZko9ix4i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dU0iRvNC1\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Our Team\"})})})}),fonts:[\"GF;Roboto Condensed-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TG9yYS1tZWRpdW0=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"su3EB3bJz\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Selling\"})})})}),className:\"framer-19alu47\",fonts:[\"FS;Lora-medium\"],layoutDependency:layoutDependency,layoutId:\"Y1wIEVKO9\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-iq2RjPACN-uWG6mUv3O)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-iq2RjPACN-uWG6mUv3O\":iq2RjPACN},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oqqBiOyNi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"su3EB3bJz\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Selling\"})})})}),fonts:[\"GF;Roboto Condensed-regular\"]},wZko9ix4i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"su3EB3bJz\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Selling\"})})})}),fonts:[\"GF;Roboto Condensed-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TG9yYS1tZWRpdW0=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TMcdjn3tb\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Buying\"})})})}),className:\"framer-rgvhyc\",fonts:[\"FS;Lora-medium\"],layoutDependency:layoutDependency,layoutId:\"FzX9QT3dc\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-iq2RjPACN-uWG6mUv3O)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-iq2RjPACN-uWG6mUv3O\":iq2RjPACN},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oqqBiOyNi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TMcdjn3tb\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Buying\"})})})}),fonts:[\"GF;Roboto Condensed-regular\"]},wZko9ix4i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TMcdjn3tb\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Buying\"})})})}),fonts:[\"GF;Roboto Condensed-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TG9yYS1tZWRpdW0=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yyWKGOLiG\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Testimonials\"})})})}),className:\"framer-1d8srr7\",fonts:[\"FS;Lora-medium\"],layoutDependency:layoutDependency,layoutId:\"LoT8om8sx\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-iq2RjPACN-uWG6mUv3O)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-iq2RjPACN-uWG6mUv3O\":iq2RjPACN},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oqqBiOyNi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yyWKGOLiG\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Testimonials\"})})})}),fonts:[\"GF;Roboto Condensed-regular\"]},wZko9ix4i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-iq2RjPACN-uWG6mUv3O))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yyWKGOLiG\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-165ablm\",\"data-styles-preset\":\"NWoMEXidP\",children:\"Testimonials\"})})})}),fonts:[\"GF;Roboto Condensed-regular\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t9ku4f\",layoutDependency:layoutDependency,layoutId:\"uufS3vnMH\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{oqqBiOyNi:{backgroundColor:\"var(--token-a8899b18-654f-4700-b008-f55194f45556, rgb(247, 246, 244))\"},wZko9ix4i:{backgroundColor:\"var(--token-a8899b18-654f-4700-b008-f55194f45556, rgb(247, 246, 244))\"}},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FK_VhGXeo\"},implicitPathVariables:undefined},{href:{webPageId:\"FK_VhGXeo\"},implicitPathVariables:undefined},{href:{webPageId:\"FK_VhGXeo\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,...addPropertyOverrides({oqqBiOyNi:{width:`max((${componentViewport?.width||\"100vw\"} - ${aKiqQ5oaw*2}px) - 20px, 1px)`},wZko9ix4i:{width:`max((${componentViewport?.width||\"100vw\"} - ${aKiqQ5oaw*2}px) - 20px, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n8bkrw-container\",layoutDependency:layoutDependency,layoutId:\"cBBWyjxdH-container\",children:/*#__PURE__*/_jsx(ButtonMainNav,{AvtAp89ow:\"var(--token-03aa428a-ef4f-4a7c-a9ec-832783fa1ac2, rgb(34, 86, 112))\",height:\"100%\",id:\"cBBWyjxdH\",kUM4cyIPV:\"var(--token-5d29b89b-7f60-427a-9f64-0f50cce7828e, rgb(75, 111, 129))\",layoutId:\"cBBWyjxdH\",MR6qPvNNd:\"rgb(255, 255, 255)\",PSitQYH_k:\"rgb(255, 255, 255)\",T3Y3S9E1K:16,TfXLJqf_W:\"Contact\",uaF_RSddM:\"var(--token-5d29b89b-7f60-427a-9f64-0f50cce7828e, rgb(75, 111, 129))\",variant:\"Js2C16ZZT\",width:\"100%\",xsszW39od:resolvedLinks[0],...addPropertyOverrides({oqqBiOyNi:{style:{width:\"100%\"},xsszW39od:resolvedLinks[1]},wZko9ix4i:{style:{width:\"100%\"},xsszW39od:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-10mhkh8\",\"data-framer-name\":\"Bottom Line\",layoutDependency:layoutDependency,layoutId:\"LP9T6hErp\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"},variants:{wZko9ix4i:{backgroundColor:\"rgb(0, 0, 0)\"}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2tHXn.framer-drx449, .framer-2tHXn .framer-drx449 { display: block; }\",\".framer-2tHXn.framer-budzxc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 75px; justify-content: flex-start; overflow: hidden; padding: var(--1q2k3vx); position: relative; width: 1200px; }\",\".framer-2tHXn .framer-1xc6b15 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-2tHXn .framer-yaldl0-container { flex: none; height: 50px; position: relative; width: 103px; }\",\".framer-2tHXn .framer-b9lqec { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-2tHXn .framer-1a87djw { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2tHXn .framer-1cg5aaj { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2tHXn .framer-1ls7srl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2tHXn .framer-184bj8x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2tHXn .framer-14cvov8, .framer-2tHXn .framer-1xb8qe4, .framer-2tHXn .framer-19alu47, .framer-2tHXn .framer-rgvhyc, .framer-2tHXn .framer-1d8srr7 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-2tHXn .framer-1t9ku4f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2tHXn .framer-n8bkrw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-2tHXn .framer-10mhkh8 { bottom: 0px; flex: none; height: 1px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2tHXn.framer-budzxc, .framer-2tHXn .framer-1xc6b15, .framer-2tHXn .framer-1ls7srl, .framer-2tHXn .framer-184bj8x, .framer-2tHXn .framer-1t9ku4f { gap: 0px; } .framer-2tHXn.framer-budzxc > *, .framer-2tHXn .framer-184bj8x > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-2tHXn.framer-budzxc > :first-child, .framer-2tHXn .framer-1xc6b15 > :first-child, .framer-2tHXn .framer-1ls7srl > :first-child, .framer-2tHXn .framer-184bj8x > :first-child { margin-left: 0px; } .framer-2tHXn.framer-budzxc > :last-child, .framer-2tHXn .framer-1xc6b15 > :last-child, .framer-2tHXn .framer-1ls7srl > :last-child, .framer-2tHXn .framer-184bj8x > :last-child { margin-right: 0px; } .framer-2tHXn .framer-1xc6b15 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2tHXn .framer-1ls7srl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2tHXn .framer-1t9ku4f > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2tHXn .framer-1t9ku4f > :first-child { margin-top: 0px; } .framer-2tHXn .framer-1t9ku4f > :last-child { margin-bottom: 0px; } }\",\".framer-2tHXn.framer-v-cd31xb.framer-budzxc, .framer-2tHXn.framer-v-10gktvx.framer-budzxc { flex-direction: column; gap: 0px; overflow: visible; width: 390px; }\",\".framer-2tHXn.framer-v-cd31xb .framer-1xc6b15, .framer-2tHXn.framer-v-10gktvx .framer-1xc6b15 { gap: unset; justify-content: space-between; order: 0; padding: 0px; width: 100%; }\",\".framer-2tHXn.framer-v-cd31xb .framer-yaldl0-container, .framer-2tHXn.framer-v-10gktvx .framer-yaldl0-container { height: 38px; width: 78px; }\",\".framer-2tHXn.framer-v-cd31xb .framer-b9lqec, .framer-2tHXn.framer-v-10gktvx .framer-b9lqec { cursor: pointer; height: 44px; width: 44px; }\",\".framer-2tHXn.framer-v-cd31xb .framer-1ls7srl, .framer-2tHXn.framer-v-10gktvx .framer-1ls7srl { flex: none; flex-direction: column; gap: 0px; order: 2; width: 100%; }\",\".framer-2tHXn.framer-v-cd31xb .framer-184bj8x { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 10px; justify-content: flex-start; padding: 25px 20px 20px 20px; width: 100%; }\",\".framer-2tHXn.framer-v-cd31xb .framer-14cvov8, .framer-2tHXn.framer-v-cd31xb .framer-1xb8qe4, .framer-2tHXn.framer-v-cd31xb .framer-19alu47, .framer-2tHXn.framer-v-cd31xb .framer-rgvhyc, .framer-2tHXn.framer-v-cd31xb .framer-1d8srr7 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2tHXn.framer-v-cd31xb .framer-1t9ku4f, .framer-2tHXn.framer-v-10gktvx .framer-1t9ku4f { flex-direction: row; padding: 10px; width: 100%; }\",\".framer-2tHXn.framer-v-cd31xb .framer-n8bkrw-container, .framer-2tHXn.framer-v-10gktvx .framer-n8bkrw-container { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2tHXn.framer-v-cd31xb.framer-budzxc, .framer-2tHXn.framer-v-cd31xb .framer-1xc6b15, .framer-2tHXn.framer-v-cd31xb .framer-1ls7srl, .framer-2tHXn.framer-v-cd31xb .framer-184bj8x, .framer-2tHXn.framer-v-cd31xb .framer-1t9ku4f { gap: 0px; } .framer-2tHXn.framer-v-cd31xb.framer-budzxc > *, .framer-2tHXn.framer-v-cd31xb .framer-1ls7srl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2tHXn.framer-v-cd31xb.framer-budzxc > :first-child, .framer-2tHXn.framer-v-cd31xb .framer-1ls7srl > :first-child, .framer-2tHXn.framer-v-cd31xb .framer-184bj8x > :first-child { margin-top: 0px; } .framer-2tHXn.framer-v-cd31xb.framer-budzxc > :last-child, .framer-2tHXn.framer-v-cd31xb .framer-1ls7srl > :last-child, .framer-2tHXn.framer-v-cd31xb .framer-184bj8x > :last-child { margin-bottom: 0px; } .framer-2tHXn.framer-v-cd31xb .framer-1xc6b15 > *, .framer-2tHXn.framer-v-cd31xb .framer-1xc6b15 > :first-child, .framer-2tHXn.framer-v-cd31xb .framer-1xc6b15 > :last-child { margin: 0px; } .framer-2tHXn.framer-v-cd31xb .framer-184bj8x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2tHXn.framer-v-cd31xb .framer-1t9ku4f > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2tHXn.framer-v-cd31xb .framer-1t9ku4f > :first-child { margin-left: 0px; } .framer-2tHXn.framer-v-cd31xb .framer-1t9ku4f > :last-child { margin-right: 0px; } }\",\".framer-2tHXn.framer-v-10gktvx .framer-1a87djw, .framer-2tHXn.framer-v-10gktvx .framer-1cg5aaj { top: calc(54.54545454545456% - 2px / 2); }\",\".framer-2tHXn.framer-v-10gktvx .framer-184bj8x { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 10px; justify-content: flex-start; padding: 40px 20px 20px 20px; width: 100%; }\",\".framer-2tHXn.framer-v-10gktvx .framer-10mhkh8 { order: 1; z-index: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2tHXn.framer-v-10gktvx.framer-budzxc, .framer-2tHXn.framer-v-10gktvx .framer-1xc6b15, .framer-2tHXn.framer-v-10gktvx .framer-1ls7srl, .framer-2tHXn.framer-v-10gktvx .framer-184bj8x, .framer-2tHXn.framer-v-10gktvx .framer-1t9ku4f { gap: 0px; } .framer-2tHXn.framer-v-10gktvx.framer-budzxc > *, .framer-2tHXn.framer-v-10gktvx .framer-1ls7srl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2tHXn.framer-v-10gktvx.framer-budzxc > :first-child, .framer-2tHXn.framer-v-10gktvx .framer-1ls7srl > :first-child, .framer-2tHXn.framer-v-10gktvx .framer-184bj8x > :first-child { margin-top: 0px; } .framer-2tHXn.framer-v-10gktvx.framer-budzxc > :last-child, .framer-2tHXn.framer-v-10gktvx .framer-1ls7srl > :last-child, .framer-2tHXn.framer-v-10gktvx .framer-184bj8x > :last-child { margin-bottom: 0px; } .framer-2tHXn.framer-v-10gktvx .framer-1xc6b15 > *, .framer-2tHXn.framer-v-10gktvx .framer-1xc6b15 > :first-child, .framer-2tHXn.framer-v-10gktvx .framer-1xc6b15 > :last-child { margin: 0px; } .framer-2tHXn.framer-v-10gktvx .framer-184bj8x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2tHXn.framer-v-10gktvx .framer-1t9ku4f > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2tHXn.framer-v-10gktvx .framer-1t9ku4f > :first-child { margin-left: 0px; } .framer-2tHXn.framer-v-10gktvx .framer-1t9ku4f > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-2tHXn[data-border=\"true\"]::after, .framer-2tHXn [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 75\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"oqqBiOyNi\":{\"layout\":[\"fixed\",\"fixed\"]},\"wZko9ix4i\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"iq2RjPACN\":\"color\",\"aKiqQ5oaw\":\"padding\",\"DlSeoUDaO\":\"variant1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruWG6mUv3O=withCSS(Component,css,\"framer-2tHXn\");export default FrameruWG6mUv3O;FrameruWG6mUv3O.displayName=\"Navigation\";FrameruWG6mUv3O.defaultProps={height:75,width:1200};addPropertyControls(FrameruWG6mUv3O,{variant:{options:[\"vpOiGPDnl\",\"oqqBiOyNi\",\"wZko9ix4i\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum},iq2RjPACN:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color},aKiqQ5oaw:{defaultValue:\"12px 0px 12px 0px\",title:\"Padding\",type:ControlType.Padding},DlSeoUDaO:LogoControls?.[\"variant\"]&&{...LogoControls[\"variant\"],defaultValue:\"QNvhxrVuU\",description:undefined,hidden:undefined,title:\"Variant\"}});addFonts(FrameruWG6mUv3O,[{explicitInter:true,fonts:[{family:\"Lora\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UZVLDSVSCU6EHBA34MAMH3Z2RHDHB3QE/2GS24NKY26JCCD3ZHG5B4BSZKB4M5UH3/FKKAYEWGEGLZTIS3AJ3RN5KHPKRTYLGL.woff2\",weight:\"500\"},{family:\"Roboto Condensed\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyovBM731BKMSK.woff2\",weight:\"400\"}]},...LogoFonts,...ButtonMainNavFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruWG6mUv3O\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"iq2RjPACN\\\":\\\"color\\\",\\\"aKiqQ5oaw\\\":\\\"padding\\\",\\\"DlSeoUDaO\\\":\\\"variant1\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oqqBiOyNi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wZko9ix4i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"75\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "convertkitAPI", "convertkitFormID", "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", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "InputSites_js_1_12_default", "Mailchimp", "props", "p", "InputSites_js_1_12_default", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "MailchimpFonts", "getFonts", "Mailchimp", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "N6kQOkg6N", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "Link", "SVG", "RichText2", "ComponentViewportProvider", "Mailchimp", "Image2", "css", "FramerQiHSkbeZ1", "withCSS", "QiHSkbeZ1_default", "addPropertyControls", "ControlType", "addFonts", "MailchimpFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "backgroundPressed", "fontSize", "height", "hoverBackground", "hoverTextColor", "id", "link", "textColor", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "uaF_RSddM", "TfXLJqf_W", "T3Y3S9E1K", "xsszW39od", "kUM4cyIPV", "PSitQYH_k", "AvtAp89ow", "MR6qPvNNd", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerFlMXIkOV8", "withCSS", "FlMXIkOV8_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "addPropertyOverrides", "css", "FramerrDqm1J34p", "withCSS", "rDqm1J34p_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "rDqm1J34p_default", "ButtonMainNavFonts", "FlMXIkOV8_default", "LogoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "color", "height", "id", "padding", "variant1", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "iq2RjPACN", "aKiqQ5oaw", "DlSeoUDaO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1krmsgw", "args", "onTapwunrps", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "ComponentViewportProvider", "rDqm1J34p_default", "RichText2", "Link", "ResolveLinks", "resolvedLinks", "FlMXIkOV8_default", "css", "FrameruWG6mUv3O", "withCSS", "uWG6mUv3O_default", "addPropertyControls", "ControlType", "LogoControls", "addFonts", "LogoFonts", "ButtonMainNavFonts", "getFontsFromSharedStyle", "fonts"]
}
