{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/q6QHBkUymdktnMQmdwdO/Input.js", "ssg:https://framerusercontent.com/modules/YbTyStmdbyvru49Ldmgg/ra7lkYWdHwh28ouFyF0S/Tg2Tcj2c4.js", "ssg:https://framerusercontent.com/modules/nQBFoiIXjt4JQPTHeHxy/66gGPtGKimrG6l1yIJ8a/Gwpgdzgfe.js", "ssg:https://framerusercontent.com/modules/FKJHLus9L2VFG2DdG5Lr/YrtoaouqqNQWj0VqETl3/Ve3Tt5i04.js", "ssg:https://framerusercontent.com/modules/liBw2Yschfp2ubqorczR/QiUJVqzwrTLv3TyapVf1/nUz2VAltd.js", "ssg:https://framerusercontent.com/modules/8IXWKKd8nITr3TGHcHA6/ITHv3AwuGP0yfUB3NOJn/HoDR_85f0.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,loopsMailingList,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 mailingListBody=`mailingLists=${encodeURIComponent(loopsMailingList)}`;const hasMailingList=!!loopsMailingList&&loopsMailingList!==\" \";const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";let formBody=emailBody;if(hasUserGroup){formBody+=`&${userGroupBody}`;}if(hasMailingList){formBody+=`&${mailingListBody}`;}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\"},loopsMailingList:{title:\"Mailing List\",type:ControlType.String,placeholder:\"cm3q41c5v02ii1lml14om2wtr\",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\":{\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Archivo Narrow-700\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"Archivo Narrow\",moduleAsset:{localModuleIdentifier:\"local-module:css/Tg2Tcj2c4:default\",url:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf\",weight:\"700\"}];export const css=['.framer-xud7c .framer-styles-preset-1lgrgpr:not(.rich-text-wrapper), .framer-xud7c .framer-styles-preset-1lgrgpr.rich-text-wrapper h2 { --framer-font-family: \"Archivo Narrow\", \"Archivo Narrow Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.5px; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-xud7c\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Inria Serif-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{family:\"Inria Serif\",moduleAsset:{localModuleIdentifier:\"local-module:css/Gwpgdzgfe:default\",url:\"https://fonts.gstatic.com/s/inriaserif/v16/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inriaserif/v16/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf\",weight:\"400\"}];export const css=['.framer-nNfDT .framer-styles-preset-ol4pbs:not(.rich-text-wrapper), .framer-nNfDT .framer-styles-preset-ol4pbs.rich-text-wrapper p { --framer-font-family: \"Inria Serif\", \"Inria Serif Placeholder\", serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-nNfDT\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-v2FCN .framer-styles-preset-10qw6m7:not(.rich-text-wrapper), .framer-v2FCN .framer-styles-preset-10qw6m7.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-22b2fd9d-0b98-4dd0-8c26-1186ada98024, #2ab5ba) /* {\"name\":\"Branded Turquoise\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }'];export const className=\"framer-v2FCN\";\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 (575e68f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const MaterialControls=getPropertyControls(Material);const enabledGestures={dW3MwlDog:{hover:true}};const cycleOrder=[\"dW3MwlDog\"];const serializationHash=\"framer-deYCS\";const variantClassNames={dW3MwlDog:\"framer-v-cpg67m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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 getProps=({color,height,id,link,name1,newTab,smoothScroll,width,...props})=>{var _ref,_ref1,_ref2;return{...props,dBU61x40o:(_ref=newTab!==null&&newTab!==void 0?newTab:props.dBU61x40o)!==null&&_ref!==void 0?_ref:true,FjMquLSwG:(_ref1=color!==null&&color!==void 0?color:props.FjMquLSwG)!==null&&_ref1!==void 0?_ref1:\"rgb(255, 255, 255)\",PS34GqU1D:smoothScroll!==null&&smoothScroll!==void 0?smoothScroll:props.PS34GqU1D,Ubr7AQ2Ss:(_ref2=name1!==null&&name1!==void 0?name1:props.Ubr7AQ2Ss)!==null&&_ref2!==void 0?_ref2:\"Facebook\",zCSB4NsMd:link!==null&&link!==void 0?link:props.zCSB4NsMd};};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,zCSB4NsMd,dBU61x40o,PS34GqU1D,FjMquLSwG,Ubr7AQ2Ss,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dW3MwlDog\",enabledGestures,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:zCSB4NsMd,openInNewTab:dBU61x40o,smoothScroll:PS34GqU1D,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-cpg67m\",className,classNames)} framer-552bft`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"dW3MwlDog\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"dW3MwlDog-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-v404os-container\",\"data-framer-name\":\"LinkedIn\",layoutDependency:layoutDependency,layoutId:\"juArFtC3J-container\",name:\"LinkedIn\",children:/*#__PURE__*/_jsx(Material,{color:FjMquLSwG,height:\"100%\",iconSearch:\"Home\",iconSelection:Ubr7AQ2Ss,iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"juArFtC3J\",layoutId:\"juArFtC3J\",mirrored:false,name:\"LinkedIn\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-deYCS.framer-552bft, .framer-deYCS .framer-552bft { display: block; }\",\".framer-deYCS.framer-cpg67m { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 48px; }\",\".framer-deYCS .framer-v404os-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); position: relative; width: 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-deYCS.framer-cpg67m { gap: 0px; } .framer-deYCS.framer-cpg67m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-deYCS.framer-cpg67m > :first-child { margin-top: 0px; } .framer-deYCS.framer-cpg67m > :last-child { margin-bottom: 0px; } }\",\".framer-deYCS.framer-v-cpg67m.hover .framer-v404os-container { height: var(--framer-aspect-ratio-supported, 64px); width: 61px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"DpoGmtbng\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"zCSB4NsMd\":\"link\",\"dBU61x40o\":\"newTab\",\"PS34GqU1D\":\"smoothScroll\",\"FjMquLSwG\":\"color\",\"Ubr7AQ2Ss\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernUz2VAltd=withCSS(Component,css,\"framer-deYCS\");export default FramernUz2VAltd;FramernUz2VAltd.displayName=\"Footer Social Link\";FramernUz2VAltd.defaultProps={height:52,width:48};addPropertyControls(FramernUz2VAltd,{zCSB4NsMd:{title:\"Link\",type:ControlType.Link},dBU61x40o:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean},PS34GqU1D:{defaultValue:false,title:\"Smooth Scroll\",type:ControlType.Boolean},FjMquLSwG:{defaultValue:\"rgb(255, 255, 255)\",title:\"Color\",type:ControlType.Color},Ubr7AQ2Ss:(MaterialControls===null||MaterialControls===void 0?void 0:MaterialControls[\"iconSelection\"])&&{...MaterialControls[\"iconSelection\"],defaultValue:\"Facebook\",description:undefined,hidden:undefined,title:\"Name\"}});addFonts(FramernUz2VAltd,[{explicitInter:true,fonts:[]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernUz2VAltd\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DpoGmtbng\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"zCSB4NsMd\\\":\\\"link\\\",\\\"dBU61x40o\\\":\\\"newTab\\\",\\\"PS34GqU1D\\\":\\\"smoothScroll\\\",\\\"FjMquLSwG\\\":\\\"color\\\",\\\"Ubr7AQ2Ss\\\":\\\"name1\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"48\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"52\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nUz2VAltd.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/q6QHBkUymdktnMQmdwdO/Input.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nQBFoiIXjt4JQPTHeHxy/66gGPtGKimrG6l1yIJ8a/Gwpgdzgfe.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/YbTyStmdbyvru49Ldmgg/ra7lkYWdHwh28ouFyF0S/Tg2Tcj2c4.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/FKJHLus9L2VFG2DdG5Lr/YrtoaouqqNQWj0VqETl3/Ve3Tt5i04.js\";import FooterSocialLink from\"https://framerusercontent.com/modules/liBw2Yschfp2ubqorczR/QiUJVqzwrTLv3TyapVf1/nUz2VAltd.js\";const FooterSocialLinkFonts=getFonts(FooterSocialLink);const InputFonts=getFonts(Input);const cycleOrder=[\"z1ht26NZ3\",\"EfyQCfefP\",\"J28erdS9K\"];const serializationHash=\"framer-SRjCE\";const variantClassNames={EfyQCfefP:\"framer-v-1pk9kss\",J28erdS9K:\"framer-v-1it44d4\",z1ht26NZ3:\"framer-v-143vv95\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition2};const animation2={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"z1ht26NZ3\",Phone:\"J28erdS9K\",Tablet:\"EfyQCfefP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"z1ht26NZ3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"z1ht26NZ3\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"EfyQCfefP\",\"J28erdS9K\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-143vv95\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"z1ht26NZ3\",ref:refBinding,style:{backgroundColor:\"var(--token-2ce9c332-93b6-4cdd-84e5-88cb4e041719, rgb(10, 17, 84))\",...style},...addPropertyOverrides({EfyQCfefP:{\"data-framer-name\":\"Tablet\"},J28erdS9K:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nkfdbz\",layoutDependency:layoutDependency,layoutId:\"hQUBJrnFt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1muagtj\",layoutDependency:layoutDependency,layoutId:\"LfTxrpf22\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xfa2j9\",layoutDependency:layoutDependency,layoutId:\"OuwcUaiaJ\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"SKYHsnEnC\",scopeId:\"HoDR_85f0\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Screentime Consultant Logo Footer image\",fit:\"fit\",intrinsicHeight:300,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||529)-60-469.4)/2+0+0)+0+0+0+0),pixelHeight:300,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"396px\",src:\"https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png\",srcSet:\"https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png 1080w\"},className:\"framer-1smjoxm framer-qsqu67\",\"data-framer-name\":\"Image Logo\",layoutDependency:layoutDependency,layoutId:\"SKYHsnEnC\",...addPropertyOverrides({EfyQCfefP:{background:{alt:\"The Screentime Consultant Logo Footer image\",fit:\"fit\",intrinsicHeight:300,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||698)-60-638.4)/2+0+0)+0+0+0+0+0+0),pixelHeight:300,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"486px\",src:\"https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png\",srcSet:\"https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png 1080w\"}},J28erdS9K:{background:{alt:\"The Screentime Consultant Logo Footer image\",fit:\"fit\",intrinsicHeight:300,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||672)-80-798.7222)/2+0+0)+0+0+0+0+0+0),pixelHeight:300,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"323px\",src:\"https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png\",srcSet:\"https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qx8tpUQUOUQhSgAAfQ5FzctkDI.png 1080w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1129i9p\",layoutDependency:layoutDependency,layoutId:\"rIDpdOd2i\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ol4pbs\",\"data-styles-preset\":\"Gwpgdzgfe\",children:\"Emily Cherkin\u2019s mission is to empower parents to better understand and balance family screentime by building a Tech-Intentional\u2122 movement.\"})}),className:\"framer-kmna11\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N8tlQyJZW\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{EfyQCfefP:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},J28erdS9K:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EfyQCfefP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5yaWEgU2VyaWYtcmVndWxhcg==\",\"--framer-font-family\":'\"Inria Serif\", \"Inria Serif Placeholder\", serif',\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Emily Cherkin\u2019s mission is to empower parents to better understand and balance family screentime by building a Tech-Intentional\u2122 movement.\"})}),fonts:[\"GF;Inria Serif-regular\"]},J28erdS9K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5yaWEgU2VyaWYtcmVndWxhcg==\",\"--framer-font-family\":'\"Inria Serif\", \"Inria Serif Placeholder\", serif',\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Emily Cherkin\u2019s mission is to empower parents to better understand and balance family screentime by building a Tech-Intentional\u2122 movement.\"})}),fonts:[\"GF;Inria Serif-regular\"]}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gg2aia\",layoutDependency:layoutDependency,layoutId:\"kfXZjz2pY\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"48px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||529)-60-469.4)/2+0+0)+0+0+192+3,...addPropertyOverrides({EfyQCfefP:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||698)-60-638.4)/2+0+0)+0+0+0+227+3},J28erdS9K:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||672)-80-798.7222)/2+0+0)+0+0+0+201.7222+3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11gll59-container\",layoutDependency:layoutDependency,layoutId:\"APppLDcSG-container\",nodeId:\"APppLDcSG\",rendersWithMotion:true,scopeId:\"HoDR_85f0\",children:/*#__PURE__*/_jsx(FooterSocialLink,{dBU61x40o:true,FjMquLSwG:\"rgb(255, 255, 255)\",height:\"100%\",id:\"APppLDcSG\",layoutId:\"APppLDcSG\",PS34GqU1D:false,style:{height:\"100%\",width:\"100%\"},Ubr7AQ2Ss:\"LinkedIn\",width:\"100%\",zCSB4NsMd:\"https://www.linkedin.com/company/the-screentime-consultant-llc/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"48px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||529)-60-469.4)/2+0+0)+0+0+192+3,...addPropertyOverrides({EfyQCfefP:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||698)-60-638.4)/2+0+0)+0+0+0+227+3},J28erdS9K:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||672)-80-798.7222)/2+0+0)+0+0+0+201.7222+3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pl7ixj-container\",layoutDependency:layoutDependency,layoutId:\"Xu50W0mHa-container\",nodeId:\"Xu50W0mHa\",rendersWithMotion:true,scopeId:\"HoDR_85f0\",children:/*#__PURE__*/_jsx(FooterSocialLink,{dBU61x40o:true,FjMquLSwG:\"rgb(255, 255, 255)\",height:\"100%\",id:\"Xu50W0mHa\",layoutId:\"Xu50W0mHa\",PS34GqU1D:false,style:{height:\"100%\",width:\"100%\"},Ubr7AQ2Ss:\"Instagram\",width:\"100%\",zCSB4NsMd:\"https://www.instagram.com/thescreentimeconsultant/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"48px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||529)-60-469.4)/2+0+0)+0+0+192+3,...addPropertyOverrides({EfyQCfefP:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||698)-60-638.4)/2+0+0)+0+0+0+227+3},J28erdS9K:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||672)-80-798.7222)/2+0+0)+0+0+0+201.7222+3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1972w97-container\",layoutDependency:layoutDependency,layoutId:\"T_mEskpgK-container\",nodeId:\"T_mEskpgK\",rendersWithMotion:true,scopeId:\"HoDR_85f0\",children:/*#__PURE__*/_jsx(FooterSocialLink,{dBU61x40o:true,FjMquLSwG:\"rgb(255, 255, 255)\",height:\"100%\",id:\"T_mEskpgK\",layoutId:\"T_mEskpgK\",PS34GqU1D:false,style:{height:\"100%\",width:\"100%\"},Ubr7AQ2Ss:\"Facebook\",width:\"100%\",zCSB4NsMd:\"https://www.facebook.com/thescreentimeconsultant/\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"48px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||529)-60-469.4)/2+0+0)+0+0+192+3,...addPropertyOverrides({EfyQCfefP:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||698)-60-638.4)/2+0+0)+0+0+0+227+3},J28erdS9K:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||672)-80-798.7222)/2+0+0)+0+0+0+201.7222+3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1438kdg-container\",layoutDependency:layoutDependency,layoutId:\"XM7FJzzJ9-container\",nodeId:\"XM7FJzzJ9\",rendersWithMotion:true,scopeId:\"HoDR_85f0\",children:/*#__PURE__*/_jsx(FooterSocialLink,{dBU61x40o:true,FjMquLSwG:\"rgb(255, 255, 255)\",height:\"100%\",id:\"XM7FJzzJ9\",layoutId:\"XM7FJzzJ9\",PS34GqU1D:false,style:{height:\"100%\",width:\"100%\"},Ubr7AQ2Ss:\"Twitter\",width:\"100%\",zCSB4NsMd:\"https://twitter.com/ScreentimeLlc\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"48px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||529)-60-469.4)/2+0+0)+0+0+192+3,...addPropertyOverrides({EfyQCfefP:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||698)-60-638.4)/2+0+0)+0+0+0+227+3},J28erdS9K:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||672)-80-798.7222)/2+0+0)+0+0+0+201.7222+3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fra064-container\",layoutDependency:layoutDependency,layoutId:\"jmtItg1w1-container\",nodeId:\"jmtItg1w1\",rendersWithMotion:true,scopeId:\"HoDR_85f0\",children:/*#__PURE__*/_jsx(FooterSocialLink,{dBU61x40o:true,FjMquLSwG:\"rgb(255, 255, 255)\",height:\"100%\",id:\"jmtItg1w1\",layoutId:\"jmtItg1w1\",PS34GqU1D:false,style:{height:\"100%\",width:\"100%\"},Ubr7AQ2Ss:\"YouTube\",width:\"100%\",zCSB4NsMd:\"https://www.youtube.com/channel/UC7OTmocaQFksufwutM4yERA\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"48px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||529)-60-469.4)/2+0+0)+0+0+192+3,...addPropertyOverrides({EfyQCfefP:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||698)-60-638.4)/2+0+0)+0+0+0+227+3},J28erdS9K:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||672)-80-798.7222)/2+0+0)+0+0+0+201.7222+3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rohv24-container\",layoutDependency:layoutDependency,layoutId:\"vVWRixDem-container\",nodeId:\"vVWRixDem\",rendersWithMotion:true,scopeId:\"HoDR_85f0\",children:/*#__PURE__*/_jsx(FooterSocialLink,{dBU61x40o:true,FjMquLSwG:\"rgb(255, 255, 255)\",height:\"100%\",id:\"vVWRixDem\",layoutId:\"vVWRixDem\",PS34GqU1D:false,style:{height:\"100%\",width:\"100%\"},Ubr7AQ2Ss:\"Mail\",width:\"100%\",zCSB4NsMd:\"mailto:info@thescreentimeconsultant.com\"})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12jchqq\",layoutDependency:layoutDependency,layoutId:\"wCzZfmmhw\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5as5ei\",layoutDependency:layoutDependency,layoutId:\"s6w7lJXTz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vl1uz\",layoutDependency:layoutDependency,layoutId:\"M_oNUeKHk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oc9onu\",layoutDependency:layoutDependency,layoutId:\"yfxOrhbT_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1lgrgpr\",\"data-styles-preset\":\"Tg2Tcj2c4\",children:\"Get the Newsletter\"})}),className:\"framer-rhod8z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dxI2B5Gcb\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yvxone\",layoutDependency:layoutDependency,layoutId:\"kLKRVx103\",transformTemplate:transformTemplate1,...addPropertyOverrides({J28erdS9K:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-78czez-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xJvqNLNhM-container\",nodeId:\"xJvqNLNhM\",rendersWithMotion:true,scopeId:\"HoDR_85f0\",children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Archivo Narrow\", \"Archivo Narrow Placeholder\", sans-serif',fontSize:\"28px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-22b2fd9d-0b98-4dd0-8c26-1186ada98024, rgb(42, 181, 186))\",insetWhenDocked:5,isDocked:false,label:\"Submit\",shouldAppear:true,widthWhenDocked:100},convertkitAPI:\"\",convertkitFormID:\"\",font:{fontFamily:'\"Archivo Narrow\", \"Archivo Narrow Placeholder\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},formsparkID:\"7OE6QS0UE\",gap:10,getwaitlistAPI:\"\",height:\"100%\",id:\"xJvqNLNhM\",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:\"xJvqNLNhM\",loopsID:\"\",loopsMailingList:\"\",loopsUserGroup:\"\",mailchimpURL:\"\",redirectAs:\"overlay\",service:\"formspark\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-1610fnt\",layoutDependency:layoutDependency,layoutId:\"xQNeIEkfZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ol4pbs\",\"data-styles-preset\":\"Gwpgdzgfe\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OGDMqjhks\"},motionChild:true,nodeId:\"QXMX8pNdS\",openInNewTab:false,scopeId:\"HoDR_85f0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10qw6m7\",\"data-styles-preset\":\"Ve3Tt5i04\",children:\"Privacy Policy\"})})})}),className:\"framer-c36ypp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QXMX8pNdS\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ol4pbs\",\"data-styles-preset\":\"Gwpgdzgfe\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BMUVJZS_F\"},motionChild:true,nodeId:\"EqfFUIbub\",openInNewTab:false,scopeId:\"HoDR_85f0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10qw6m7\",\"data-styles-preset\":\"Ve3Tt5i04\",children:\"Terms & Conditions\"})})})}),className:\"framer-1ckst3m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EqfFUIbub\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EfyQCfefP:{transformTemplate:undefined},J28erdS9K:{transformTemplate:undefined}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vsdrb5\",layoutDependency:layoutDependency,layoutId:\"C7TOD5Ky_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ol4pbs\",\"data-styles-preset\":\"Gwpgdzgfe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Copyright \\xa9 2025 The Screentime Consultant, LLC | All Rights Reserved. | Tech-Intentional\u2122 \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ol4pbs\",\"data-styles-preset\":\"Gwpgdzgfe\",style:{\"--framer-text-alignment\":\"center\"},children:\"and The Screentime Consultant, LLC\u2122 are registered trademarks.\"})]}),className:\"framer-47mz5s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hBqtg4MID\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{J28erdS9K:{\"--extracted-1iakedh\":\"rgb(255, 255, 255)\",\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({J28erdS9K:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5yaWEgU2VyaWYtcmVndWxhcg==\",\"--framer-font-family\":'\"Inria Serif\", \"Inria Serif Placeholder\", serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Copyright \\xa9 2024 The Screentime Consultant, LLC | All Rights Reserved. | Tech-Intentional\u2122 \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5yaWEgU2VyaWYtcmVndWxhcg==\",\"--framer-font-family\":'\"Inria Serif\", \"Inria Serif Placeholder\", serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"and The Screentime Consultant, LLC\u2122 \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5yaWEgU2VyaWYtcmVndWxhcg==\",\"--framer-font-family\":'\"Inria Serif\", \"Inria Serif Placeholder\", serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(255, 255, 255))\"},children:\"are registered trademarks.\"})]}),fonts:[\"GF;Inria Serif-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Link,{href:\"https://yourpocketoffice.com\",motionChild:true,nodeId:\"FpnLOV7LA\",scopeId:\"HoDR_85f0\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-xcaspf framer-qsqu67\",layoutDependency:layoutDependency,layoutId:\"FpnLOV7LA\",whileHover:animation,whileTap:animation1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vxd097\",\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"FwlwfjRn_\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aed59g\",layoutDependency:layoutDependency,layoutId:\"K4toX9bK9\",style:{backgroundColor:\"rgb(247, 223, 186)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xde079\",layoutDependency:layoutDependency,layoutId:\"SYxVMcSlg\",style:{backgroundColor:\"rgb(255, 167, 79)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11pgwlm\",layoutDependency:layoutDependency,layoutId:\"VgeajzC3b\",style:{backgroundColor:\"rgb(7, 59, 58)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b4eydg\",layoutDependency:layoutDependency,layoutId:\"IvJ6LgMax\",style:{backgroundColor:\"rgb(240, 83, 28)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14e4pit\",layoutDependency:layoutDependency,layoutId:\"H6yHpsNcZ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Pocket Office LLC logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||529)-60-469.4)/2+325+0)+0+104.4+0+9+0),pixelHeight:597,pixelWidth:597,sizes:\"31px\",src:\"https://framerusercontent.com/images/zhYHDnfVJCbP4DcUzPaFUIybsbk.png\",srcSet:\"https://framerusercontent.com/images/zhYHDnfVJCbP4DcUzPaFUIybsbk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zhYHDnfVJCbP4DcUzPaFUIybsbk.png 597w\"},className:\"framer-w1azru\",layoutDependency:layoutDependency,layoutId:\"rRVH8eeyl\",style:{borderBottomLeftRadius:290,borderBottomRightRadius:290,borderTopLeftRadius:290,borderTopRightRadius:290},whileHover:animation2,...addPropertyOverrides({EfyQCfefP:{background:{alt:\"Pocket Office LLC logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||698)-60-638.4)/2+491+0)+0+107.4+0+9+0),pixelHeight:597,pixelWidth:597,sizes:\"31px\",src:\"https://framerusercontent.com/images/zhYHDnfVJCbP4DcUzPaFUIybsbk.png\",srcSet:\"https://framerusercontent.com/images/zhYHDnfVJCbP4DcUzPaFUIybsbk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zhYHDnfVJCbP4DcUzPaFUIybsbk.png 597w\"}},J28erdS9K:{background:{alt:\"Pocket Office LLC logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||672)-80-798.7222)/2+430.7222+0)+0+328+0+9+0),pixelHeight:597,pixelWidth:597,sizes:\"31px\",src:\"https://framerusercontent.com/images/zhYHDnfVJCbP4DcUzPaFUIybsbk.png\",srcSet:\"https://framerusercontent.com/images/zhYHDnfVJCbP4DcUzPaFUIybsbk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zhYHDnfVJCbP4DcUzPaFUIybsbk.png 597w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWxpZ2h0\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 223, 186))\"},children:\"Designed and Supported by Pocket Office\"})}),className:\"framer-1cveayl\",fonts:[\"FS;Work Sans-light\"],layoutDependency:layoutDependency,layoutId:\"PQ8Mtkyzy\",style:{\"--extracted-r6o4lv\":\"rgb(247, 223, 186)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SRjCE.framer-qsqu67, .framer-SRjCE .framer-qsqu67 { display: block; }\",\".framer-SRjCE.framer-143vv95 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 20px 40px; position: relative; width: 1200px; }\",\".framer-SRjCE .framer-nkfdbz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1120px; }\",\".framer-SRjCE .framer-1muagtj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 325px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-SRjCE .framer-xfa2j9 { flex: none; height: 168px; overflow: hidden; position: relative; width: 396px; }\",\".framer-SRjCE .framer-1smjoxm { flex: none; height: 110px; left: 0px; overflow: hidden; position: absolute; right: 0px; text-decoration: none; top: 0px; }\",\".framer-SRjCE .framer-1129i9p { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 58px; justify-content: center; left: 0px; overflow: hidden; padding: 0px 0px 0px 20px; position: absolute; width: min-content; }\",\".framer-SRjCE .framer-kmna11 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 371px; word-break: break-word; word-wrap: break-word; }\",\".framer-SRjCE .framer-1gg2aia { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 58px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-SRjCE .framer-11gll59-container, .framer-SRjCE .framer-1pl7ixj-container, .framer-SRjCE .framer-1972w97-container, .framer-SRjCE .framer-1438kdg-container, .framer-SRjCE .framer-1fra064-container, .framer-SRjCE .framer-1rohv24-container { flex: none; height: 52px; position: relative; width: 48px; }\",\".framer-SRjCE .framer-12jchqq { flex: none; height: 85px; overflow: hidden; position: relative; width: 190px; }\",\".framer-SRjCE .framer-5as5ei { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 431px; }\",\".framer-SRjCE .framer-1vl1uz { flex: none; height: 103px; overflow: hidden; position: relative; width: 431px; }\",\".framer-SRjCE .framer-1oc9onu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: flex-start; left: calc(49.88399071925757% - 431px / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 431px; }\",\".framer-SRjCE .framer-rhod8z, .framer-SRjCE .framer-47mz5s, .framer-SRjCE .framer-1cveayl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SRjCE .framer-1yvxone { align-content: flex-start; align-items: flex-start; bottom: 1px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; width: 431px; }\",\".framer-SRjCE .framer-78czez-container { flex: none; height: auto; position: relative; width: 430px; }\",\".framer-SRjCE .framer-1610fnt { flex: none; height: 49px; overflow: hidden; position: relative; width: 145px; }\",\".framer-SRjCE .framer-c36ypp { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-SRjCE .framer-1ckst3m { bottom: 1px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre; width: auto; }\",\".framer-SRjCE .framer-1vsdrb5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 46px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SRjCE .framer-xcaspf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SRjCE .framer-vxd097 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 3px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 40px; }\",\".framer-SRjCE .framer-1aed59g, .framer-SRjCE .framer-1xde079, .framer-SRjCE .framer-11pgwlm, .framer-SRjCE .framer-b4eydg { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-SRjCE .framer-14e4pit { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SRjCE .framer-w1azru { aspect-ratio: 1 / 1; flex: none; height: 31px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 31px); will-change: var(--framer-will-change-effect-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SRjCE.framer-143vv95, .framer-SRjCE .framer-nkfdbz, .framer-SRjCE .framer-1muagtj, .framer-SRjCE .framer-1129i9p, .framer-SRjCE .framer-1gg2aia, .framer-SRjCE .framer-5as5ei, .framer-SRjCE .framer-1oc9onu, .framer-SRjCE .framer-1yvxone, .framer-SRjCE .framer-1vsdrb5, .framer-SRjCE .framer-xcaspf, .framer-SRjCE .framer-vxd097, .framer-SRjCE .framer-14e4pit { gap: 0px; } .framer-SRjCE.framer-143vv95 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SRjCE.framer-143vv95 > :first-child, .framer-SRjCE .framer-1muagtj > :first-child, .framer-SRjCE .framer-1129i9p > :first-child, .framer-SRjCE .framer-5as5ei > :first-child, .framer-SRjCE .framer-1yvxone > :first-child, .framer-SRjCE .framer-1vsdrb5 > :first-child, .framer-SRjCE .framer-xcaspf > :first-child { margin-top: 0px; } .framer-SRjCE.framer-143vv95 > :last-child, .framer-SRjCE .framer-1muagtj > :last-child, .framer-SRjCE .framer-1129i9p > :last-child, .framer-SRjCE .framer-5as5ei > :last-child, .framer-SRjCE .framer-1yvxone > :last-child, .framer-SRjCE .framer-1vsdrb5 > :last-child, .framer-SRjCE .framer-xcaspf > :last-child { margin-bottom: 0px; } .framer-SRjCE .framer-nkfdbz > *, .framer-SRjCE .framer-1gg2aia > *, .framer-SRjCE .framer-1oc9onu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SRjCE .framer-nkfdbz > :first-child, .framer-SRjCE .framer-1gg2aia > :first-child, .framer-SRjCE .framer-1oc9onu > :first-child, .framer-SRjCE .framer-vxd097 > :first-child, .framer-SRjCE .framer-14e4pit > :first-child { margin-left: 0px; } .framer-SRjCE .framer-nkfdbz > :last-child, .framer-SRjCE .framer-1gg2aia > :last-child, .framer-SRjCE .framer-1oc9onu > :last-child, .framer-SRjCE .framer-vxd097 > :last-child, .framer-SRjCE .framer-14e4pit > :last-child { margin-right: 0px; } .framer-SRjCE .framer-1muagtj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-SRjCE .framer-1129i9p > *, .framer-SRjCE .framer-1yvxone > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SRjCE .framer-5as5ei > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-SRjCE .framer-1vsdrb5 > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-SRjCE .framer-xcaspf > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-SRjCE .framer-vxd097 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-SRjCE .framer-14e4pit > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } }\",\".framer-SRjCE.framer-v-1pk9kss.framer-143vv95 { width: 810px; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-nkfdbz, .framer-SRjCE.framer-v-1it44d4 .framer-nkfdbz { align-content: center; align-items: center; flex-direction: column; gap: 0px; width: 100%; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-1muagtj { align-content: center; align-items: center; height: min-content; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-xfa2j9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-1smjoxm { aspect-ratio: 3.6 / 1; height: var(--framer-aspect-ratio-supported, 135px); left: unset; position: relative; right: unset; top: unset; width: 486px; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-1129i9p, .framer-SRjCE.framer-v-1pk9kss .framer-1ckst3m, .framer-SRjCE.framer-v-1it44d4 .framer-1ckst3m { bottom: unset; left: unset; position: relative; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-5as5ei, .framer-SRjCE.framer-v-1it44d4 .framer-5as5ei { align-content: center; align-items: center; width: 100%; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-1oc9onu { justify-content: center; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-1yvxone { align-content: center; align-items: center; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-78czez-container { width: 384px; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-1610fnt { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 77px; justify-content: center; padding: 0px; width: 100%; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-c36ypp, .framer-SRjCE.framer-v-1it44d4 .framer-c36ypp { left: unset; position: relative; top: unset; }\",\".framer-SRjCE.framer-v-1pk9kss .framer-1vsdrb5 { gap: 49px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SRjCE.framer-v-1pk9kss .framer-nkfdbz, .framer-SRjCE.framer-v-1pk9kss .framer-xfa2j9, .framer-SRjCE.framer-v-1pk9kss .framer-1610fnt, .framer-SRjCE.framer-v-1pk9kss .framer-1vsdrb5 { gap: 0px; } .framer-SRjCE.framer-v-1pk9kss .framer-nkfdbz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SRjCE.framer-v-1pk9kss .framer-nkfdbz > :first-child, .framer-SRjCE.framer-v-1pk9kss .framer-xfa2j9 > :first-child, .framer-SRjCE.framer-v-1pk9kss .framer-1vsdrb5 > :first-child { margin-top: 0px; } .framer-SRjCE.framer-v-1pk9kss .framer-nkfdbz > :last-child, .framer-SRjCE.framer-v-1pk9kss .framer-xfa2j9 > :last-child, .framer-SRjCE.framer-v-1pk9kss .framer-1vsdrb5 > :last-child { margin-bottom: 0px; } .framer-SRjCE.framer-v-1pk9kss .framer-xfa2j9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SRjCE.framer-v-1pk9kss .framer-1610fnt > * { margin: 0px; margin-left: calc(77px / 2); margin-right: calc(77px / 2); } .framer-SRjCE.framer-v-1pk9kss .framer-1610fnt > :first-child { margin-left: 0px; } .framer-SRjCE.framer-v-1pk9kss .framer-1610fnt > :last-child { margin-right: 0px; } .framer-SRjCE.framer-v-1pk9kss .framer-1vsdrb5 > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } }\",\".framer-SRjCE.framer-v-1it44d4.framer-143vv95 { padding: 40px 20px 40px 20px; width: 390px; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-1muagtj { align-content: center; align-items: center; height: min-content; width: 100%; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-xfa2j9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-1smjoxm { aspect-ratio: 3.6 / 1; height: var(--framer-aspect-ratio-supported, 90px); left: unset; position: relative; right: unset; top: unset; width: 323px; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-1129i9p { bottom: unset; height: min-content; left: unset; overflow: visible; position: relative; width: 100%; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-kmna11 { width: 369px; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-1gg2aia { align-self: unset; width: 100%; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-1vl1uz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 350px; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-1oc9onu { gap: 0px; height: min-content; justify-content: center; left: unset; position: relative; top: unset; width: 100%; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-1yvxone { bottom: unset; left: unset; position: relative; width: 100%; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-78czez-container { width: 100%; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-1610fnt { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 77px; height: 47px; justify-content: center; padding: 0px; width: 100%; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-1vsdrb5 { gap: 58px; }\",\".framer-SRjCE.framer-v-1it44d4 .framer-47mz5s { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SRjCE.framer-v-1it44d4 .framer-nkfdbz, .framer-SRjCE.framer-v-1it44d4 .framer-xfa2j9, .framer-SRjCE.framer-v-1it44d4 .framer-1vl1uz, .framer-SRjCE.framer-v-1it44d4 .framer-1oc9onu, .framer-SRjCE.framer-v-1it44d4 .framer-1610fnt, .framer-SRjCE.framer-v-1it44d4 .framer-1vsdrb5 { gap: 0px; } .framer-SRjCE.framer-v-1it44d4 .framer-nkfdbz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SRjCE.framer-v-1it44d4 .framer-nkfdbz > :first-child, .framer-SRjCE.framer-v-1it44d4 .framer-xfa2j9 > :first-child, .framer-SRjCE.framer-v-1it44d4 .framer-1vl1uz > :first-child, .framer-SRjCE.framer-v-1it44d4 .framer-1vsdrb5 > :first-child { margin-top: 0px; } .framer-SRjCE.framer-v-1it44d4 .framer-nkfdbz > :last-child, .framer-SRjCE.framer-v-1it44d4 .framer-xfa2j9 > :last-child, .framer-SRjCE.framer-v-1it44d4 .framer-1vl1uz > :last-child, .framer-SRjCE.framer-v-1it44d4 .framer-1vsdrb5 > :last-child { margin-bottom: 0px; } .framer-SRjCE.framer-v-1it44d4 .framer-xfa2j9 > *, .framer-SRjCE.framer-v-1it44d4 .framer-1vl1uz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SRjCE.framer-v-1it44d4 .framer-1oc9onu > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-SRjCE.framer-v-1it44d4 .framer-1oc9onu > :first-child, .framer-SRjCE.framer-v-1it44d4 .framer-1610fnt > :first-child { margin-left: 0px; } .framer-SRjCE.framer-v-1it44d4 .framer-1oc9onu > :last-child, .framer-SRjCE.framer-v-1it44d4 .framer-1610fnt > :last-child { margin-right: 0px; } .framer-SRjCE.framer-v-1it44d4 .framer-1610fnt > * { margin: 0px; margin-left: calc(77px / 2); margin-right: calc(77px / 2); } .framer-SRjCE.framer-v-1it44d4 .framer-1vsdrb5 > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 529\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EfyQCfefP\":{\"layout\":[\"fixed\",\"auto\"]},\"J28erdS9K\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHoDR_85f0=withCSS(Component,css,\"framer-SRjCE\");export default FramerHoDR_85f0;FramerHoDR_85f0.displayName=\"Footer Section\";FramerHoDR_85f0.defaultProps={height:529,width:1200};addPropertyControls(FramerHoDR_85f0,{variant:{options:[\"z1ht26NZ3\",\"EfyQCfefP\",\"J28erdS9K\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHoDR_85f0,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inria Serif\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inriaserif/v16/fC1lPYxPY3rXxEndZJAzN0SpfSzNr0Ck.woff2\",weight:\"400\"},{family:\"Archivo Narrow\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKoXOtFCQ76Q.woff2\",weight:\"400\"},{family:\"Archivo Narrow\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivonarrow/v30/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKoXOtFCQ76Q.woff2\",weight:\"700\"},{family:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NQNWHY7X6HFR453N4KNGZVIPFH4TYOH3/M73HNXK6PSZABAIK24CIUV4PUN2ZBW2G/PP6QWZTGOJ2TREWHRM2H3Q3XV6CI5VOR.woff2\",weight:\"300\"}]},...FooterSocialLinkFonts,...InputFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHoDR_85f0\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"529\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EfyQCfefP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J28erdS9K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HoDR_85f0.map"],
  "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", "loopsMailingList", "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", "mailingListBody", "hasMailingList", "hasUserGroup", "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", "Input_default", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MaterialFonts", "getFonts", "Icon", "MaterialControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "color", "height", "id", "link", "name1", "newTab", "smoothScroll", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zCSB4NsMd", "dBU61x40o", "PS34GqU1D", "FjMquLSwG", "Ubr7AQ2Ss", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "ComponentViewportProvider", "css", "FramernUz2VAltd", "withCSS", "nUz2VAltd_default", "addPropertyControls", "ControlType", "addFonts", "FooterSocialLinkFonts", "getFonts", "nUz2VAltd_default", "InputFonts", "Input_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transition2", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerHoDR_85f0", "withCSS", "HoDR_85f0_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
