{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js", "ssg:https://framerusercontent.com/modules/ydD67CRPdEYEBjEZ0C3W/z5dWd0myu69SdipeA297/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", "// Generated by Framer (3eae0e1)\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/rzw40P5d0kEd3WYhV1hb/EYB8jIgaaXbvhY1kHHUr/eTQiCDf_i.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7Y6D3qK67qhmA2g2dBz5/O0li5CQUOhfsr7KziccU/YEI5vBdXm.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/4l2fFv473lh61zaZ8nlv/7Q8qIcjgDU9BIAtBNjlQ/zShoRl8lF.js\";import PrimaryButton from\"https://framerusercontent.com/modules/gOqN440AzOuXKUrU4G5E/tTgRLAjPymftmuLNvLKC/xsn5pEQD6.js\";const RichTextWithFX=withFX(RichText);const PrimaryButtonFonts=getFonts(PrimaryButton);const MailchimpFonts=getFonts(Mailchimp);const ImageWithFX=withFX(Image);const cycleOrder=[\"YbgQ05HgH\",\"jKwz8rIEr\",\"PWKYJR__X\",\"uoYAkQZg9\",\"t9ytoGDfB\",\"iUy38UcfV\",\"QKYros6W1\",\"zRkrPrAaf\",\"qexAU3Hle\",\"tJAl0Ru4r\",\"pK3djU68d\",\"OYPsm_Lnt\"];const serializationHash=\"framer-hQloJ\";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:0,y:50};const transition2={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const transition3={damping:60,delay:.4,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:30};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:100,y:0};const transition4={damping:60,delay:.8,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 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();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.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-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\",...style},variants:{iUy38UcfV:{backgroundColor:\"var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(12, 34, 23))\"},OYPsm_Lnt:{backgroundColor:\"var(--token-0618c8d6-171d-47af-84b7-50f662037d3c, rgb(5, 206, 102))\"},pK3djU68d:{backgroundColor:\"var(--token-0618c8d6-171d-47af-84b7-50f662037d3c, rgb(5, 206, 102))\"},qexAU3Hle:{backgroundColor:\"var(--token-0618c8d6-171d-47af-84b7-50f662037d3c, rgb(5, 206, 102))\"},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))\"},tJAl0Ru4r:{backgroundColor:\"var(--token-0618c8d6-171d-47af-84b7-50f662037d3c, rgb(5, 206, 102))\"},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:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mfjj1y\",layoutDependency:layoutDependency,layoutId:\"qKOCtKWvm\",children:[/*#__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:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-lvxpvu\",\"data-styles-preset\":\"zShoRl8lF\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(23, 23, 23)))\"},children:[\"Personify Your Email Security with \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1qn201a, var(--token-a2b1819a-93ab-4b88-8e4d-63cdbf7257f7, rgb(66, 66, 66)))\"},children:/*#__PURE__*/_jsx(motion.em,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"Phish\"})})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1fiaymt, var(--token-0618c8d6-171d-47af-84b7-50f662037d3c, rgb(235, 137, 26)))\"},children:/*#__PURE__*/_jsx(motion.em,{children:\"Flagger\"})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-g1tnir, var(--token-a2b1819a-93ab-4b88-8e4d-63cdbf7257f7, rgb(66, 66, 66)))\"},children:\"\u2122\"})]})}),className:\"framer-3ku4o4\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],layoutDependency:layoutDependency,layoutId:\"bAUCF3GdX\",style:{\"--extracted-1fiaymt\":\"var(--token-0618c8d6-171d-47af-84b7-50f662037d3c, rgb(235, 137, 26))\",\"--extracted-1of0zx5\":\"var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(23, 23, 23))\",\"--extracted-1qn201a\":\"var(--token-a2b1819a-93ab-4b88-8e4d-63cdbf7257f7, rgb(66, 66, 66))\",\"--extracted-g1tnir\":\"var(--token-a2b1819a-93ab-4b88-8e4d-63cdbf7257f7, rgb(66, 66, 66))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},variants:{iUy38UcfV:{\"--extracted-gdpscs\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},OYPsm_Lnt:{\"--extracted-gdpscs\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},pK3djU68d:{\"--extracted-gdpscs\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},qexAU3Hle:{\"--extracted-gdpscs\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},QKYros6W1:{\"--extracted-gdpscs\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},t9ytoGDfB:{\"--extracted-gdpscs\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},tJAl0Ru4r:{\"--extracted-gdpscs\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},zRkrPrAaf:{\"--extracted-gdpscs\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iUy38UcfV:{children:/*#__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:/*#__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:/*#__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:/*#__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:/*#__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:/*#__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:/*#__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:/*#__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:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-np446i\",\"data-styles-preset\":\"YEI5vBdXm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(23, 23, 23)))\"},children:[\"Supercharge email security with \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-a2b1819a-93ab-4b88-8e4d-63cdbf7257f7, rgb(66, 66, 66)))\"},children:/*#__PURE__*/_jsx(motion.em,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"Phish\"})})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-0618c8d6-171d-47af-84b7-50f662037d3c, rgb(255, 0, 51)))\"},children:/*#__PURE__*/_jsx(motion.em,{children:\"Counter\"})}),\"\u2122. Validate legitimate emails. Quarantine phishing attempts. Prevent breaches. Boost productivity.\"]})}),className:\"framer-1eatrr7\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],layoutDependency:layoutDependency,layoutId:\"BbGQ4rKjf\",style:{\"--extracted-1w3ko1f\":\"var(--token-a2b1819a-93ab-4b88-8e4d-63cdbf7257f7, rgb(66, 66, 66))\",\"--extracted-3sq8v0\":\"var(--token-0618c8d6-171d-47af-84b7-50f662037d3c, rgb(255, 0, 51))\",\"--extracted-r6o4lv\":\"var(--token-5284c577-2188-4541-8bfe-f65b53f320d9, rgb(23, 23, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},variants:{iUy38UcfV:{\"--extracted-r6o4lv\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},OYPsm_Lnt:{\"--extracted-r6o4lv\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},pK3djU68d:{\"--extracted-r6o4lv\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},qexAU3Hle:{\"--extracted-r6o4lv\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},QKYros6W1:{\"--extracted-r6o4lv\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},t9ytoGDfB:{\"--extracted-r6o4lv\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},tJAl0Ru4r:{\"--extracted-r6o4lv\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"},zRkrPrAaf:{\"--extracted-r6o4lv\":\"var(--token-e837ac9b-eb73-44c7-884c-0e24a08d3d91, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iUy38UcfV:{children:/*#__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.\"})}),fonts:[\"Inter\"]},OYPsm_Lnt:{children:/*#__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.\"})}),fonts:[\"Inter\"]},pK3djU68d:{children:/*#__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.\"})}),fonts:[\"Inter\"]},qexAU3Hle:{__framer__enter:animation1,__framer__threshold:0,children:/*#__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.\"})}),fonts:[\"Inter\"]},QKYros6W1:{children:/*#__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.\"})}),fonts:[\"Inter\"]},t9ytoGDfB:{__framer__threshold:0,children:/*#__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.\"})}),fonts:[\"Inter\"]},tJAl0Ru4r:{__framer__threshold:0,children:/*#__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.\"})}),fonts:[\"Inter\"]},zRkrPrAaf:{children:/*#__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.\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vxgHHSLDB\"},implicitPathVariables:undefined},{href:{webPageId:\"vxgHHSLDB\"},implicitPathVariables:undefined},{href:{webPageId:\"vxgHHSLDB\"},implicitPathVariables:undefined},{href:{webPageId:\"vxgHHSLDB\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_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)||647)-220-446)/2+0+0)+51+0+0+295,...addPropertyOverrides({jKwz8rIEr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+90+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||719.5)-190-344)/2+0+0)+0+0+0+295},PWKYJR__X:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+70+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||965.5)-140-696)/2+0+0)+0+0+0+0+295},uoYAkQZg9:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||929.5)-105-567)/2+0+0)+0+0+0+0+295}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3c0c5a-container\",layoutDependency:layoutDependency,layoutId:\"MW2rkdtWT-container\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",IBDADqidq:\"Contact Us\",id:\"MW2rkdtWT\",layoutId:\"MW2rkdtWT\",nEl9ATQzK:false,variant:\"Dhr0rrAa_\",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)})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__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)+110+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||647)-220-446)/2+0+0)+0),pixelHeight:4965,pixelWidth:8e3,positionX:\"center\",positionY:\"top\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 346px) / 2, 1px)`,src:\"https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=512 512w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png 8000w\"},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)+90+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||719.5)-190-344)/2+0+0)+17.5),pixelHeight:4965,pixelWidth:8e3,positionX:\"center\",positionY:\"top\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 164px) / 2, 1px)`,src:\"https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=512 512w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png 8000w\"}},PWKYJR__X:{__framer__animate:{transition:transition4},__framer__enter:animation,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)||965.5)-140-696)/2+0+0)+0+389),pixelHeight:4965,pixelWidth:8e3,positionX:\"center\",positionY:\"top\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=512 512w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png 8000w\"}},uoYAkQZg9:{__framer__enter:animation,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)||929.5)-105-567)/2+0+0)+0+379),pixelHeight:4965,pixelWidth:8e3,positionX:\"center\",positionY:\"top\",sizes:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 390px)`,src:\"https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=512 512w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/0BTtGamuyeKSMAFtpAGL9m1Gp0.png 8000w\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hQloJ.framer-nevnuz, .framer-hQloJ .framer-nevnuz { display: block; }\",\".framer-hQloJ.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 168px 110px 168px; position: relative; width: 1440px; }\",\".framer-hQloJ .framer-mfjj1y { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hQloJ .framer-17vbx4g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; 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: 1px; z-index: 5; }\",\".framer-hQloJ .framer-qrufiv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hQloJ .framer-3ku4o4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hQloJ .framer-1eatrr7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 95%; word-break: break-word; word-wrap: break-word; }\",\".framer-hQloJ .framer-3c0c5a-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hQloJ .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-hQloJ .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-hQloJ .framer-5wru6-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-hQloJ .framer-1cyelqz { aspect-ratio: 1.8475336322869955 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 296px); position: relative; width: 1px; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hQloJ.framer-m1gqr8, .framer-hQloJ .framer-mfjj1y, .framer-hQloJ .framer-17vbx4g, .framer-hQloJ .framer-qrufiv, .framer-hQloJ .framer-1rn9p2y, .framer-hQloJ .framer-94hrdu { gap: 0px; } .framer-hQloJ.framer-m1gqr8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hQloJ.framer-m1gqr8 > :first-child, .framer-hQloJ .framer-qrufiv > :first-child, .framer-hQloJ .framer-1rn9p2y > :first-child { margin-top: 0px; } .framer-hQloJ.framer-m1gqr8 > :last-child, .framer-hQloJ .framer-qrufiv > :last-child, .framer-hQloJ .framer-1rn9p2y > :last-child { margin-bottom: 0px; } .framer-hQloJ .framer-mfjj1y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hQloJ .framer-mfjj1y > :first-child, .framer-hQloJ .framer-17vbx4g > :first-child, .framer-hQloJ .framer-94hrdu > :first-child { margin-left: 0px; } .framer-hQloJ .framer-mfjj1y > :last-child, .framer-hQloJ .framer-17vbx4g > :last-child, .framer-hQloJ .framer-94hrdu > :last-child { margin-right: 0px; } .framer-hQloJ .framer-17vbx4g > *, .framer-hQloJ .framer-94hrdu > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hQloJ .framer-qrufiv > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-hQloJ .framer-1rn9p2y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-hQloJ.framer-v-1noiwd0.framer-m1gqr8 { padding: 90px 77px 100px 77px; width: 1000px; }\",\".framer-hQloJ.framer-v-1noiwd0 .framer-17vbx4g { max-width: 1000px; }\",\".framer-hQloJ.framer-v-1noiwd0 .framer-1cyelqz { height: var(--framer-aspect-ratio-supported, 227px); }\",\".framer-hQloJ.framer-v-rynw5i.framer-m1gqr8 { padding: 70px 30px 70px 30px; width: 768px; }\",\".framer-hQloJ.framer-v-rynw5i .framer-mfjj1y, .framer-hQloJ.framer-v-rllw5e .framer-mfjj1y { flex-direction: column; order: 2; }\",\".framer-hQloJ.framer-v-rynw5i .framer-17vbx4g { flex: none; justify-content: center; max-width: 768px; padding: 0px 0px 35px 0px; width: 100%; }\",\".framer-hQloJ.framer-v-rynw5i .framer-1cyelqz { aspect-ratio: 1.8436482084690553 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 384px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hQloJ.framer-v-rynw5i .framer-mfjj1y { gap: 0px; } .framer-hQloJ.framer-v-rynw5i .framer-mfjj1y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hQloJ.framer-v-rynw5i .framer-mfjj1y > :first-child { margin-top: 0px; } .framer-hQloJ.framer-v-rynw5i .framer-mfjj1y > :last-child { margin-bottom: 0px; } }\",\".framer-hQloJ.framer-v-rllw5e.framer-m1gqr8 { padding: 50px 20px 55px 20px; width: 390px; }\",\".framer-hQloJ.framer-v-rllw5e .framer-17vbx4g { flex: none; max-width: 390px; width: 100%; }\",\".framer-hQloJ.framer-v-rllw5e .framer-qrufiv { padding: 0px 0px 25px 0px; }\",\".framer-hQloJ.framer-v-rllw5e .framer-3ku4o4 { order: 0; }\",\".framer-hQloJ.framer-v-rllw5e .framer-1eatrr7 { order: 1; width: 100%; }\",\".framer-hQloJ.framer-v-rllw5e .framer-3c0c5a-container, .framer-hQloJ.framer-v-1od10y8 .framer-mfjj1y, .framer-hQloJ.framer-v-s4hrf7 .framer-mfjj1y, .framer-hQloJ.framer-v-sn7rhn .framer-mfjj1y, .framer-hQloJ.framer-v-a6av27 .framer-mfjj1y, .framer-hQloJ.framer-v-ikv8vq .framer-mfjj1y, .framer-hQloJ.framer-v-7mbfha .framer-mfjj1y, .framer-hQloJ.framer-v-1ul0k0o .framer-mfjj1y, .framer-hQloJ.framer-v-3vmtxo .framer-mfjj1y { order: 2; }\",\".framer-hQloJ.framer-v-rllw5e .framer-1cyelqz { aspect-ratio: 1.8617021276595744 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 188px); max-width: 390px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hQloJ.framer-v-rllw5e .framer-mfjj1y { gap: 0px; } .framer-hQloJ.framer-v-rllw5e .framer-mfjj1y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hQloJ.framer-v-rllw5e .framer-mfjj1y > :first-child { margin-top: 0px; } .framer-hQloJ.framer-v-rllw5e .framer-mfjj1y > :last-child { margin-bottom: 0px; } }\",\".framer-hQloJ.framer-v-1od10y8.framer-m1gqr8, .framer-hQloJ.framer-v-ikv8vq.framer-m1gqr8 { padding: 130px 168px 0px 168px; }\",\".framer-hQloJ.framer-v-1od10y8 .framer-17vbx4g, .framer-hQloJ.framer-v-ikv8vq .framer-17vbx4g { align-content: center; align-items: center; padding: 0px 0px 80px 0px; }\",\".framer-hQloJ.framer-v-1od10y8 .framer-qrufiv, .framer-hQloJ.framer-v-ikv8vq .framer-qrufiv { flex: none; width: 54%; }\",\".framer-hQloJ.framer-v-1od10y8 .framer-1rn9p2y, .framer-hQloJ.framer-v-s4hrf7 .framer-1rn9p2y, .framer-hQloJ.framer-v-ikv8vq .framer-1rn9p2y, .framer-hQloJ.framer-v-7mbfha .framer-1rn9p2y { flex-direction: row; min-height: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hQloJ.framer-v-1od10y8 .framer-1rn9p2y { gap: 0px; } .framer-hQloJ.framer-v-1od10y8 .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hQloJ.framer-v-1od10y8 .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-hQloJ.framer-v-1od10y8 .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",\".framer-hQloJ.framer-v-s4hrf7.framer-m1gqr8, .framer-hQloJ.framer-v-7mbfha.framer-m1gqr8 { padding: 100px 168px 0px 168px; width: 1000px; }\",\".framer-hQloJ.framer-v-s4hrf7 .framer-17vbx4g, .framer-hQloJ.framer-v-7mbfha .framer-17vbx4g { align-content: center; align-items: center; gap: 30px; max-width: 1000px; padding: 0px 0px 80px 0px; }\",\".framer-hQloJ.framer-v-s4hrf7 .framer-qrufiv, .framer-hQloJ.framer-v-7mbfha .framer-qrufiv { flex: none; width: 52%; }\",\".framer-hQloJ.framer-v-s4hrf7 .framer-94hrdu, .framer-hQloJ.framer-v-sn7rhn .framer-94hrdu, .framer-hQloJ.framer-v-a6av27 .framer-94hrdu, .framer-hQloJ.framer-v-7mbfha .framer-94hrdu, .framer-hQloJ.framer-v-1ul0k0o .framer-94hrdu, .framer-hQloJ.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-hQloJ.framer-v-s4hrf7 .framer-17vbx4g, .framer-hQloJ.framer-v-s4hrf7 .framer-1rn9p2y { gap: 0px; } .framer-hQloJ.framer-v-s4hrf7 .framer-17vbx4g > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-hQloJ.framer-v-s4hrf7 .framer-17vbx4g > :first-child, .framer-hQloJ.framer-v-s4hrf7 .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-hQloJ.framer-v-s4hrf7 .framer-17vbx4g > :last-child, .framer-hQloJ.framer-v-s4hrf7 .framer-1rn9p2y > :last-child { margin-right: 0px; } .framer-hQloJ.framer-v-s4hrf7 .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-hQloJ.framer-v-sn7rhn.framer-m1gqr8, .framer-hQloJ.framer-v-1ul0k0o.framer-m1gqr8 { padding: 60px 168px 0px 168px; width: 768px; }\",\".framer-hQloJ.framer-v-sn7rhn .framer-17vbx4g, .framer-hQloJ.framer-v-1ul0k0o .framer-17vbx4g { flex: none; flex-direction: column; gap: 30px; max-width: 768px; padding: 0px 0px 60px 0px; width: 80%; }\",\".framer-hQloJ.framer-v-sn7rhn .framer-qrufiv, .framer-hQloJ.framer-v-1ul0k0o .framer-qrufiv { flex: none; width: 100%; }\",\".framer-hQloJ.framer-v-sn7rhn .framer-1rn9p2y, .framer-hQloJ.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-hQloJ.framer-v-sn7rhn .framer-17vbx4g, .framer-hQloJ.framer-v-sn7rhn .framer-1rn9p2y { gap: 0px; } .framer-hQloJ.framer-v-sn7rhn .framer-17vbx4g > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-hQloJ.framer-v-sn7rhn .framer-17vbx4g > :first-child { margin-top: 0px; } .framer-hQloJ.framer-v-sn7rhn .framer-17vbx4g > :last-child { margin-bottom: 0px; } .framer-hQloJ.framer-v-sn7rhn .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hQloJ.framer-v-sn7rhn .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-hQloJ.framer-v-sn7rhn .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",\".framer-hQloJ.framer-v-a6av27.framer-m1gqr8, .framer-hQloJ.framer-v-3vmtxo.framer-m1gqr8 { padding: 50px 20px 0px 20px; width: 390px; }\",\".framer-hQloJ.framer-v-a6av27 .framer-17vbx4g, .framer-hQloJ.framer-v-3vmtxo .framer-17vbx4g { flex-direction: column; gap: 30px; max-width: 390px; padding: 0px 0px 40px 0px; }\",\".framer-hQloJ.framer-v-a6av27 .framer-qrufiv, .framer-hQloJ.framer-v-3vmtxo .framer-qrufiv { flex: none; gap: 20px; width: 100%; }\",\".framer-hQloJ.framer-v-a6av27 .framer-1rn9p2y, .framer-hQloJ.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-hQloJ.framer-v-a6av27 .framer-17vbx4g, .framer-hQloJ.framer-v-a6av27 .framer-qrufiv, .framer-hQloJ.framer-v-a6av27 .framer-1rn9p2y { gap: 0px; } .framer-hQloJ.framer-v-a6av27 .framer-17vbx4g > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-hQloJ.framer-v-a6av27 .framer-17vbx4g > :first-child, .framer-hQloJ.framer-v-a6av27 .framer-qrufiv > :first-child { margin-top: 0px; } .framer-hQloJ.framer-v-a6av27 .framer-17vbx4g > :last-child, .framer-hQloJ.framer-v-a6av27 .framer-qrufiv > :last-child { margin-bottom: 0px; } .framer-hQloJ.framer-v-a6av27 .framer-qrufiv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hQloJ.framer-v-a6av27 .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hQloJ.framer-v-a6av27 .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-hQloJ.framer-v-a6av27 .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",\".framer-hQloJ.framer-v-ikv8vq .framer-1eatrr7 { width: 85%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hQloJ.framer-v-ikv8vq .framer-1rn9p2y { gap: 0px; } .framer-hQloJ.framer-v-ikv8vq .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hQloJ.framer-v-ikv8vq .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-hQloJ.framer-v-ikv8vq .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hQloJ.framer-v-7mbfha .framer-17vbx4g, .framer-hQloJ.framer-v-7mbfha .framer-1rn9p2y { gap: 0px; } .framer-hQloJ.framer-v-7mbfha .framer-17vbx4g > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-hQloJ.framer-v-7mbfha .framer-17vbx4g > :first-child, .framer-hQloJ.framer-v-7mbfha .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-hQloJ.framer-v-7mbfha .framer-17vbx4g > :last-child, .framer-hQloJ.framer-v-7mbfha .framer-1rn9p2y > :last-child { margin-right: 0px; } .framer-hQloJ.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-hQloJ.framer-v-1ul0k0o .framer-17vbx4g, .framer-hQloJ.framer-v-1ul0k0o .framer-1rn9p2y { gap: 0px; } .framer-hQloJ.framer-v-1ul0k0o .framer-17vbx4g > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-hQloJ.framer-v-1ul0k0o .framer-17vbx4g > :first-child { margin-top: 0px; } .framer-hQloJ.framer-v-1ul0k0o .framer-17vbx4g > :last-child { margin-bottom: 0px; } .framer-hQloJ.framer-v-1ul0k0o .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hQloJ.framer-v-1ul0k0o .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-hQloJ.framer-v-1ul0k0o .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hQloJ.framer-v-3vmtxo .framer-17vbx4g, .framer-hQloJ.framer-v-3vmtxo .framer-qrufiv, .framer-hQloJ.framer-v-3vmtxo .framer-1rn9p2y { gap: 0px; } .framer-hQloJ.framer-v-3vmtxo .framer-17vbx4g > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-hQloJ.framer-v-3vmtxo .framer-17vbx4g > :first-child, .framer-hQloJ.framer-v-3vmtxo .framer-qrufiv > :first-child { margin-top: 0px; } .framer-hQloJ.framer-v-3vmtxo .framer-17vbx4g > :last-child, .framer-hQloJ.framer-v-3vmtxo .framer-qrufiv > :last-child { margin-bottom: 0px; } .framer-hQloJ.framer-v-3vmtxo .framer-qrufiv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hQloJ.framer-v-3vmtxo .framer-1rn9p2y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hQloJ.framer-v-3vmtxo .framer-1rn9p2y > :first-child { margin-left: 0px; } .framer-hQloJ.framer-v-3vmtxo .framer-1rn9p2y > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-hQloJ[data-border=\"true\"]::after, .framer-hQloJ [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 647\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-hQloJ\");export default FramerJQa6ahiCA;FramerJQa6ahiCA.displayName=\"CTA Section\";FramerJQa6ahiCA.defaultProps={height:647,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:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.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\":{\"framerComponentViewportWidth\":\"true\",\"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\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"647\"}},\"__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", "RichTextWithFX", "withFX", "RichText2", "PrimaryButtonFonts", "getFonts", "xsn5pEQD6_default", "MailchimpFonts", "Mailchimp_default", "ImageWithFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "animation1", "animation2", "transition4", "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", "LayoutGroup", "cx", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "css", "FramerJQa6ahiCA", "withCSS", "JQa6ahiCA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
