{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js", "ssg:https://framerusercontent.com/modules/94rcvfQWKrcBLMJLIV57/BhS9JERiSAi5dpJhuKhY/ND6XVLnoy.js", "ssg:https://framerusercontent.com/modules/aECDp0qKJUWh7LBh9CTZ/OBy46RIIa1EI4OVXK79V/FIQUCdJNE.js", "ssg:https://framerusercontent.com/modules/46Gu4hBJyjINOpV3LfJ4/6lyTDHs63APWrFOsTPXI/bcUIOegNe.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{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Manrope-800\"]);export const fonts=[{family:\"Manrope\",moduleAsset:{localModuleIdentifier:\"local-module:css/ND6XVLnoy:default\",url:\"https://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf\",weight:\"800\"}];export const css=['.framer-auEfn .framer-styles-preset-p4sgmx:not(.rich-text-wrapper), .framer-auEfn .framer-styles-preset-p4sgmx.rich-text-wrapper p, .framer-auEfn .framer-styles-preset-p4sgmx.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Manrope\", serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: 1px; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-auEfn .framer-styles-preset-p4sgmx:not(.rich-text-wrapper), .framer-auEfn .framer-styles-preset-p4sgmx.rich-text-wrapper p, .framer-auEfn .framer-styles-preset-p4sgmx.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Manrope\", serif; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: 1px; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-auEfn .framer-styles-preset-p4sgmx:not(.rich-text-wrapper), .framer-auEfn .framer-styles-preset-p4sgmx.rich-text-wrapper p, .framer-auEfn .framer-styles-preset-p4sgmx.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Manrope\", serif; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: 1px; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: uppercase; } }'];export const className=\"framer-auEfn\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b993cbf)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";import { addFonts, addPropertyControls, ControlType, cx, Image, Link, RichText, useVariantState, withCSS } from \"framer\";import { LayoutGroup, motion } from \"framer-motion\";import * as React from \"react\";import * as sharedStyle5 from \"https://framerusercontent.com/modules/ejsn6xPuLiz9W3A437ZQ/mEUddMzm6Hk0PjL9IqOF/i59KN99_1.js\";import * as sharedStyle3 from \"https://framerusercontent.com/modules/94rcvfQWKrcBLMJLIV57/BhS9JERiSAi5dpJhuKhY/ND6XVLnoy.js\";import * as sharedStyle from \"https://framerusercontent.com/modules/y5G3V6sxXSnIwVAq31UR/qsu1JV9VuFdweNsblvye/pzgAh97sX.js\";import * as sharedStyle4 from \"https://framerusercontent.com/modules/mSmL3wnlSvN5cjaSaobR/DZ3CWE2TWNgScKxRxMtn/QOCBLMAjr.js\";import * as sharedStyle2 from \"https://framerusercontent.com/modules/4LtdLSGhgn4Dj4jCtWcd/zMaJlBUTsj0EmSL3nNpY/xZndidUCt.js\";import * as sharedStyle1 from \"https://framerusercontent.com/modules/yuFJCiWRV9E2mJYoLmTc/Kvz4XlgHCJbXpfBDB0vH/YckFIlg3V.js\";const enabledGestures = { lap02oFf4: { hover: true }, Nsz6JbBfs: { hover: true }, T_YCCfZlJ: { hover: true }, ZYZfCMMxO: { hover: true } };const cycleOrder = [\"lap02oFf4\", \"Nsz6JbBfs\", \"T_YCCfZlJ\", \"ZYZfCMMxO\"];const variantClassNames = { lap02oFf4: \"framer-v-9anjsm\", Nsz6JbBfs: \"framer-v-1yuv116\", T_YCCfZlJ: \"framer-v-5mv7sj\", ZYZfCMMxO: \"framer-v-1x1smmu\" };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 humanReadableVariantMap = { Default: \"lap02oFf4\", Featured: \"ZYZfCMMxO\", Fill: \"Nsz6JbBfs\", Small: \"T_YCCfZlJ\" };const transitions = { default: { damping: 60, delay: 0, duration: .3, ease: [.44, 0, .56, 1], mass: 1, stiffness: 500, type: \"spring\" } };const toResponsiveImage = (value) => {if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {return value;}return typeof value === \"string\" ? { src: value } : undefined;};const Component = /*#__PURE__*/React.forwardRef(function ({ id, style, className, width, height, layoutId, variant: outerVariant = \"lap02oFf4\", category: LFXgxuHG4 = true, category1: CPMabOrfU = \"Resources\", color: cWI4CB6po = 'var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252)) /* {\"name\":\"Purple\"} */', image: Yo7UXCjeZ = { src: new URL(\"https://framerusercontent.com/images/eDJ9tldPOOleIuY0fmuLMEtdQ.jpg?scale-down-to=512\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/eDJ9tldPOOleIuY0fmuLMEtdQ.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/eDJ9tldPOOleIuY0fmuLMEtdQ.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/eDJ9tldPOOleIuY0fmuLMEtdQ.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/eDJ9tldPOOleIuY0fmuLMEtdQ.jpg\").href} 3840w` }, title: HDbfmLJN9 = \"Building Blocks for Your Website\", description: mMXkBrQjq = false, description1: TS9IF2Dr6 = \"Build a unique experience by mixing and matching components.\", date: mJ5LrnBOl = \"August 10, 2022\", link: iTLspfP7r, date1: fl_dKZrsX = true, ...restProps }, ref) {const outerVariantId = humanReadableVariantMap[outerVariant];const variant = outerVariantId || outerVariant;const { baseVariant, classNames, gestureVariant, setGestureState, setVariant, transition, variants } = useVariantState({ cycleOrder, defaultVariant: \"lap02oFf4\", enabledGestures, transitions, variant, variantClassNames });const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;const isDisplayed = () => {if (gestureVariant === \"ZYZfCMMxO-hover\") return true;if (baseVariant === \"ZYZfCMMxO\") return true;return false;};const isDisplayed1 = () => {if (gestureVariant === \"ZYZfCMMxO-hover\") return false;if (baseVariant === \"ZYZfCMMxO\") return false;return true;};const defaultLayoutId = React.useId();return /*#__PURE__*/_jsx(LayoutGroup, { id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId, children: /*#__PURE__*/_jsx(motion.div, { initial: variant, animate: variants, onHoverStart: () => setGestureState({ isHovered: true }), onHoverEnd: () => setGestureState({ isHovered: false }), onTapStart: () => setGestureState({ isPressed: true }), onTap: () => setGestureState({ isPressed: false }), onTapCancel: () => setGestureState({ isPressed: false }), className: cx(\"framer-buaSg\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className, sharedStyle4.className, sharedStyle5.className, classNames), style: { display: \"contents\" }, children: /*#__PURE__*/_jsx(Link, { href: iTLspfP7r, openInNewTab: true, ...addPropertyOverrides({ Nsz6JbBfs: { openInNewTab: false } }, baseVariant, gestureVariant), children: /*#__PURE__*/_jsxs(motion.a, { ...restProps, className: `${cx(\"framer-9anjsm\", className)} framer-18ubn9u`, \"data-border\": true, \"data-framer-name\": \"Default\", layoutDependency: layoutDependency, layoutId: \"lap02oFf4\", ref: ref, style: { \"--border-bottom-width\": \"1px\", \"--border-color\": \"rgba(0, 0, 0, 0.08)\", \"--border-left-width\": \"1px\", \"--border-right-width\": \"1px\", \"--border-style\": \"solid\", \"--border-top-width\": \"1px\", backgroundColor: \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\", borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20, boxShadow: \"0px 10px 30px -20px rgba(0, 0, 0, 0.25)\", ...style }, transition: transition, ...addPropertyOverrides({ \"lap02oFf4-hover\": { \"data-framer-name\": undefined }, \"Nsz6JbBfs-hover\": { \"data-framer-name\": undefined }, \"T_YCCfZlJ-hover\": { \"data-framer-name\": undefined }, \"ZYZfCMMxO-hover\": { \"data-framer-name\": undefined }, Nsz6JbBfs: { \"data-framer-name\": \"Fill\" }, T_YCCfZlJ: { \"data-framer-name\": \"Small\" }, ZYZfCMMxO: { \"data-framer-name\": \"Featured\" } }, baseVariant, gestureVariant), children: [/*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 2160, intrinsicWidth: 3840, pixelHeight: 2160, pixelWidth: 3840, sizes: \"410px\", ...toResponsiveImage(Yo7UXCjeZ) }, className: \"framer-1xfffwv\", layoutDependency: layoutDependency, layoutId: \"EDfAgXZ2u\", style: { borderBottomLeftRadius: 15, borderBottomRightRadius: 15, borderTopLeftRadius: 15, borderTopRightRadius: 15, opacity: 1 }, transition: transition, variants: { \"lap02oFf4-hover\": { opacity: .5 }, \"Nsz6JbBfs-hover\": { borderBottomLeftRadius: 0, borderBottomRightRadius: 0, borderTopLeftRadius: 0, borderTopRightRadius: 0, opacity: .5 }, \"T_YCCfZlJ-hover\": { borderBottomLeftRadius: 0, borderBottomRightRadius: 0, borderTopLeftRadius: 0, borderTopRightRadius: 0, opacity: .5 }, \"ZYZfCMMxO-hover\": { borderBottomLeftRadius: 0, borderBottomRightRadius: 0, borderTopLeftRadius: 0, borderTopRightRadius: 0 }, Nsz6JbBfs: { borderBottomLeftRadius: 0, borderBottomRightRadius: 0, borderTopLeftRadius: 0, borderTopRightRadius: 0 }, T_YCCfZlJ: { borderBottomLeftRadius: 0, borderBottomRightRadius: 0, borderTopLeftRadius: 0, borderTopRightRadius: 0 }, ZYZfCMMxO: { borderBottomLeftRadius: 0, borderBottomRightRadius: 0, borderTopLeftRadius: 0, borderTopRightRadius: 0 } }, ...addPropertyOverrides({ Nsz6JbBfs: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 2160, intrinsicWidth: 3840, pixelHeight: 2160, pixelWidth: 3840, sizes: \"490px\", ...toResponsiveImage(Yo7UXCjeZ) } }, T_YCCfZlJ: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 2160, intrinsicWidth: 3840, pixelHeight: 2160, pixelWidth: 3840, sizes: \"150px\", ...toResponsiveImage(Yo7UXCjeZ) } }, ZYZfCMMxO: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 2160, intrinsicWidth: 3840, pixelHeight: 2160, pixelWidth: 3840, sizes: \"505px\", ...toResponsiveImage(Yo7UXCjeZ) } } }, baseVariant, gestureVariant), children: isDisplayed() && /*#__PURE__*/_jsx(motion.div, { className: \"framer-1pkwk6i\", layoutDependency: layoutDependency, layoutId: \"XlwLryRot\", style: { background: \"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%)\" }, transition: transition, variants: { \"ZYZfCMMxO-hover\": { background: \"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%)\" } }, children: /*#__PURE__*/_jsxs(motion.div, { className: \"framer-c5m28v\", layoutDependency: layoutDependency, layoutId: \"nyupRWZla\", transition: transition, children: [LFXgxuHG4 && /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1b74ta\", \"data-styles-preset\": \"pzgAh97sX\", style: { \"--framer-text-alignment\": \"center\", \"--framer-text-color\": \"var(--extracted-r6o4lv)\" }, children: \"Resources\" }) }), className: \"framer-5c6tws\", layoutDependency: layoutDependency, layoutId: \"uAasN83l8\", style: { \"--extracted-r6o4lv\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\", \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\", opacity: .7 }, text: CPMabOrfU, transition: transition, verticalAlignment: \"top\", withExternalLayout: true }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.h3, { className: \"framer-styles-preset-12lj5ox\", \"data-styles-preset\": \"YckFIlg3V\", style: { \"--framer-text-color\": \"var(--extracted-a0htzi)\" }, children: \"Building Blocks for Your Website\" }) }), className: \"framer-1amxh5m\", layoutDependency: layoutDependency, layoutId: \"OU4Kwj29R\", style: { \"--extracted-a0htzi\": \"rgb(255, 255, 255)\", \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, text: HDbfmLJN9, transition: transition, verticalAlignment: \"top\", withExternalLayout: true }), mMXkBrQjq && /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", style: { \"--framer-text-color\": \"var(--extracted-r6o4lv)\" }, children: \"Build a unique experience by mixing and matching components.\" }) }), className: \"framer-odkua4\", layoutDependency: layoutDependency, layoutId: \"x8rslCk7p\", style: { \"--extracted-r6o4lv\": \"rgb(255, 255, 255)\", \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\", opacity: .8 }, text: TS9IF2Dr6, transition: transition, verticalAlignment: \"top\", withExternalLayout: true }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", style: { \"--framer-text-color\": \"var(--extracted-r6o4lv)\" }, children: \"August 10, 2022\" }) }), className: \"framer-1for1zv\", layoutDependency: layoutDependency, layoutId: \"C74A98HHo\", style: { \"--extracted-r6o4lv\": \"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\", \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, text: mJ5LrnBOl, transition: transition, verticalAlignment: \"top\", withExternalLayout: true })] }) }) }), isDisplayed1() && /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1m19kp\", layoutDependency: layoutDependency, layoutId: \"vNrXRKKXX\", transition: transition, children: [LFXgxuHG4 && /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1b74ta\", \"data-styles-preset\": \"pzgAh97sX\", style: { \"--framer-text-alignment\": \"center\", \"--framer-text-color\": \"var(--extracted-r6o4lv)\" }, children: \"Resources\" }) }), className: \"framer-15edjrp\", layoutDependency: layoutDependency, layoutId: \"gprjkWS1Q\", style: { \"--extracted-r6o4lv\": \"var(--variable-reference-cWI4CB6po-FIQUCdJNE)\", \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\", \"--variable-reference-cWI4CB6po-FIQUCdJNE\": cWI4CB6po }, text: CPMabOrfU, transition: transition, verticalAlignment: \"top\", withExternalLayout: true, ...addPropertyOverrides({ T_YCCfZlJ: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-p4sgmx\", \"data-styles-preset\": \"ND6XVLnoy\", style: { \"--framer-text-color\": \"var(--extracted-r6o4lv)\" }, children: \"Resources\" }) }) } }, baseVariant, gestureVariant) }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.h3, { className: \"framer-styles-preset-12lj5ox\", \"data-styles-preset\": \"YckFIlg3V\", children: \"Building Blocks for Your Website\" }) }), className: \"framer-f8w14h\", layoutDependency: layoutDependency, layoutId: \"BaWgUcDLr\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, text: HDbfmLJN9, transition: transition, verticalAlignment: \"top\", withExternalLayout: true, ...addPropertyOverrides({ T_YCCfZlJ: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.h3, { className: \"framer-styles-preset-113y3p\", \"data-styles-preset\": \"QOCBLMAjr\", children: \"Building Blocks for Your Website\" }) }) } }, baseVariant, gestureVariant) }), mMXkBrQjq && /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", children: \"Build a unique experience by mixing and matching components.\" }) }), className: \"framer-1138q5t\", layoutDependency: layoutDependency, layoutId: \"W4j8FaPJG\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, text: TS9IF2Dr6, transition: transition, verticalAlignment: \"top\", withExternalLayout: true }), fl_dKZrsX && /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-21ogod\", \"data-styles-preset\": \"xZndidUCt\", style: { \"--framer-text-color\": \"var(--extracted-r6o4lv)\" }, children: \"August 10, 2022\" }) }), className: \"framer-teomgx\", layoutDependency: layoutDependency, layoutId: \"BbKzaNR_9\", style: { \"--extracted-r6o4lv\": \"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\", \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, text: mJ5LrnBOl, transition: transition, verticalAlignment: \"top\", withExternalLayout: true, ...addPropertyOverrides({ T_YCCfZlJ: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-qemwmo\", \"data-styles-preset\": \"i59KN99_1\", style: { \"--framer-text-color\": \"var(--extracted-r6o4lv)\" }, children: \"August 10, 2022\" }) }) } }, baseVariant, gestureVariant) })] })] }) }) }) });});const css = ['.framer-buaSg [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-buaSg .framer-18ubn9u { display: block; }\", \".framer-buaSg .framer-9anjsm { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; text-decoration: none; width: 490px; will-change: transform; }\", \".framer-buaSg .framer-1xfffwv { aspect-ratio: 1.4695340501792116 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 279px); overflow: hidden; position: relative; width: 100%; will-change: transform; }\", \".framer-buaSg .framer-1pkwk6i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: calc(49.82078853046597% - 100% / 2); width: 100%; }\", \".framer-buaSg .framer-c5m28v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 100%; }\", \".framer-buaSg .framer-5c6tws, .framer-buaSg .framer-1for1zv, .framer-buaSg .framer-15edjrp, .framer-buaSg .framer-teomgx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-buaSg .framer-1amxh5m, .framer-buaSg .framer-odkua4, .framer-buaSg .framer-f8w14h, .framer-buaSg .framer-1138q5t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-buaSg .framer-1m19kp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-buaSg .framer-v-9anjsm .framer-9anjsm, .framer-buaSg .framer-v-1yuv116 .framer-9anjsm, .framer-buaSg .framer-v-1x1smmu .framer-9anjsm, .framer-buaSg .framer-v-5mv7sj .framer-9anjsm { cursor: pointer; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-buaSg .framer-9anjsm, .framer-buaSg .framer-1pkwk6i, .framer-buaSg .framer-c5m28v, .framer-buaSg .framer-1m19kp { gap: 0px; } .framer-buaSg .framer-9anjsm > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-buaSg .framer-9anjsm > :first-child, .framer-buaSg .framer-1pkwk6i > :first-child, .framer-buaSg .framer-c5m28v > :first-child, .framer-buaSg .framer-1m19kp > :first-child { margin-top: 0px; } .framer-buaSg .framer-9anjsm > :last-child, .framer-buaSg .framer-1pkwk6i > :last-child, .framer-buaSg .framer-c5m28v > :last-child, .framer-buaSg .framer-1m19kp > :last-child { margin-bottom: 0px; } .framer-buaSg .framer-1pkwk6i > *, .framer-buaSg .framer-c5m28v > *, .framer-buaSg .framer-1m19kp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\", \".framer-buaSg.framer-v-1yuv116 .framer-9anjsm { gap: 0px; padding: 0px 0px 0px 0px; }\", \".framer-buaSg.framer-v-1yuv116 .framer-1xfffwv { height: var(--framer-aspect-ratio-supported, 334px); }\", \".framer-buaSg.framer-v-1yuv116 .framer-1m19kp { padding: 40px 40px 40px 40px; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-buaSg.framer-v-1yuv116 .framer-9anjsm { gap: 0px; } .framer-buaSg.framer-v-1yuv116 .framer-9anjsm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-buaSg.framer-v-1yuv116 .framer-9anjsm > :first-child { margin-top: 0px; } .framer-buaSg.framer-v-1yuv116 .framer-9anjsm > :last-child { margin-bottom: 0px; } }\", \".framer-buaSg.framer-v-5mv7sj .framer-9anjsm { align-content: center; align-items: center; flex-direction: row; gap: 0px; padding: 0px 0px 0px 0px; width: 503px; }\", \".framer-buaSg.framer-v-5mv7sj .framer-1xfffwv { align-self: stretch; aspect-ratio: unset; flex: 0.8 0 0px; height: auto; max-width: 150px; width: 1px; }\", \".framer-buaSg.framer-v-5mv7sj .framer-1m19kp { flex: 1 0 0px; padding: 20px 20px 20px 20px; width: 1px; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-buaSg.framer-v-5mv7sj .framer-9anjsm { gap: 0px; } .framer-buaSg.framer-v-5mv7sj .framer-9anjsm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-buaSg.framer-v-5mv7sj .framer-9anjsm > :first-child { margin-left: 0px; } .framer-buaSg.framer-v-5mv7sj .framer-9anjsm > :last-child { margin-right: 0px; } }\", \".framer-buaSg.framer-v-1x1smmu .framer-9anjsm { gap: 0px; padding: 0px 0px 0px 0px; width: 505px; }\", \".framer-buaSg.framer-v-1x1smmu .framer-1xfffwv { aspect-ratio: unset; height: 344px; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-buaSg.framer-v-1x1smmu .framer-9anjsm { gap: 0px; } .framer-buaSg.framer-v-1x1smmu .framer-9anjsm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-buaSg.framer-v-1x1smmu .framer-9anjsm > :first-child { margin-top: 0px; } .framer-buaSg.framer-v-1x1smmu .framer-9anjsm > :last-child { margin-bottom: 0px; } }\", \".framer-buaSg.framer-v-1x1smmu.hover .framer-1xfffwv, .framer-buaSg.framer-v-5mv7sj.hover .framer-1xfffwv { aspect-ratio: unset; }\", ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css, ...sharedStyle4.css, ...sharedStyle5.css]; /**\n* This is a generated Framer component.\n* @framerIntrinsicHeight 507\n* @framerIntrinsicWidth 490\n* @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Nsz6JbBfs\":{\"layout\":[\"fixed\",\"auto\"]},\"T_YCCfZlJ\":{\"layout\":[\"fixed\",\"auto\"]},\"ZYZfCMMxO\":{\"layout\":[\"fixed\",\"auto\"]},\"lVI2gfXTo\":{\"layout\":[\"fixed\",\"auto\"]},\"g9Xik24lr\":{\"layout\":[\"fixed\",\"auto\"]},\"XT_JS2Xzi\":{\"layout\":[\"fixed\",\"auto\"]},\"uSunmDssE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n* @framerVariables {\"LFXgxuHG4\":\"category\",\"CPMabOrfU\":\"category1\",\"cWI4CB6po\":\"color\",\"Yo7UXCjeZ\":\"image\",\"HDbfmLJN9\":\"title\",\"mMXkBrQjq\":\"description\",\"TS9IF2Dr6\":\"description1\",\"mJ5LrnBOl\":\"date\",\"iTLspfP7r\":\"link\",\"fl_dKZrsX\":\"date1\"}\n*/const FramerFIQUCdJNE = withCSS(Component, css, \"framer-buaSg\");export default FramerFIQUCdJNE;FramerFIQUCdJNE.displayName = \"Blog Card\";FramerFIQUCdJNE.defaultProps = { height: 507, width: 490 };addPropertyControls(FramerFIQUCdJNE, { variant: { options: [\"lap02oFf4\", \"Nsz6JbBfs\", \"T_YCCfZlJ\", \"ZYZfCMMxO\"], optionTitles: [\"Default\", \"Fill\", \"Small\", \"Featured\"], title: \"Variant\", type: ControlType.Enum }, LFXgxuHG4: { defaultValue: true, title: \"Category\", type: ControlType.Boolean }, CPMabOrfU: { defaultValue: \"Resources\", displayTextArea: false, title: \"Category\", type: ControlType.String }, cWI4CB6po: { defaultValue: 'var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252)) /* {\"name\":\"Purple\"} */', title: \"Color\", type: ControlType.Color }, Yo7UXCjeZ: { __defaultAssetReference: \"data:framer/asset-reference,eDJ9tldPOOleIuY0fmuLMEtdQ.jpg?originalFilename=unknown.jpg&preferredSize=auto\", title: \"Image\", type: ControlType.ResponsiveImage }, HDbfmLJN9: { defaultValue: \"Building Blocks for Your Website\", displayTextArea: true, title: \"Title\", type: ControlType.String }, mMXkBrQjq: { defaultValue: false, title: \"Description\", type: ControlType.Boolean }, TS9IF2Dr6: { defaultValue: \"Build a unique experience by mixing and matching components.\", displayTextArea: false, title: \"Description\", type: ControlType.String }, mJ5LrnBOl: { defaultValue: \"August 10, 2022\", displayTextArea: false, title: \"Date\", type: ControlType.String }, iTLspfP7r: { title: \"Link\", type: ControlType.Link }, fl_dKZrsX: { defaultValue: true, title: \"Date\", type: ControlType.Boolean } });addFonts(FramerFIQUCdJNE, [...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts, ...sharedStyle4.fonts, ...sharedStyle5.fonts]);\nexport const __FramerMetadata__ = { \"exports\": { \"default\": { \"type\": \"reactComponent\", \"name\": \"FramerFIQUCdJNE\", \"slots\": [], \"annotations\": { \"framerVariables\": \"{\\\"LFXgxuHG4\\\":\\\"category\\\",\\\"CPMabOrfU\\\":\\\"category1\\\",\\\"cWI4CB6po\\\":\\\"color\\\",\\\"Yo7UXCjeZ\\\":\\\"image\\\",\\\"HDbfmLJN9\\\":\\\"title\\\",\\\"mMXkBrQjq\\\":\\\"description\\\",\\\"TS9IF2Dr6\\\":\\\"description1\\\",\\\"mJ5LrnBOl\\\":\\\"date\\\",\\\"iTLspfP7r\\\":\\\"link\\\",\\\"fl_dKZrsX\\\":\\\"date1\\\"}\", \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nsz6JbBfs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T_YCCfZlJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZYZfCMMxO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lVI2gfXTo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g9Xik24lr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XT_JS2Xzi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uSunmDssE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\", \"framerIntrinsicHeight\": \"507\", \"framerContractVersion\": \"1\", \"framerIntrinsicWidth\": \"490\" } }, \"Props\": { \"type\": \"tsType\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"__FramerMetadata__\": { \"type\": \"variable\" } } };", "// Generated by Framer (b993cbf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,removeHiddenBreakpointLayers,resolveLink,RichText,useCurrentPathVariables,useHydratedBreakpointVariants,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Mailchimp from\"https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js\";import BlogCard from\"#framer/local/canvasComponent/FIQUCdJNE/FIQUCdJNE.js\";import Topbar from\"#framer/local/canvasComponent/lWUcIJP0H/lWUcIJP0H.js\";import Footer from\"#framer/local/canvasComponent/M82dauGNX/M82dauGNX.js\";import Blog from\"#framer/local/collection/nWZy3UnCE/nWZy3UnCE.js\";import*as sharedStyle5 from\"#framer/local/css/cGTNsvVOM/cGTNsvVOM.js\";import*as sharedStyle6 from\"#framer/local/css/f_JgQVGd5/f_JgQVGd5.js\";import*as sharedStyle4 from\"#framer/local/css/pbkah0okA/pbkah0okA.js\";import*as sharedStyle2 from\"#framer/local/css/puB8kY46u/puB8kY46u.js\";import*as sharedStyle from\"#framer/local/css/pzgAh97sX/pzgAh97sX.js\";import*as sharedStyle3 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle1 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/bcUIOegNe/bcUIOegNe.js\";const BlogCardFonts=getFonts(BlogCard);const MailchimpFonts=getFonts(Mailchimp);const FooterFonts=getFonts(Footer);const TopbarFonts=getFonts(Topbar);const cycleOrder=[\"mREZlQ_J6\",\"rAx44OxNG\",\"yUefG4DCi\"];const breakpoints={mREZlQ_J6:\"(min-width: 1200px)\",rAx44OxNG:\"(min-width: 810px) and (max-width: 1199px)\",yUefG4DCi:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const variantClassNames={mREZlQ_J6:\"framer-v-v64xpx\",rAx44OxNG:\"framer-v-1rrkavb\",yUefG4DCi:\"framer-v-5nmr76\"};if(isBrowser()){removeHiddenBreakpointLayers(\"mREZlQ_J6\",breakpoints,variantClassNames);}const humanReadableVariantMap={Desktop:\"mREZlQ_J6\",Phone:\"yUefG4DCi\",Tablet:\"rAx44OxNG\"};const transitions={default:{duration:0}};const toDateString=(value,options={})=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";const locale=options.locale||fallbackLocale;const dateStyle=options.dateStyle;const timeZone=\"UTC\";try{return date.toLocaleDateString(locale,{dateStyle,timeZone});}catch{return date.toLocaleDateString(fallbackLocale,{dateStyle,timeZone});}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"mREZlQ_J6\",DD39DBmBH,PPeTwl1b8,YSKHrdVc1,ivFLyaMNq,EZue1CzWP,kBAWMceDj,t7b0AvdZM,PPeTwl1b8KTIXfs5E7,DD39DBmBHKTIXfs5E7,kBAWMceDjKTIXfs5E7,YSKHrdVc1KTIXfs5E7,ivFLyaMNqKTIXfs5E7,EZue1CzWPT5odfa07V,Tu_Pd0zTZKTIXfs5E7,idKTIXfs5E7,Tu_Pd0zTZ,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{type:\"Collection\",data:Blog},select:[{name:\"DD39DBmBH\",type:\"Identifier\"},{name:\"PPeTwl1b8\",type:\"Identifier\"},{name:\"YSKHrdVc1\",type:\"Identifier\"},{name:\"ivFLyaMNq\",type:\"Identifier\"},{name:\"kBAWMceDj\",type:\"Identifier\"},{name:\"EZue1CzWP\",type:\"Identifier\"},{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{name:\"t7b0AvdZM\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data in \"Blog\" matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};if(DD39DBmBH===undefined)DD39DBmBH=getFromCurrentRouteData(\"DD39DBmBH\");if(PPeTwl1b8===undefined)PPeTwl1b8=getFromCurrentRouteData(\"PPeTwl1b8\");if(YSKHrdVc1===undefined)YSKHrdVc1=getFromCurrentRouteData(\"YSKHrdVc1\");if(ivFLyaMNq===undefined)ivFLyaMNq=getFromCurrentRouteData(\"ivFLyaMNq\");if(kBAWMceDj===undefined)kBAWMceDj=getFromCurrentRouteData(\"kBAWMceDj\");if(EZue1CzWP===undefined)EZue1CzWP=getFromCurrentRouteData(\"EZue1CzWP\");if(Tu_Pd0zTZ===undefined)Tu_Pd0zTZ=getFromCurrentRouteData(\"Tu_Pd0zTZ\");if(t7b0AvdZM===undefined)t7b0AvdZM=getFromCurrentRouteData(\"t7b0AvdZM\");React.useLayoutEffect(()=>{const metadata1=metadataProvider(currentRouteData);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(metadata1.bodyClassName);}},[currentRouteData]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const router=useRouter();const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"mREZlQ_J6\",variantClassNames},children:/*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsxs(motion.div,{className:cx(\"framer-9OsYo\",sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className),style:{\"--DD39DBmBH\":DD39DBmBH,display:\"contents\"},children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-v64xpx\",className),ref:ref,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k8yceo\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--variable-reference-DD39DBmBH-bcUIOegNe)\"},children:\"Category\"})}),className:\"framer-5l1itp\",\"data-framer-name\":\"Category\",name:\"Category\",text:PPeTwl1b8,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"Title\"})}),className:\"framer-8xpzc1\",\"data-framer-name\":\"Title\",name:\"Title\",text:YSKHrdVc1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:\"Short Description\"})}),className:\"framer-1ab0oax\",\"data-framer-name\":\"Short Description\",name:\"Short Description\",text:ivFLyaMNq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})}),className:\"framer-11l06d\",\"data-framer-name\":\"Date\",name:\"Date\",text:toDateString(EZue1CzWP,{dateStyle:\"medium\",locale:\"\"}),verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(100vw, 1200px) - 40px)\",...toResponsiveImage(kBAWMceDj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(100vw, 1200px) - 100px)\",...toResponsiveImage(kBAWMceDj)},className:\"framer-yhn904\",\"data-framer-name\":\"Banner\",name:\"Banner\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:t7b0AvdZM,className:\"framer-1dh789e\",\"data-framer-name\":\"Content\",name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-pbndum\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1tif1bq\",h3:\"framer-styles-preset-kdrywy\",p:\"framer-styles-preset-21ogod\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a99gjs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Latest articles\"})}),className:\"framer-nn8bpx\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kk2cyf\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{name:\"PPeTwl1b8\",type:\"Identifier\"},{name:\"DD39DBmBH\",type:\"Identifier\"},{name:\"kBAWMceDj\",type:\"Identifier\"},{name:\"YSKHrdVc1\",type:\"Identifier\"},{name:\"ivFLyaMNq\",type:\"Identifier\"},{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Tu_Pd0zTZ},type:\"BinaryOperation\"}}},children:collection=>collection.map(({PPeTwl1b8:PPeTwl1b8KTIXfs5E7,DD39DBmBH:DD39DBmBHKTIXfs5E7,kBAWMceDj:kBAWMceDjKTIXfs5E7,YSKHrdVc1:YSKHrdVc1KTIXfs5E7,ivFLyaMNq:ivFLyaMNqKTIXfs5E7,Tu_Pd0zTZ:Tu_Pd0zTZKTIXfs5E7,id:idKTIXfs5E7},i)=>/*#__PURE__*/_jsx(LayoutGroup,{id:`KTIXfs5E7-${idKTIXfs5E7}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZKTIXfs5E7},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wchld2-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:true,category1:PPeTwl1b8KTIXfs5E7,color:DD39DBmBHKTIXfs5E7,date:toDateString(EZue1CzWPT5odfa07V,{dateStyle:\"medium\",locale:\"\"}),date1:true,description:false,description1:ivFLyaMNqKTIXfs5E7,height:\"100%\",id:\"T4it2zJ00\",image:toResponsiveImage(kBAWMceDjKTIXfs5E7),layoutId:\"T4it2zJ00\",link:resolveLink({webPageId:\"bcUIOegNe\"},router,{Tu_Pd0zTZ:Tu_Pd0zTZKTIXfs5E7}),style:{width:\"100%\"},title:YSKHrdVc1KTIXfs5E7,variant:\"T_YCCfZlJ\",width:\"100%\"})})})},idKTIXfs5E7))})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8vk2sn\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u3yv8r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"stay in the loop\"})}),className:\"framer-16l2lk\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Subscribe for more inspiration.\"})}),className:\"framer-uhalo1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Container,{className:\"framer-1wwziv8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{layout:\"vertical\"}},children:/*#__PURE__*/_jsx(Mailchimp,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:'var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',fontWeight:600,label:\"Subscribe\"},font:true,fontFamily:\"Manrope\",fontSize:16,fontWeight:500,gap:15,height:\"100%\",id:\"afyWnNWRk\",input:{color:'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',error:\"rgb(238, 68, 68)\",fill:'var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255)) /* {\"name\":\"Purple Light\"} */',placeholder:\"email@framer.com\",placeholderColor:'var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118)) /* {\"name\":\"Text Light\"} */',value:\"\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"afyWnNWRk\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{width:\"100%\"},topLeftRadius:8,topRightRadius:8,url:\"\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1u3k1lg-container\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"gZYINbjdW\",layoutId:\"gZYINbjdW\",style:{width:\"100%\"},variant:\"NWDLXXgiF\",width:\"100%\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-v0rmu2-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{variant:\"ZQwaB4_p3\"},yUefG4DCi:{variant:\"ZQwaB4_p3\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"T3_QFvHGh\",layoutId:\"T3_QFvHGh\",style:{height:\"100%\",width:\"100%\"},variant:\"jRXICbciv\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})})});});const css=['.framer-9OsYo [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName} { background: white; }`,\".framer-9OsYo .framer-1plbcl9 { display: block; }\",\".framer-9OsYo .framer-v64xpx { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-9OsYo .framer-1k8yceo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1200px; padding: 100px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-9OsYo .framer-5l1itp { --framer-paragraph-spacing: 0px; --variable-reference-DD39DBmBH-bcUIOegNe: var(--DD39DBmBH); flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9OsYo .framer-8xpzc1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 970px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9OsYo .framer-1ab0oax, .framer-9OsYo .framer-11l06d { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9OsYo .framer-yhn904 { aspect-ratio: 1.5384615384615385 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 130px); position: relative; width: 100%; }\",\".framer-9OsYo .framer-1dh789e { --framer-paragraph-spacing: 32px; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9OsYo .framer-a99gjs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-9OsYo .framer-nn8bpx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; }\",\".framer-9OsYo .framer-kk2cyf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-9OsYo .framer-1wchld2-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-9OsYo .framer-8vk2sn { align-content: center; align-items: center; background-color: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #7421fc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\",\".framer-9OsYo .framer-u3yv8r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-9OsYo .framer-16l2lk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.7; position: relative; white-space: pre; width: auto; }\",\".framer-9OsYo .framer-uhalo1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9OsYo .framer-1wwziv8-container, .framer-9OsYo .framer-1u3k1lg-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9OsYo .framer-v0rmu2-container { flex: none; height: 80px; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9OsYo .framer-v64xpx, .framer-9OsYo .framer-1k8yceo, .framer-9OsYo .framer-a99gjs, .framer-9OsYo .framer-kk2cyf, .framer-9OsYo .framer-8vk2sn, .framer-9OsYo .framer-u3yv8r { gap: 0px; } .framer-9OsYo .framer-v64xpx > *, .framer-9OsYo .framer-8vk2sn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9OsYo .framer-v64xpx > :first-child, .framer-9OsYo .framer-1k8yceo > :first-child, .framer-9OsYo .framer-a99gjs > :first-child, .framer-9OsYo .framer-8vk2sn > :first-child, .framer-9OsYo .framer-u3yv8r > :first-child { margin-top: 0px; } .framer-9OsYo .framer-v64xpx > :last-child, .framer-9OsYo .framer-1k8yceo > :last-child, .framer-9OsYo .framer-a99gjs > :last-child, .framer-9OsYo .framer-8vk2sn > :last-child, .framer-9OsYo .framer-u3yv8r > :last-child { margin-bottom: 0px; } .framer-9OsYo .framer-1k8yceo > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-9OsYo .framer-a99gjs > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-9OsYo .framer-kk2cyf > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-9OsYo .framer-kk2cyf > :first-child { margin-left: 0px; } .framer-9OsYo .framer-kk2cyf > :last-child { margin-right: 0px; } .framer-9OsYo .framer-u3yv8r > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\"@media (min-width: 1200px) { .framer-9OsYo .hidden-v64xpx { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-9OsYo .hidden-1rrkavb { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-9OsYo .framer-v64xpx { width: 810px; } .framer-9OsYo .framer-kk2cyf { flex-direction: column; } .framer-9OsYo .framer-1wchld2-container { flex: none; width: 100%; } .framer-9OsYo .framer-8vk2sn { padding: 100px 50px 100px 50px; } .framer-9OsYo .framer-u3yv8r { max-width: 480px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9OsYo .framer-kk2cyf { gap: 0px; } .framer-9OsYo .framer-kk2cyf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-9OsYo .framer-kk2cyf > :first-child { margin-top: 0px; } .framer-9OsYo .framer-kk2cyf > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .framer-9OsYo .hidden-5nmr76 { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-9OsYo .framer-v64xpx { width: 390px; } .framer-9OsYo .framer-1k8yceo { padding: 100px 20px 50px 20px; } .framer-9OsYo .framer-kk2cyf { flex-direction: column; } .framer-9OsYo .framer-1wchld2-container { flex: none; width: 100%; } .framer-9OsYo .framer-8vk2sn { padding: 100px 20px 100px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9OsYo .framer-kk2cyf { gap: 0px; } .framer-9OsYo .framer-kk2cyf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-9OsYo .framer-kk2cyf > :first-child { margin-top: 0px; } .framer-9OsYo .framer-kk2cyf > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3794\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rAx44OxNG\":{\"layout\":[\"fixed\",\"auto\"]},\"yUefG4DCi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerResponsiveScreen\n */const FramerbcUIOegNe=withCSS(Component,css,\"framer-9OsYo\");export default FramerbcUIOegNe;FramerbcUIOegNe.displayName=\"Blog\";FramerbcUIOegNe.defaultProps={height:3794,width:1200};addFonts(FramerbcUIOegNe,[...BlogCardFonts,...MailchimpFonts,...FooterFonts,...TopbarFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts,...sharedStyle4.fonts,...sharedStyle5.fonts,...sharedStyle6.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbcUIOegNe\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rAx44OxNG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yUefG4DCi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"3794\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "wiCAA2X,IAAMA,GAAW,wJAA8JC,GAAe,qCAA2CC,GAAcC,GAAeH,GAAW,KAAK,OAAOG,CAAK,EAAE,YAAY,CAAC,EAAUC,GAAkBC,GAAK,CAAC,IAAIC,EAAI,GAAK,CAAC,CAACC,EAAOC,CAAU,GAAGF,EAAID,EAAI,QAAQ,QAAQ,GAAG,EAAE,MAAMJ,EAAc,KAAK,MAAMK,IAAM,OAAOA,EAAI,CAAC,KAAK,KAAK,IAAI,EAAE,MAAM,CAACC,EAAO,IAAI,gBAAgBC,CAAU,CAAC,CAAE,EAQp3BC,GAAUC,EAAQ,SAAmB,CAAC,IAAAL,EAAI,MAAAM,EAAM,OAAAC,EAAO,OAAAC,EAAO,MAAAC,EAAM,IAAAC,EAAI,SAAAC,EAAS,GAAGC,CAAK,EAAE,CAAC,GAAK,CAACC,EAAOC,CAAQ,EAAEC,EAAST,EAAM,KAAK,EAAO,CAACU,EAAQC,CAAQ,EAAEF,EAAS,EAAK,EAAO,CAACG,EAAUC,CAAU,EAAEJ,EAAS,EAAK,EAAO,CAACK,EAAUC,CAAU,EAAEN,EAAS,EAAK,EAAQO,EAASC,GAAQ,IAAYC,GAAa,QAAQ,IAAIA,GAAa,OAAS,CAAC,CAAC,EAAO,CAAC,WAAAC,EAAW,SAAAC,EAAS,WAAAC,CAAU,EAAEC,GAAgBhB,CAAK,EAAQiB,EAAaC,GAAUlB,CAAK,EAAQmB,EAAaC,GAAWpB,CAAK,EAAQqB,EAAaC,EAAYpC,GAAWA,IAAQ,IAAI,CAACD,GAAcC,CAAK,GAAGmB,EAAS,EAAI,EAAS,IAAc,GAAO,CAAC,CAAC,EAAQkB,EAAaD,EAAYE,GAAO,CAACnB,EAAS,EAAK,EAAEH,EAASsB,EAAM,OAAO,KAAK,CAAE,EAAE,CAAC,CAAC,EAAQC,GAAaH,EAAY,IAAI,CAAC,MAAM,eAAe,EAAE,GAAK,CAAChC,EAAOC,CAAU,EAAEJ,GAAkBC,CAAG,EAAK,CAACiC,EAAapB,CAAM,GAAG,CAACX,GAAQ,CAACC,EAAYgB,EAAW,EAAK,GAAQhB,EAAW,IAAI,SAASU,CAAM,EACr5B,MAAM,WAAWX,mBAAwB,CAAC,OAAO,OAAO,KAAK,UAAU,QAAQ,CAAC,eAAe,iDAAiD,EAAE,KAAKC,EAAW,SAAS,CAAC,CAAC,EAAE,KAAKmC,GAAU,CAACjB,EAAW,EAAI,EAAEV,EAAS,CAAE,CAAC,EAAE,MAAM,IAAI,CAACQ,EAAW,EAAK,CAAE,CAAC,EAAG,EAAE,CAACnB,EAAIa,CAAM,CAAC,EAAQ0B,EAAYL,EAAY,IAAI,CAACf,EAAW,EAAI,CAAE,EAAE,CAAC,CAAC,EAAE,OAAqBqB,EAAKC,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGhC,EAAM,GAAGiC,GAAgB,uCAAuCpC,EAAM,gBAAgB,EAAE,SAASc,EAAwBoB,EAAKC,EAAO,IAAI,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,WAAWlC,EAAO,KAAK,MAAMA,EAAO,MAAM,aAAa,MAAM,QAAQ,OAAO,eAAe,SAAS,WAAW,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,EAAE,WAAW,CAAC,SAAS,EAAG,EAAE,SAAuBiC,EAAK,MAAM,CAAC,MAAM,6BAA6B,MAAM,KAAK,OAAO,KAAK,SAAuBA,EAAK,OAAO,CAAC,EAAE,wBAAwB,KAAK,cAAc,YAAY,IAAI,OAAO,eAAe,cAAc,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAgBG,EAAM,OAAO,CAAC,MAAM,CAAC,MAAM,OAAO,QAAQ,OAAO,IAAAjC,EAAI,oBAAoBF,IAAS,WAAW,MAAM,kBAAkB,iBAAiBA,IAAS,WAAW,UAAU,KAAK,EAAE,SAAS6B,GAAa,OAAO,OAAO,SAAS,CAAeG,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,WAAW,WAAW,QAAQ,EAAE,cAAc,OAAO,SAAuBA,EAAK,QAAQ,CAAC,KAAK,OAAO,KAAK,yCAAyC,SAAS,EAAE,CAAC,CAAC,CAAC,EAAgBA,EAAK,QAAQ,CAAC,KAAK,QAAQ,KAAK,QAAQ,YAAYlC,EAAM,YAAY,MAAMgB,EAAShB,EAAM,MAAMO,EAAO,UAAU,yBAAyB,SAASsB,EAAa,MAAM,CAAC,GAAGS,GAAa,QAAQb,EAAa,aAAAF,EAAa,WAAAJ,EAAW,WAAAE,EAAW,SAAAD,EAAS,WAAWpB,EAAM,KAAK,MAAMA,EAAM,MAAM,UAAU,mBAAmBU,EAAQV,EAAM,MAAM,eAAe,CAAC,CAAC,EAAgBqC,EAAM,MAAM,CAAC,MAAM,CAAC,SAAS,UAAU,EAAE,SAAS,CAAeH,EAAKC,EAAO,MAAM,CAAC,KAAK,SAAS,MAAMlC,EAAO,MAAM,QAAQgC,EAAY,MAAM,CAAC,GAAGK,GAAa,OAAO,UAAU,aAAAf,EAAa,QAAQE,EAAa,WAAAN,EAAW,WAAWlB,EAAO,WAAW,SAAAmB,EAAS,WAAWnB,EAAO,KAAK,MAAMA,EAAO,MAAM,OAAO,CAAC,EAAE,WAAW,CAAC,KAAK,OAAO,SAAS,EAAG,EAAE,WAAW,CAAC,QAAQ,EAAG,CAAC,CAAC,EAAEW,GAAyBsB,EAAK,MAAM,CAAC,MAAM,CAAC,aAAAX,EAAa,SAAS,WAAW,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,MAAM,OAAO,OAAO,OAAO,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,MAAMtB,EAAO,MAAM,WAAWA,EAAO,IAAI,EAAE,SAAuBiC,EAAKC,EAAO,IAAI,CAAC,MAAM,CAAC,OAAO,GAAG,MAAM,EAAE,EAAE,QAAQ,CAAC,OAAO,CAAC,EAAE,QAAQ,CAAC,OAAO,GAAG,EAAE,WAAW,CAAC,SAAS,EAAE,OAAO,GAAQ,EAAE,SAAuBE,EAAM,MAAM,CAAC,MAAM,6BAA6B,MAAM,KAAK,OAAO,KAAK,SAAS,CAAeH,EAAK,OAAO,CAAC,EAAE,2NAA2N,KAAK,eAAe,QAAQ,KAAK,CAAC,EAAgBA,EAAK,OAAO,CAAC,EAAE,yKAAyK,KAAK,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAG,EAAE,CAAC,uGAAwG,CAAC,EAAEpC,GAAU,aAAa,CAAC,SAAS,GAAG,WAAW,QAAQ,WAAW,IAAI,QAAQ,GAAG,WAAW,GAAG,cAAc,GAAG,YAAY,GAAG,aAAa,GAAG,aAAa,EAAE,cAAc,EAAE,eAAe,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,IAAI,EAAE,EAAEyC,EAAoBzC,GAAU,CAAC,IAAI,CAAC,MAAM,MAAM,YAAY,uDAAuD,KAAK0C,EAAY,OAAO,YAAY,gKAA2J,EAAE,OAAO,CAAC,MAAM,SAAS,KAAKA,EAAY,KAAK,QAAQ,CAAC,aAAa,UAAU,EAAE,wBAAwB,EAAI,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,SAAS,CAAC,YAAY,CAAC,MAAM,cAAc,KAAKA,EAAY,OAAO,aAAa,kBAAkB,EAAE,iBAAiB,CAAC,MAAM,IAAI,KAAKA,EAAY,MAAM,aAAa,oBAAoB,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,MAAM,aAAa,SAAS,EAAE,MAAM,CAAC,MAAM,OAAO,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,SAAS,CAAC,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,SAAS,EAAE,WAAW,CAAC,GAAGC,GAAa,WAAW,aAAa,GAAG,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKD,EAAY,MAAM,aAAa,MAAM,EAAE,MAAM,CAAC,MAAM,OAAO,KAAKA,EAAY,MAAM,aAAa,MAAM,CAAC,CAAC,EAAE,GAAGC,GAAa,SAAS,CAAC,MAAM,YAAY,KAAKD,EAAY,OAAO,eAAe,GAAK,aAAa,EAAE,EAAE,GAAGE,GAAe,GAAGC,GAAoB,IAAI,CAAC,MAAM,MAAM,KAAKH,EAAY,OAAO,eAAe,GAAK,IAAI,CAAC,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAE,IAAMF,GAAa,CAAC,iBAAiB,OAAO,MAAM,OAAO,WAAW,QAAQ,QAAQ,OAAO,OAAO,MAAM,EAASM,GAAQ9C,GCTj9J+C,GAAU,0BAA0B,CAAC,gBAAgB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,UAAU,YAAY,CAAC,sBAAsB,qCAAqC,IAAI,0FAA0F,EAAE,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,smBAAsmB,4pBAA4pB,wpBAAwpB,EAAeC,GAAU,eCC92C,IAAMC,GAAkB,CAAE,UAAW,CAAE,MAAO,EAAK,EAAG,UAAW,CAAE,MAAO,EAAK,EAAG,UAAW,CAAE,MAAO,EAAK,EAAG,UAAW,CAAE,MAAO,EAAK,CAAE,EAAQC,GAAa,CAAC,YAAa,YAAa,YAAa,WAAW,EAAQC,GAAoB,CAAE,UAAW,kBAAmB,UAAW,mBAAoB,UAAW,kBAAmB,UAAW,kBAAmB,EAAE,SAASC,EAAqBC,KAAcC,EAAU,CAAC,IAAMC,EAAgB,CAAC,EAAE,OAAoDD,GAAS,QAASE,GAAYA,GAAW,OAAO,OAAOD,EAAeF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAA0B,CAAE,QAAS,YAAa,SAAU,YAAa,KAAM,YAAa,MAAO,WAAY,EAAQC,GAAc,CAAE,QAAS,CAAE,QAAS,GAAI,MAAO,EAAG,SAAU,GAAI,KAAM,CAAC,IAAK,EAAG,IAAK,CAAC,EAAG,KAAM,EAAG,UAAW,IAAK,KAAM,QAAS,CAAE,EAAQC,GAAqBC,GAAe,OAAOA,GAAU,UAAYA,IAAU,MAAQ,OAAOA,EAAM,KAAQ,SAAkBA,EAAc,OAAOA,GAAU,SAAW,CAAE,IAAKA,CAAM,EAAI,OAAkBC,GAA+BC,EAAW,SAAU,CAAE,GAAAC,EAAI,MAAAC,EAAO,UAAAC,EAAW,MAAAC,EAAO,OAAAC,EAAQ,SAAAC,EAAU,QAASC,EAAe,YAAa,SAAUC,EAAY,GAAM,UAAWC,EAAY,YAAa,MAAOC,EAAY,+FAAgG,MAAOC,EAAY,CAAE,IAAK,IAAI,IAAI,sFAAsF,EAAE,KAAM,OAAQ,GAAG,IAAI,IAAI,sFAAsF,EAAE,cAAc,IAAI,IAAI,uFAAuF,EAAE,eAAe,IAAI,IAAI,uFAAuF,EAAE,eAAe,IAAI,IAAI,oEAAoE,EAAE,YAAa,EAAG,MAAOC,EAAY,mCAAoC,YAAaC,EAAY,GAAO,aAAcC,EAAY,+DAAgE,KAAMC,EAAY,kBAAmB,KAAMC,EAAW,MAAOC,EAAY,GAAM,GAAGC,CAAU,EAAGC,EAAK,CAA8D,IAAMzB,EAA5CC,GAAwBY,CAAY,GAAoCA,EAAmB,CAAE,YAAAa,EAAa,WAAAC,EAAY,eAAAC,EAAgB,gBAAAC,EAAiB,WAAAC,GAAY,WAAAC,EAAY,SAAAjC,CAAS,EAAIkC,GAAgB,CAAE,WAAAtC,GAAY,eAAgB,YAAa,gBAAAD,GAAiB,YAAAS,GAAa,QAAAF,EAAS,kBAAAL,EAAkB,CAAC,EAAQsC,EAAmBnC,EAAS,KAAK,GAAG,EAAI0B,EAAU,iBAAuBU,EAAc,IAAWN,IAAmB,mBAAmCF,IAAgB,YAA8CS,EAAe,IAAW,EAAAP,IAAmB,mBAAoCF,IAAgB,aAA8CU,GAAwBC,EAAM,EAAE,OAAoBC,EAAKC,EAAa,CAAE,GAAI3B,GAAsDwB,GAAiB,SAAuBE,EAAKE,EAAO,IAAK,CAAE,QAASxC,EAAS,QAASF,EAAU,aAAc,IAAM+B,EAAgB,CAAE,UAAW,EAAK,CAAC,EAAG,WAAY,IAAMA,EAAgB,CAAE,UAAW,EAAM,CAAC,EAAG,WAAY,IAAMA,EAAgB,CAAE,UAAW,EAAK,CAAC,EAAG,MAAO,IAAMA,EAAgB,CAAE,UAAW,EAAM,CAAC,EAAG,YAAa,IAAMA,EAAgB,CAAE,UAAW,EAAM,CAAC,EAAG,UAAWY,EAAG,eAA4BhC,GAAwBA,GAAwBA,GAAwBA,GAAwBA,GAAwBA,GAAWkB,CAAU,EAAG,MAAO,CAAE,QAAS,UAAW,EAAG,SAAuBW,EAAKI,GAAM,CAAE,KAAMpB,EAAW,aAAc,GAAM,GAAG1B,EAAqB,CAAE,UAAW,CAAE,aAAc,EAAM,CAAE,EAAG8B,EAAaE,CAAc,EAAG,SAAuBe,EAAMH,EAAO,EAAG,CAAE,GAAGhB,EAAW,UAAW,GAAGiB,EAAG,gBAAiBhC,CAAS,mBAAoB,cAAe,GAAM,mBAAoB,UAAW,iBAAkBwB,EAAkB,SAAU,YAAa,IAAKR,EAAK,MAAO,CAAE,wBAAyB,MAAO,iBAAkB,sBAAuB,sBAAuB,MAAO,uBAAwB,MAAO,iBAAkB,QAAS,qBAAsB,MAAO,gBAAiB,wEAAyE,uBAAwB,GAAI,wBAAyB,GAAI,oBAAqB,GAAI,qBAAsB,GAAI,UAAW,0CAA2C,GAAGjB,CAAM,EAAG,WAAYuB,EAAY,GAAGnC,EAAqB,CAAE,kBAAmB,CAAE,mBAAoB,MAAU,EAAG,kBAAmB,CAAE,mBAAoB,MAAU,EAAG,kBAAmB,CAAE,mBAAoB,MAAU,EAAG,kBAAmB,CAAE,mBAAoB,MAAU,EAAG,UAAW,CAAE,mBAAoB,MAAO,EAAG,UAAW,CAAE,mBAAoB,OAAQ,EAAG,UAAW,CAAE,mBAAoB,UAAW,CAAE,EAAG8B,EAAaE,CAAc,EAAG,SAAU,CAAcU,EAAKM,EAAO,CAAE,WAAY,CAAE,IAAK,GAAI,IAAK,OAAQ,gBAAiB,KAAM,eAAgB,KAAM,YAAa,KAAM,WAAY,KAAM,MAAO,QAAS,GAAGzC,GAAkBc,CAAS,CAAE,EAAG,UAAW,iBAAkB,iBAAkBgB,EAAkB,SAAU,YAAa,MAAO,CAAE,uBAAwB,GAAI,wBAAyB,GAAI,oBAAqB,GAAI,qBAAsB,GAAI,QAAS,CAAE,EAAG,WAAYF,EAAY,SAAU,CAAE,kBAAmB,CAAE,QAAS,EAAG,EAAG,kBAAmB,CAAE,uBAAwB,EAAG,wBAAyB,EAAG,oBAAqB,EAAG,qBAAsB,EAAG,QAAS,EAAG,EAAG,kBAAmB,CAAE,uBAAwB,EAAG,wBAAyB,EAAG,oBAAqB,EAAG,qBAAsB,EAAG,QAAS,EAAG,EAAG,kBAAmB,CAAE,uBAAwB,EAAG,wBAAyB,EAAG,oBAAqB,EAAG,qBAAsB,CAAE,EAAG,UAAW,CAAE,uBAAwB,EAAG,wBAAyB,EAAG,oBAAqB,EAAG,qBAAsB,CAAE,EAAG,UAAW,CAAE,uBAAwB,EAAG,wBAAyB,EAAG,oBAAqB,EAAG,qBAAsB,CAAE,EAAG,UAAW,CAAE,uBAAwB,EAAG,wBAAyB,EAAG,oBAAqB,EAAG,qBAAsB,CAAE,CAAE,EAAG,GAAGnC,EAAqB,CAAE,UAAW,CAAE,WAAY,CAAE,IAAK,GAAI,IAAK,OAAQ,gBAAiB,KAAM,eAAgB,KAAM,YAAa,KAAM,WAAY,KAAM,MAAO,QAAS,GAAGO,GAAkBc,CAAS,CAAE,CAAE,EAAG,UAAW,CAAE,WAAY,CAAE,IAAK,GAAI,IAAK,OAAQ,gBAAiB,KAAM,eAAgB,KAAM,YAAa,KAAM,WAAY,KAAM,MAAO,QAAS,GAAGd,GAAkBc,CAAS,CAAE,CAAE,EAAG,UAAW,CAAE,WAAY,CAAE,IAAK,GAAI,IAAK,OAAQ,gBAAiB,KAAM,eAAgB,KAAM,YAAa,KAAM,WAAY,KAAM,MAAO,QAAS,GAAGd,GAAkBc,CAAS,CAAE,CAAE,CAAE,EAAGS,EAAaE,CAAc,EAAG,SAAUM,EAAY,GAAkBI,EAAKE,EAAO,IAAK,CAAE,UAAW,iBAAkB,iBAAkBP,EAAkB,SAAU,YAAa,MAAO,CAAE,WAAY,uEAAwE,EAAG,WAAYF,EAAY,SAAU,CAAE,kBAAmB,CAAE,WAAY,uEAAwE,CAAE,EAAG,SAAuBY,EAAMH,EAAO,IAAK,CAAE,UAAW,gBAAiB,iBAAkBP,EAAkB,SAAU,YAAa,WAAYF,EAAY,SAAU,CAACjB,GAA0BwB,EAAKO,EAAU,CAAE,sBAAuB,GAAM,SAAuBP,EAAWQ,EAAU,CAAE,SAAuBR,EAAKE,EAAO,EAAG,CAAE,UAAW,8BAA+B,qBAAsB,YAAa,MAAO,CAAE,0BAA2B,SAAU,sBAAuB,yBAA0B,EAAG,SAAU,WAAY,CAAC,CAAE,CAAC,EAAG,UAAW,gBAAiB,iBAAkBP,EAAkB,SAAU,YAAa,MAAO,CAAE,qBAAsB,wEAAyE,2BAA4B,mBAAoB,gCAAiC,YAAa,6BAA8B,MAAO,QAAS,EAAG,EAAG,KAAMlB,EAAW,WAAYgB,EAAY,kBAAmB,MAAO,mBAAoB,EAAK,CAAC,EAAgBO,EAAKO,EAAU,CAAE,sBAAuB,GAAM,SAAuBP,EAAWQ,EAAU,CAAE,SAAuBR,EAAKE,EAAO,GAAI,CAAE,UAAW,+BAAgC,qBAAsB,YAAa,MAAO,CAAE,sBAAuB,yBAA0B,EAAG,SAAU,kCAAmC,CAAC,CAAE,CAAC,EAAG,UAAW,iBAAkB,iBAAkBP,EAAkB,SAAU,YAAa,MAAO,CAAE,qBAAsB,qBAAsB,2BAA4B,mBAAoB,gCAAiC,YAAa,6BAA8B,KAAM,EAAG,KAAMf,EAAW,WAAYa,EAAY,kBAAmB,MAAO,mBAAoB,EAAK,CAAC,EAAGZ,GAA0BmB,EAAKO,EAAU,CAAE,sBAAuB,GAAM,SAAuBP,EAAWQ,EAAU,CAAE,SAAuBR,EAAKE,EAAO,EAAG,CAAE,UAAW,8BAA+B,qBAAsB,YAAa,MAAO,CAAE,sBAAuB,yBAA0B,EAAG,SAAU,8DAA+D,CAAC,CAAE,CAAC,EAAG,UAAW,gBAAiB,iBAAkBP,EAAkB,SAAU,YAAa,MAAO,CAAE,qBAAsB,qBAAsB,2BAA4B,mBAAoB,gCAAiC,YAAa,6BAA8B,MAAO,QAAS,EAAG,EAAG,KAAMb,EAAW,WAAYW,EAAY,kBAAmB,MAAO,mBAAoB,EAAK,CAAC,EAAgBO,EAAKO,EAAU,CAAE,sBAAuB,GAAM,SAAuBP,EAAWQ,EAAU,CAAE,SAAuBR,EAAKE,EAAO,EAAG,CAAE,UAAW,8BAA+B,qBAAsB,YAAa,MAAO,CAAE,sBAAuB,yBAA0B,EAAG,SAAU,iBAAkB,CAAC,CAAE,CAAC,EAAG,UAAW,iBAAkB,iBAAkBP,EAAkB,SAAU,YAAa,MAAO,CAAE,qBAAsB,wEAAyE,2BAA4B,mBAAoB,gCAAiC,YAAa,6BAA8B,KAAM,EAAG,KAAMZ,EAAW,WAAYU,EAAY,kBAAmB,MAAO,mBAAoB,EAAK,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,CAAE,CAAC,EAAGI,EAAa,GAAkBQ,EAAMH,EAAO,IAAK,CAAE,UAAW,gBAAiB,iBAAkBP,EAAkB,SAAU,YAAa,WAAYF,EAAY,SAAU,CAACjB,GAA0BwB,EAAKO,EAAU,CAAE,sBAAuB,GAAM,SAAuBP,EAAWQ,EAAU,CAAE,SAAuBR,EAAKE,EAAO,EAAG,CAAE,UAAW,8BAA+B,qBAAsB,YAAa,MAAO,CAAE,0BAA2B,SAAU,sBAAuB,yBAA0B,EAAG,SAAU,WAAY,CAAC,CAAE,CAAC,EAAG,UAAW,iBAAkB,iBAAkBP,EAAkB,SAAU,YAAa,MAAO,CAAE,qBAAsB,gDAAiD,2BAA4B,mBAAoB,gCAAiC,YAAa,6BAA8B,MAAO,2CAA4CjB,CAAU,EAAG,KAAMD,EAAW,WAAYgB,EAAY,kBAAmB,MAAO,mBAAoB,GAAM,GAAGnC,EAAqB,CAAE,UAAW,CAAE,SAAuB0C,EAAWQ,EAAU,CAAE,SAAuBR,EAAKE,EAAO,EAAG,CAAE,UAAW,8BAA+B,qBAAsB,YAAa,MAAO,CAAE,sBAAuB,yBAA0B,EAAG,SAAU,WAAY,CAAC,CAAE,CAAC,CAAE,CAAE,EAAGd,EAAaE,CAAc,CAAE,CAAC,EAAgBU,EAAKO,EAAU,CAAE,sBAAuB,GAAM,SAAuBP,EAAWQ,EAAU,CAAE,SAAuBR,EAAKE,EAAO,GAAI,CAAE,UAAW,+BAAgC,qBAAsB,YAAa,SAAU,kCAAmC,CAAC,CAAE,CAAC,EAAG,UAAW,gBAAiB,iBAAkBP,EAAkB,SAAU,YAAa,MAAO,CAAE,2BAA4B,mBAAoB,gCAAiC,YAAa,6BAA8B,KAAM,EAAG,KAAMf,EAAW,WAAYa,EAAY,kBAAmB,MAAO,mBAAoB,GAAM,GAAGnC,EAAqB,CAAE,UAAW,CAAE,SAAuB0C,EAAWQ,EAAU,CAAE,SAAuBR,EAAKE,EAAO,GAAI,CAAE,UAAW,8BAA+B,qBAAsB,YAAa,SAAU,kCAAmC,CAAC,CAAE,CAAC,CAAE,CAAE,EAAGd,EAAaE,CAAc,CAAE,CAAC,EAAGT,GAA0BmB,EAAKO,EAAU,CAAE,sBAAuB,GAAM,SAAuBP,EAAWQ,EAAU,CAAE,SAAuBR,EAAKE,EAAO,EAAG,CAAE,UAAW,8BAA+B,qBAAsB,YAAa,SAAU,8DAA+D,CAAC,CAAE,CAAC,EAAG,UAAW,iBAAkB,iBAAkBP,EAAkB,SAAU,YAAa,MAAO,CAAE,2BAA4B,mBAAoB,gCAAiC,YAAa,6BAA8B,KAAM,EAAG,KAAMb,EAAW,WAAYW,EAAY,kBAAmB,MAAO,mBAAoB,EAAK,CAAC,EAAGR,GAA0Be,EAAKO,EAAU,CAAE,sBAAuB,GAAM,SAAuBP,EAAWQ,EAAU,CAAE,SAAuBR,EAAKE,EAAO,EAAG,CAAE,UAAW,8BAA+B,qBAAsB,YAAa,MAAO,CAAE,sBAAuB,yBAA0B,EAAG,SAAU,iBAAkB,CAAC,CAAE,CAAC,EAAG,UAAW,gBAAiB,iBAAkBP,EAAkB,SAAU,YAAa,MAAO,CAAE,qBAAsB,sEAAuE,2BAA4B,mBAAoB,gCAAiC,YAAa,6BAA8B,KAAM,EAAG,KAAMZ,EAAW,WAAYU,EAAY,kBAAmB,MAAO,mBAAoB,GAAM,GAAGnC,EAAqB,CAAE,UAAW,CAAE,SAAuB0C,EAAWQ,EAAU,CAAE,SAAuBR,EAAKE,EAAO,EAAG,CAAE,UAAW,8BAA+B,qBAAsB,YAAa,MAAO,CAAE,sBAAuB,yBAA0B,EAAG,SAAU,iBAAkB,CAAC,CAAE,CAAC,CAAE,CAAE,EAAGd,EAAaE,CAAc,CAAE,CAAC,CAAC,CAAE,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,CAAE,CAAC,CAAE,CAAC,CAAE,CAAC,EAAQmB,GAAM,CAAC,sZAAuZ,kFAAmF,oDAAqD,+UAAgV,sNAAuN,sVAAuV,uSAAwS,4MAA6M,gQAAiQ,mSAAoS,oNAAqN,y4BAA04B,wFAAyF,0GAA2G,kFAAmF,ibAAkb,sKAAuK,2JAA4J,4GAA6G,6aAA8a,sGAAuG,yFAA0F,ibAAkb,qIAAsI,GAAeA,GAAK,GAAgBA,GAAK,GAAgBA,GAAK,GAAgBA,GAAK,GAAgBA,GAAK,GAAgBA,EAAG,EAMz6pBC,EAAkBC,EAAQ5C,GAAW0C,GAAK,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAc,YAAYA,EAAgB,aAAe,CAAE,OAAQ,IAAK,MAAO,GAAI,EAAEG,EAAoBH,EAAiB,CAAE,QAAS,CAAE,QAAS,CAAC,YAAa,YAAa,YAAa,WAAW,EAAG,aAAc,CAAC,UAAW,OAAQ,QAAS,UAAU,EAAG,MAAO,UAAW,KAAMI,EAAY,IAAK,EAAG,UAAW,CAAE,aAAc,GAAM,MAAO,WAAY,KAAMA,EAAY,OAAQ,EAAG,UAAW,CAAE,aAAc,YAAa,gBAAiB,GAAO,MAAO,WAAY,KAAMA,EAAY,MAAO,EAAG,UAAW,CAAE,aAAc,+FAAgG,MAAO,QAAS,KAAMA,EAAY,KAAM,EAAG,UAAW,CAAE,wBAAyB,4GAA6G,MAAO,QAAS,KAAMA,EAAY,eAAgB,EAAG,UAAW,CAAE,aAAc,mCAAoC,gBAAiB,GAAM,MAAO,QAAS,KAAMA,EAAY,MAAO,EAAG,UAAW,CAAE,aAAc,GAAO,MAAO,cAAe,KAAMA,EAAY,OAAQ,EAAG,UAAW,CAAE,aAAc,+DAAgE,gBAAiB,GAAO,MAAO,cAAe,KAAMA,EAAY,MAAO,EAAG,UAAW,CAAE,aAAc,kBAAmB,gBAAiB,GAAO,MAAO,OAAQ,KAAMA,EAAY,MAAO,EAAG,UAAW,CAAE,MAAO,OAAQ,KAAMA,EAAY,IAAK,EAAG,UAAW,CAAE,aAAc,GAAM,MAAO,OAAQ,KAAMA,EAAY,OAAQ,CAAE,CAAC,EAAEC,EAASL,EAAiB,CAAC,GAAeM,GAAO,GAAgBA,GAAO,GAAgBA,GAAO,GAAgBA,GAAO,GAAgBA,GAAO,GAAgBA,EAAK,CAAC,ECNzV,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAeF,EAASG,EAAS,EAAQC,GAAYJ,EAASK,EAAM,EAAQC,GAAYN,EAASO,EAAM,EAAyD,IAAMC,GAAY,CAAC,UAAU,sBAAsB,UAAU,6CAA6C,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAKD,GAAU,GAAG,OAAyE,IAAME,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAY,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC,EAAQC,GAAa,CAACC,EAAMC,EAAQ,CAAC,IAAI,CAAC,GAAG,OAAOD,GAAQ,SAAS,MAAM,GAAG,IAAME,EAAK,IAAI,KAAKF,CAAK,EAAE,GAAG,MAAME,EAAK,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAMC,EAAe,QAAcC,EAAOH,EAAQ,QAAQE,EAAqBE,EAAUJ,EAAQ,UAAgBK,EAAS,MAAM,GAAG,CAAC,OAAOJ,EAAK,mBAAmBE,EAAO,CAAC,UAAAC,EAAU,SAAAC,CAAQ,CAAC,CAAE,MAAC,CAAM,OAAOJ,EAAK,mBAAmBC,EAAe,CAAC,UAAAE,EAAU,SAAAC,CAAQ,CAAC,CAAE,CAAC,EAAQC,GAAkBP,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBQ,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaH,CAAK,EAAE,OAAOC,EAASC,CAAI,CAAE,EAAQE,GAASC,GAAiB,EAAQC,GAA6BC,EAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,UAAAC,EAAU,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMC,EAA5C7C,GAAwB0B,CAAY,GAAgCA,EAAmBoB,EAAqBC,GAAwB,EAAO,CAACC,CAAgB,EAAEjC,GAAa,CAAC,KAAK,CAAC,KAAK,aAAa,KAAKkC,EAAI,EAAE,OAAO,CAAC,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,MAAMC,GAAoCJ,CAAoB,CAAC,CAAC,EAAQK,EAAwBC,GAAK,CAAC,GAAG,CAACJ,EAAiB,MAAM,IAAIK,GAAc,6CAA6C,KAAK,UAAUP,CAAoB,GAAG,EAAE,OAAOE,EAAiBI,CAAG,CAAE,EAAKzB,IAAY,SAAUA,EAAUwB,EAAwB,WAAW,GAAKvB,IAAY,SAAUA,EAAUuB,EAAwB,WAAW,GAAKtB,IAAY,SAAUA,EAAUsB,EAAwB,WAAW,GAAKrB,IAAY,SAAUA,EAAUqB,EAAwB,WAAW,GAAKnB,IAAY,SAAUA,EAAUmB,EAAwB,WAAW,GAAKpB,IAAY,SAAUA,EAAUoB,EAAwB,WAAW,GAAKT,IAAY,SAAUA,EAAUS,EAAwB,WAAW,GAAKlB,IAAY,SAAUA,EAAUkB,EAAwB,WAAW,GAAQG,GAAgB,IAAI,CAAC,IAAMC,EAAUtC,GAAiB+B,CAAgB,EAAqC,GAAnC,SAAS,MAAMO,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIC,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUD,EAAU,QAAQ,EAAMA,EAAU,gBAAe,MAAM,KAAK,SAAS,KAAK,SAAS,EAAE,OAAOE,GAAGA,EAAE,WAAW,cAAc,CAAC,EAAE,IAAIA,GAAG,SAAS,KAAK,UAAU,OAAOA,CAAC,CAAC,EAAE,SAAS,KAAK,UAAU,IAAIF,EAAU,aAAa,EAAG,EAAE,CAACP,CAAgB,CAAC,EAAE,GAAK,CAACU,EAAYC,EAAmB,EAAEC,GAA8Bf,EAAQhD,GAAY,EAAK,EAAQgE,GAAe,OAAgBC,GAAW7D,GAAY,QAAc8D,GAAOC,GAAU,EAAQC,GAAsBC,EAAM,EAAE,OAAoBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAArE,EAAiB,EAAE,SAAsBoE,EAAKE,EAAY,CAAC,GAAG5C,GAA4CwC,GAAgB,SAAsBK,EAAMC,EAAO,IAAI,CAAC,UAAUC,EAAG,eAA2BlD,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE,MAAM,CAAC,cAAcK,EAAU,QAAQ,UAAU,EAAE,SAAS,CAAc2C,EAAMC,EAAO,IAAI,CAAC,GAAG5B,EAAU,UAAU6B,EAAG,gBAAgBlD,CAAS,EAAE,IAAIsB,EAAI,MAAM,CAAC,GAAGvB,CAAK,EAAE,SAAS,CAAciD,EAAMC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcJ,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,+CAA+C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,WAAW,KAAKvC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeuC,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,KAAKtC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesC,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,KAAK,oBAAoB,KAAKrC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeqC,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,KAAKjE,GAAa6B,EAAU,CAAC,UAAU,SAAS,OAAO,EAAE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeoC,EAAKQ,EAAkB,CAAC,WAAWjB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,kCAAkC,GAAGhD,GAAkBsB,CAAS,CAAC,CAAC,CAAC,EAAE,SAAsBmC,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,mCAAmC,GAAGlE,GAAkBsB,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,EAAemC,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAASxC,EAAU,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,wBAAwB,CAAC,EAAE,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeqC,EAAMC,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcJ,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKI,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBJ,EAAKxD,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,KAAKsC,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,SAAS,MAAM,KAAK,iBAAiB,MAAM,CAAC,KAAK,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAMP,CAAS,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,SAASmC,GAAYA,EAAW,IAAI,CAAC,CAAC,UAAU3C,EAAmB,UAAUC,EAAmB,UAAUC,GAAmB,UAAUC,GAAmB,UAAUC,GAAmB,UAAUE,GAAmB,GAAGC,EAAW,EAAEqC,KAAiBX,EAAKE,EAAY,CAAC,GAAG,aAAa5B,KAAc,SAAsB0B,EAAKY,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUvC,EAAkB,EAAE,SAAsB2B,EAAKa,EAAU,CAAC,UAAU,2BAA2B,SAAsBb,EAAKc,GAAS,CAAC,SAAS,GAAK,UAAU/C,EAAmB,MAAMC,EAAmB,KAAKjC,GAAaqC,EAAmB,CAAC,UAAU,SAAS,OAAO,EAAE,CAAC,EAAE,MAAM,GAAK,YAAY,GAAM,aAAaD,GAAmB,OAAO,OAAO,GAAG,YAAY,MAAM5B,GAAkB0B,EAAkB,EAAE,SAAS,YAAY,KAAK8C,GAAY,CAAC,UAAU,WAAW,EAAEnB,GAAO,CAAC,UAAUvB,EAAkB,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAMH,GAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEI,EAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAKI,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBD,EAAMC,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcJ,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAWO,EAAS,CAAC,SAAsBP,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKa,EAAU,CAAC,UAAU,2BAA2B,SAAsBb,EAAKQ,EAAkB,CAAC,WAAWjB,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,UAAU,CAAC,EAAE,SAAsBS,EAAKgB,GAAU,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,CAAC,MAAM,qBAAqB,KAAK,yFAAyF,WAAW,IAAI,MAAM,WAAW,EAAE,KAAK,GAAK,WAAW,UAAU,SAAS,GAAG,WAAW,IAAI,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,MAAM,CAAC,MAAM,2FAA2F,MAAM,mBAAmB,KAAK,sGAAsG,YAAY,mBAAmB,iBAAiB,kGAAkG,MAAM,EAAE,EAAE,oBAAoB,GAAM,OAAO,aAAa,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,MAAM,CAAC,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAKa,EAAU,CAAC,UAAU,2BAA2B,SAAsBb,EAAKiB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAejB,EAAKa,EAAU,CAAC,UAAU,0BAA0B,aAAa,GAAK,SAAsBb,EAAKQ,EAAkB,CAAC,WAAWjB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBS,EAAKkB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmB,GAAI,CAAC,sZAAsZ,kFAAkF,IAAItE,GAAS,uCAAuC,oDAAoD,gTAAgT,sSAAsS,iQAAiQ,uNAAuN,oOAAoO,2SAA2S,yNAAyN,4TAA4T,mRAAmR,qSAAqS,2GAA2G,oXAAoX,iTAAiT,4OAA4O,kRAAkR,kJAAkJ,uIAAuI,27CAA27C,4FAA4F,oHAAoHA,GAAS,4qBAA4qB,2FAA2FA,GAAS,0rBAA0rB,GAAesE,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAM3sqBC,GAAgBC,EAAQtE,GAAUoE,GAAI,cAAc,EAASrE,GAAQsE,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEE,EAASF,GAAgB,CAAC,GAAGG,GAAc,GAAGC,GAAe,GAAGC,GAAY,GAAGC,GAAY,GAAeC,GAAM,GAAgBA,GAAM,GAAgBA,GAAM,GAAgBA,GAAM,GAAgBA,GAAM,GAAgBA,GAAM,GAAgBA,EAAK,CAAC,EACpa,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,IAAI,qBAAuB,OAAO,oCAAsC,4JAA0L,sBAAwB,OAAO,uBAAyB,EAAE,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "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", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "LFXgxuHG4", "CPMabOrfU", "cWI4CB6po", "Yo7UXCjeZ", "HDbfmLJN9", "mMXkBrQjq", "TS9IF2Dr6", "mJ5LrnBOl", "iTLspfP7r", "fl_dKZrsX", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "Link", "u", "Image2", "RichText", "x", "css", "FramerFIQUCdJNE", "withCSS", "FIQUCdJNE_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "BlogCardFonts", "getFonts", "FIQUCdJNE_default", "MailchimpFonts", "Mailchimp_default", "FooterFonts", "M82dauGNX_default", "TopbarFonts", "lWUcIJP0H_default", "breakpoints", "isBrowser", "variantClassNames", "humanReadableVariantMap", "transitions", "toDateString", "value", "options", "date", "fallbackLocale", "locale", "dateStyle", "timeZone", "toResponsiveImage", "QueryData", "query", "children", "data", "useQueryData", "metadata", "bcUIOegNe_default", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "DD39DBmBH", "PPeTwl1b8", "YSKHrdVc1", "ivFLyaMNq", "EZue1CzWP", "kBAWMceDj", "t7b0AvdZM", "PPeTwl1b8KTIXfs5E7", "DD39DBmBHKTIXfs5E7", "kBAWMceDjKTIXfs5E7", "YSKHrdVc1KTIXfs5E7", "ivFLyaMNqKTIXfs5E7", "EZue1CzWPT5odfa07V", "Tu_Pd0zTZKTIXfs5E7", "idKTIXfs5E7", "Tu_Pd0zTZ", "restProps", "ref", "variant", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "nWZy3UnCE_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "router", "useRouter", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "RichText", "x", "PropertyOverrides", "Image2", "collection", "i", "PathVariablesContext", "Container", "FIQUCdJNE_default", "resolveLink", "Mailchimp_default", "M82dauGNX_default", "lWUcIJP0H_default", "css", "FramerbcUIOegNe", "withCSS", "addFonts", "BlogCardFonts", "MailchimpFonts", "FooterFonts", "TopbarFonts", "fonts", "__FramerMetadata__"]
}
