{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js", "ssg:https://framerusercontent.com/modules/4jJTwM8f5AOyrRhuvxth/7uBnfbhxOwZfXryHkwxE/JQa6ahiCA-0.js", "ssg:https://framerusercontent.com/modules/4jJTwM8f5AOyrRhuvxth/7uBnfbhxOwZfXryHkwxE/JQa6ahiCA.js", "ssg:https://framerusercontent.com/modules/nFjzUEb9PhpfPbGGrx4A/Q4wYhUf7ATH8luGW028b/JQa6ahiCA.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useMemo,useState}from\"react\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";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 ref;const[,domain,parameters]=(ref=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&ref!==void 0?ref:[null,null,null];return[domain,new URLSearchParams(parameters)];};/**\n * MAILCHIMP\n *\n * @framerIntrinsicWidth 430\n * @framerIntrinsicHeight 52\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight auto\n */ const Mailchimp=withCSS(function Mailchimp({url,input,button,layout,style,gap,onSubmit,...props}){const[email1,setEmail]=useState(input.value);const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);return false;}return true;},[]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleSubmit=useCallback(()=>{event.preventDefault();const[domain,parameters]=parseMailChimpUrl(url);if(!validateForm(email1)||!domain||!parameters){setLoading(false);}else{parameters.set(\"MERGE0\",email1) // MERGE0 being Mailchimp's email field name\n;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=>{setSuccess(true);onSubmit();}).catch(()=>{setLoading(false);});}},[url,email1]);const handleClick=useCallback(()=>{setLoading(true);},[]);return(/*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,\"--framer-mailchimp-placeholder-color\":input.placeholderColor},children:isSuccess?/*#__PURE__*/ _jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:0.3},children:/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/ _jsxs(\"form\",{style:{width:\"100%\",display:\"grid\",gap,gridTemplateColumns:layout===\"vertical\"?\"1fr\":\"1fr max-content\",gridTemplateRows:layout===\"vertical\"?\"1fr 1fr\":\"1fr\"},onSubmit:handleSubmit,method:\"POST\",children:[/*#__PURE__*/ _jsx(\"div\",{style:{position:\"absolute\",visibility:\"hidden\"},\"aria-hidden\":\"true\",children:/*#__PURE__*/ _jsx(\"input\",{type:\"text\",name:\"b_1487cc549a49109c00fe60a80_93cd7be172\",tabIndex:-1})}),/*#__PURE__*/ _jsx(\"input\",{type:\"email\",name:\"email\",placeholder:input.placeholder,value:isCanvas?input.value:email1,className:\"framer-mailchimp-input\",onChange:handleChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:input.fill,color:input.color,boxShadow:`inset 0 0 0 1px ${isError?input.error:\"transparent\"}`}}),/*#__PURE__*/ _jsxs(\"div\",{style:{position:\"relative\"},children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,onClick:handleClick,style:{...defaultStyle,cursor:\"pointer\",borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,color:button.color,zIndex:1},transition:{type:\"ease\",duration:0.3},whileHover:{opacity:0.8}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",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\"})]})})})]})]})}));},[\".framer-mailchimp-input::placeholder { color: var(--framer-mailchimp-placeholder-color) !important; }\",]);Mailchimp.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15};addPropertyControls(Mailchimp,{url:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,description:\"Create a [Mailchimp](https://mailchimp.com/) account and copy your embedded form URL. [Learn more\u2026](https://www.framer.com/sites/integrations/mailchimp/)\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"email@framer.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},value:{title:\"Value\",type:ControlType.String},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default Mailchimp;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Mailchimp\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"52\",\"framerIntrinsicWidth\":\"430\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Mailchimp.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1qj37e1\",\"data-styles-preset\":\"xpuSvaOe7\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Start with AI!\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Start with AI!\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Start with AI!\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Start with AI!\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-np446i\",\"data-styles-preset\":\"YEI5vBdXm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"meinGPT is a secure Ai platform for small and medium sized businesses.\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xke4uj\",\"data-styles-preset\":\"eTQiCDf_i\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"meinGPT is a secure Ai platform for small and medium sized businesses.\"})});export const v6=\"Get a demo\";\nexport const __FramerMetadata__ = {\"exports\":{\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport*as localizedValues from\"./JQa6ahiCA-0.js\";const valuesByLocaleId={bnXTGW9ms:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Mailchimp from\"https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/qKaN9XIFJaBT2e8IfsU8/BKaScOXOk8ZiQkBFrEuD/eTQiCDf_i.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vc3POpjvfrRPeR22TmOf/UtmsuUad1j5dA8wqSGBT/xpuSvaOe7.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/mawY0E3kUwwKrIEE2Oax/x1T729fQtm9utltXsce3/YEI5vBdXm.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/4jJTwM8f5AOyrRhuvxth/7uBnfbhxOwZfXryHkwxE/JQa6ahiCA.js\";import PrimaryButton from\"https://framerusercontent.com/modules/cNDEHXe6Glf9B5jqJNcz/5edoSj4d8g1d9hSRQkT0/xsn5pEQD6.js\";const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const PrimaryButtonFonts=getFonts(PrimaryButton);const MailchimpFonts=getFonts(Mailchimp);const cycleOrder=[\"YbgQ05HgH\",\"jKwz8rIEr\",\"PWKYJR__X\",\"uoYAkQZg9\",\"t9ytoGDfB\",\"iUy38UcfV\",\"QKYros6W1\",\"zRkrPrAaf\",\"qexAU3Hle\",\"tJAl0Ru4r\",\"pK3djU68d\",\"OYPsm_Lnt\"];const serializationHash=\"framer-4qynb\";const variantClassNames={iUy38UcfV:\"framer-v-s4hrf7\",jKwz8rIEr:\"framer-v-1noiwd0\",OYPsm_Lnt:\"framer-v-3vmtxo\",pK3djU68d:\"framer-v-1ul0k0o\",PWKYJR__X:\"framer-v-rynw5i\",qexAU3Hle:\"framer-v-ikv8vq\",QKYros6W1:\"framer-v-sn7rhn\",t9ytoGDfB:\"framer-v-1od10y8\",tJAl0Ru4r:\"framer-v-7mbfha\",uoYAkQZg9:\"framer-v-rllw5e\",YbgQ05HgH:\"framer-v-m1gqr8\",zRkrPrAaf:\"framer-v-a6av27\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:100,y:0};const transition2={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={damping:60,delay:.8,mass:1,stiffness:400,type:\"spring\"};const transition4={damping:60,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};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 01\":\"YbgQ05HgH\",\"Desktop 02\":\"t9ytoGDfB\",\"Desktop 03\":\"qexAU3Hle\",\"Laptop 01\":\"jKwz8rIEr\",\"Laptop 02\":\"iUy38UcfV\",\"Laptop 03\":\"tJAl0Ru4r\",\"Phone 01\":\"uoYAkQZg9\",\"Phone 02\":\"zRkrPrAaf\",\"Phone 03\":\"OYPsm_Lnt\",\"Tablet 01\":\"PWKYJR__X\",\"Tablet 02\":\"QKYros6W1\",\"Tablet 03\":\"pK3djU68d\"};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:\"YbgQ05HgH\"};};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:\"YbgQ05HgH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"t9ytoGDfB\",\"iUy38UcfV\",\"QKYros6W1\",\"zRkrPrAaf\",\"qexAU3Hle\",\"tJAl0Ru4r\",\"pK3djU68d\",\"OYPsm_Lnt\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if([\"t9ytoGDfB\",\"iUy38UcfV\",\"QKYros6W1\",\"zRkrPrAaf\",\"qexAU3Hle\",\"tJAl0Ru4r\",\"pK3djU68d\",\"OYPsm_Lnt\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.header,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-m1gqr8\",className,classNames),\"data-framer-name\":\"Desktop 01\",layoutDependency:layoutDependency,layoutId:\"YbgQ05HgH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-0618c8d6-171d-47af-84b7-50f662037d3c, rgb(5, 206, 102))\",...style},variants:{iUy38UcfV:{backgroundColor:\"var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(12, 34, 23))\"},QKYros6W1:{backgroundColor:\"var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(12, 34, 23))\"},t9ytoGDfB:{backgroundColor:\"var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(12, 34, 23))\"},zRkrPrAaf:{backgroundColor:\"var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(12, 34, 23))\"}},...addPropertyOverrides({iUy38UcfV:{\"data-framer-name\":\"Laptop 02\"},jKwz8rIEr:{\"data-framer-name\":\"Laptop 01\"},OYPsm_Lnt:{\"data-framer-name\":\"Phone 03\"},pK3djU68d:{\"data-framer-name\":\"Tablet 03\"},PWKYJR__X:{\"data-framer-name\":\"Tablet 01\"},qexAU3Hle:{\"data-framer-name\":\"Desktop 03\"},QKYros6W1:{\"data-framer-name\":\"Tablet 02\"},t9ytoGDfB:{\"data-framer-name\":\"Desktop 02\"},tJAl0Ru4r:{\"data-framer-name\":\"Laptop 03\"},uoYAkQZg9:{\"data-framer-name\":\"Phone 01\"},zRkrPrAaf:{\"data-framer-name\":\"Phone 02\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:929,intrinsicWidth:1392,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||507)-785),pixelHeight:929,pixelWidth:1392,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 160px)`,src:\"https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png\",srcSet:\"https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png 1392w\"},className:\"framer-1k38j13\",\"data-framer-name\":\"Pattern\",layoutDependency:layoutDependency,layoutId:\"Ge6XCPWQM\",...addPropertyOverrides({jKwz8rIEr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:929,intrinsicWidth:1392,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||462)-759),pixelHeight:929,pixelWidth:1392,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 211px)`,src:\"https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png\",srcSet:\"https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png 1392w\"}},PWKYJR__X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:929,intrinsicWidth:1392,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-1201),pixelHeight:929,pixelWidth:1392,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 1101px)`,src:\"https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png\",srcSet:\"https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png 1392w\"}},uoYAkQZg9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:929,intrinsicWidth:1392,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-1184),pixelHeight:929,pixelWidth:1392,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 1436px)`,src:\"https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png\",srcSet:\"https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uaTS2H70o99zMzUX0WgRx5KvyJg.png 1392w\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+-298),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 480px)`,src:\"https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg\",srcSet:\"https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg 1920w\"},className:\"framer-1kohasc\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"lwPIkMRvW\",...addPropertyOverrides({PWKYJR__X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+-30),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 480px)`,src:\"https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg\",srcSet:\"https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg 1920w\"}},uoYAkQZg9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+-70),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 522px)`,src:\"https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg\",srcSet:\"https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jb7qA5ndjF01cEomlu5IyN7js4A.jpg 1920w\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:659,intrinsicWidth:825,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||507)-630),pixelHeight:568,pixelWidth:1079,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SbPGEC0jFcHdUcWULHxo42BUJt4.png\"},className:\"framer-1cyelqz\",\"data-framer-name\":\"Dashboard Image\",layoutDependency:layoutDependency,layoutId:\"vnFZTwLYv\",style:{transformPerspective:1200},...addPropertyOverrides({jKwz8rIEr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:659,intrinsicWidth:825,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||462)-482.5),pixelHeight:568,pixelWidth:1079,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SbPGEC0jFcHdUcWULHxo42BUJt4.png\"}},PWKYJR__X:{__framer__animate:{transition:transition3},__framer__enter:animation1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:659,intrinsicWidth:825,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+70+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-140-999)/2+399+0)),pixelHeight:568,pixelWidth:1079,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SbPGEC0jFcHdUcWULHxo42BUJt4.png\"}},uoYAkQZg9:{__framer__enter:animation1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:659,intrinsicWidth:825,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-105-1149)/2+389+0)),pixelHeight:568,pixelWidth:1079,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SbPGEC0jFcHdUcWULHxo42BUJt4.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17vbx4g\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"wOLkNGuRZ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{iUy38UcfV:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(86, 89, 89, 0.12)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},OYPsm_Lnt:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(86, 89, 89, 0.12)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},pK3djU68d:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(86, 89, 89, 0.12)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},qexAU3Hle:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(86, 89, 89, 0.12)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},QKYros6W1:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(86, 89, 89, 0.12)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},t9ytoGDfB:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(86, 89, 89, 0.12)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},tJAl0Ru4r:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(86, 89, 89, 0.12)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},zRkrPrAaf:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(86, 89, 89, 0.12)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({iUy38UcfV:{\"data-border\":true},OYPsm_Lnt:{\"data-border\":true},pK3djU68d:{\"data-border\":true},qexAU3Hle:{\"data-border\":true},QKYros6W1:{\"data-border\":true},t9ytoGDfB:{\"data-border\":true},tJAl0Ru4r:{\"data-border\":true},zRkrPrAaf:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qrufiv\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"wXCcSvbaN\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1qj37e1\",\"data-styles-preset\":\"xpuSvaOe7\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Jetzt mit KI loslegen!\"})}),className:\"framer-3ku4o4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bAUCF3GdX\",style:{\"--extracted-gdpscs\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iUy38UcfV:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Subscribe to our newsletter for the latest updates.\"})}),fonts:[\"GF;Figtree-600\"]},OYPsm_Lnt:{children:(_getLocalizedValue2=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Subscribe to our newsletter for the latest updates.\"})}),fonts:[\"GF;Figtree-600\"]},pK3djU68d:{children:(_getLocalizedValue3=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Subscribe to our newsletter for the latest updates.\"})}),fonts:[\"GF;Figtree-600\"]},qexAU3Hle:{children:(_getLocalizedValue4=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Subscribe to our newsletter for the latest updates.\"})}),fonts:[\"GF;Figtree-600\"]},QKYros6W1:{children:(_getLocalizedValue5=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Subscribe to our newsletter for the latest updates.\"})}),fonts:[\"GF;Figtree-600\"]},t9ytoGDfB:{children:(_getLocalizedValue6=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Subscribe to our newsletter for the latest updates.\"})}),fonts:[\"GF;Figtree-600\"]},tJAl0Ru4r:{children:(_getLocalizedValue7=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Subscribe to our newsletter for the latest updates.\"})}),fonts:[\"GF;Figtree-600\"]},zRkrPrAaf:{children:(_getLocalizedValue8=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"Subscribe to our newsletter for the latest updates.\"})}),fonts:[\"GF;Figtree-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:(_getLocalizedValue9=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-np446i\",\"data-styles-preset\":\"YEI5vBdXm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"meinGPT ist eine sichere KI-Plattform f\\xfcr kleine und gro\\xdfe Unternehmen. \"})}),className:\"framer-1eatrr7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BbGQ4rKjf\",style:{\"--extracted-r6o4lv\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iUy38UcfV:{children:(_getLocalizedValue10=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xke4uj\",\"data-styles-preset\":\"eTQiCDf_i\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"At [Your Company Name], we believe in keeping you at the forefront of innovation information, and inspiration. That's why we invite you to.\"})})},OYPsm_Lnt:{children:(_getLocalizedValue11=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xke4uj\",\"data-styles-preset\":\"eTQiCDf_i\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"At [Your Company Name], we believe in keeping you at the forefront of innovation information, and inspiration. That's why we invite you to.\"})})},pK3djU68d:{children:(_getLocalizedValue12=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xke4uj\",\"data-styles-preset\":\"eTQiCDf_i\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"At [Your Company Name], we believe in keeping you at the forefront of innovation information, and inspiration. That's why we invite you to.\"})})},qexAU3Hle:{__framer__enter:animation2,__framer__threshold:0,children:(_getLocalizedValue13=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xke4uj\",\"data-styles-preset\":\"eTQiCDf_i\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"At [Your Company Name], we believe in keeping you at the forefront of innovation information, and inspiration. That's why we invite you to.\"})})},QKYros6W1:{children:(_getLocalizedValue14=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xke4uj\",\"data-styles-preset\":\"eTQiCDf_i\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"At [Your Company Name], we believe in keeping you at the forefront of innovation information, and inspiration. That's why we invite you to.\"})})},t9ytoGDfB:{__framer__threshold:0,children:(_getLocalizedValue15=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xke4uj\",\"data-styles-preset\":\"eTQiCDf_i\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"At [Your Company Name], we believe in keeping you at the forefront of innovation information, and inspiration. That's why we invite you to.\"})})},tJAl0Ru4r:{__framer__threshold:0,children:(_getLocalizedValue16=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xke4uj\",\"data-styles-preset\":\"eTQiCDf_i\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"At [Your Company Name], we believe in keeping you at the forefront of innovation information, and inspiration. That's why we invite you to.\"})})},zRkrPrAaf:{children:(_getLocalizedValue17=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xke4uj\",\"data-styles-preset\":\"eTQiCDf_i\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255)))\"},children:\"At [Your Company Name], we believe in keeping you at the forefront of innovation information, and inspiration. That's why we invite you to.\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lfcjuL3_K\"},implicitPathVariables:undefined},{href:{webPageId:\"lfcjuL3_K\"},implicitPathVariables:undefined},{href:{webPageId:\"lfcjuL3_K\"},implicitPathVariables:undefined},{href:{webPageId:\"lfcjuL3_K\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:49,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+110+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||507)-265-364)/2+0+0)+0+0+315,...addPropertyOverrides({jKwz8rIEr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+90+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||462)-190-364)/2+0+0)+0+0+315},PWKYJR__X:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+70+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-140-999)/2+0+0)+0+0+315},uoYAkQZg9:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-105-1149)/2+0+0)+0+0+315}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3c0c5a-container\",layoutDependency:layoutDependency,layoutId:\"MW2rkdtWT-container\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",IBDADqidq:(_getLocalizedValue=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Jetzt anfragen\",id:\"MW2rkdtWT\",layoutId:\"MW2rkdtWT\",variant:\"rfiwe83Q1\",width:\"100%\",X5LroKdYr:resolvedLinks[0],...addPropertyOverrides({jKwz8rIEr:{X5LroKdYr:resolvedLinks[1]},PWKYJR__X:{X5LroKdYr:resolvedLinks[2]},uoYAkQZg9:{X5LroKdYr:resolvedLinks[3]}},baseVariant,gestureVariant)})})});}})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rn9p2y\",\"data-framer-name\":\"Newsletter From\",layoutDependency:layoutDependency,layoutId:\"FPVlxOgIz\",children:isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-94hrdu\",\"data-framer-name\":\"Subscription Form\",layoutDependency:layoutDependency,layoutId:\"EpbZOrZxt\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{OYPsm_Lnt:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},zRkrPrAaf:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5wru6-container\",layoutDependency:layoutDependency,layoutId:\"rMjX1KwOR-container\",children:/*#__PURE__*/_jsx(Mailchimp,{borderRadius:100,bottomLeftRadius:100,bottomRightRadius:100,button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-0618c8d6-171d-47af-84b7-50f662037d3c, rgb(5, 206, 102))\",fontWeight:600,label:\"Get Started Now\"},font:true,fontFamily:\"Satoshi\",fontSize:18,fontWeight:600,gap:0,height:\"100%\",id:\"rMjX1KwOR\",input:{color:\"rgba(255, 255, 255, 0.5)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(255, 255, 255)\",placeholder:\"Your email address\",placeholderColor:\"rgb(86, 89, 89)\",value:\"\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"rMjX1KwOR\",padding:30,paddingBottom:15.5,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:15.5,style:{width:\"100%\"},topLeftRadius:100,topRightRadius:100,url:\"\",width:\"100%\",...addPropertyOverrides({OYPsm_Lnt:{button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(12, 34, 23))\",fontWeight:600,label:\"Get Started Now\"},gap:15,layout:\"vertical\"},pK3djU68d:{button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(12, 34, 23))\",fontWeight:600,label:\"Get Started Now\"}},qexAU3Hle:{button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(12, 34, 23))\",fontWeight:600,label:\"Get Started Now\"},fontFamily:\"Figtree\",fontSize:16,fontWeight:500},tJAl0Ru4r:{button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(12, 34, 23))\",fontWeight:600,label:\"Get Started Now\"}},zRkrPrAaf:{gap:15,layout:\"vertical\"}},baseVariant,gestureVariant)})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4qynb.framer-nevnuz, .framer-4qynb .framer-nevnuz { display: block; }\",\".framer-4qynb.framer-m1gqr8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 110px 30px 155px 30px; position: relative; width: 1440px; }\",\".framer-4qynb .framer-1k38j13 { aspect-ratio: 1.4953271028037383 / 1; bottom: -285px; flex: none; height: var(--framer-aspect-ratio-supported, 1070px); left: -80px; position: absolute; right: -80px; z-index: 1; }\",\".framer-4qynb .framer-1kohasc { bottom: -195px; flex: none; left: -444px; position: absolute; right: -36px; top: -298px; z-index: 2; }\",\".framer-4qynb .framer-1cyelqz { aspect-ratio: 1.2298507462686568 / 1; bottom: -130px; flex: none; height: var(--framer-aspect-ratio-supported, 760px); position: absolute; right: -214px; width: 934px; z-index: 9; }\",\".framer-4qynb .framer-17vbx4g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-4qynb .framer-qrufiv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 52%; }\",\".framer-4qynb .framer-3ku4o4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4qynb .framer-1eatrr7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 95%; word-break: break-word; word-wrap: break-word; }\",\".framer-4qynb .framer-3c0c5a-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-4qynb .framer-1rn9p2y { 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: flex-end; min-height: 70px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4qynb .framer-94hrdu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 70px; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 476px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4qynb .framer-5wru6-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4qynb.framer-m1gqr8, .framer-4qynb .framer-17vbx4g, .framer-4qynb .framer-qrufiv, .framer-4qynb .framer-1rn9p2y, .framer-4qynb .framer-94hrdu { gap: 0px; } .framer-4qynb.framer-m1gqr8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4qynb.framer-m1gqr8 > :first-child, .framer-4qynb .framer-qrufiv > :first-child, .framer-4qynb .framer-1rn9p2y > :first-child { margin-top: 0px; } .framer-4qynb.framer-m1gqr8 > :last-child, .framer-4qynb .framer-qrufiv > :last-child, .framer-4qynb .framer-1rn9p2y > :last-child { margin-bottom: 0px; } .framer-4qynb .framer-17vbx4g > *, .framer-4qynb .framer-94hrdu > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-4qynb .framer-17vbx4g > :first-child, .framer-4qynb .framer-94hrdu > :first-child { margin-left: 0px; } .framer-4qynb .framer-17vbx4g > :last-child, .framer-4qynb .framer-94hrdu > :last-child { margin-right: 0px; } .framer-4qynb .framer-qrufiv > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-4qynb .framer-1rn9p2y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-4qynb.framer-v-1noiwd0.framer-m1gqr8 { padding: 90px 30px 100px 30px; width: 1000px; }\",\".framer-4qynb.framer-v-1noiwd0 .framer-1k38j13 { bottom: -51px; height: var(--framer-aspect-ratio-supported, 809px); left: -105px; right: -106px; }\",\".framer-4qynb.framer-v-1noiwd0 .framer-1cyelqz { bottom: -89px; height: var(--framer-aspect-ratio-supported, 571px); right: -106px; width: 703px; }\",\".framer-4qynb.framer-v-1noiwd0 .framer-17vbx4g { max-width: 1000px; }\",\".framer-4qynb.framer-v-rynw5i.framer-m1gqr8 { padding: 70px 30px 70px 30px; width: 768px; }\",\".framer-4qynb.framer-v-rynw5i .framer-1k38j13 { bottom: -49px; height: var(--framer-aspect-ratio-supported, 1250px); left: -550px; order: 0; right: -551px; }\",\".framer-4qynb.framer-v-rynw5i .framer-1kohasc { bottom: -37px; left: -240px; order: 1; right: -240px; top: -30px; }\",\".framer-4qynb.framer-v-rynw5i .framer-1cyelqz { bottom: unset; height: var(--framer-aspect-ratio-supported, 163px); order: 3; position: relative; right: unset; width: 104%; }\",\".framer-4qynb.framer-v-rynw5i .framer-17vbx4g { justify-content: center; max-width: 768px; order: 2; padding: 0px 0px 35px 0px; }\",\".framer-4qynb.framer-v-rynw5i .framer-qrufiv { width: 75%; }\",\".framer-4qynb.framer-v-rllw5e.framer-m1gqr8 { padding: 50px 20px 55px 20px; width: 390px; }\",\".framer-4qynb.framer-v-rllw5e .framer-1k38j13 { bottom: -37px; height: var(--framer-aspect-ratio-supported, 1221px); left: -299px; order: 0; right: -1137px; }\",\".framer-4qynb.framer-v-rllw5e .framer-1kohasc { order: 1; right: -78px; top: -70px; }\",\".framer-4qynb.framer-v-rllw5e .framer-1cyelqz { bottom: unset; height: var(--framer-aspect-ratio-supported, 163px); order: 3; position: relative; right: unset; width: 100%; }\",\".framer-4qynb.framer-v-rllw5e .framer-17vbx4g { max-width: 390px; order: 2; }\",\".framer-4qynb.framer-v-rllw5e .framer-qrufiv { flex: 1 0 0px; padding: 0px 0px 25px 0px; width: 1px; }\",\".framer-4qynb.framer-v-rllw5e .framer-3ku4o4 { order: 0; }\",\".framer-4qynb.framer-v-rllw5e .framer-1eatrr7 { order: 1; width: 100%; }\",\".framer-4qynb.framer-v-rllw5e .framer-3c0c5a-container { order: 2; }\",\".framer-4qynb.framer-v-1od10y8.framer-m1gqr8, .framer-4qynb.framer-v-ikv8vq.framer-m1gqr8 { padding: 130px 30px 0px 30px; }\",\".framer-4qynb.framer-v-1od10y8 .framer-17vbx4g, .framer-4qynb.framer-v-ikv8vq .framer-17vbx4g { align-content: center; align-items: center; order: 3; padding: 0px 0px 80px 0px; }\",\".framer-4qynb.framer-v-1od10y8 .framer-qrufiv, .framer-4qynb.framer-v-ikv8vq .framer-qrufiv { width: 54%; }\",\".framer-4qynb.framer-v-1od10y8 .framer-1rn9p2y, .framer-4qynb.framer-v-s4hrf7 .framer-1rn9p2y, .framer-4qynb.framer-v-ikv8vq .framer-1rn9p2y, .framer-4qynb.framer-v-7mbfha .framer-1rn9p2y { flex-direction: row; min-height: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4qynb.framer-v-1od10y8 .framer-1rn9p2y { gap: 0px; } .framer-4qynb.framer-v-1od10y8 .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4qynb.framer-v-1od10y8 .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-4qynb.framer-v-1od10y8 .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",\".framer-4qynb.framer-v-s4hrf7.framer-m1gqr8, .framer-4qynb.framer-v-7mbfha.framer-m1gqr8 { padding: 100px 30px 0px 30px; width: 1000px; }\",\".framer-4qynb.framer-v-s4hrf7 .framer-17vbx4g, .framer-4qynb.framer-v-7mbfha .framer-17vbx4g { align-content: center; align-items: center; gap: 30px; max-width: 1000px; order: 3; padding: 0px 0px 80px 0px; }\",\".framer-4qynb.framer-v-s4hrf7 .framer-94hrdu, .framer-4qynb.framer-v-sn7rhn .framer-94hrdu, .framer-4qynb.framer-v-a6av27 .framer-94hrdu, .framer-4qynb.framer-v-7mbfha .framer-94hrdu, .framer-4qynb.framer-v-1ul0k0o .framer-94hrdu, .framer-4qynb.framer-v-3vmtxo .framer-94hrdu { flex: 1 0 0px; height: min-content; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4qynb.framer-v-s4hrf7 .framer-17vbx4g, .framer-4qynb.framer-v-s4hrf7 .framer-1rn9p2y { gap: 0px; } .framer-4qynb.framer-v-s4hrf7 .framer-17vbx4g > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-4qynb.framer-v-s4hrf7 .framer-17vbx4g > :first-child, .framer-4qynb.framer-v-s4hrf7 .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-4qynb.framer-v-s4hrf7 .framer-17vbx4g > :last-child, .framer-4qynb.framer-v-s4hrf7 .framer-1rn9p2y > :last-child { margin-right: 0px; } .framer-4qynb.framer-v-s4hrf7 .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-4qynb.framer-v-sn7rhn.framer-m1gqr8, .framer-4qynb.framer-v-1ul0k0o.framer-m1gqr8 { padding: 60px 30px 0px 30px; width: 768px; }\",\".framer-4qynb.framer-v-sn7rhn .framer-17vbx4g, .framer-4qynb.framer-v-1ul0k0o .framer-17vbx4g { flex-direction: column; gap: 30px; max-width: 768px; order: 3; padding: 0px 0px 60px 0px; width: 80%; }\",\".framer-4qynb.framer-v-sn7rhn .framer-qrufiv, .framer-4qynb.framer-v-1ul0k0o .framer-qrufiv { width: 100%; }\",\".framer-4qynb.framer-v-sn7rhn .framer-1rn9p2y, .framer-4qynb.framer-v-1ul0k0o .framer-1rn9p2y { flex: none; flex-direction: row; min-height: unset; width: 90%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4qynb.framer-v-sn7rhn .framer-17vbx4g, .framer-4qynb.framer-v-sn7rhn .framer-1rn9p2y { gap: 0px; } .framer-4qynb.framer-v-sn7rhn .framer-17vbx4g > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-4qynb.framer-v-sn7rhn .framer-17vbx4g > :first-child { margin-top: 0px; } .framer-4qynb.framer-v-sn7rhn .framer-17vbx4g > :last-child { margin-bottom: 0px; } .framer-4qynb.framer-v-sn7rhn .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4qynb.framer-v-sn7rhn .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-4qynb.framer-v-sn7rhn .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",\".framer-4qynb.framer-v-a6av27.framer-m1gqr8, .framer-4qynb.framer-v-3vmtxo.framer-m1gqr8 { padding: 50px 20px 0px 20px; width: 390px; }\",\".framer-4qynb.framer-v-a6av27 .framer-17vbx4g, .framer-4qynb.framer-v-3vmtxo .framer-17vbx4g { flex-direction: column; gap: 30px; max-width: 390px; order: 3; padding: 0px 0px 40px 0px; }\",\".framer-4qynb.framer-v-a6av27 .framer-qrufiv, .framer-4qynb.framer-v-3vmtxo .framer-qrufiv { gap: 20px; width: 100%; }\",\".framer-4qynb.framer-v-a6av27 .framer-1rn9p2y, .framer-4qynb.framer-v-3vmtxo .framer-1rn9p2y { flex: none; flex-direction: row; min-height: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4qynb.framer-v-a6av27 .framer-17vbx4g, .framer-4qynb.framer-v-a6av27 .framer-qrufiv, .framer-4qynb.framer-v-a6av27 .framer-1rn9p2y { gap: 0px; } .framer-4qynb.framer-v-a6av27 .framer-17vbx4g > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-4qynb.framer-v-a6av27 .framer-17vbx4g > :first-child, .framer-4qynb.framer-v-a6av27 .framer-qrufiv > :first-child { margin-top: 0px; } .framer-4qynb.framer-v-a6av27 .framer-17vbx4g > :last-child, .framer-4qynb.framer-v-a6av27 .framer-qrufiv > :last-child { margin-bottom: 0px; } .framer-4qynb.framer-v-a6av27 .framer-qrufiv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-4qynb.framer-v-a6av27 .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4qynb.framer-v-a6av27 .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-4qynb.framer-v-a6av27 .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",\".framer-4qynb.framer-v-ikv8vq .framer-1eatrr7 { width: 85%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4qynb.framer-v-ikv8vq .framer-1rn9p2y { gap: 0px; } .framer-4qynb.framer-v-ikv8vq .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4qynb.framer-v-ikv8vq .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-4qynb.framer-v-ikv8vq .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4qynb.framer-v-7mbfha .framer-17vbx4g, .framer-4qynb.framer-v-7mbfha .framer-1rn9p2y { gap: 0px; } .framer-4qynb.framer-v-7mbfha .framer-17vbx4g > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-4qynb.framer-v-7mbfha .framer-17vbx4g > :first-child, .framer-4qynb.framer-v-7mbfha .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-4qynb.framer-v-7mbfha .framer-17vbx4g > :last-child, .framer-4qynb.framer-v-7mbfha .framer-1rn9p2y > :last-child { margin-right: 0px; } .framer-4qynb.framer-v-7mbfha .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4qynb.framer-v-1ul0k0o .framer-17vbx4g, .framer-4qynb.framer-v-1ul0k0o .framer-1rn9p2y { gap: 0px; } .framer-4qynb.framer-v-1ul0k0o .framer-17vbx4g > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-4qynb.framer-v-1ul0k0o .framer-17vbx4g > :first-child { margin-top: 0px; } .framer-4qynb.framer-v-1ul0k0o .framer-17vbx4g > :last-child { margin-bottom: 0px; } .framer-4qynb.framer-v-1ul0k0o .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4qynb.framer-v-1ul0k0o .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-4qynb.framer-v-1ul0k0o .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4qynb.framer-v-3vmtxo .framer-17vbx4g, .framer-4qynb.framer-v-3vmtxo .framer-qrufiv, .framer-4qynb.framer-v-3vmtxo .framer-1rn9p2y { gap: 0px; } .framer-4qynb.framer-v-3vmtxo .framer-17vbx4g > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-4qynb.framer-v-3vmtxo .framer-17vbx4g > :first-child, .framer-4qynb.framer-v-3vmtxo .framer-qrufiv > :first-child { margin-top: 0px; } .framer-4qynb.framer-v-3vmtxo .framer-17vbx4g > :last-child, .framer-4qynb.framer-v-3vmtxo .framer-qrufiv > :last-child { margin-bottom: 0px; } .framer-4qynb.framer-v-3vmtxo .framer-qrufiv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-4qynb.framer-v-3vmtxo .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4qynb.framer-v-3vmtxo .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-4qynb.framer-v-3vmtxo .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-4qynb[data-border=\"true\"]::after, .framer-4qynb [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 507\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jKwz8rIEr\":{\"layout\":[\"fixed\",\"auto\"]},\"PWKYJR__X\":{\"layout\":[\"fixed\",\"auto\"]},\"uoYAkQZg9\":{\"layout\":[\"fixed\",\"auto\"]},\"t9ytoGDfB\":{\"layout\":[\"fixed\",\"auto\"]},\"iUy38UcfV\":{\"layout\":[\"fixed\",\"auto\"]},\"QKYros6W1\":{\"layout\":[\"fixed\",\"auto\"]},\"zRkrPrAaf\":{\"layout\":[\"fixed\",\"auto\"]},\"qexAU3Hle\":{\"layout\":[\"fixed\",\"auto\"]},\"tJAl0Ru4r\":{\"layout\":[\"fixed\",\"auto\"]},\"pK3djU68d\":{\"layout\":[\"fixed\",\"auto\"]},\"OYPsm_Lnt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJQa6ahiCA=withCSS(Component,css,\"framer-4qynb\");export default FramerJQa6ahiCA;FramerJQa6ahiCA.displayName=\"CTA Section\";FramerJQa6ahiCA.defaultProps={height:507,width:1440};addPropertyControls(FramerJQa6ahiCA,{variant:{options:[\"YbgQ05HgH\",\"jKwz8rIEr\",\"PWKYJR__X\",\"uoYAkQZg9\",\"t9ytoGDfB\",\"iUy38UcfV\",\"QKYros6W1\",\"zRkrPrAaf\",\"qexAU3Hle\",\"tJAl0Ru4r\",\"pK3djU68d\",\"OYPsm_Lnt\"],optionTitles:[\"Desktop 01\",\"Laptop 01\",\"Tablet 01\",\"Phone 01\",\"Desktop 02\",\"Laptop 02\",\"Tablet 02\",\"Phone 02\",\"Desktop 03\",\"Laptop 03\",\"Tablet 03\",\"Phone 03\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJQa6ahiCA,[{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:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"}]},...PrimaryButtonFonts,...MailchimpFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJQa6ahiCA\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"507\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jKwz8rIEr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PWKYJR__X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uoYAkQZg9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t9ytoGDfB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iUy38UcfV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QKYros6W1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zRkrPrAaf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qexAU3Hle\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tJAl0Ru4r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pK3djU68d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OYPsm_Lnt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "ref", "domain", "parameters", "Mailchimp", "withCSS", "input", "button", "layout", "style", "gap", "onSubmit", "props", "email1", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "handleChange", "event", "handleSubmit", "response", "handleClick", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "Mailchimp_default", "JQa6ahiCA_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "__FramerMetadata__", "valuesByLocaleId", "JQa6ahiCA_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "ImageWithFX", "withFX", "Image2", "RichTextWithFX", "RichText2", "PrimaryButtonFonts", "getFonts", "xsn5pEQD6_default", "MailchimpFonts", "Mailchimp_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "transition4", "animation2", "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", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "LayoutGroup", "u", "cx", "getLoadingLazyAtYPosition", "getLocalizedValue", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "FramerJQa6ahiCA", "withCSS", "JQa6ahiCA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
