{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/InputSites.js@1.12.0", "ssg:https://framerusercontent.com/modules/LoWwZfPC4cHteYUUDkMp/VYy8NSVHxmywPghuHqDG/Input_Formspark.js", "ssg:https://framerusercontent.com/modules/jwojm5gu9FyXPgbwt8WP/1ZqaPK62KcpG0P9tielp/Bqga2uRDV.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";const formBody=hasUserGroup?emailBody+\"&\"+userGroupBody:emailBody;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;data.api_key=convertkitAPI;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,convertkitFormID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import Input from\"https://framer.com/m/framer/InputSites.js@1.12.0\";import{ControlType,addPropertyControls}from\"framer\";/**\n * INPUT - FORMSPARK\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */export default function Formspark(props){// This is a React component containing an Example component\n// - Replace <Example /> with your own code\n// - Find inspiration: https://www.framer.com/developers/\nreturn /*#__PURE__*/_jsx(Input,{...props,service:\"formspark\"});}addPropertyControls(Formspark,{formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Formspark\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input_Formspark.map", "// Generated by Framer (a2fb474)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Formspark from\"https://framerusercontent.com/modules/LoWwZfPC4cHteYUUDkMp/VYy8NSVHxmywPghuHqDG/Input_Formspark.js\";const FormsparkFonts=getFonts(Formspark);const cycleOrder=[\"ReSQLc6tn\",\"fqruAMwHy\",\"cOaYTXHzt\"];const serializationHash=\"framer-lHp0M\";const variantClassNames={cOaYTXHzt:\"framer-v-ed6ttz\",fqruAMwHy:\"framer-v-19fiv86\",ReSQLc6tn:\"framer-v-7de4kl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"ReSQLc6tn\",Phone:\"cOaYTXHzt\",Tablet:\"fqruAMwHy\"};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:\"ReSQLc6tn\"};};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:\"ReSQLc6tn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1chdna5=activeVariantCallback(async(...args)=>{setVariant(\"ReSQLc6tn\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"fqruAMwHy\",\"cOaYTXHzt\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"cOaYTXHzt\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"fqruAMwHy\")return true;return false;};const isDisplayed3=()=>{if([\"fqruAMwHy\",\"cOaYTXHzt\"].includes(baseVariant))return false;return true;};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-7de4kl\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ReSQLc6tn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({cOaYTXHzt:{\"data-framer-name\":\"Phone\"},fqruAMwHy:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qwd1zz\",layoutDependency:layoutDependency,layoutId:\"PMrYkXFkU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c8c50o\",layoutDependency:layoutDependency,layoutId:\"Y6lT49yTw\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c2cnch\",layoutDependency:layoutDependency,layoutId:\"zyHPpTtW8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:433.3333333333333,intrinsicWidth:670.6666666666666,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(50+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||520)-100-420)/2)+0+0+0+0+108),pixelHeight:650,pixelWidth:1006,sizes:\"245px\",src:\"https://framerusercontent.com/images/oUFkR8a3AcB3uvlTED1EgcNos2Y.png\",srcSet:\"https://framerusercontent.com/images/oUFkR8a3AcB3uvlTED1EgcNos2Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/oUFkR8a3AcB3uvlTED1EgcNos2Y.png 1006w\"},className:\"framer-1l84uki\",\"data-framer-name\":\"CV_US_Logo_6_Amblem\",layoutDependency:layoutDependency,layoutId:\"rHG9gUmTY\",...addPropertyOverrides({cOaYTXHzt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:433.3333333333333,intrinsicWidth:670.6666666666666,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-40-1036.75)/2)+0+0+0+0+0+0),pixelHeight:650,pixelWidth:1006,sizes:\"245px\",src:\"https://framerusercontent.com/images/oUFkR8a3AcB3uvlTED1EgcNos2Y.png\",srcSet:\"https://framerusercontent.com/images/oUFkR8a3AcB3uvlTED1EgcNos2Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/oUFkR8a3AcB3uvlTED1EgcNos2Y.png 1006w\"}},fqruAMwHy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:433.3333333333333,intrinsicWidth:670.6666666666666,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(40+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1089)-80-1032.75)/2)+0+0+0+0+0+0),pixelHeight:650,pixelWidth:1006,sizes:\"245px\",src:\"https://framerusercontent.com/images/oUFkR8a3AcB3uvlTED1EgcNos2Y.png\",srcSet:\"https://framerusercontent.com/images/oUFkR8a3AcB3uvlTED1EgcNos2Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/oUFkR8a3AcB3uvlTED1EgcNos2Y.png 1006w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mlaetn\",layoutDependency:layoutDependency,layoutId:\"gYRCGlBNX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"36.4px\"},children:\"CV US\"})}),className:\"framer-1nr1abg\",\"data-framer-name\":\"Sirius Ai Tech\",fonts:[\"Inter-Black\"],layoutDependency:layoutDependency,layoutId:\"zkqtchpMG\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Welcome to our hub. Discover the features of Boss AI on the Use Cases tab, read about the success stories of our users and of course check out the live showroom of Lobster Lead, our blog page, completely managed and created by our proprietary product.\"})}),className:\"framer-1fjgs9u\",\"data-framer-name\":\"A Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"GoH2FlCT3\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({cOaYTXHzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Welcome to our hub. Discover the features of Boss AI on the Use Cases tab, read about the success stories of our users and of course check out the live showroom of Lobster Lead, our blog page, completely managed and created by our proprietary product.\"})})},fqruAMwHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Welcome to our hub. Discover the features of Boss AI on the Use Cases tab, read about the success stories of our users and of course check out the live showroom of Lobster Lead, our blog page, completely managed and created by our proprietary product.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eg0j05\",\"data-framer-name\":\"Group 103\",layoutDependency:layoutDependency,layoutId:\"iwFEB2wlM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:\"Social Media\"})}),className:\"framer-srf3dl\",\"data-framer-name\":\"Social Media\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"P93FK9UHl\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jiauvh\",\"data-framer-name\":\"Group 74\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"SKLvCOK0f\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 192 49\"><g transform=\"translate(71.947 0.095)\" id=\"ss9837152030_1\"><path d=\"M 0.053 48.051 L 0.053 0.051 L 48.053 0.051 L 48.053 48.051 Z\" fill=\"transparent\"></path><path d=\"M 24.053 0 C 10.791 0 0 10.788 0 24.051 C 0 37.314 10.791 48.102 24.053 48.102 C 37.314 48.102 48.105 37.314 48.105 24.051 C 48.105 10.788 37.314 0 24.053 0 Z M 24.053 46.5 C 11.675 46.5 1.605 36.429 1.605 24.051 C 1.605 11.673 11.675 1.602 24.053 1.602 C 36.431 1.602 46.5 11.673 46.5 24.051 C 46.5 36.429 36.431 46.5 24.053 46.5 Z\" fill=\"rgb(141,141,141)\"></path><path d=\"M 37.244 16.62 C 37.41 16.312 37.548 15.989 37.654 15.655 C 37.703 15.501 37.704 15.335 37.656 15.179 C 37.609 15.024 37.516 14.887 37.389 14.786 C 37.262 14.684 37.107 14.624 36.946 14.612 C 36.784 14.601 36.622 14.639 36.482 14.721 C 35.713 15.178 34.881 15.518 34.013 15.73 C 32.959 14.779 31.59 14.252 30.17 14.25 C 29.399 14.251 28.635 14.407 27.925 14.71 C 27.216 15.012 26.575 15.455 26.041 16.012 C 25.506 16.568 25.09 17.227 24.816 17.948 C 24.543 18.67 24.418 19.439 24.449 20.209 C 21.075 19.785 17.995 18.078 15.846 15.442 C 15.764 15.343 15.659 15.264 15.54 15.214 C 15.42 15.163 15.291 15.142 15.162 15.153 C 15.033 15.163 14.908 15.204 14.799 15.273 C 14.689 15.342 14.598 15.436 14.532 15.547 C 14.04 16.392 13.773 17.348 13.756 18.325 C 13.738 19.302 13.972 20.268 14.433 21.129 C 14.32 21.148 14.211 21.188 14.112 21.246 C 13.991 21.323 13.891 21.43 13.822 21.556 C 13.753 21.682 13.716 21.824 13.716 21.967 C 13.716 23.67 14.474 25.233 15.695 26.295 L 15.642 26.347 C 15.55 26.452 15.487 26.578 15.458 26.715 C 15.43 26.851 15.437 26.992 15.48 27.124 C 15.735 27.919 16.16 28.648 16.726 29.261 C 17.292 29.873 17.985 30.355 18.756 30.672 C 17.172 31.445 15.398 31.746 13.647 31.54 C 13.467 31.522 13.286 31.564 13.133 31.66 C 12.979 31.755 12.861 31.899 12.798 32.068 C 12.738 32.239 12.737 32.426 12.795 32.597 C 12.854 32.769 12.968 32.915 13.121 33.013 C 15.501 34.541 18.271 35.353 21.099 35.352 C 30.37 35.352 35.911 27.822 35.911 20.542 L 35.909 20.296 C 36.807 19.595 37.588 18.754 38.221 17.806 C 38.316 17.663 38.363 17.493 38.355 17.321 C 38.346 17.148 38.283 16.984 38.173 16.85 C 38.063 16.717 37.914 16.623 37.747 16.582 C 37.579 16.54 37.403 16.554 37.244 16.62 Z M 34.627 19.252 C 34.518 19.331 34.43 19.435 34.372 19.556 C 34.314 19.677 34.287 19.81 34.294 19.944 C 34.303 20.142 34.307 20.343 34.307 20.541 C 34.307 27.033 29.368 33.748 21.101 33.748 C 19.626 33.749 18.163 33.502 16.77 33.016 C 18.438 32.697 20.004 31.982 21.338 30.931 C 21.468 30.829 21.563 30.689 21.61 30.531 C 21.657 30.372 21.654 30.203 21.602 30.046 C 21.549 29.89 21.45 29.753 21.316 29.655 C 21.183 29.557 21.023 29.502 20.858 29.499 C 20.211 29.487 19.576 29.322 19.005 29.02 C 18.433 28.717 17.94 28.284 17.567 27.756 C 17.946 27.73 18.318 27.667 18.68 27.57 C 18.855 27.523 19.009 27.418 19.116 27.273 C 19.224 27.127 19.279 26.95 19.273 26.768 C 19.267 26.587 19.2 26.414 19.082 26.276 C 18.964 26.138 18.804 26.045 18.626 26.01 C 17.895 25.861 17.219 25.517 16.669 25.014 C 16.119 24.51 15.717 23.867 15.504 23.152 C 15.903 23.253 16.313 23.311 16.722 23.325 C 17.075 23.323 17.402 23.107 17.511 22.768 C 17.621 22.429 17.492 22.056 17.193 21.858 C 16.487 21.388 15.944 20.711 15.637 19.92 C 15.33 19.13 15.275 18.264 15.479 17.44 C 18.084 20.114 21.603 21.706 25.331 21.898 C 25.595 21.9 25.826 21.805 25.986 21.612 C 26.147 21.418 26.208 21.162 26.151 20.916 C 25.946 20.032 26.038 19.106 26.412 18.28 C 26.787 17.454 27.423 16.774 28.223 16.346 C 29.023 15.918 29.941 15.766 30.836 15.912 C 31.731 16.059 32.553 16.496 33.175 17.157 C 33.268 17.256 33.385 17.33 33.514 17.372 C 33.644 17.414 33.782 17.422 33.916 17.395 C 34.163 17.346 34.408 17.289 34.649 17.223 C 34.54 17.304 34.427 17.38 34.31 17.449 C 34.154 17.545 34.036 17.69 33.974 17.862 C 33.912 18.033 33.911 18.221 33.97 18.394 C 34.029 18.566 34.145 18.713 34.299 18.811 C 34.453 18.909 34.636 18.951 34.817 18.931 L 35.09 18.897 C 34.94 19.021 34.785 19.139 34.627 19.252 Z\" fill=\"rgb(141,141,141)\"></path></g><g transform=\"translate(143.949 0.095)\" id=\"ss9837152030_5\"><path d=\"M 0.051 48.051 L 0.051 0.051 L 48.051 0.051 L 48.051 48.051 Z\" fill=\"transparent\"></path><path d=\"M 30.836 18.792 C 31.678 18.792 32.361 18.109 32.361 17.267 C 32.361 16.425 31.678 15.742 30.836 15.742 C 29.994 15.742 29.311 16.425 29.311 17.267 C 29.311 18.109 29.994 18.792 30.836 18.792 Z\" fill=\"rgb(141,141,141)\"></path><path d=\"M 20.481 18.708 C 21.538 18.002 22.78 17.625 24.051 17.625 C 25.755 17.625 27.39 18.302 28.595 19.507 C 29.8 20.712 30.477 22.347 30.477 24.051 C 30.477 25.322 30.1 26.564 29.394 27.621 C 28.688 28.677 27.684 29.501 26.51 29.987 C 25.336 30.474 24.044 30.601 22.798 30.353 C 21.551 30.105 20.406 29.493 19.508 28.595 C 18.609 27.696 17.997 26.551 17.749 25.305 C 17.501 24.058 17.628 22.766 18.115 21.592 C 18.601 20.418 19.425 19.414 20.481 18.708 Z M 21.642 27.656 C 22.355 28.133 23.194 28.387 24.051 28.387 C 25.201 28.387 26.304 27.93 27.117 27.117 C 27.93 26.304 28.387 25.201 28.387 24.051 C 28.387 23.193 28.133 22.355 27.656 21.642 C 27.18 20.929 26.503 20.373 25.711 20.045 C 24.918 19.717 24.046 19.631 23.205 19.798 C 22.364 19.966 21.592 20.379 20.985 20.985 C 20.379 21.591 19.966 22.364 19.798 23.205 C 19.631 24.046 19.717 24.918 20.045 25.71 C 20.373 26.503 20.929 27.18 21.642 27.656 Z\" fill=\"rgb(141,141,141)\" stroke-width=\"0.2\" stroke=\"rgb(13,13,13)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.581 14.051 L 31.579 14.05 C 30.813 13.766 30.005 13.616 29.188 13.606 C 27.847 13.545 27.442 13.532 24.05 13.532 C 20.658 13.532 20.253 13.545 18.912 13.606 C 18.095 13.616 17.287 13.766 16.521 14.05 L 16.521 14.05 L 16.519 14.051 C 15.958 14.267 15.449 14.599 15.023 15.024 C 14.598 15.449 14.266 15.959 14.05 16.52 L 14.05 16.52 L 14.049 16.521 C 13.766 17.287 13.616 18.096 13.606 18.913 C 13.544 20.253 13.532 20.659 13.532 24.051 C 13.532 27.443 13.544 27.848 13.606 29.189 C 13.616 30.005 13.766 30.814 14.049 31.58 L 14.05 31.581 C 14.266 32.143 14.598 32.652 15.023 33.078 C 15.449 33.503 15.958 33.835 16.519 34.051 L 16.521 34.052 C 17.287 34.335 18.095 34.485 18.912 34.495 C 20.253 34.557 20.658 34.569 24.05 34.569 C 27.442 34.569 27.847 34.557 29.188 34.495 C 30.005 34.485 30.813 34.335 31.579 34.052 L 31.581 34.051 C 32.142 33.835 32.652 33.503 33.077 33.078 C 33.502 32.652 33.834 32.143 34.05 31.581 L 34.051 31.58 C 34.334 30.814 34.484 30.005 34.494 29.189 C 34.556 27.848 34.568 27.445 34.568 24.052 C 34.568 20.659 34.556 20.253 34.494 18.913 C 34.484 18.096 34.334 17.287 34.051 16.521 L 34.05 16.52 C 33.834 15.959 33.502 15.449 33.077 15.024 C 32.652 14.599 32.142 14.267 31.581 14.051 Z M 18.812 11.519 L 18.812 11.519 L 18.815 11.519 C 20.168 11.458 20.599 11.443 24.05 11.443 C 27.502 11.443 27.931 11.457 29.284 11.52 L 29.284 11.52 L 29.287 11.52 C 30.33 11.541 31.361 11.738 32.338 12.103 C 33.169 12.425 33.924 12.916 34.554 13.547 C 35.184 14.177 35.676 14.931 35.997 15.763 C 36.363 16.739 36.561 17.77 36.582 18.813 L 36.582 18.813 L 36.582 18.815 C 36.643 20.169 36.658 20.599 36.658 24.051 C 36.658 27.503 36.643 27.932 36.582 29.285 L 36.582 29.285 L 36.582 29.288 C 36.561 30.33 36.364 31.362 35.998 32.339 C 35.677 33.17 35.185 33.925 34.555 34.555 C 33.925 35.185 33.17 35.677 32.339 35.998 C 31.362 36.364 30.331 36.562 29.288 36.583 L 29.285 36.583 C 27.932 36.644 27.501 36.659 24.05 36.659 C 20.599 36.659 20.169 36.644 18.816 36.583 L 18.816 36.583 L 18.813 36.583 C 17.77 36.562 16.739 36.364 15.762 35.998 C 14.931 35.677 14.176 35.185 13.546 34.555 C 12.916 33.925 12.424 33.17 12.103 32.339 C 11.737 31.363 11.539 30.331 11.518 29.289 L 11.518 29.289 L 11.518 29.286 C 11.457 27.933 11.442 27.503 11.442 24.051 C 11.442 20.599 11.457 20.17 11.518 18.816 L 11.518 18.816 L 11.518 18.814 C 11.539 17.771 11.737 16.739 12.103 15.763 C 12.424 14.931 12.916 14.177 13.546 13.547 C 14.176 12.916 14.931 12.425 15.762 12.103 C 16.738 11.738 17.77 11.54 18.812 11.519 Z\" fill=\"rgb(141,141,141)\" stroke-width=\"0.2\" stroke=\"rgb(13,13,13)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 24.053 0 C 10.791 0 0 10.788 0 24.051 C 0 37.314 10.791 48.102 24.053 48.102 C 37.314 48.102 48.105 37.314 48.105 24.051 C 48.105 10.788 37.314 0 24.053 0 Z M 24.053 46.5 C 11.675 46.5 1.605 36.429 1.605 24.051 C 1.605 11.673 11.675 1.602 24.053 1.602 C 36.431 1.602 46.5 11.673 46.5 24.051 C 46.5 36.429 36.431 46.5 24.053 46.5 Z\" fill=\"rgb(141,141,141)\"></path></g><g transform=\"translate(-0.053 0.095)\" id=\"ss9837152030_11\"><path d=\"M 0.053 48.051 L 0.053 0.051 L 48.053 0.051 L 48.053 48.051 Z\" fill=\"transparent\"></path><path d=\"M 24.053 0 C 10.791 0 0 10.788 0 24.051 C 0 37.314 10.791 48.102 24.053 48.102 C 37.314 48.102 48.105 37.314 48.105 24.051 C 48.105 10.788 37.314 0 24.053 0 Z M 24.053 46.5 C 11.675 46.5 1.605 36.429 1.605 24.051 C 1.605 11.673 11.675 1.602 24.053 1.602 C 36.431 1.602 46.5 11.673 46.5 24.051 C 46.5 36.429 36.431 46.5 24.053 46.5 Z\" fill=\"rgb(141,141,141)\"></path><path d=\"M 29.303 10.551 L 25.301 10.551 C 20.204 10.5 19.553 13.654 19.553 17.068 L 19.553 19.551 L 17.303 19.551 C 17.201 19.537 17.098 19.547 17 19.58 C 16.903 19.613 16.815 19.668 16.742 19.74 C 16.67 19.813 16.615 19.901 16.582 19.998 C 16.549 20.096 16.539 20.199 16.553 20.301 L 16.553 24.801 C 16.539 24.903 16.549 25.006 16.582 25.103 C 16.615 25.2 16.67 25.289 16.742 25.361 C 16.815 25.434 16.903 25.489 17 25.521 C 17.098 25.554 17.201 25.564 17.303 25.551 L 19.553 25.551 L 19.553 36.801 C 19.54 36.903 19.551 37.006 19.585 37.103 C 19.618 37.2 19.674 37.288 19.746 37.36 C 19.819 37.433 19.908 37.488 20.005 37.521 C 20.102 37.554 20.205 37.564 20.307 37.551 L 24.89 37.551 C 25.332 37.602 25.691 37.243 25.55 36.801 L 25.553 25.551 L 29.303 25.551 C 29.404 25.564 29.508 25.554 29.605 25.521 C 29.702 25.489 29.791 25.434 29.863 25.361 C 29.936 25.289 29.991 25.2 30.023 25.103 C 30.056 25.006 30.066 24.903 30.053 24.801 L 30.053 20.301 C 30.066 20.199 30.056 20.096 30.023 19.998 C 29.991 19.901 29.936 19.813 29.863 19.74 C 29.791 19.668 29.702 19.613 29.605 19.58 C 29.508 19.547 29.404 19.537 29.303 19.551 L 25.548 19.551 L 25.553 17.301 C 25.698 16.342 25.698 16.498 26.588 16.551 L 29.271 16.551 C 29.48 16.504 29.702 16.53 29.858 16.378 C 30.014 16.227 30.104 16.02 30.051 15.801 L 30.051 11.301 C 30.065 11.199 30.055 11.096 30.023 10.999 C 29.99 10.901 29.935 10.813 29.863 10.74 C 29.79 10.668 29.702 10.613 29.605 10.58 C 29.508 10.547 29.404 10.537 29.303 10.551 Z M 28.5 14.967 L 26.619 14.895 C 24.29 14.895 24.095 16.159 24.095 17.454 L 24.089 20.298 C 24.089 20.403 24.109 20.507 24.149 20.605 C 24.189 20.702 24.248 20.791 24.323 20.865 C 24.397 20.94 24.486 20.999 24.583 21.039 C 24.68 21.08 24.784 21.1 24.89 21.1 L 28.553 21.1 L 28.553 23.998 L 24.893 23.998 C 24.68 23.998 24.476 24.083 24.326 24.233 C 24.175 24.383 24.091 24.587 24.09 24.799 L 24.089 36.051 L 21.053 36.051 L 21.053 24.801 C 21.053 24.358 20.751 24 20.307 24 L 18.053 24 L 18.053 21.102 L 20.307 21.102 C 20.413 21.102 20.517 21.081 20.614 21.041 C 20.711 21.001 20.8 20.942 20.874 20.868 C 21.024 20.716 21.051 20.512 21.051 20.299 L 21.051 17.067 C 21.051 13.704 21.731 12.102 25.299 12.102 L 28.499 12.102 L 28.499 14.967 Z\" fill=\"rgb(141,141,141)\"></path></g></svg>',svgContentId:9837152030,withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vchddu\",layoutDependency:layoutDependency,layoutId:\"CzL_lxuNZ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oatvou\",layoutDependency:layoutDependency,layoutId:\"wBmCBH_FS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-line-height\":\"36.4px\"},children:\"Newslatter\"})}),className:\"framer-19z2vyp\",\"data-framer-name\":\"Sirius Ai Tech\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"Y9ggtOw_n\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cOaYTXHzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-line-height\":\"36.4px\"},children:\"Newsletter\"})})},fqruAMwHy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-line-height\":\"36.4px\"},children:\"Newsletter\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rjkvwb-container\",layoutDependency:layoutDependency,layoutId:\"yUJarO0sL-container\",children:/*#__PURE__*/_jsx(Formspark,{button:{buttonFont:{fontFamily:'\"Arial Bold\", \"Arial Bold Placeholder\", sans-serif',fontSize:\"15px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-b24f8877-e6f9-4407-b280-7dfcf294f920, rgb(0, 168, 240))\",insetWhenDocked:0,isDocked:true,label:\"Send\",shouldAppear:true,widthWhenDocked:100},font:{},formsparkID:\"\",gap:10,height:\"100%\",id:\"yUJarO0sL\",input:{borderObject:{borderColor:\"rgb(0, 0, 0)\",borderWidth:1},borderRadius:43,color:\"rgb(0, 0, 0)\",fill:\"rgba(235, 235, 235, 0)\",fixedHeight:50,focusObject:{focusColor:\"rgba(0, 153, 255, 0)\",focusWidthFrom:0,focusWidthTo:0},height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"\",placeholderColor:\"rgba(0, 0, 0, 0.51)\",shadowObject:{shadowBlur:4,shadowColor:\"rgba(0, 0, 0, 0.25)\",shadowX:0,shadowY:2}},layout:\"horizontal\",layoutId:\"yUJarO0sL\",redirectAs:\"link\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({cOaYTXHzt:{button:{buttonFont:{fontFamily:'\"Arial Bold\", \"Arial Bold Placeholder\", sans-serif',fontSize:\"15px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-230862fa-ae0f-43fa-8a3c-2eb328ca5eb4, rgb(0, 149, 255))\",insetWhenDocked:0,isDocked:true,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100}},fqruAMwHy:{button:{buttonFont:{fontFamily:'\"Arial Bold\", \"Arial Bold Placeholder\", sans-serif',fontSize:\"15px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-230862fa-ae0f-43fa-8a3c-2eb328ca5eb4, rgb(0, 149, 255))\",insetWhenDocked:0,isDocked:true,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100}}},baseVariant,gestureVariant)})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13j02du\",layoutDependency:layoutDependency,layoutId:\"sA9KbmVoM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9a1ei\",layoutDependency:layoutDependency,layoutId:\"xJnXIt_mz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"35.45px\",\"--framer-text-alignment\":\"right\"},children:\"Company\"})}),className:\"framer-ysh660\",\"data-framer-name\":\"About Us\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"OWLpuBAcl\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"About\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(141, 141, 141))\"},children:\"Community\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(141, 141, 141))\"},children:\"Career\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(141, 141, 141))\"},children:\"Contact Us\"})]}),className:\"framer-1nf1g72\",\"data-framer-name\":\"Whitepaper Blog Activity\",\"data-highlight\":true,fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"ekJ5wOSfI\",onTap:onTap1chdna5,style:{\"--extracted-14qxiz\":\"rgb(141, 141, 141)\",\"--extracted-1iakedh\":\"rgb(141, 141, 141)\",\"--extracted-2gxw0f\":\"rgb(141, 141, 141)\",\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1su3b18\",layoutDependency:layoutDependency,layoutId:\"IvGXINk83\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"35.45px\",\"--framer-text-alignment\":\"right\"},children:\"Product\"})}),className:\"framer-h91p35\",\"data-framer-name\":\"Support\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"L5g4JqJeh\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Use Cases\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(141, 141, 141))\"},children:\"Case Studies\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(141, 141, 141))\"},children:\"Blog\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(141, 141, 141))\"},children:\"FAQ\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgb(141, 141, 141))\"},children:\"Pricing\"})]}),className:\"framer-18p4smk\",\"data-framer-name\":\"Help & Support Community Author Profile Contact\",\"data-highlight\":true,fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"tl2QeYnJD\",onTap:onTap1chdna5,style:{\"--extracted-14qxiz\":\"rgb(141, 141, 141)\",\"--extracted-1iakedh\":\"rgb(141, 141, 141)\",\"--extracted-2gxw0f\":\"rgb(141, 141, 141)\",\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--extracted-ydz9fi\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aasck9\",layoutDependency:layoutDependency,layoutId:\"Tt2Nxd6pR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rov1km\",layoutDependency:layoutDependency,layoutId:\"d0d10gW8z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"35.45px\",\"--framer-text-alignment\":\"right\"},children:\"Company\"})}),className:\"framer-7iz7yf\",\"data-framer-name\":\"About Us\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"rKsymDkW0\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"About\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(141, 141, 141))\"},children:\"Community\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(141, 141, 141))\"},children:\"Career\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(141, 141, 141))\"},children:\"Contact Us\"})]}),className:\"framer-16kd0ly\",\"data-framer-name\":\"Whitepaper Blog Activity\",\"data-highlight\":true,fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"PiYvtmw6W\",onTap:onTap1chdna5,style:{\"--extracted-14qxiz\":\"rgb(141, 141, 141)\",\"--extracted-1iakedh\":\"rgb(141, 141, 141)\",\"--extracted-2gxw0f\":\"rgb(141, 141, 141)\",\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bxgjjm\",layoutDependency:layoutDependency,layoutId:\"NxlEjzMxE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"35.45px\",\"--framer-text-alignment\":\"right\"},children:\"Product\"})}),className:\"framer-1ir570f\",\"data-framer-name\":\"Support\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"dFd5FUDK2\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Use Cases\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(141, 141, 141))\"},children:\"Case Studies\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(141, 141, 141))\"},children:\"Blog\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(141, 141, 141))\"},children:\"FAQ\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgb(141, 141, 141))\"},children:\"Pricing\"})]}),className:\"framer-zoc2yr\",\"data-framer-name\":\"Help & Support Community Author Profile Contact\",\"data-highlight\":true,fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"Fk97BsUEy\",onTap:onTap1chdna5,style:{\"--extracted-14qxiz\":\"rgb(141, 141, 141)\",\"--extracted-1iakedh\":\"rgb(141, 141, 141)\",\"--extracted-2gxw0f\":\"rgb(141, 141, 141)\",\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--extracted-ydz9fi\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"All rights Siriustedarik@2023\"})}),className:\"framer-pbqrq8\",\"data-framer-name\":\"All rights Siriustedarik@2023\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"JrAxhEKkS\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gwba3e\",layoutDependency:layoutDependency,layoutId:\"uDguoKkTc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-br53e9\",layoutDependency:layoutDependency,layoutId:\"Dp5jIet7w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-line-height\":\"36.4px\"},children:\"Newsletter\"})}),className:\"framer-c61smh\",\"data-framer-name\":\"Sirius Ai Tech\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"CoNWGne8J\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hkskqk-container\",layoutDependency:layoutDependency,layoutId:\"VgY3awgBE-container\",children:/*#__PURE__*/_jsx(Formspark,{button:{buttonFont:{fontFamily:'\"Arial Bold\", \"Arial Bold Placeholder\", sans-serif',fontSize:\"15px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-230862fa-ae0f-43fa-8a3c-2eb328ca5eb4, rgb(0, 149, 255))\",insetWhenDocked:0,isDocked:true,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100},font:{},formsparkID:\"\",gap:10,height:\"100%\",id:\"VgY3awgBE\",input:{borderObject:{borderColor:\"rgb(0, 0, 0)\",borderWidth:1},borderRadius:43,color:\"rgb(0, 0, 0)\",fill:\"rgba(235, 235, 235, 0)\",fixedHeight:50,focusObject:{focusColor:\"rgba(0, 153, 255, 0)\",focusWidthFrom:0,focusWidthTo:0},height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"Enter Email\",placeholderColor:\"rgba(0, 0, 0, 0.51)\",shadowObject:{shadowBlur:4,shadowColor:\"rgba(0, 0, 0, 0.25)\",shadowX:0,shadowY:2}},layout:\"horizontal\",layoutId:\"VgY3awgBE\",redirectAs:\"link\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gmwkp6\",\"data-framer-name\":\"Line 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:582,layoutDependency:layoutDependency,layoutId:\"QMIge9SdC\",svg:'<svg width=\"582\" height=\"3\" viewBox=\"-1 -1 582 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"580\" y2=\"0.5\" stroke=\"white\" stroke-opacity=\"0.32\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2un9mn\",layoutDependency:layoutDependency,layoutId:\"miZv6UxBx\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s4uk32\",layoutDependency:layoutDependency,layoutId:\"QmCISpaVD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"35.45px\",\"--framer-text-alignment\":\"right\"},children:\"Company\"})}),className:\"framer-cz6p25\",\"data-framer-name\":\"About Us\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"Sv1jpbseV\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"About\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(141, 141, 141))\"},children:\"Community\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(141, 141, 141))\"},children:\"Career\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(141, 141, 141))\"},children:\"Contact Us\"})]}),className:\"framer-q8m39z\",\"data-framer-name\":\"Whitepaper Blog Activity\",\"data-highlight\":true,fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"qjrjzhSVb\",onTap:onTap1chdna5,style:{\"--extracted-14qxiz\":\"rgb(141, 141, 141)\",\"--extracted-1iakedh\":\"rgb(141, 141, 141)\",\"--extracted-2gxw0f\":\"rgb(141, 141, 141)\",\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i436c7\",layoutDependency:layoutDependency,layoutId:\"ZbqMqvSEp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"35.45px\",\"--framer-text-alignment\":\"right\"},children:\"Product\"})}),className:\"framer-16t3oow\",\"data-framer-name\":\"Support\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"t3PVhx3KP\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Use Cases\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(141, 141, 141))\"},children:\"Case Studies\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(141, 141, 141))\"},children:\"Blog\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(141, 141, 141))\"},children:\"FAQ\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"33.5px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgb(141, 141, 141))\"},children:\"Pricing\"})]}),className:\"framer-zjjzo4\",\"data-framer-name\":\"Help & Support Community Author Profile Contact\",\"data-highlight\":true,fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"Ob1eM8Tfa\",onTap:onTap1chdna5,style:{\"--extracted-14qxiz\":\"rgb(141, 141, 141)\",\"--extracted-1iakedh\":\"rgb(141, 141, 141)\",\"--extracted-2gxw0f\":\"rgb(141, 141, 141)\",\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--extracted-ydz9fi\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FyaWFsIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arial Regular\", \"Arial Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"All rights Siriustedarik@2023\"})}),className:\"framer-ctjxyz\",\"data-framer-name\":\"All rights Siriustedarik@2023\",fonts:[\"CUSTOM;Arial Regular\"],layoutDependency:layoutDependency,layoutId:\"rowE3EOxT\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lHp0M.framer-d4n8hy, .framer-lHp0M .framer-d4n8hy { display: block; }\",\".framer-lHp0M.framer-7de4kl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 50px 40px 50px 40px; position: relative; width: 1200px; }\",\".framer-lHp0M .framer-1qwd1zz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lHp0M .framer-c8c50o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 374px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lHp0M .framer-1c2cnch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 22%; }\",\".framer-lHp0M .framer-1l84uki { aspect-ratio: 1.5476923076923077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 158px); overflow: visible; position: relative; width: 245px; }\",\".framer-lHp0M .framer-mlaetn { flex: none; height: 360px; overflow: hidden; position: relative; width: 35%; }\",\".framer-lHp0M .framer-1nr1abg { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-lHp0M .framer-1fjgs9u { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 50px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-lHp0M .framer-1eg0j05 { bottom: 0px; flex: none; height: 107px; left: 0px; overflow: visible; position: absolute; width: 192px; }\",\".framer-lHp0M .framer-srf3dl { flex: none; height: auto; left: 1px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-lHp0M .framer-jiauvh { flex: none; height: 49px; left: 0px; position: absolute; top: 59px; width: 192px; }\",\".framer-lHp0M .framer-1vchddu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 392px; }\",\".framer-lHp0M .framer-1oatvou { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 392px; }\",\".framer-lHp0M .framer-19z2vyp, .framer-lHp0M .framer-ysh660, .framer-lHp0M .framer-h91p35, .framer-lHp0M .framer-7iz7yf, .framer-lHp0M .framer-1ir570f, .framer-lHp0M .framer-pbqrq8, .framer-lHp0M .framer-c61smh, .framer-lHp0M .framer-cz6p25, .framer-lHp0M .framer-16t3oow, .framer-lHp0M .framer-ctjxyz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lHp0M .framer-1rjkvwb-container, .framer-lHp0M .framer-hkskqk-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-lHp0M .framer-13j02du { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 311px; }\",\".framer-lHp0M .framer-9a1ei, .framer-lHp0M .framer-1su3b18, .framer-lHp0M .framer-rov1km, .framer-lHp0M .framer-1bxgjjm, .framer-lHp0M .framer-1s4uk32, .framer-lHp0M .framer-1i436c7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-lHp0M .framer-1nf1g72, .framer-lHp0M .framer-18p4smk, .framer-lHp0M .framer-16kd0ly, .framer-lHp0M .framer-zoc2yr, .framer-lHp0M .framer-q8m39z, .framer-lHp0M .framer-zjjzo4 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lHp0M .framer-1aasck9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 392px; }\",\".framer-lHp0M .framer-gwba3e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 35%; }\",\".framer-lHp0M .framer-br53e9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-lHp0M .framer-1gmwkp6 { flex: none; height: 3px; position: relative; width: 380px; }\",\".framer-lHp0M .framer-2un9mn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lHp0M .framer-1qwd1zz, .framer-lHp0M .framer-1c2cnch, .framer-lHp0M .framer-1vchddu, .framer-lHp0M .framer-1oatvou, .framer-lHp0M .framer-9a1ei, .framer-lHp0M .framer-1su3b18, .framer-lHp0M .framer-rov1km, .framer-lHp0M .framer-1bxgjjm, .framer-lHp0M .framer-br53e9, .framer-lHp0M .framer-1s4uk32, .framer-lHp0M .framer-1i436c7 { gap: 0px; } .framer-lHp0M .framer-1qwd1zz > *, .framer-lHp0M .framer-1c2cnch > *, .framer-lHp0M .framer-1oatvou > *, .framer-lHp0M .framer-9a1ei > *, .framer-lHp0M .framer-1su3b18 > *, .framer-lHp0M .framer-rov1km > *, .framer-lHp0M .framer-1bxgjjm > *, .framer-lHp0M .framer-1s4uk32 > *, .framer-lHp0M .framer-1i436c7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lHp0M .framer-1qwd1zz > :first-child, .framer-lHp0M .framer-1c2cnch > :first-child, .framer-lHp0M .framer-1vchddu > :first-child, .framer-lHp0M .framer-1oatvou > :first-child, .framer-lHp0M .framer-9a1ei > :first-child, .framer-lHp0M .framer-1su3b18 > :first-child, .framer-lHp0M .framer-rov1km > :first-child, .framer-lHp0M .framer-1bxgjjm > :first-child, .framer-lHp0M .framer-br53e9 > :first-child, .framer-lHp0M .framer-1s4uk32 > :first-child, .framer-lHp0M .framer-1i436c7 > :first-child { margin-top: 0px; } .framer-lHp0M .framer-1qwd1zz > :last-child, .framer-lHp0M .framer-1c2cnch > :last-child, .framer-lHp0M .framer-1vchddu > :last-child, .framer-lHp0M .framer-1oatvou > :last-child, .framer-lHp0M .framer-9a1ei > :last-child, .framer-lHp0M .framer-1su3b18 > :last-child, .framer-lHp0M .framer-rov1km > :last-child, .framer-lHp0M .framer-1bxgjjm > :last-child, .framer-lHp0M .framer-br53e9 > :last-child, .framer-lHp0M .framer-1s4uk32 > :last-child, .framer-lHp0M .framer-1i436c7 > :last-child { margin-bottom: 0px; } .framer-lHp0M .framer-1vchddu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-lHp0M .framer-br53e9 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",\".framer-lHp0M.framer-v-19fiv86.framer-7de4kl { padding: 40px; width: 810px; }\",\".framer-lHp0M.framer-v-19fiv86 .framer-c8c50o { align-content: center; align-items: center; flex-direction: column; gap: 54px; height: min-content; justify-content: center; order: 0; }\",\".framer-lHp0M.framer-v-19fiv86 .framer-1c2cnch { height: min-content; width: 40%; }\",\".framer-lHp0M.framer-v-19fiv86 .framer-mlaetn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 85%; }\",\".framer-lHp0M.framer-v-19fiv86 .framer-1nr1abg, .framer-lHp0M.framer-v-19fiv86 .framer-srf3dl, .framer-lHp0M.framer-v-19fiv86 .framer-jiauvh, .framer-lHp0M.framer-v-ed6ttz .framer-1nr1abg, .framer-lHp0M.framer-v-ed6ttz .framer-srf3dl, .framer-lHp0M.framer-v-ed6ttz .framer-jiauvh { left: unset; position: relative; top: unset; }\",\".framer-lHp0M.framer-v-19fiv86 .framer-1fjgs9u, .framer-lHp0M.framer-v-ed6ttz .framer-1fjgs9u { left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-lHp0M.framer-v-19fiv86 .framer-1eg0j05, .framer-lHp0M.framer-v-ed6ttz .framer-1eg0j05 { align-content: center; align-items: center; bottom: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: unset; padding: 0px; position: relative; width: 100%; }\",\".framer-lHp0M.framer-v-19fiv86 .framer-1oatvou { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lHp0M.framer-v-19fiv86 .framer-c8c50o, .framer-lHp0M.framer-v-19fiv86 .framer-mlaetn, .framer-lHp0M.framer-v-19fiv86 .framer-1eg0j05 { gap: 0px; } .framer-lHp0M.framer-v-19fiv86 .framer-c8c50o > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-lHp0M.framer-v-19fiv86 .framer-c8c50o > :first-child, .framer-lHp0M.framer-v-19fiv86 .framer-mlaetn > :first-child, .framer-lHp0M.framer-v-19fiv86 .framer-1eg0j05 > :first-child { margin-top: 0px; } .framer-lHp0M.framer-v-19fiv86 .framer-c8c50o > :last-child, .framer-lHp0M.framer-v-19fiv86 .framer-mlaetn > :last-child, .framer-lHp0M.framer-v-19fiv86 .framer-1eg0j05 > :last-child { margin-bottom: 0px; } .framer-lHp0M.framer-v-19fiv86 .framer-mlaetn > *, .framer-lHp0M.framer-v-19fiv86 .framer-1eg0j05 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-lHp0M.framer-v-ed6ttz.framer-7de4kl { padding: 20px; width: 390px; }\",\".framer-lHp0M.framer-v-ed6ttz .framer-c8c50o { align-content: center; align-items: center; flex-direction: column; gap: 55px; height: min-content; justify-content: center; order: 0; }\",\".framer-lHp0M.framer-v-ed6ttz .framer-1c2cnch { height: min-content; width: 80%; }\",\".framer-lHp0M.framer-v-ed6ttz .framer-mlaetn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; }\",\".framer-lHp0M.framer-v-ed6ttz .framer-1vchddu { width: 100%; }\",\".framer-lHp0M.framer-v-ed6ttz .framer-1oatvou { order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lHp0M.framer-v-ed6ttz .framer-c8c50o, .framer-lHp0M.framer-v-ed6ttz .framer-mlaetn, .framer-lHp0M.framer-v-ed6ttz .framer-1eg0j05 { gap: 0px; } .framer-lHp0M.framer-v-ed6ttz .framer-c8c50o > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } .framer-lHp0M.framer-v-ed6ttz .framer-c8c50o > :first-child, .framer-lHp0M.framer-v-ed6ttz .framer-mlaetn > :first-child, .framer-lHp0M.framer-v-ed6ttz .framer-1eg0j05 > :first-child { margin-top: 0px; } .framer-lHp0M.framer-v-ed6ttz .framer-c8c50o > :last-child, .framer-lHp0M.framer-v-ed6ttz .framer-mlaetn > :last-child, .framer-lHp0M.framer-v-ed6ttz .framer-1eg0j05 > :last-child { margin-bottom: 0px; } .framer-lHp0M.framer-v-ed6ttz .framer-mlaetn > *, .framer-lHp0M.framer-v-ed6ttz .framer-1eg0j05 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 520\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fqruAMwHy\":{\"layout\":[\"fixed\",\"auto\"]},\"cOaYTXHzt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBqga2uRDV=withCSS(Component,css,\"framer-lHp0M\");export default FramerBqga2uRDV;FramerBqga2uRDV.displayName=\"Footer\";FramerBqga2uRDV.defaultProps={height:520,width:1200};addPropertyControls(FramerBqga2uRDV,{variant:{options:[\"ReSQLc6tn\",\"fqruAMwHy\",\"cOaYTXHzt\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBqga2uRDV,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"}]},...FormsparkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBqga2uRDV\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fqruAMwHy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cOaYTXHzt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"520\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Bqga2uRDV.map"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "convertkitAPI", "convertkitFormID", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "InputSites_js_1_12_default", "Formspark", "props", "p", "InputSites_js_1_12_default", "addPropertyControls", "ControlType", "FormsparkFonts", "getFonts", "Formspark", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1chdna5", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "SVG", "ComponentViewportProvider", "css", "FramerBqga2uRDV", "withCSS", "Bqga2uRDV_default", "addPropertyControls", "ControlType", "addFonts"]
}
