{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/q6QHBkUymdktnMQmdwdO/Input.js", "ssg:https://framerusercontent.com/modules/VqaHB3gIRuIUtWjo3LNk/7APsVvTxh9wM4MAEGPy4/Checkbox.js", "ssg:https://framerusercontent.com/modules/YAG3rqLsYc8AilJA4NGn/PxoZIdu0kBQ3MIegI5Rb/yqHcjzyBQ.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,loopsMailingList,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const mailingListBody=`mailingLists=${encodeURIComponent(loopsMailingList)}`;const hasMailingList=!!loopsMailingList&&loopsMailingList!==\" \";const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";let formBody=emailBody;if(hasUserGroup){formBody+=`&${userGroupBody}`;}if(hasMailingList){formBody+=`&${mailingListBody}`;}fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;data.api_key=convertkitAPI;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,convertkitFormID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},loopsMailingList:{title:\"Mailing List\",type:ControlType.String,placeholder:\"cm3q41c5v02ii1lml14om2wtr\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType,motion,RenderTarget}from\"framer\";import{colorTokentoValue}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";async function handleActions(callbacks){for(const cb of callbacks){if(!cb)continue;const value=await cb();if(value===false)break;}}/**\n * CHECKBOX\n *\n * @framerIntrinsicWidth 20\n * @framerIntrinsicHeight 20\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Checkbox(props){let{activeBackground,onToggle,onCheck,onUncheck,isChecked,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,checkSize,color,inactiveBackground,inactiveBorder,activeBorder,hasBorder,borderWidth,transition,backgroundTransition,initialAnimation,disabled,joinType,strokeWidth}=props;const[checked,setChecked]=useState(isChecked);const borderRadius=isMixed?`${topLeft}px ${topRight}px ${bottomRight}px ${bottomLeft}px`:`${radius}px`;useEffect(()=>{setChecked(isChecked);},[isChecked]);initialAnimation=RenderTarget.current()!==RenderTarget.preview?false:initialAnimation;const inactiveBorderStyle=`${borderWidth}px solid ${colorTokentoValue(inactiveBorder)}`;const activeBorderStyle=`${borderWidth}px solid ${colorTokentoValue(activeBorder)}`;const animationBuffer=15;const pathLength=8.5;return(/*#__PURE__*/ _jsx(\"div\",{style:containerStyle,\"data-framer-highlight\":!disabled,children:/*#__PURE__*/ _jsx(motion.div,{// @ts-ignore\nstyle:{...checkboxStyle,borderRadius},initial:initialAnimation?{background:checked?colorTokentoValue(inactiveBackground):colorTokentoValue(activeBackground)}:false,animate:{background:checked?colorTokentoValue(activeBackground):colorTokentoValue(inactiveBackground),border:hasBorder?checked?activeBorderStyle:inactiveBorderStyle:\"none\"},transition:backgroundTransition,onTap:()=>{if(disabled)return;handleActions([()=>onToggle&&onToggle(!checked),onCheck,onUncheck,()=>setChecked(!checked),]);},children:/*#__PURE__*/ _jsx(\"svg\",{viewBox:\"0 0 12 12\",style:{margin:1,width:`${checkSize}%`,height:`${checkSize}%`},children:/*#__PURE__*/ _jsx(motion.path,{d:\"M3 6l2 2 4-4\",fill:\"transparent\",strokeWidth:strokeWidth,stroke:color,strokeLinecap:\"round\",strokeLinejoin:joinType,strokeDasharray:pathLength+animationBuffer,transition:transition,initial:{strokeDashoffset:initialAnimation?checked?pathLength+animationBuffer:animationBuffer:checked?animationBuffer:pathLength+animationBuffer},// initial={false}\nanimate:{strokeDashoffset:checked?animationBuffer:pathLength+animationBuffer+3}})})})}));}Checkbox.defaultProps={height:20,width:20,text:\"Get started!\",activeBackground:\"#0099ff\",activeBorder:\"#0066FF\",inactiveBackground:\"#EBEBEB\",inactiveBorder:\"#a5a5a5\",hasBorder:false,radius:5,isChecked:true,borderWidth:1,strokeWidth:1.5,joinType:\"round\",checkSize:100,color:\"white\",initialAnimation:false,disabled:false,transition:{duration:0.15,ease:[0.12,0.23,0.5,1],type:\"tween\"},backgroundTransition:{duration:0.15,ease:[0.12,0.23,0.5,1],type:\"tween\"}};// Learn more: https://framer.com/api/property-controls/\naddPropertyControls(Checkbox,{isChecked:{title:\"Checked\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"},disabled:{title:\"Disabled\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},hasBorder:{title:\"Border\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},borderWidth:{title:\"Width\",type:ControlType.Number,defaultValue:Checkbox.defaultProps.borderWidth,hidden:({hasBorder})=>!hasBorder},activeBorder:{title:\"Active\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.activeBackground,hidden:({hasBorder})=>!hasBorder},inactiveBorder:{title:\"Inactive\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.inactiveBackground,hidden:({hasBorder})=>!hasBorder},activeBackground:{title:\"Active\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.activeBackground},inactiveBackground:{title:\"Inactive\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.inactiveBackground},color:{title:\"Check\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.color},checkSize:{title:\"Check Size\",type:ControlType.Number,unit:\"%\",min:0,max:100,defaultValue:Checkbox.defaultProps.checkSize},joinType:{title:\"Corner\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"miter\",\"round\"],optionTitles:[\"Square\",\"Round\"]},strokeWidth:{title:\"Thickness\",type:ControlType.Number,min:1,max:5,step:0.5,displayStepper:true},radius:{title:\"Radius\",type:ControlType.FusedNumber,defaultValue:Checkbox.defaultProps.radius,toggleKey:\"isMixed\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},transition:{title:\"Check\",type:ControlType.Transition,defaultValue:Checkbox.defaultProps.transition},backgroundTransition:{title:\"Fill\",type:ControlType.Transition,defaultValue:Checkbox.defaultProps.transition},initialAnimation:{title:\"On Load\",type:ControlType.Boolean,enabledTitle:\"Animate\",disabledTitle:\"Instant\"},onToggle:{type:ControlType.EventHandler},onCheck:{type:ControlType.EventHandler},onUncheck:{type:ControlType.EventHandler}});const containerStyle={display:\"flex\",justifyContent:\"center\",alignItems:\"center\",height:\"100%\",width:\"100%\",position:\"absolute\",left:0,right:0,top:0,bottom:0};const checkboxStyle={width:\"100%\",height:\"100%\",borderRadius:6,display:\"flex\",justifyContent:\"center\",alignItems:\"center\",cursor:\"pointer\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Checkbox\":{\"type\":\"reactComponent\",\"name\":\"Checkbox\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"20\",\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"CheckboxProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Checkbox.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/q6QHBkUymdktnMQmdwdO/Input.js\";import HubSpotForm from\"https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/b7VYVaGCWWNyhqVsgsiv/Hubspot.js\";import{Checkbox}from\"https://framerusercontent.com/modules/VqaHB3gIRuIUtWjo3LNk/7APsVvTxh9wM4MAEGPy4/Checkbox.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/BbAAGV5bZEJGJyuzB2sj/O9nWYjyXBmGb3UmrRio5/Co6KcJQxR.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/7DkBukZT3xIPxUG950mS/qhMwcf5DeR8viKEYDx95/GiwGL9nqn.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/9E2Hc96bJHTZr7oNUTDL/AMzgEQy0WCfYhHoBuHJK/L5Fyv5iwq.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/JzoPDYfnrrTYz01KjGUO/BEH3zRTVbJWMrFYGuOrJ/LEr1p2K0R.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/SNGE0q3d4JCPf8UXV7LT/1YtPanRXftqNFYnEnMsS/oDlb3HQWO.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/DJKMTet50KSsz9vMArjH/NEvU6Iv34bOajuOm6SUs/R2Mu1Fpj0.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/LBqw9F8xdNhJjznBqG07/w5n7VY8tyLGhMtIE2eBV/uJgR2Z_hF.js\";import Button from\"https://framerusercontent.com/modules/p1EbzWrVdBGsPIjycTZr/F3sQ1930b3ajEbf4M60c/R6yCrcacV.js\";const HubSpotFormFonts=getFonts(HubSpotForm);const InputFonts=getFonts(Input);const CheckboxFonts=getFonts(Checkbox);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const cycleOrder=[\"RaywnB5zb\",\"GwAznySLo\",\"ZIqj2QRZf\",\"z9SEajALV\",\"FDq13XCYr\",\"Civ3NGKi8\",\"GT_IQGAQN\"];const serializationHash=\"framer-Gks8h\";const variantClassNames={Civ3NGKi8:\"framer-v-17ljdd5\",FDq13XCYr:\"framer-v-t2u73q\",GT_IQGAQN:\"framer-v-vtgsqd\",GwAznySLo:\"framer-v-chmr3w\",RaywnB5zb:\"framer-v-j1gh88\",z9SEajALV:\"framer-v-77gl8i\",ZIqj2QRZf:\"framer-v-1r8aax\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition2={damping:60,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:30};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"default\":return\"Tenez-vous inform\\xe9 sur nos produits, mises \\xe0 jour et actualit\\xe9s sur l'IA.\";case\"OuJzIN905\":return\"Stay informed about our products, updates and AI news.\";default:return\"\";}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"default\":return\"Tenez-vous inform\\xe9 d\\xe8s maintenant sur nos produits, mises \\xe0 jour et actualit\\xe9s.\";case\"OuJzIN905\":return\"Stay informed now about our products, updates and news.\";default:return\"\";}};const convertFromEnum2=(value,activeLocale)=>{switch(value){case\"default\":return\"eb2eed75-63cd-498c-be27-ca7943f8615e\";case\"OuJzIN905\":return\"d29e6750-2cab-4252-b148-0f3580a6dc4c\";default:return\"\";}};const convertFromEnum3=(value,activeLocale)=>{switch(value){case\"default\":return\"Oui, je souhaite m'inscrire \\xe0 la newsletter de XXII GROUP. \";case\"OuJzIN905\":return\"Yes, I want to subscribe to the XXII GROUP newsletter.\";default:return\"\";}};const convertFromEnum4=(value,activeLocale)=>{switch(value){case\"default\":return\"S'abonner\";case\"OuJzIN905\":return\"Subscribe\";default:return\"\";}};const convertFromEnum5=(value,activeLocale)=>{switch(value){case\"default\":return'<div class=\"pipedriveWebForms\" data-pd-webforms=\"https://webforms.pipedrive.com/f/1Cat1Ydv3WGZrrUGTNaQrdGxfdNxEWbwWVoCJhflHJtonwgQkk5NiqtKPy3Tpuffl\"><script src=\"https://webforms.pipedrive.com/f/loader\"></script></div>';case\"OuJzIN905\":return'<div class=\"pipedriveWebForms\" data-pd-webforms=\"https://webforms.pipedrive.com/f/2TBcHCV2r5sFRm0apKdRjlXglYfiDQkhNYST4SboYu4aM4nF8uiBAiwmY0aaK9INd\"><script src=\"https://webforms.pipedrive.com/f/loader\"></script></div>';default:return\"\";}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 2 V2\":\"GT_IQGAQN\",\"Desktop V2\":\"z9SEajALV\",\"Mobile V2\":\"FDq13XCYr\",\"Tablet V2\":\"Civ3NGKi8\",Desktop:\"RaywnB5zb\",Mobile:\"GwAznySLo\",Tablet:\"ZIqj2QRZf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RaywnB5zb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RaywnB5zb\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"GT_IQGAQN\")return false;return true;};const textContent=toString(convertFromEnum(activeLocale?.id,activeLocale));const textContent1=toString(convertFromEnum1(activeLocale?.id,activeLocale));const isDisplayed1=()=>{if([\"z9SEajALV\",\"FDq13XCYr\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"z9SEajALV\",\"FDq13XCYr\",\"Civ3NGKi8\"].includes(baseVariant))return false;return true;};const textContent2=toString(convertFromEnum3(activeLocale?.id,activeLocale));const isDisplayed3=()=>{if([\"z9SEajALV\",\"FDq13XCYr\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"Civ3NGKi8\")return false;return true;};const router=useRouter();const isDisplayed5=()=>{if(baseVariant===\"Civ3NGKi8\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"GT_IQGAQN\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.header,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-j1gh88\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"RaywnB5zb\",ref:refBinding,style:{...style},...addPropertyOverrides({Civ3NGKi8:{\"data-framer-name\":\"Tablet V2\"},FDq13XCYr:{\"data-framer-name\":\"Mobile V2\"},GT_IQGAQN:{\"data-framer-name\":\"Desktop 2 V2\"},GwAznySLo:{\"data-framer-name\":\"Mobile\"},z9SEajALV:{\"data-framer-name\":\"Desktop V2\"},ZIqj2QRZf:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-wwcjt3\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"ORLz4PVOr\",style:{background:\"linear-gradient(180deg, rgb(34, 176, 218) 0%, rgba(26, 161, 201, 0.9) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-184qy9a\",\"data-framer-name\":\"section-title\",layoutDependency:layoutDependency,layoutId:\"w9ZCVqeEy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15njw46\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"gRdke8hLE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-t33a7f\",\"data-styles-preset\":\"LEr1p2K0R\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Newsletter.\"})}),className:\"framer-mow3qn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CDB9kW08B\",style:{\"--extracted-gdpscs\":\"var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{FDq13XCYr:{\"--extracted-1of0zx5\":\"var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28))\"},GwAznySLo:{\"--extracted-1of0zx5\":\"var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Civ3NGKi8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-g6kbn8\",\"data-styles-preset\":\"GiwGL9nqn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Newsletter.\"})})},FDq13XCYr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1m244f7\",\"data-styles-preset\":\"R2Mu1Fpj0\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Newsletter.\"})})},GwAznySLo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1m244f7\",\"data-styles-preset\":\"R2Mu1Fpj0\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Newsletter.\"})})},ZIqj2QRZf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1ap2nsc\",\"data-styles-preset\":\"oDlb3HQWO\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Newsletter.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ujhg70\",\"data-styles-preset\":\"Co6KcJQxR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Content\"})}),className:\"framer-4v6qmk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ru1PTQozu\",style:{\"--extracted-r6o4lv\":\"var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28))\",\"--framer-paragraph-spacing\":\"0px\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Civ3NGKi8:{text:textContent1},FDq13XCYr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1exclip\",\"data-styles-preset\":\"uJgR2Z_hF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Content\"})}),text:textContent1},GwAznySLo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1exclip\",\"data-styles-preset\":\"uJgR2Z_hF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Content\"})})},z9SEajALV:{text:textContent1}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pug2am-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ARDkzcQdS-container\",nodeId:\"ARDkzcQdS\",rendersWithMotion:true,scopeId:\"yqHcjzyBQ\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:toString(convertFromEnum2(activeLocale?.id,activeLocale)),height:\"100%\",id:\"ARDkzcQdS\",layoutId:\"ARDkzcQdS\",portalId:\"145145411\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v8bxbn-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ea7o43orA-container\",nodeId:\"Ea7o43orA\",rendersWithMotion:true,scopeId:\"yqHcjzyBQ\",children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"rgb(51, 51, 51)\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:false,widthWhenDocked:100},convertkitAPI:\"\",convertkitFormID:\"\",font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},formsparkID:\"\",gap:10,getwaitlistAPI:\"\",height:\"100%\",id:\"Ea7o43orA\",input:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"var(--token-53e80739-721e-495b-8aa1-0535af2e207c, rgb(255, 255, 255))\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28))\"},layout:\"horizontal\",layoutId:\"Ea7o43orA\",loopsID:\"\",loopsMailingList:\"\",loopsUserGroup:\"\",mailchimpURL:\"\",redirectAs:\"link\",service:\"loops\",style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ygmiqp\",\"data-framer-name\":\"Consentement\",layoutDependency:layoutDependency,layoutId:\"EISpdVPY2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gh3vau-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xtokJuutz-container\",nodeId:\"xtokJuutz\",rendersWithMotion:true,scopeId:\"yqHcjzyBQ\",children:/*#__PURE__*/_jsx(Checkbox,{activeBackground:\"var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28))\",activeBorder:\"rgb(0, 153, 255)\",backgroundTransition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},borderWidth:1,bottomLeft:5,bottomRight:5,checkSize:100,color:\"rgb(255, 255, 255)\",disabled:false,hasBorder:false,height:\"100%\",id:\"xtokJuutz\",inactiveBackground:\"rgb(235, 235, 235)\",inactiveBorder:\"rgb(235, 235, 235)\",initialAnimation:false,isChecked:false,isMixed:false,joinType:\"round\",layoutId:\"xtokJuutz\",radius:5,strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},topLeft:5,topRight:5,transition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1exclip\",\"data-styles-preset\":\"uJgR2Z_hF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Content\"})}),className:\"framer-ftofzj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xjyPdg_tb\",style:{\"--extracted-r6o4lv\":\"var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28))\",\"--framer-paragraph-spacing\":\"0px\"},text:textContent2,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GwAznySLo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e4ltyb\",\"data-styles-preset\":\"L5Fyv5iwq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Content\"})})}},baseVariant,gestureVariant)})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g6lggp\",\"data-framer-name\":\"cta-button\",layoutDependency:layoutDependency,layoutId:\"L9bEGVAZD\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YBvZDWqJh\"},implicitPathVariables:undefined},{href:{webPageId:\"YBvZDWqJh\"},implicitPathVariables:undefined},{href:{webPageId:\"YBvZDWqJh\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-436)/2+0+0)+197+0,...addPropertyOverrides({GwAznySLo:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-467)/2+0+0)+60+305+0},ZIqj2QRZf:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-416)/2+0+0)+187+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1situ1h-container\",\"data-framer-name\":\"Primary-button\",layoutDependency:layoutDependency,layoutId:\"THHj9mpJE-container\",name:\"Primary-button\",nodeId:\"THHj9mpJE\",rendersWithMotion:true,scopeId:\"yqHcjzyBQ\",children:/*#__PURE__*/_jsx(Button,{GOvBLr491:resolvedLinks[0],height:\"100%\",id:\"THHj9mpJE\",layoutId:\"THHj9mpJE\",name:\"Primary-button\",variant:\"tPTRYmz6d\",width:\"100%\",zNs7Ydai9:toString(convertFromEnum4(activeLocale?.id,activeLocale)),...addPropertyOverrides({GwAznySLo:{GOvBLr491:resolvedLinks[1]},ZIqj2QRZf:{GOvBLr491:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8xr10c-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wsQGJmdrE-container\",nodeId:\"wsQGJmdrE\",rendersWithMotion:true,scopeId:\"yqHcjzyBQ\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:toString(convertFromEnum2(activeLocale?.id,activeLocale)),height:\"100%\",id:\"wsQGJmdrE\",layoutId:\"wsQGJmdrE\",portalId:\"145145411\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),isDisplayed6()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ckk3fi\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"uaWFeWEYD\",style:{background:\"linear-gradient(180deg, rgb(34, 176, 218) 0%, rgba(26, 161, 201, 0.9) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-178q07q\",\"data-framer-name\":\"section-title\",layoutDependency:layoutDependency,layoutId:\"FU9Q3fWnK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yyig4c\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"LkcMec402\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-g6kbn8\",\"data-styles-preset\":\"GiwGL9nqn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Newsletter.\"})}),className:\"framer-1uf0iy1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VB0bYVcfB\",style:{\"--extracted-gdpscs\":\"var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ujhg70\",\"data-styles-preset\":\"Co6KcJQxR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28)))\"},children:\"Content\"})}),className:\"framer-hkwh5o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g7L6IteF8\",style:{\"--extracted-r6o4lv\":\"var(--token-a9775513-0706-4e04-a8c2-eef43b0609e1, rgb(19, 23, 28))\",\"--framer-paragraph-spacing\":\"0px\"},text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3w33zy\",layoutDependency:layoutDependency,layoutId:\"kIYfJPMbv\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-837h2e-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BUQef7pJ8-container\",nodeId:\"BUQef7pJ8\",rendersWithMotion:true,scopeId:\"yqHcjzyBQ\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:toString(convertFromEnum5(activeLocale?.id,activeLocale)),id:\"BUQef7pJ8\",layoutId:\"BUQef7pJ8\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://webforms.pipedrive.com/f/1EkCLOPBlCpe5R5AFdBUVjc8TEUwywLroNtL8HezVBcKphsq0Rxnhs9XFkNyOMre3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11b79f5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aPzG9iPgM-container\",nodeId:\"aPzG9iPgM\",rendersWithMotion:true,scopeId:\"yqHcjzyBQ\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:toString(convertFromEnum2(activeLocale?.id,activeLocale)),height:\"100%\",id:\"aPzG9iPgM\",layoutId:\"aPzG9iPgM\",portalId:\"145145411\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Gks8h.framer-1q9k7ay, .framer-Gks8h .framer-1q9k7ay { display: block; }\",\".framer-Gks8h.framer-j1gh88 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1320px; }\",\".framer-Gks8h .framer-wwcjt3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1320px; overflow: hidden; padding: 70px 55px 70px 55px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Gks8h .framer-184qy9a { 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: 63%; }\",\".framer-Gks8h .framer-15njw46 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 131px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 737px; }\",\".framer-Gks8h .framer-mow3qn, .framer-Gks8h .framer-1uf0iy1 { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Gks8h .framer-4v6qmk, .framer-Gks8h .framer-hkwh5o { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Gks8h .framer-pug2am-container { flex: none; height: 266px; position: relative; width: 568px; }\",\".framer-Gks8h .framer-1v8bxbn-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Gks8h .framer-1ygmiqp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Gks8h .framer-1gh3vau-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-Gks8h .framer-ftofzj { flex: 1 0 0px; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Gks8h .framer-g6lggp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Gks8h .framer-1situ1h-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Gks8h .framer-8xr10c-container { flex: none; height: 266px; position: relative; width: 502px; }\",\".framer-Gks8h .framer-1ckk3fi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 50px 50px 40px 50px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Gks8h .framer-178q07q { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 55px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Gks8h .framer-1yyig4c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 361px; }\",\".framer-Gks8h .framer-3w33zy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Gks8h .framer-837h2e-container { flex: 1 0 0px; height: 278px; position: relative; width: 1px; }\",\".framer-Gks8h .framer-11b79f5-container { flex: none; height: 266px; position: relative; width: 401px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Gks8h.framer-j1gh88, .framer-Gks8h .framer-184qy9a, .framer-Gks8h .framer-15njw46, .framer-Gks8h .framer-1ygmiqp, .framer-Gks8h .framer-g6lggp, .framer-Gks8h .framer-1ckk3fi, .framer-Gks8h .framer-178q07q, .framer-Gks8h .framer-1yyig4c, .framer-Gks8h .framer-3w33zy { gap: 0px; } .framer-Gks8h.framer-j1gh88 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Gks8h.framer-j1gh88 > :first-child, .framer-Gks8h .framer-184qy9a > :first-child, .framer-Gks8h .framer-15njw46 > :first-child, .framer-Gks8h .framer-1yyig4c > :first-child { margin-top: 0px; } .framer-Gks8h.framer-j1gh88 > :last-child, .framer-Gks8h .framer-184qy9a > :last-child, .framer-Gks8h .framer-15njw46 > :last-child, .framer-Gks8h .framer-1yyig4c > :last-child { margin-bottom: 0px; } .framer-Gks8h .framer-184qy9a > *, .framer-Gks8h .framer-15njw46 > *, .framer-Gks8h .framer-1yyig4c > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Gks8h .framer-1ygmiqp > *, .framer-Gks8h .framer-3w33zy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Gks8h .framer-1ygmiqp > :first-child, .framer-Gks8h .framer-g6lggp > :first-child, .framer-Gks8h .framer-1ckk3fi > :first-child, .framer-Gks8h .framer-178q07q > :first-child, .framer-Gks8h .framer-3w33zy > :first-child { margin-left: 0px; } .framer-Gks8h .framer-1ygmiqp > :last-child, .framer-Gks8h .framer-g6lggp > :last-child, .framer-Gks8h .framer-1ckk3fi > :last-child, .framer-Gks8h .framer-178q07q > :last-child, .framer-Gks8h .framer-3w33zy > :last-child { margin-right: 0px; } .framer-Gks8h .framer-g6lggp > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-Gks8h .framer-1ckk3fi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Gks8h .framer-178q07q > * { margin: 0px; margin-left: calc(55px / 2); margin-right: calc(55px / 2); } }\",\".framer-Gks8h.framer-v-chmr3w.framer-j1gh88 { width: min-content; }\",\".framer-Gks8h.framer-v-chmr3w .framer-wwcjt3 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; max-width: unset; padding: 60px 40px 60px 40px; width: 320px; }\",\".framer-Gks8h.framer-v-chmr3w .framer-184qy9a, .framer-Gks8h.framer-v-chmr3w .framer-15njw46 { width: 100%; }\",\".framer-Gks8h.framer-v-chmr3w .framer-mow3qn, .framer-Gks8h.framer-v-t2u73q .framer-mow3qn { max-width: unset; }\",\".framer-Gks8h.framer-v-chmr3w .framer-g6lggp { flex: none; justify-content: flex-start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Gks8h.framer-v-chmr3w .framer-wwcjt3 { gap: 0px; } .framer-Gks8h.framer-v-chmr3w .framer-wwcjt3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Gks8h.framer-v-chmr3w .framer-wwcjt3 > :first-child { margin-top: 0px; } .framer-Gks8h.framer-v-chmr3w .framer-wwcjt3 > :last-child { margin-bottom: 0px; } }\",\".framer-Gks8h.framer-v-1r8aax.framer-j1gh88 { width: 800px; }\",\".framer-Gks8h.framer-v-1r8aax .framer-wwcjt3 { padding: 60px 55px 60px 55px; }\",\".framer-Gks8h.framer-v-77gl8i.framer-j1gh88 { gap: 0px; height: 413px; overflow: visible; width: 1280px; }\",\".framer-Gks8h.framer-v-77gl8i .framer-wwcjt3 { flex: 1 0 0px; gap: 0px; height: 1px; justify-content: center; padding: 70px 70px 60px 70px; }\",\".framer-Gks8h.framer-v-77gl8i .framer-184qy9a { flex-direction: row; gap: 90px; width: 1140px; }\",\".framer-Gks8h.framer-v-77gl8i .framer-15njw46 { height: min-content; width: 449px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Gks8h.framer-v-77gl8i.framer-j1gh88, .framer-Gks8h.framer-v-77gl8i .framer-wwcjt3, .framer-Gks8h.framer-v-77gl8i .framer-184qy9a { gap: 0px; } .framer-Gks8h.framer-v-77gl8i.framer-j1gh88 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Gks8h.framer-v-77gl8i.framer-j1gh88 > :first-child { margin-top: 0px; } .framer-Gks8h.framer-v-77gl8i.framer-j1gh88 > :last-child { margin-bottom: 0px; } .framer-Gks8h.framer-v-77gl8i .framer-wwcjt3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Gks8h.framer-v-77gl8i .framer-wwcjt3 > :first-child, .framer-Gks8h.framer-v-77gl8i .framer-184qy9a > :first-child { margin-left: 0px; } .framer-Gks8h.framer-v-77gl8i .framer-wwcjt3 > :last-child, .framer-Gks8h.framer-v-77gl8i .framer-184qy9a > :last-child { margin-right: 0px; } .framer-Gks8h.framer-v-77gl8i .framer-184qy9a > * { margin: 0px; margin-left: calc(90px / 2); margin-right: calc(90px / 2); } }\",\".framer-Gks8h.framer-v-t2u73q.framer-j1gh88 { overflow: visible; width: 320px; }\",\".framer-Gks8h.framer-v-t2u73q .framer-wwcjt3 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; max-width: unset; padding: 40px 40px 30px 40px; }\",\".framer-Gks8h.framer-v-t2u73q .framer-184qy9a { gap: 30px; overflow: visible; width: 100%; }\",\".framer-Gks8h.framer-v-t2u73q .framer-15njw46 { height: min-content; width: 100%; }\",\".framer-Gks8h.framer-v-t2u73q .framer-pug2am-container { width: 256px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Gks8h.framer-v-t2u73q .framer-wwcjt3, .framer-Gks8h.framer-v-t2u73q .framer-184qy9a { gap: 0px; } .framer-Gks8h.framer-v-t2u73q .framer-wwcjt3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Gks8h.framer-v-t2u73q .framer-wwcjt3 > :first-child, .framer-Gks8h.framer-v-t2u73q .framer-184qy9a > :first-child { margin-top: 0px; } .framer-Gks8h.framer-v-t2u73q .framer-wwcjt3 > :last-child, .framer-Gks8h.framer-v-t2u73q .framer-184qy9a > :last-child { margin-bottom: 0px; } .framer-Gks8h.framer-v-t2u73q .framer-184qy9a > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-Gks8h.framer-v-17ljdd5.framer-j1gh88 { overflow: visible; width: 800px; }\",\".framer-Gks8h.framer-v-17ljdd5 .framer-wwcjt3 { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 50px 40px 40px 40px; }\",\".framer-Gks8h.framer-v-17ljdd5 .framer-184qy9a { align-content: center; align-items: center; width: 100%; }\",\".framer-Gks8h.framer-v-17ljdd5 .framer-15njw46 { height: min-content; width: 479px; }\",\".framer-Gks8h.framer-v-17ljdd5 .framer-g6lggp { flex: none; justify-content: center; width: 100%; }\",\".framer-Gks8h.framer-v-17ljdd5 .framer-8xr10c-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Gks8h.framer-v-17ljdd5 .framer-wwcjt3 { gap: 0px; } .framer-Gks8h.framer-v-17ljdd5 .framer-wwcjt3 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Gks8h.framer-v-17ljdd5 .framer-wwcjt3 > :first-child { margin-top: 0px; } .framer-Gks8h.framer-v-17ljdd5 .framer-wwcjt3 > :last-child { margin-bottom: 0px; } }\",\".framer-Gks8h.framer-v-vtgsqd.framer-j1gh88 { gap: 0px; overflow: visible; width: 920px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Gks8h.framer-v-vtgsqd.framer-j1gh88 { gap: 0px; } .framer-Gks8h.framer-v-vtgsqd.framer-j1gh88 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Gks8h.framer-v-vtgsqd.framer-j1gh88 > :first-child { margin-top: 0px; } .framer-Gks8h.framer-v-vtgsqd.framer-j1gh88 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 361\n * @framerIntrinsicWidth 1320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GwAznySLo\":{\"layout\":[\"auto\",\"auto\"]},\"ZIqj2QRZf\":{\"layout\":[\"fixed\",\"auto\"]},\"z9SEajALV\":{\"layout\":[\"fixed\",\"fixed\"]},\"FDq13XCYr\":{\"layout\":[\"fixed\",\"auto\"]},\"Civ3NGKi8\":{\"layout\":[\"fixed\",\"auto\"]},\"GT_IQGAQN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameryqHcjzyBQ=withCSS(Component,css,\"framer-Gks8h\");export default FrameryqHcjzyBQ;FrameryqHcjzyBQ.displayName=\"Newsletter\";FrameryqHcjzyBQ.defaultProps={height:361,width:1320};addPropertyControls(FrameryqHcjzyBQ,{variant:{options:[\"RaywnB5zb\",\"GwAznySLo\",\"ZIqj2QRZf\",\"z9SEajALV\",\"FDq13XCYr\",\"Civ3NGKi8\",\"GT_IQGAQN\"],optionTitles:[\"Desktop\",\"Mobile\",\"Tablet\",\"Desktop V2\",\"Mobile V2\",\"Tablet V2\",\"Desktop 2 V2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameryqHcjzyBQ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"}]},...HubSpotFormFonts,...InputFonts,...CheckboxFonts,...ButtonFonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryqHcjzyBQ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1320\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GwAznySLo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZIqj2QRZf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z9SEajALV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FDq13XCYr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Civ3NGKi8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GT_IQGAQN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"361\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "loopsMailingList", "formsparkID", "getwaitlistAPI", "convertkitAPI", "convertkitFormID", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "mailingListBody", "hasMailingList", "hasUserGroup", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "Input_default", "handleActions", "callbacks", "cb", "Checkbox", "props", "activeBackground", "onToggle", "onCheck", "onUncheck", "isChecked", "radius", "topLeft", "topRight", "bottomRight", "bottomLeft", "isMixed", "checkSize", "color", "inactiveBackground", "inactiveBorder", "activeBorder", "hasBorder", "borderWidth", "transition", "backgroundTransition", "initialAnimation", "disabled", "joinType", "strokeWidth", "checked", "setChecked", "ye", "borderRadius", "ue", "RenderTarget", "inactiveBorderStyle", "colorTokentoValue", "activeBorderStyle", "animationBuffer", "pathLength", "p", "containerStyle", "motion", "checkboxStyle", "addPropertyControls", "ControlType", "HubSpotFormFonts", "getFonts", "HubSpotForm", "InputFonts", "Input_default", "CheckboxFonts", "Checkbox", "ButtonFonts", "R6yCrcacV_default", "MotionDivWithFX", "withFX", "motion", "EmbedFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "convertFromEnum", "value", "activeLocale", "toString", "convertFromEnum1", "convertFromEnum2", "convertFromEnum3", "convertFromEnum4", "convertFromEnum5", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "textContent", "textContent1", "isDisplayed1", "isDisplayed2", "textContent2", "isDisplayed3", "isDisplayed4", "router", "useRouter", "isDisplayed5", "isDisplayed6", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "css", "FrameryqHcjzyBQ", "withCSS", "yqHcjzyBQ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
