{"version":3,"file":"QhsAzb_7X.DrAVQvys.mjs","names":["Input","email","addPropertyOverrides","Input","MotionDivWithFX","cycleOrder","serializationHash","variantClassNames","transition1","animation","transition2","transition3","transition4","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","Phosphor","SocialMediaLogo","className","Image","css"],"sources":["https:/framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/Jo2d4bKbCdbbg0oiZ0LB/Input.js","https:/framerusercontent.com/modules/e5ixJy9AZGe0sIzNNAVs/RupYLSlwlAGx1YBmQcq8/MjWRQy43c.js","https:/framerusercontent.com/modules/DSviib2PwqPIh4362HP7/AA8V0rIzrAQFcCXmuVl0/QG7Phx8ww.js","https:/framerusercontent.com/modules/foAF3ZKf9SoLKyDyVFEJ/FVnOngTKHkGoDwrEtVE2/QhsAzb_7X.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’s 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","// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/Jo2d4bKbCdbbg0oiZ0LB/Input.js\";const RichTextWithFX=withFX(RichText);const InputFonts=getFonts(Input);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"WScBgWN8W\",\"NIqFYT9Ht\",\"oJpzt1dyZ\"];const serializationHash=\"framer-KsAY4\";const variantClassNames={NIqFYT9Ht:\"framer-v-cfptqf\",oJpzt1dyZ:\"framer-v-1g3urww\",WScBgWN8W:\"framer-v-1hjakzs\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={delay:.1,duration:.8,ease:[.59,.25,.17,.99],type:\"tween\"};const transition3={delay:.2,duration:.8,ease:[.59,.25,.17,.99],type:\"tween\"};const transition4={delay:.3,duration:.8,ease:[.59,.25,.17,.99],type:\"tween\"};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:\"WScBgWN8W\",Mobile:\"oJpzt1dyZ\",Tablet:\"NIqFYT9Ht\"};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:\"WScBgWN8W\"};};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:\"WScBgWN8W\",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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hjakzs\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"WScBgWN8W\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({NIqFYT9Ht:{\"data-framer-name\":\"Tablet\"},oJpzt1dyZ:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ofq2sr\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"QOd3YAKqW\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255)))\"},children:\"Be the first to know\"})}),className:\"framer-1npq6gc\",\"data-framer-name\":\"Ready to Boost Your Digital Presence?\",fonts:[\"GF;Unbounded-regular\"],layoutDependency:layoutDependency,layoutId:\"OtSiOd9Cz\",style:{\"--extracted-1of0zx5\":\"var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255))\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oJpzt1dyZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255)))\"},children:\"Be the first to know\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)))\"},children:\"Subscribe to our newsletter today and gain access to invaluable tips and insights on capturing your audience's attention and leveraging industry trends to pique their interest in your offerings.\"})}),className:\"framer-1mlpf3a\",\"data-framer-name\":\"Whether you're a startup ready to make your mark or an established business aiming to amplify your digital strategy, our team is here to guide you.\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"yVU8ZhnPQ\",style:{\"--extracted-r6o4lv\":\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1cn8zrt-container\",layoutDependency:layoutDependency,layoutId:\"NjcsjwL3Z-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},buttonPadding:24,buttonPaddingBottom:24,buttonPaddingLeft:24,buttonPaddingPerSide:false,buttonPaddingRight:24,buttonPaddingTop:24,color:\"var(--token-713125d9-653c-40f5-9b80-ada6c127de38, rgb(13, 24, 23))\",fill:\"var(--token-93ea978d-0bbc-4430-9cb6-8bc50da2fc39, rgb(180, 239, 112))\",insetWhenDocked:5,isDocked:false,label:\"Get started\",shouldAppear:true,widthWhenDocked:100},convertkitAPI:\"\",convertkitFormID:\"\",font:{},formsparkID:\"Cyh37QDgy\",gap:16,getwaitlistAPI:\"\",height:\"100%\",id:\"NjcsjwL3Z\",input:{borderRadius:360,color:\"var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255))\",fill:\"rgba(180, 240, 113, 0.13)\",fixedHeight:50,focusObject:{focusColor:\"var(--token-93ea978d-0bbc-4430-9cb6-8bc50da2fc39, rgb(180, 239, 112))\",focusWidthFrom:0,focusWidthTo:2},height:true,padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:false,paddingRight:24,paddingTop:24,placeholder:\"Your email\",placeholderColor:\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\"},layout:\"horizontal\",layoutId:\"NjcsjwL3Z\",loopsID:\"\",loopsUserGroup:\"\",mailchimpURL:\"\",redirectAs:\"link\",service:\"formspark\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({NIqFYT9Ht:{input:{borderRadius:360,color:\"var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255))\",fill:\"var(--token-6387cd44-9ddb-4073-bf67-fad77408f186, rgb(21, 37, 35))\",fixedHeight:50,focusObject:{focusColor:\"var(--token-6c3e3a19-e10c-435f-b66c-1460849e80f5, rgb(0, 222, 188))\",focusWidthFrom:0,focusWidthTo:2},height:true,padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:false,paddingRight:24,paddingTop:24,placeholder:\"Your email\",placeholderColor:\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\"}},oJpzt1dyZ:{input:{borderRadius:360,color:\"var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255))\",fill:\"var(--token-6387cd44-9ddb-4073-bf67-fad77408f186, rgb(21, 37, 35))\",fixedHeight:50,focusObject:{focusColor:\"var(--token-6c3e3a19-e10c-435f-b66c-1460849e80f5, rgb(0, 222, 188))\",focusWidthFrom:0,focusWidthTo:2},height:true,padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:false,paddingRight:24,paddingTop:24,placeholder:\"Your email\",placeholderColor:\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\"},layout:\"vertical\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KsAY4.framer-ioq0ia, .framer-KsAY4 .framer-ioq0ia { display: block; }\",\".framer-KsAY4.framer-1hjakzs { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 1200px; }\",\".framer-KsAY4 .framer-1ofq2sr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-KsAY4 .framer-1npq6gc, .framer-KsAY4 .framer-1mlpf3a { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 800px; word-break: break-word; word-wrap: break-word; }\",\".framer-KsAY4 .framer-1cn8zrt-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KsAY4.framer-1hjakzs, .framer-KsAY4 .framer-1ofq2sr { gap: 0px; } .framer-KsAY4.framer-1hjakzs > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-KsAY4.framer-1hjakzs > :first-child, .framer-KsAY4 .framer-1ofq2sr > :first-child { margin-top: 0px; } .framer-KsAY4.framer-1hjakzs > :last-child, .framer-KsAY4 .framer-1ofq2sr > :last-child { margin-bottom: 0px; } .framer-KsAY4 .framer-1ofq2sr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-KsAY4.framer-v-cfptqf.framer-1hjakzs { width: 810px; }\",\".framer-KsAY4.framer-v-cfptqf .framer-1ofq2sr { padding: 0px 32px 0px 32px; width: 100%; }\",\".framer-KsAY4.framer-v-cfptqf .framer-1mlpf3a, .framer-KsAY4.framer-v-1g3urww .framer-1npq6gc, .framer-KsAY4.framer-v-1g3urww .framer-1mlpf3a { width: 100%; }\",\".framer-KsAY4.framer-v-1g3urww.framer-1hjakzs { padding: 80px 0px 80px 0px; width: 390px; }\",\".framer-KsAY4.framer-v-1g3urww .framer-1ofq2sr { padding: 0px 16px 0px 16px; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 428\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NIqFYT9Ht\":{\"layout\":[\"fixed\",\"auto\"]},\"oJpzt1dyZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMjWRQy43c=withCSS(Component,css,\"framer-KsAY4\");export default FramerMjWRQy43c;FramerMjWRQy43c.displayName=\"Section/Ready to boost\";FramerMjWRQy43c.defaultProps={height:428,width:1200};addPropertyControls(FramerMjWRQy43c,{variant:{options:[\"WScBgWN8W\",\"NIqFYT9Ht\",\"oJpzt1dyZ\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMjWRQy43c,[{explicitInter:true,fonts:[{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v8/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx04jHgP6LR0Y.woff2\",weight:\"400\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"},{family:\"Source Sans 3\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEI_io6npfB.woff2\",weight:\"700\"}]},...InputFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMjWRQy43c\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"428\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NIqFYT9Ht\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oJpzt1dyZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MjWRQy43c.map","// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={IBm2ZnheH:{hover:true},MhmThuvO2:{hover:true},q1LE3XcEF:{hover:true},RJqRWUhqm:{hover:true},xXAR07nwh:{hover:true}};const cycleOrder=[\"q1LE3XcEF\",\"xXAR07nwh\",\"MhmThuvO2\",\"RJqRWUhqm\",\"IBm2ZnheH\"];const serializationHash=\"framer-UoAMF\";const variantClassNames={IBm2ZnheH:\"framer-v-4jfy7f\",MhmThuvO2:\"framer-v-11zv8zh\",q1LE3XcEF:\"framer-v-147bmor\",RJqRWUhqm:\"framer-v-1cr0j23\",xXAR07nwh:\"framer-v-11wduco\"};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:40,delay:0,mass:1,stiffness:300,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={Facebook:\"xXAR07nwh\",Instagram:\"IBm2ZnheH\",Linkedin:\"q1LE3XcEF\",Twitter:\"MhmThuvO2\",Youtube:\"RJqRWUhqm\"};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:\"q1LE3XcEF\"};};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:\"q1LE3XcEF\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"xXAR07nwh-hover\",\"MhmThuvO2-hover\",\"RJqRWUhqm-hover\",\"IBm2ZnheH-hover\"].includes(gestureVariant))return false;if([\"xXAR07nwh\",\"MhmThuvO2\",\"RJqRWUhqm\",\"IBm2ZnheH\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"xXAR07nwh-hover\")return true;if(baseVariant===\"xXAR07nwh\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"MhmThuvO2-hover\")return true;if(baseVariant===\"MhmThuvO2\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"RJqRWUhqm-hover\")return true;if(baseVariant===\"RJqRWUhqm\")return true;return false;};const isDisplayed4=()=>{if(gestureVariant===\"IBm2ZnheH-hover\")return true;if(baseVariant===\"IBm2ZnheH\")return true;return false;};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:\"https://www.linkedin.com/company/lifts-media\",nodeId:\"q1LE3XcEF\",openInNewTab:true,...addPropertyOverrides({IBm2ZnheH:{href:\"www.instagram.com/liftsmedia.co\"},MhmThuvO2:{href:\"www.twitter.com/liftsmediaco\"},RJqRWUhqm:{href:\"youtube.com\"},xXAR07nwh:{href:\"facebook.com\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-147bmor\",className,classNames)} framer-1l32svf`,\"data-border\":true,\"data-framer-name\":\"Linkedin\",layoutDependency:layoutDependency,layoutId:\"q1LE3XcEF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(215, 247, 243, 0.3)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,...style},variants:{\"MhmThuvO2-hover\":{\"--border-color\":\"var(--token-6c3e3a19-e10c-435f-b66c-1460849e80f5, rgb(0, 222, 188))\"},\"q1LE3XcEF-hover\":{\"--border-color\":\"var(--token-6c3e3a19-e10c-435f-b66c-1460849e80f5, rgb(0, 222, 188))\"},\"RJqRWUhqm-hover\":{\"--border-color\":\"var(--token-6c3e3a19-e10c-435f-b66c-1460849e80f5, rgb(0, 222, 188))\"},\"xXAR07nwh-hover\":{\"--border-color\":\"var(--token-6c3e3a19-e10c-435f-b66c-1460849e80f5, rgb(0, 222, 188))\"}},...addPropertyOverrides({\"IBm2ZnheH-hover\":{\"data-framer-name\":undefined},\"MhmThuvO2-hover\":{\"data-framer-name\":undefined},\"q1LE3XcEF-hover\":{\"data-framer-name\":undefined},\"RJqRWUhqm-hover\":{\"data-framer-name\":undefined},\"xXAR07nwh-hover\":{\"data-framer-name\":undefined},IBm2ZnheH:{\"data-framer-name\":\"Instagram\"},MhmThuvO2:{\"data-framer-name\":\"Twitter\"},RJqRWUhqm:{\"data-framer-name\":\"Youtube\"},xXAR07nwh:{\"data-framer-name\":\"Facebook\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7bte9n\",\"data-framer-name\":\"Block\",layoutDependency:layoutDependency,layoutId:\"FN0vnO8kL\",style:{backgroundColor:\"var(--token-6c3e3a19-e10c-435f-b66c-1460849e80f5, rgb(0, 222, 188))\"},variants:{\"IBm2ZnheH-hover\":{backgroundColor:\"var(--token-93ea978d-0bbc-4430-9cb6-8bc50da2fc39, rgb(180, 239, 112))\"},\"MhmThuvO2-hover\":{backgroundColor:\"var(--token-93ea978d-0bbc-4430-9cb6-8bc50da2fc39, rgb(180, 239, 112))\"},\"q1LE3XcEF-hover\":{backgroundColor:\"var(--token-93ea978d-0bbc-4430-9cb6-8bc50da2fc39, rgb(180, 239, 112))\"},\"RJqRWUhqm-hover\":{backgroundColor:\"var(--token-93ea978d-0bbc-4430-9cb6-8bc50da2fc39, rgb(180, 239, 112))\"},\"xXAR07nwh-hover\":{backgroundColor:\"var(--token-93ea978d-0bbc-4430-9cb6-8bc50da2fc39, rgb(180, 239, 112))\"}}}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-wvt12d\",\"data-framer-name\":\"Linkedin\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"s4MNJDaOb\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 2.027 0.031 C 2.209 0.071 2.396 0.094 2.571 0.154 C 3.475 0.463 3.993 1.351 3.836 2.308 C 3.691 3.194 2.891 3.868 1.969 3.881 C 1.037 3.893 0.232 3.225 0.061 2.3 C 0.056 2.27 0.041 2.243 0.031 2.214 L 0.031 1.715 C 0.041 1.687 0.054 1.659 0.06 1.63 C 0.193 0.971 0.559 0.488 1.174 0.218 C 1.392 0.122 1.638 0.092 1.872 0.031 L 2.027 0.031 Z M 8.985 15.978 L 5.689 15.978 L 5.689 5.348 L 8.851 5.348 L 8.851 6.823 C 8.901 6.766 8.923 6.748 8.937 6.725 C 9.5 5.795 10.347 5.284 11.399 5.126 C 12.258 4.997 13.113 5.07 13.926 5.403 C 14.866 5.789 15.402 6.528 15.69 7.475 C 15.905 8.182 15.986 8.911 15.991 9.644 C 16.004 11.728 15.998 13.812 16 15.897 C 16 15.917 15.997 15.938 15.994 15.972 L 12.693 15.972 L 12.693 15.793 C 12.693 14 12.694 12.207 12.689 10.413 C 12.688 9.95 12.655 9.488 12.508 9.044 C 12.289 8.382 11.833 8.026 11.138 7.992 C 10.916 7.981 10.688 7.992 10.471 8.033 C 9.693 8.182 9.229 8.691 9.085 9.573 C 9.021 9.966 8.992 10.368 8.989 10.767 C 8.979 12.435 8.985 14.104 8.985 15.772 Z M 0.307 5.34 L 3.593 5.34 L 3.593 15.977 L 0.307 15.977 Z\" fill=\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)) /* {&quot;name&quot;:&quot;Brand-fade&quot;} */\"></path></svg>',svgContentId:10903470367,withExternalLayout:true,...addPropertyOverrides({\"q1LE3XcEF-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 2.027 0.031 C 2.209 0.071 2.396 0.094 2.571 0.154 C 3.475 0.463 3.993 1.351 3.836 2.308 C 3.691 3.194 2.891 3.868 1.969 3.881 C 1.037 3.893 0.232 3.225 0.061 2.3 C 0.056 2.27 0.041 2.243 0.031 2.214 L 0.031 1.715 C 0.041 1.687 0.054 1.659 0.06 1.63 C 0.193 0.971 0.559 0.488 1.174 0.218 C 1.392 0.122 1.638 0.092 1.872 0.031 L 2.027 0.031 Z M 8.985 15.978 L 5.689 15.978 L 5.689 5.348 L 8.851 5.348 L 8.851 6.823 C 8.901 6.766 8.923 6.748 8.937 6.725 C 9.5 5.795 10.347 5.284 11.399 5.126 C 12.258 4.997 13.113 5.07 13.926 5.403 C 14.866 5.789 15.402 6.528 15.69 7.475 C 15.905 8.182 15.986 8.911 15.991 9.644 C 16.004 11.728 15.998 13.812 16 15.897 C 16 15.917 15.997 15.938 15.994 15.972 L 12.693 15.972 L 12.693 15.793 C 12.693 14 12.694 12.207 12.689 10.413 C 12.688 9.95 12.655 9.488 12.508 9.044 C 12.289 8.382 11.833 8.026 11.138 7.992 C 10.916 7.981 10.688 7.992 10.471 8.033 C 9.693 8.182 9.229 8.691 9.085 9.573 C 9.021 9.966 8.992 10.368 8.989 10.767 C 8.979 12.435 8.985 14.104 8.985 15.772 Z M 0.307 5.34 L 3.593 5.34 L 3.593 15.977 L 0.307 15.977 Z\" fill=\"var(--token-713125d9-653c-40f5-9b80-ada6c127de38, rgb(13, 24, 23)) /* {&quot;name&quot;:&quot;Primary&quot;} */\"></path></svg>',svgContentId:12649962981}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ayaqoe\",\"data-framer-name\":\"Facebook\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZhTkD4bOE\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8.997 0.047 L 11.525 0.047 L 11.525 2.802 C 11.434 2.802 11.371 2.802 11.308 2.802 C 10.838 2.81 10.367 2.802 9.898 2.828 C 9.432 2.855 9.221 3.088 9.204 3.578 C 9.186 4.078 9.192 4.579 9.187 5.079 C 9.186 5.145 9.187 5.211 9.187 5.296 L 11.534 5.296 C 11.442 6.224 11.351 7.132 11.259 8.056 L 9.184 8.056 L 9.184 16.046 L 6.07 16.046 L 6.07 8.046 L 4.534 8.046 L 4.534 5.291 L 6.074 5.291 C 6.074 5.009 6.073 4.74 6.074 4.471 C 6.079 3.805 6.045 3.136 6.175 2.477 C 6.297 1.859 6.521 1.295 6.961 0.851 C 7.367 0.442 7.867 0.246 8.405 0.142 C 8.601 0.104 8.8 0.078 8.997 0.046 Z\" fill=\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)) /* {&quot;name&quot;:&quot;Brand-fade&quot;} */\"></path></svg>',svgContentId:11726626900,withExternalLayout:true,...addPropertyOverrides({\"xXAR07nwh-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8.997 0.047 L 11.525 0.047 L 11.525 2.802 C 11.434 2.802 11.371 2.802 11.308 2.802 C 10.838 2.81 10.367 2.802 9.898 2.828 C 9.432 2.855 9.221 3.088 9.204 3.578 C 9.186 4.078 9.192 4.579 9.187 5.079 C 9.186 5.145 9.187 5.211 9.187 5.296 L 11.534 5.296 C 11.442 6.224 11.351 7.132 11.259 8.056 L 9.184 8.056 L 9.184 16.046 L 6.07 16.046 L 6.07 8.046 L 4.534 8.046 L 4.534 5.291 L 6.074 5.291 C 6.074 5.009 6.073 4.74 6.074 4.471 C 6.079 3.805 6.045 3.136 6.175 2.477 C 6.297 1.859 6.521 1.295 6.961 0.851 C 7.367 0.442 7.867 0.246 8.405 0.142 C 8.601 0.104 8.8 0.078 8.997 0.046 Z\" fill=\"var(--token-713125d9-653c-40f5-9b80-ada6c127de38, rgb(13, 24, 23)) /* {&quot;name&quot;:&quot;Primary&quot;} */\"></path></svg>',svgContentId:9011294462},xXAR07nwh:{svgContentId:12380714247}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1otww1r\",\"data-framer-name\":\"Twitter\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BuNtckv80\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 5.238 14.582 L 5.091 14.582 C 5.018 14.574 4.946 14.561 4.873 14.559 C 3.512 14.523 2.22 14.21 0.998 13.615 C 0.702 13.47 0.417 13.302 0.126 13.144 C 1.867 13.263 4.348 12.551 4.885 11.751 C 3.387 11.577 2.012 10.543 1.89 9.518 C 2.119 9.518 2.351 9.528 2.582 9.515 C 2.81 9.503 3.037 9.468 3.265 9.443 L 3.265 9.396 C 2.515 9.212 1.889 8.835 1.408 8.236 C 0.929 7.638 0.694 6.957 0.684 6.188 C 0.931 6.279 1.155 6.379 1.388 6.443 C 1.614 6.505 1.851 6.53 2.083 6.572 L 2.091 6.521 C 0.307 5.219 0.534 3.059 1.173 2.224 C 2.967 4.289 5.232 5.42 7.994 5.614 C 7.989 5.562 7.99 5.539 7.985 5.516 C 7.706 4.158 8.334 2.752 9.54 2.038 C 10.806 1.287 12.446 1.478 13.529 2.507 C 13.62 2.593 13.696 2.626 13.817 2.583 C 14.232 2.438 14.653 2.31 15.065 2.157 C 15.284 2.076 15.49 1.958 15.735 1.84 C 15.468 2.606 15.001 3.176 14.344 3.604 C 14.356 3.624 14.368 3.643 14.379 3.663 C 14.959 3.504 15.539 3.346 16.126 3.186 C 16.084 3.245 16.042 3.309 15.995 3.37 C 15.609 3.883 15.169 4.346 14.664 4.746 C 14.573 4.818 14.547 4.892 14.543 5.005 C 14.524 5.507 14.529 6.014 14.457 6.509 C 14.186 8.37 13.439 10.029 12.193 11.454 C 10.609 13.266 8.594 14.267 6.189 14.511 C 5.873 14.543 5.555 14.559 5.238 14.582 Z\" fill=\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)) /* {&quot;name&quot;:&quot;Brand-fade&quot;} */\"></path></svg>',svgContentId:10731357253,withExternalLayout:true,...addPropertyOverrides({\"MhmThuvO2-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 5.238 14.582 L 5.091 14.582 C 5.018 14.574 4.946 14.561 4.873 14.559 C 3.512 14.523 2.22 14.21 0.998 13.615 C 0.702 13.47 0.417 13.302 0.126 13.144 C 1.867 13.263 4.348 12.551 4.885 11.751 C 3.387 11.577 2.012 10.543 1.89 9.518 C 2.119 9.518 2.351 9.528 2.582 9.515 C 2.81 9.503 3.037 9.468 3.265 9.443 L 3.265 9.396 C 2.515 9.212 1.889 8.835 1.408 8.236 C 0.929 7.638 0.694 6.957 0.684 6.188 C 0.931 6.279 1.155 6.379 1.388 6.443 C 1.614 6.505 1.851 6.53 2.083 6.572 L 2.091 6.521 C 0.307 5.219 0.534 3.059 1.173 2.224 C 2.967 4.289 5.232 5.42 7.994 5.614 C 7.989 5.562 7.99 5.539 7.985 5.516 C 7.706 4.158 8.334 2.752 9.54 2.038 C 10.806 1.287 12.446 1.478 13.529 2.507 C 13.62 2.593 13.696 2.626 13.817 2.583 C 14.232 2.438 14.653 2.31 15.065 2.157 C 15.284 2.076 15.49 1.958 15.735 1.84 C 15.468 2.606 15.001 3.176 14.344 3.604 C 14.356 3.624 14.368 3.643 14.379 3.663 C 14.959 3.504 15.539 3.346 16.126 3.186 C 16.084 3.245 16.042 3.309 15.995 3.37 C 15.609 3.883 15.169 4.346 14.664 4.746 C 14.573 4.818 14.547 4.892 14.543 5.005 C 14.524 5.507 14.529 6.014 14.457 6.509 C 14.186 8.37 13.439 10.029 12.193 11.454 C 10.609 13.266 8.594 14.267 6.189 14.511 C 5.873 14.543 5.555 14.559 5.238 14.582 Z\" fill=\"var(--token-713125d9-653c-40f5-9b80-ada6c127de38, rgb(13, 24, 23)) /* {&quot;name&quot;:&quot;Primary&quot;} */\"></path></svg>',svgContentId:10734868225},MhmThuvO2:{svgContentId:10455506374}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-klhr06\",\"data-framer-name\":\"Youtube\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nK3anUSCm\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8.166 14.744 L 7.999 14.744 C 7.95 14.738 7.901 14.727 7.852 14.726 C 7.058 14.712 6.263 14.705 5.47 14.683 C 4.348 14.651 3.225 14.625 2.115 14.449 C 1.244 14.311 0.663 13.828 0.418 12.988 C 0.342 12.728 0.3 12.456 0.265 12.186 C 0.105 10.95 0.066 9.707 0.103 8.462 C 0.131 7.53 0.176 6.598 0.363 5.68 C 0.555 4.741 1.153 4.141 2.115 3.998 C 2.784 3.899 3.462 3.836 4.137 3.818 C 5.892 3.774 7.647 3.743 9.402 3.744 C 10.901 3.745 12.401 3.786 13.892 3.973 C 14.998 4.112 15.635 4.704 15.838 5.771 C 16 6.621 16.049 7.481 16.075 8.343 C 16.118 9.801 16.081 11.255 15.834 12.697 C 15.671 13.648 15.06 14.292 14.166 14.443 C 13.789 14.506 13.407 14.558 13.025 14.574 C 11.661 14.632 10.295 14.672 8.929 14.719 C 8.675 14.728 8.42 14.736 8.166 14.744 Z M 6.509 6.877 L 6.509 11.576 C 7.897 10.79 9.268 10.014 10.662 9.226 C 9.264 8.435 7.895 7.661 6.509 6.877 Z\" fill=\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)) /* {&quot;name&quot;:&quot;Brand-fade&quot;} */\"></path></svg>',svgContentId:10105056943,withExternalLayout:true,...addPropertyOverrides({\"RJqRWUhqm-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8.166 14.744 L 7.999 14.744 C 7.95 14.738 7.901 14.727 7.852 14.726 C 7.058 14.712 6.263 14.705 5.47 14.683 C 4.348 14.651 3.225 14.625 2.115 14.449 C 1.244 14.311 0.663 13.828 0.418 12.988 C 0.342 12.728 0.3 12.456 0.265 12.186 C 0.105 10.95 0.066 9.707 0.103 8.462 C 0.131 7.53 0.176 6.598 0.363 5.68 C 0.555 4.741 1.153 4.141 2.115 3.998 C 2.784 3.899 3.462 3.836 4.137 3.818 C 5.892 3.774 7.647 3.743 9.402 3.744 C 10.901 3.745 12.401 3.786 13.892 3.973 C 14.998 4.112 15.635 4.704 15.838 5.771 C 16 6.621 16.049 7.481 16.075 8.343 C 16.118 9.801 16.081 11.255 15.834 12.697 C 15.671 13.648 15.06 14.292 14.166 14.443 C 13.789 14.506 13.407 14.558 13.025 14.574 C 11.661 14.632 10.295 14.672 8.929 14.719 C 8.675 14.728 8.42 14.736 8.166 14.744 Z M 6.509 6.877 L 6.509 11.576 C 7.897 10.79 9.268 10.014 10.662 9.226 C 9.264 8.435 7.895 7.661 6.509 6.877 Z\" fill=\"var(--token-713125d9-653c-40f5-9b80-ada6c127de38, rgb(13, 24, 23)) /* {&quot;name&quot;:&quot;Primary&quot;} */\"></path></svg>',svgContentId:9144855665},RJqRWUhqm:{svgContentId:11301665257}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-fy983s\",\"data-framer-name\":\"Instagram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"DZ_4tZjkx\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 3.733 0.047 L 12.356 0.047 C 12.656 0.11 12.964 0.147 13.253 0.241 C 14.936 0.788 16.036 2.297 16.041 4.073 C 16.048 6.723 16.045 9.374 16.042 12.024 C 16.041 12.875 15.805 13.66 15.301 14.349 C 14.473 15.483 13.345 16.044 11.943 16.045 C 9.365 16.048 6.788 16.048 4.211 16.043 C 3.941 16.043 3.667 16.031 3.403 15.983 C 1.924 15.714 0.893 14.874 0.329 13.486 C 0.185 13.131 0.138 12.735 0.045 12.358 L 0.045 3.734 C 0.065 3.622 0.084 3.51 0.105 3.399 C 0.381 1.93 1.214 0.902 2.59 0.336 C 2.95 0.188 3.351 0.14 3.733 0.047 Z M 8.045 11.38 C 9.874 11.38 11.362 9.896 11.378 8.054 C 11.394 6.231 9.879 4.712 8.044 4.712 C 6.213 4.713 4.727 6.195 4.711 8.038 C 4.694 9.862 6.21 11.38 8.044 11.38 Z M 12.382 4.709 C 12.929 4.706 13.374 4.262 13.377 3.717 C 13.38 3.171 12.918 2.709 12.373 2.714 C 11.827 2.718 11.384 3.164 11.382 3.71 C 11.38 3.975 11.485 4.231 11.673 4.418 C 11.861 4.606 12.116 4.711 12.382 4.709 Z\" fill=\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)) /* {&quot;name&quot;:&quot;Brand-fade&quot;} */\"></path></svg>',svgContentId:12421926541,withExternalLayout:true,...addPropertyOverrides({\"IBm2ZnheH-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 3.733 0.047 L 12.356 0.047 C 12.656 0.11 12.964 0.147 13.253 0.241 C 14.936 0.788 16.036 2.297 16.041 4.073 C 16.048 6.723 16.045 9.374 16.042 12.024 C 16.041 12.875 15.805 13.66 15.301 14.349 C 14.473 15.483 13.345 16.044 11.943 16.045 C 9.365 16.048 6.788 16.048 4.211 16.043 C 3.941 16.043 3.667 16.031 3.403 15.983 C 1.924 15.714 0.893 14.874 0.329 13.486 C 0.185 13.131 0.138 12.735 0.045 12.358 L 0.045 3.734 C 0.065 3.622 0.084 3.51 0.105 3.399 C 0.381 1.93 1.214 0.902 2.59 0.336 C 2.95 0.188 3.351 0.14 3.733 0.047 Z M 8.045 11.38 C 9.874 11.38 11.362 9.896 11.378 8.054 C 11.394 6.231 9.879 4.712 8.044 4.712 C 6.213 4.713 4.727 6.195 4.711 8.038 C 4.694 9.862 6.21 11.38 8.044 11.38 Z M 12.382 4.709 C 12.929 4.706 13.374 4.262 13.377 3.717 C 13.38 3.171 12.918 2.709 12.373 2.714 C 11.827 2.718 11.384 3.164 11.382 3.71 C 11.38 3.975 11.485 4.231 11.673 4.418 C 11.861 4.606 12.116 4.711 12.382 4.709 Z\" fill=\"var(--token-713125d9-653c-40f5-9b80-ada6c127de38, rgb(13, 24, 23)) /* {&quot;name&quot;:&quot;Primary&quot;} */\"></path></svg>',svgContentId:10865021400},IBm2ZnheH:{svgContentId:9092811545}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UoAMF.framer-1l32svf, .framer-UoAMF .framer-1l32svf { display: block; }\",\".framer-UoAMF.framer-147bmor { cursor: pointer; height: 40px; overflow: hidden; position: relative; text-decoration: none; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UoAMF .framer-7bte9n { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: -50px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 40px); }\",\".framer-UoAMF .framer-wvt12d, .framer-UoAMF .framer-ayaqoe, .framer-UoAMF .framer-1otww1r, .framer-UoAMF .framer-klhr06, .framer-UoAMF .framer-fy983s { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-UoAMF.framer-v-11wduco.framer-147bmor, .framer-UoAMF.framer-v-11zv8zh.framer-147bmor, .framer-UoAMF.framer-v-1cr0j23.framer-147bmor, .framer-UoAMF.framer-v-4jfy7f.framer-147bmor, .framer-UoAMF.framer-v-147bmor.hover.framer-147bmor { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 40px); }\",\".framer-UoAMF.framer-v-147bmor.hover .framer-7bte9n, .framer-UoAMF.framer-v-11wduco.hover .framer-7bte9n, .framer-UoAMF.framer-v-11zv8zh.hover .framer-7bte9n, .framer-UoAMF.framer-v-1cr0j23.hover .framer-7bte9n, .framer-UoAMF.framer-v-4jfy7f.hover .framer-7bte9n { left: 0px; }\",'.framer-UoAMF[data-border=\"true\"]::after, .framer-UoAMF [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 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xXAR07nwh\":{\"layout\":[\"fixed\",\"fixed\"]},\"MhmThuvO2\":{\"layout\":[\"fixed\",\"fixed\"]},\"RJqRWUhqm\":{\"layout\":[\"fixed\",\"fixed\"]},\"IBm2ZnheH\":{\"layout\":[\"fixed\",\"fixed\"]},\"m3Z3W63SK\":{\"layout\":[\"fixed\",\"fixed\"]},\"uT4sIu01F\":{\"layout\":[\"fixed\",\"fixed\"]},\"JWpbTYuN9\":{\"layout\":[\"fixed\",\"fixed\"]},\"r6OpDiN6X\":{\"layout\":[\"fixed\",\"fixed\"]},\"LncjtdKuy\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQG7Phx8ww=withCSS(Component,css,\"framer-UoAMF\");export default FramerQG7Phx8ww;FramerQG7Phx8ww.displayName=\"Social media logo\";FramerQG7Phx8ww.defaultProps={height:40,width:40};addPropertyControls(FramerQG7Phx8ww,{variant:{options:[\"q1LE3XcEF\",\"xXAR07nwh\",\"MhmThuvO2\",\"RJqRWUhqm\",\"IBm2ZnheH\"],optionTitles:[\"Linkedin\",\"Facebook\",\"Twitter\",\"Youtube\",\"Instagram\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQG7Phx8ww,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQG7Phx8ww\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xXAR07nwh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MhmThuvO2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RJqRWUhqm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IBm2ZnheH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m3Z3W63SK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uT4sIu01F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JWpbTYuN9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r6OpDiN6X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LncjtdKuy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QG7Phx8ww.map","// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/xEQdHVzXlrKK6DsvlmHq/0PRMeFUlftc1g0gaHtOn/b2XTdbfdI.js\";import SocialMediaLogo from\"https://framerusercontent.com/modules/DSviib2PwqPIh4362HP7/AA8V0rIzrAQFcCXmuVl0/QG7Phx8ww.js\";const MotionDivWithFX=withFX(motion.div);const PhosphorFonts=getFonts(Phosphor);const SocialMediaLogoFonts=getFonts(SocialMediaLogo);const cycleOrder=[\"D8RoFThbJ\",\"vf4dZ43VI\",\"GnibYT1QZ\"];const serializationHash=\"framer-2UzMJ\";const variantClassNames={D8RoFThbJ:\"framer-v-18sj3c2\",GnibYT1QZ:\"framer-v-1dionf4\",vf4dZ43VI:\"framer-v-1e2byeu\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={delay:.1,duration:.8,ease:[.59,.25,.17,.99],type:\"tween\"};const transition3={delay:.2,duration:.8,ease:[.59,.25,.17,.99],type:\"tween\"};const transition4={delay:.3,duration:.8,ease:[.59,.25,.17,.99],type:\"tween\"};const transition5={delay:.4,duration:.8,ease:[.59,.25,.17,.99],type:\"tween\"};const transition6={delay:0,duration:.8,ease:[.59,.25,.17,.99],type:\"tween\"};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:\"D8RoFThbJ\",Phone:\"GnibYT1QZ\",Tablet:\"vf4dZ43VI\"};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:\"D8RoFThbJ\"};};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:\"D8RoFThbJ\",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-18sj3c2\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"D8RoFThbJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"radial-gradient(54.120000000000005% 66% at 50% 90.10000000000001%, rgba(180, 240, 113, 0.1) 0%, rgba(12, 23, 22, 0) 100%)\",...style},...addPropertyOverrides({GnibYT1QZ:{\"data-framer-name\":\"Phone\"},vf4dZ43VI:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q3rnu0\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"wBl_wfegk\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-10mli4e\",\"data-framer-name\":\"Brand\",layoutDependency:layoutDependency,layoutId:\"Otg1f6Wry\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WhSkBMngY\"},nodeId:\"dEnnGJRux\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:141.33333333333334,intrinsicWidth:392.6666666666667,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+0+0+20+0),pixelHeight:212,pixelWidth:589,sizes:\"70px\",src:\"https://framerusercontent.com/images/VVMwEhxEhngGuwRb0FqgYlVME4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VVMwEhxEhngGuwRb0FqgYlVME4.png?scale-down-to=512 512w,https://framerusercontent.com/images/VVMwEhxEhngGuwRb0FqgYlVME4.png 589w\"},className:\"framer-12hbzug framer-zluywb\",\"data-framer-name\":\"lift_new\",layoutDependency:layoutDependency,layoutId:\"dEnnGJRux\",...addPropertyOverrides({GnibYT1QZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:141.33333333333334,intrinsicWidth:392.6666666666667,pixelHeight:212,pixelWidth:589,sizes:\"70px\",src:\"https://framerusercontent.com/images/VVMwEhxEhngGuwRb0FqgYlVME4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VVMwEhxEhngGuwRb0FqgYlVME4.png?scale-down-to=512 512w,https://framerusercontent.com/images/VVMwEhxEhngGuwRb0FqgYlVME4.png 589w\"}},vf4dZ43VI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:141.33333333333334,intrinsicWidth:392.6666666666667,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+0+0+0+20+0),pixelHeight:212,pixelWidth:589,sizes:\"70px\",src:\"https://framerusercontent.com/images/VVMwEhxEhngGuwRb0FqgYlVME4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VVMwEhxEhngGuwRb0FqgYlVME4.png?scale-down-to=512 512w,https://framerusercontent.com/images/VVMwEhxEhngGuwRb0FqgYlVME4.png 589w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)))\"},children:\"Lifts Media, a Dallas-based marketing agency, specializes in brand identity, web design, eCommerce, and SEO, delivering tailored solutions with creativity and expertise.\"})}),className:\"framer-128rkw5\",\"data-framer-name\":\"Whether you're a startup ready to make your mark or an established business aiming to amplify your digital strategy, our team is here to guide you.\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"knE1n2X4m\",style:{\"--extracted-r6o4lv\":\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pn1p8d\",\"data-framer-name\":\"Navigation\",layoutDependency:layoutDependency,layoutId:\"xjSj_KXSl\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-s5gyvm\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"N4vktHVfy\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255)))\"},children:\"Navigation\"})}),className:\"framer-5fuhr9\",fonts:[\"GF;Unbounded-regular\"],layoutDependency:layoutDependency,layoutId:\"WKodp66fb\",style:{\"--extracted-a0htzi\":\"var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"dS_MsrfyP\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zu01va\",\"data-styles-preset\":\"b2XTdbfdI\",children:\"Home\"})})})}),className:\"framer-1tbyuus\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"dS_MsrfyP\",style:{\"--extracted-r6o4lv\":\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lvuBkpZaQ\"},nodeId:\"d2dp8LHoA\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zu01va\",\"data-styles-preset\":\"b2XTdbfdI\",children:\"About\"})})})}),className:\"framer-1rbn3af\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"d2dp8LHoA\",style:{\"--extracted-r6o4lv\":\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vXQFFLrqC\"},nodeId:\"bZcZRn1DE\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zu01va\",\"data-styles-preset\":\"b2XTdbfdI\",children:\"Pricing\"})})})}),className:\"framer-1wtd2yt\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"bZcZRn1DE\",style:{\"--extracted-r6o4lv\":\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TQkVy3HAE\"},nodeId:\"UdjcNUDsD\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zu01va\",\"data-styles-preset\":\"b2XTdbfdI\",children:\"Projects\"})})})}),className:\"framer-17flofb\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"UdjcNUDsD\",style:{\"--extracted-r6o4lv\":\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"a9I42D7j6\"},nodeId:\"aX0NWoVQN\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zu01va\",\"data-styles-preset\":\"b2XTdbfdI\",children:\"Contact\"})})})}),className:\"framer-ir4x85\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"aX0NWoVQN\",style:{\"--extracted-r6o4lv\":\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-13yqk4p\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"d9CulmO6O\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255)))\"},children:\"Contact Info\"})}),className:\"framer-157cois\",fonts:[\"GF;Unbounded-regular\"],layoutDependency:layoutDependency,layoutId:\"xpChpzW7a\",style:{\"--extracted-a0htzi\":\"var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-amaf1q\",\"data-framer-name\":\"Email\",layoutDependency:layoutDependency,layoutId:\"KoBRXFXgg\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18fnicc\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"qWkrk1uFl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ewipl-container\",layoutDependency:layoutDependency,layoutId:\"F7eAlpmp0-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Envelope\",id:\"F7eAlpmp0\",layoutId:\"F7eAlpmp0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)))\"},children:\"hello@liftsmedia.co\"})}),className:\"framer-1jrvnzt\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"Urnus8wDp\",style:{\"--extracted-r6o4lv\":\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-r5ceuw\",\"data-framer-name\":\"Social media\",layoutDependency:layoutDependency,layoutId:\"FZArYwNsy\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255)))\"},children:\"Follow us\"})}),className:\"framer-13z56jx\",fonts:[\"GF;Unbounded-regular\"],layoutDependency:layoutDependency,layoutId:\"zKKgzlpAZ\",style:{\"--extracted-a0htzi\":\"var(--token-e91715da-04f6-4d7b-8ef4-d115c6c7cf80, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1luum70\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"RDhRUqDle\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ji5kd3-container\",layoutDependency:layoutDependency,layoutId:\"XQU4HHVfS-container\",children:/*#__PURE__*/_jsx(SocialMediaLogo,{height:\"100%\",id:\"XQU4HHVfS\",layoutId:\"XQU4HHVfS\",style:{height:\"100%\",width:\"100%\"},variant:\"q1LE3XcEF\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b2w2pt-container\",layoutDependency:layoutDependency,layoutId:\"DD8DY8Q2L-container\",children:/*#__PURE__*/_jsx(SocialMediaLogo,{height:\"100%\",id:\"DD8DY8Q2L\",layoutId:\"DD8DY8Q2L\",style:{height:\"100%\",width:\"100%\"},variant:\"MhmThuvO2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9j75r2-container\",layoutDependency:layoutDependency,layoutId:\"F_Ri4MXDT-container\",children:/*#__PURE__*/_jsx(SocialMediaLogo,{height:\"100%\",id:\"F_Ri4MXDT\",layoutId:\"F_Ri4MXDT\",style:{height:\"100%\",width:\"100%\"},variant:\"IBm2ZnheH\",width:\"100%\"})})})]})]})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-rlx6xb\",\"data-border\":true,\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"zLNpt7JRK\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(215, 248, 243, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy1yZWd1bGFy\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243)))\"},children:\"\\xa9 2024 lifts All rights reserved.\"})}),className:\"framer-uqcwvj\",\"data-framer-name\":\"Made with love by Zyth Studio\",fonts:[\"GF;Source Sans 3-regular\"],layoutDependency:layoutDependency,layoutId:\"s7Y01_Y5j\",style:{\"--extracted-r6o4lv\":\"var(--token-ef28711a-2a4f-4e5b-8a86-b0ebf2b3c939, rgb(215, 248, 243))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2UzMJ.framer-zluywb, .framer-2UzMJ .framer-zluywb { display: block; }\",\".framer-2UzMJ.framer-18sj3c2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 15px 0px 15px; position: relative; width: 1200px; }\",\".framer-2UzMJ .framer-1q3rnu0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2UzMJ .framer-10mli4e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 260px; justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 20px; position: relative; width: 400px; }\",\".framer-2UzMJ .framer-12hbzug { aspect-ratio: 2.7783018867924527 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; text-decoration: none; width: 70px; }\",\".framer-2UzMJ .framer-128rkw5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2UzMJ .framer-1pn1p8d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 738px; }\",\".framer-2UzMJ .framer-s5gyvm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-2UzMJ .framer-5fuhr9, .framer-2UzMJ .framer-1tbyuus, .framer-2UzMJ .framer-1rbn3af, .framer-2UzMJ .framer-1wtd2yt, .framer-2UzMJ .framer-17flofb, .framer-2UzMJ .framer-ir4x85 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2UzMJ .framer-13yqk4p { -webkit-user-select: auto; align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; user-select: auto; width: 1px; z-index: 2; }\",\".framer-2UzMJ .framer-157cois, .framer-2UzMJ .framer-13z56jx { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-2UzMJ .framer-amaf1q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2UzMJ .framer-18fnicc { 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: 0px; position: relative; width: 24px; }\",\".framer-2UzMJ .framer-17ewipl-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-2UzMJ .framer-1jrvnzt { -webkit-user-select: auto; flex: 1 0 0px; height: auto; position: relative; user-select: auto; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2UzMJ .framer-r5ceuw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 213px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-2UzMJ .framer-1luum70 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2UzMJ .framer-1ji5kd3-container, .framer-2UzMJ .framer-b2w2pt-container, .framer-2UzMJ .framer-9j75r2-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-2UzMJ .framer-rlx6xb { -webkit-user-select: auto; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; user-select: auto; width: 100%; z-index: 2; }\",\".framer-2UzMJ .framer-uqcwvj { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2UzMJ.framer-18sj3c2, .framer-2UzMJ .framer-1q3rnu0, .framer-2UzMJ .framer-10mli4e, .framer-2UzMJ .framer-1pn1p8d, .framer-2UzMJ .framer-s5gyvm, .framer-2UzMJ .framer-13yqk4p, .framer-2UzMJ .framer-amaf1q, .framer-2UzMJ .framer-18fnicc, .framer-2UzMJ .framer-r5ceuw, .framer-2UzMJ .framer-1luum70, .framer-2UzMJ .framer-rlx6xb { gap: 0px; } .framer-2UzMJ.framer-18sj3c2 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-2UzMJ.framer-18sj3c2 > :first-child, .framer-2UzMJ .framer-10mli4e > :first-child, .framer-2UzMJ .framer-s5gyvm > :first-child, .framer-2UzMJ .framer-13yqk4p > :first-child, .framer-2UzMJ .framer-r5ceuw > :first-child { margin-top: 0px; } .framer-2UzMJ.framer-18sj3c2 > :last-child, .framer-2UzMJ .framer-10mli4e > :last-child, .framer-2UzMJ .framer-s5gyvm > :last-child, .framer-2UzMJ .framer-13yqk4p > :last-child, .framer-2UzMJ .framer-r5ceuw > :last-child { margin-bottom: 0px; } .framer-2UzMJ .framer-1q3rnu0 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-2UzMJ .framer-1q3rnu0 > :first-child, .framer-2UzMJ .framer-1pn1p8d > :first-child, .framer-2UzMJ .framer-amaf1q > :first-child, .framer-2UzMJ .framer-18fnicc > :first-child, .framer-2UzMJ .framer-1luum70 > :first-child, .framer-2UzMJ .framer-rlx6xb > :first-child { margin-left: 0px; } .framer-2UzMJ .framer-1q3rnu0 > :last-child, .framer-2UzMJ .framer-1pn1p8d > :last-child, .framer-2UzMJ .framer-amaf1q > :last-child, .framer-2UzMJ .framer-18fnicc > :last-child, .framer-2UzMJ .framer-1luum70 > :last-child, .framer-2UzMJ .framer-rlx6xb > :last-child { margin-right: 0px; } .framer-2UzMJ .framer-10mli4e > *, .framer-2UzMJ .framer-s5gyvm > *, .framer-2UzMJ .framer-13yqk4p > *, .framer-2UzMJ .framer-r5ceuw > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2UzMJ .framer-1pn1p8d > *, .framer-2UzMJ .framer-18fnicc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2UzMJ .framer-amaf1q > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-2UzMJ .framer-1luum70 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-2UzMJ .framer-rlx6xb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-2UzMJ.framer-v-1e2byeu.framer-18sj3c2 { padding: 64px 32px 0px 32px; width: 1100px; }\",\".framer-2UzMJ.framer-v-1e2byeu .framer-1q3rnu0 { flex-direction: column; gap: 64px; }\",\".framer-2UzMJ.framer-v-1e2byeu .framer-10mli4e { height: min-content; width: 60%; }\",\".framer-2UzMJ.framer-v-1e2byeu .framer-1pn1p8d { padding: 0px 0px 0px 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2UzMJ.framer-v-1e2byeu .framer-1q3rnu0 { gap: 0px; } .framer-2UzMJ.framer-v-1e2byeu .framer-1q3rnu0 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-2UzMJ.framer-v-1e2byeu .framer-1q3rnu0 > :first-child { margin-top: 0px; } .framer-2UzMJ.framer-v-1e2byeu .framer-1q3rnu0 > :last-child { margin-bottom: 0px; } }\",\".framer-2UzMJ.framer-v-1dionf4.framer-18sj3c2 { padding: 64px 15px 0px 15px; width: 390px; }\",\".framer-2UzMJ.framer-v-1dionf4 .framer-1q3rnu0, .framer-2UzMJ.framer-v-1dionf4 .framer-rlx6xb { flex-direction: column; }\",\".framer-2UzMJ.framer-v-1dionf4 .framer-10mli4e { height: min-content; width: 100%; }\",\".framer-2UzMJ.framer-v-1dionf4 .framer-1pn1p8d { flex-direction: column; gap: 32px; width: 100%; }\",\".framer-2UzMJ.framer-v-1dionf4 .framer-s5gyvm { flex: none; padding: 0px 0px 20px 20px; width: 100%; }\",\".framer-2UzMJ.framer-v-1dionf4 .framer-13yqk4p { flex: none; padding: 0px 0px 0px 20px; width: 100%; }\",\".framer-2UzMJ.framer-v-1dionf4 .framer-r5ceuw { flex: none; height: min-content; padding: 0px 0px 0px 20px; width: 100%; }\",\".framer-2UzMJ.framer-v-1dionf4 .framer-uqcwvj { flex: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2UzMJ.framer-v-1dionf4 .framer-1q3rnu0, .framer-2UzMJ.framer-v-1dionf4 .framer-1pn1p8d, .framer-2UzMJ.framer-v-1dionf4 .framer-rlx6xb { gap: 0px; } .framer-2UzMJ.framer-v-1dionf4 .framer-1q3rnu0 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-2UzMJ.framer-v-1dionf4 .framer-1q3rnu0 > :first-child, .framer-2UzMJ.framer-v-1dionf4 .framer-1pn1p8d > :first-child, .framer-2UzMJ.framer-v-1dionf4 .framer-rlx6xb > :first-child { margin-top: 0px; } .framer-2UzMJ.framer-v-1dionf4 .framer-1q3rnu0 > :last-child, .framer-2UzMJ.framer-v-1dionf4 .framer-1pn1p8d > :last-child, .framer-2UzMJ.framer-v-1dionf4 .framer-rlx6xb > :last-child { margin-bottom: 0px; } .framer-2UzMJ.framer-v-1dionf4 .framer-1pn1p8d > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-2UzMJ.framer-v-1dionf4 .framer-rlx6xb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,'.framer-2UzMJ[data-border=\"true\"]::after, .framer-2UzMJ [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 485\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vf4dZ43VI\":{\"layout\":[\"fixed\",\"auto\"]},\"GnibYT1QZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQhsAzb_7X=withCSS(Component,css,\"framer-2UzMJ\");export default FramerQhsAzb_7X;FramerQhsAzb_7X.displayName=\"Section/Footer\";FramerQhsAzb_7X.defaultProps={height:485,width:1200};addPropertyControls(FramerQhsAzb_7X,{variant:{options:[\"D8RoFThbJ\",\"vf4dZ43VI\",\"GnibYT1QZ\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQhsAzb_7X,[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"},{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v8/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx04jHgP6LR0Y.woff2\",weight:\"400\"},{family:\"Source Sans 3\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v15/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EI_io6npfB.woff2\",weight:\"400\"}]},...PhosphorFonts,...SocialMediaLogoFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQhsAzb_7X\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vf4dZ43VI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GnibYT1QZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"485\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}