{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/L21oPRpPlLtefnrR8aCf/dkfPufkNon3914ILtVEQ/ReadingTime.js", "ssg:https://framerusercontent.com/modules/plRLcvs5joj2tiEV5UXz/lRjrppiN2IEK2nqVEVG4/uWT3MLh7A.js", "ssg:https://framerusercontent.com/modules/ff3qurenX0fcfNCuNAuI/3Lk6TTaGI7jMp7hPLhGL/YP7x0GbJD.js"],
  "sourcesContent": ["/**\n * Reading Time V1\n * By Matias Fernandez\n *\n * at mattimelgarejo\n *\n *\n *\n */import{jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n */export default function ReadingTime(props){const{text,readingType,language,style,textColor}=props;const calculateReadingTime=(text,readingType)=>{let wordsPerMinute;if(readingType===\"Talk Time\"){wordsPerMinute=200// Palabras por minuto durante el discurso\n;}else{wordsPerMinute=300// Palabras por minuto durante la lectura en silencio\n;}if(!text)return 0// Si no hay texto, retornar 0 minutos\n;const words=text.trim().split(/\\s+/).length;const readingTime=Math.ceil(words/wordsPerMinute);return readingTime;};const readingTime=calculateReadingTime(text,readingType);const minutesText=language===\"English\"?readingTime===1?\"minute\":\"minutes\":readingTime===1?\"minuto\":\"minutos\";return /*#__PURE__*/_jsxs(\"p\",{style:{...props.style,color:props.textColor,margin:0},children:[readingTime,\" \",minutesText]});}ReadingTime.defaultProps={text:\"\",readingType:\"Talk Time\",language:\"English\"};addPropertyControls(ReadingTime,{text:{type:ControlType.String,title:\"Text\",defaultValue:\"\",placeholder:\"Write or paste your text here...\",displayTextArea:true,hidden(props){return props.displayTextArea===false;}},readingType:{type:ControlType.Enum,title:\"Reading type\",options:[\"Talk Time\",\"Silent Reading Time\"],defaultValue:\"Talk Time\",description:\"Talk Time: 200 wpm / Silent Reading Time: 300 wpm\"},language:{type:ControlType.Enum,title:\"Language\",options:[\"English\",\"Spanish\"],defaultValue:\"English\",displaySegmentedControl:true},style:{type:ControlType.Font,title:\"Style\",controls:\"extended\",displayTextAlignment:false},textColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#000\",description:\"More components and templates [here](https://easywebtoday.lemonsqueezy.com/).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ReadingTime\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ReadingTime.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"tQaHUXOGe\",\"YgE16MjSD\",\"gAGCfpz9d\",\"kEeKO_Toq\",\"mbUlOca0j\",\"VYoac8Yv9\",\"qGmoNJsgp\",\"sM2EQ4aBI\"];const serializationHash=\"framer-VSMwT\";const variantClassNames={gAGCfpz9d:\"framer-v-1f97rrt\",kEeKO_Toq:\"framer-v-10i61cx\",mbUlOca0j:\"framer-v-7sxkff\",qGmoNJsgp:\"framer-v-63u7b5\",sM2EQ4aBI:\"framer-v-180x8bz\",tQaHUXOGe:\"framer-v-1296sp1\",VYoac8Yv9:\"framer-v-12rt02v\",YgE16MjSD:\"framer-v-1mj4hvg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"h2-active\":\"kEeKO_Toq\",\"h3-active\":\"VYoac8Yv9\",\"h4-active\":\"sM2EQ4aBI\",h2:\"gAGCfpz9d\",h3:\"mbUlOca0j\",h4:\"qGmoNJsgp\"};const getProps=({height,id,title,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tQaHUXOGe\",Yg7HiXxpr:title??props.Yg7HiXxpr??\" \"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Yg7HiXxpr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tQaHUXOGe\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const isDisplayed=()=>{if([\"qGmoNJsgp\",\"sM2EQ4aBI\"].includes(baseVariant))return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1296sp1\",className,classNames),\"data-framer-name\":\"h2\",layoutDependency:layoutDependency,layoutId:\"tQaHUXOGe\",ref:refBinding,style:{...style},...addPropertyOverrides({kEeKO_Toq:{\"data-framer-name\":\"h2-active\"},mbUlOca0j:{\"data-framer-name\":\"h3\"},VYoac8Yv9:{\"data-framer-name\":\"h3-active\"},YgE16MjSD:{\"data-framer-name\":\"h2-active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bj4gnl\",layoutDependency:layoutDependency,layoutId:\"lkpVG3HXr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(7, 41, 41, 0.4))\"},children:\" \"})}),className:\"framer-1v40v6q\",\"data-framer-name\":\"Hey, we\u2019re Aria\",fonts:[\"GF;Red Hat Text-500\"],layoutDependency:layoutDependency,layoutId:\"m69qF6lTD\",style:{\"--extracted-r6o4lv\":\"rgba(7, 41, 41, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},text:Yg7HiXxpr,variants:{kEeKO_Toq:{\"--extracted-r6o4lv\":\"var(--token-6335771f-2fb8-4ed5-bd60-403c52bcb8fe, rgb(7, 41, 41))\"},VYoac8Yv9:{\"--extracted-r6o4lv\":\"rgb(7, 41, 41)\"},YgE16MjSD:{\"--extracted-r6o4lv\":\"rgb(7, 41, 41)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({kEeKO_Toq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6335771f-2fb8-4ed5-bd60-403c52bcb8fe, rgb(7, 41, 41)))\"},children:\" \"})})},VYoac8Yv9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(7, 41, 41))\"},children:\" \"})})},YgE16MjSD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(7, 41, 41))\"},children:\" \"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VSMwT.framer-13m25hi, .framer-VSMwT .framer-13m25hi { display: block; }\",\".framer-VSMwT.framer-1296sp1 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: 326px; }\",\".framer-VSMwT .framer-1bj4gnl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VSMwT .framer-1v40v6q { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VSMwT.framer-1296sp1, .framer-VSMwT .framer-1bj4gnl { gap: 0px; } .framer-VSMwT.framer-1296sp1 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-VSMwT.framer-1296sp1 > :first-child, .framer-VSMwT .framer-1bj4gnl > :first-child { margin-left: 0px; } .framer-VSMwT.framer-1296sp1 > :last-child, .framer-VSMwT .framer-1bj4gnl > :last-child { margin-right: 0px; } .framer-VSMwT .framer-1bj4gnl > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 326\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YgE16MjSD\":{\"layout\":[\"fixed\",\"auto\"]},\"gAGCfpz9d\":{\"layout\":[\"fixed\",\"auto\"]},\"kEeKO_Toq\":{\"layout\":[\"fixed\",\"auto\"]},\"mbUlOca0j\":{\"layout\":[\"fixed\",\"auto\"]},\"VYoac8Yv9\":{\"layout\":[\"fixed\",\"auto\"]},\"qGmoNJsgp\":{\"layout\":[\"fixed\",\"auto\"]},\"sM2EQ4aBI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Yg7HiXxpr\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameruWT3MLh7A=withCSS(Component,css,\"framer-VSMwT\");export default FrameruWT3MLh7A;FrameruWT3MLh7A.displayName=\"Blogs/Table OF Content\";FrameruWT3MLh7A.defaultProps={height:36,width:326};addPropertyControls(FrameruWT3MLh7A,{variant:{options:[\"tQaHUXOGe\",\"YgE16MjSD\",\"gAGCfpz9d\",\"kEeKO_Toq\",\"mbUlOca0j\",\"VYoac8Yv9\",\"qGmoNJsgp\",\"sM2EQ4aBI\"],optionTitles:[\"h2\",\"h2-active\",\"h2\",\"h2-active\",\"h3\",\"h3-active\",\"h4\",\"h4-active\"],title:\"Variant\",type:ControlType.Enum},Yg7HiXxpr:{defaultValue:\" \",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FrameruWT3MLh7A,[{explicitInter:true,fonts:[{family:\"Red Hat Text\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/redhattext/v18/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrPacYVFtIY.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruWT3MLh7A\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"36\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"326\",\"framerVariables\":\"{\\\"Yg7HiXxpr\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YgE16MjSD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gAGCfpz9d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kEeKO_Toq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mbUlOca0j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VYoac8Yv9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qGmoNJsgp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sM2EQ4aBI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uWT3MLh7A.map", "// Generated by Framer (5351ffe)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import ReadingTime from\"https://framerusercontent.com/modules/L21oPRpPlLtefnrR8aCf/dkfPufkNon3914ILtVEQ/ReadingTime.js\";import ComponentNavigationDesktop from\"#framer/local/canvasComponent/AeWZ5Pdf5/AeWZ5Pdf5.js\";import BottomFooterCompliment from\"#framer/local/canvasComponent/apd0GBwEa/apd0GBwEa.js\";import PopupModal from\"#framer/local/canvasComponent/kEpseySdG/kEpseySdG.js\";import MobileNavigation from\"#framer/local/canvasComponent/lMSAD9D3o/lMSAD9D3o.js\";import BlogsTableOFContent,*as BlogsTableOFContentInfo from\"#framer/local/canvasComponent/uWT3MLh7A/uWT3MLh7A.js\";import Component1 from\"#framer/local/canvasComponent/VVJRpyRYk/VVJRpyRYk.js\";import Footer4 from\"#framer/local/canvasComponent/ZWbQZIHH9/ZWbQZIHH9.js\";import{withContent,withTableOfContent}from\"#framer/local/codeFile/hM7YIU2/Table_Of_Contents.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/M3YHIt1j1/M3YHIt1j1.js\";import*as sharedStyle2 from\"#framer/local/css/EuOrK58rZ/EuOrK58rZ.js\";import*as sharedStyle9 from\"#framer/local/css/Fj4aNmSmn/Fj4aNmSmn.js\";import*as sharedStyle1 from\"#framer/local/css/jx8LFSJht/jx8LFSJht.js\";import*as sharedStyle10 from\"#framer/local/css/KXigMmzSV/KXigMmzSV.js\";import*as sharedStyle8 from\"#framer/local/css/lbCGATyQ1/lbCGATyQ1.js\";import*as sharedStyle4 from\"#framer/local/css/MhFwVDJ5B/MhFwVDJ5B.js\";import*as sharedStyle from\"#framer/local/css/MMDmyhKg3/MMDmyhKg3.js\";import*as sharedStyle7 from\"#framer/local/css/oDHaB4_EC/oDHaB4_EC.js\";import*as sharedStyle6 from\"#framer/local/css/P5fwP4OcL/P5fwP4OcL.js\";import*as sharedStyle3 from\"#framer/local/css/sX0tZcbtk/sX0tZcbtk.js\";import*as sharedStyle5 from\"#framer/local/css/tHNEif0lQ/tHNEif0lQ.js\";import*as sharedStyle11 from\"#framer/local/css/xVgA0jYyu/xVgA0jYyu.js\";import metadataProvider from\"#framer/local/webPageMetadata/YP7x0GbJD/YP7x0GbJD.js\";const MobileNavigationFonts=getFonts(MobileNavigation);const ComponentNavigationDesktopFonts=getFonts(ComponentNavigationDesktop);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ReadingTimeFonts=getFonts(ReadingTime);const BlogsTableOFContentFonts=getFonts(BlogsTableOFContent);const BlogsTableOFContentWithTableOfContentggae2hWithMappedReactPropskmkmnh=withMappedReactProps(withCodeBoundaryForOverrides(BlogsTableOFContent,{nodeId:\"p0j9aoDPN\",override:withTableOfContent,scopeId:\"YP7x0GbJD\"}),BlogsTableOFContentInfo);const RichTextWithContent12lmdjo=withCodeBoundaryForOverrides(RichText,{nodeId:\"PCvYd6j3u\",override:withContent,scopeId:\"YP7x0GbJD\"});const BottomFooterComplimentFonts=getFonts(BottomFooterCompliment);const Footer4Fonts=getFonts(Footer4);const Component1Fonts=getFonts(Component1);const PopupModalFonts=getFonts(PopupModal);const breakpoints={dIYgRFz7W:\"(max-width: 583px)\",nDyFavK_Z:\"(min-width: 1200px) and (max-width: 1439px)\",ok5tz51EU:\"(min-width: 849px) and (max-width: 1199px)\",q1UK9BPdW:\"(min-width: 1440px)\",Y1xulTkM9:\"(min-width: 584px) and (max-width: 848px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-7BNkM\";const variantClassNames={dIYgRFz7W:\"framer-v-173k9ju\",nDyFavK_Z:\"framer-v-v8ne4u\",ok5tz51EU:\"framer-v-1c8wrb6\",q1UK9BPdW:\"framer-v-19tzfxw\",Y1xulTkM9:\"framer-v-140z1cq\"};const transition1={bounce:.2,delay:.1,duration:.3,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;try{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const transition2={damping:30,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:30};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"nDyFavK_Z\",\"Tablet 2\":\"Y1xulTkM9\",Desktop:\"q1UK9BPdW\",Phone:\"dIYgRFz7W\",Tablet:\"ok5tz51EU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"q1UK9BPdW\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"YP7x0GbJD\",data:Blog,type:\"Collection\"},select:[{collection:\"YP7x0GbJD\",name:\"XxalEyZ8R\",type:\"Identifier\"},{collection:\"YP7x0GbJD\",name:\"YtUEXapkh\",type:\"Identifier\"},{collection:\"YP7x0GbJD\",name:\"iGTegwJs3\",type:\"Identifier\"},{collection:\"YP7x0GbJD\",name:\"wQ6_MCmev\",type:\"Identifier\"},{collection:\"YP7x0GbJD\",name:\"lROH7muHE\",type:\"Identifier\"},{collection:\"YP7x0GbJD\",name:\"DamhuLymp\",type:\"Identifier\"},{collection:\"YP7x0GbJD\",name:\"aZnOQk5VV\",type:\"Identifier\"},{collection:\"YP7x0GbJD\",name:\"q1mIp7b_7\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"YP7x0GbJD\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,iGTegwJs3=getFromCurrentRouteData(\"iGTegwJs3\"),XxalEyZ8R=getFromCurrentRouteData(\"XxalEyZ8R\")??\"\",wQ6_MCmev=getFromCurrentRouteData(\"wQ6_MCmev\")??\"\",lROH7muHE=getFromCurrentRouteData(\"lROH7muHE\"),aZnOQk5VV=getFromCurrentRouteData(\"aZnOQk5VV\")??\"\",YtUEXapkh=getFromCurrentRouteData(\"YtUEXapkh\"),DamhuLymp=getFromCurrentRouteData(\"DamhuLymp\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const vjZ1hVKQD3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"ok5tz51EU\",\"Y1xulTkM9\",\"dIYgRFz7W\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"ok5tz51EU\",\"Y1xulTkM9\",\"dIYgRFz7W\"].includes(baseVariant))return false;return true;};const textContent=enumToDisplayNameFunctions[\"iGTegwJs3\"]?.(iGTegwJs3,activeLocale);const activeLocaleCode=useLocaleCode();const textContent1=toDateString(YtUEXapkh,{dateStyle:\"full\",display:\"date\",locale:\"\"},activeLocaleCode);const elementId=useRouteElementId(\"yFyWDUVHT\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"q1UK9BPdW\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-19tzfxw\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dIYgRFz7W:{height:1479,width:componentViewport?.width||\"100vw\",y:-1},ok5tz51EU:{height:1479,width:componentViewport?.width||\"100vw\",y:-1},Y1xulTkM9:{height:1479,width:componentViewport?.width||\"100vw\",y:-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hfshyu-container hidden-19tzfxw hidden-v8ne4u\",layoutScroll:true,nodeId:\"bN2OV1xki\",scopeId:\"YP7x0GbJD\",children:/*#__PURE__*/_jsx(MobileNavigation,{height:\"100%\",id:\"bN2OV1xki\",layoutId:\"bN2OV1xki\",R9ZDdCJOd:\"pEup7HtM9\",style:{width:\"100%\"},variant:\"PAgMdR5Cb\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bw0a0j-container hidden-1c8wrb6 hidden-140z1cq hidden-173k9ju\",layoutScroll:true,nodeId:\"v5j_vmvQe\",scopeId:\"YP7x0GbJD\",children:/*#__PURE__*/_jsx(ComponentNavigationDesktop,{height:\"100%\",id:\"v5j_vmvQe\",layoutId:\"v5j_vmvQe\",style:{height:\"100%\",width:\"100%\"},variant:\"PyI4csos8\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nt4r5n\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bqvmss\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1007gni\",\"data-border\":true,\"data-framer-appear-id\":\"1007gni\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11txrm7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTYwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-6335771f-2fb8-4ed5-bd60-403c52bcb8fe, rgb(11, 54, 54))\"},children:\"Insurance\"})}),className:\"framer-ltu5jd\",\"data-framer-name\":\"Resources\",fonts:[\"GF;Red Hat Text-600\"],text:textContent,verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q1gbmd\",\"data-framer-name\":\"Heading 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dIYgRFz7W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.04px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 23, 23)\"},children:\"DECREASING TERM LIFE INSURANCE\"})})},ok5tz51EU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.04px\",\"--framer-line-height\":\"42px\",\"--framer-text-color\":\"rgb(4, 23, 23)\"},children:\"DECREASING TERM LIFE INSURANCE\"})})},Y1xulTkM9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.04px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 23, 23)\"},children:\"DECREASING TERM LIFE INSURANCE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.04px\",\"--framer-line-height\":\"54.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 23, 23)\"},children:\"test draft\"})}),className:\"framer-nvh7ny\",\"data-framer-name\":\"When money moves, so do we \u2014 introducing Aria\u2019s new brand identity\",fonts:[\"GF;Red Hat Text-500\"],text:XxalEyZ8R,verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ry6oy5\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dIYgRFz7W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NUSyBCdXJlYXUgU2Fucy1Cb29rLVRyaWFs\",\"--framer-font-family\":'\"STK Bureau Sans-Book-Trial\", \"STK Bureau Sans-Book-Trial Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(81, 105, 105)\"},children:\"A Guide to Protecting Your Mortgage\"})}),fonts:[\"CUSTOM;STK Bureau Sans-Book-Trial\"]},Y1xulTkM9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(81, 105, 105)\"},children:\"A Guide to Protecting Your Mortgage\"})}),fonts:[\"GF;Red Hat Text-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(81, 105, 105)\"},children:\"What to Expect as a Smoker Applying for Life Insurance\"})}),className:\"framer-jci9ic\",\"data-framer-name\":\"Discover the new Aria: A bold rebranding to drive money movement for tech. Explore our fresh look and vision for the future!\",fonts:[\"GF;Red Hat Text-regular\"],text:wQ6_MCmev,verticalAlignment:\"center\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dIYgRFz7W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+104+330),pixelHeight:880,pixelWidth:1722,sizes:`calc(${componentViewport?.width||\"100vw\"} - 28px)`,...toResponsiveImage(lROH7muHE)}},ok5tz51EU:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+124+382),pixelHeight:880,pixelWidth:1722,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,...toResponsiveImage(lROH7muHE)}},Y1xulTkM9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+104+350),pixelHeight:880,pixelWidth:1722,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,...toResponsiveImage(lROH7muHE)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+180+226.6),pixelHeight:880,pixelWidth:1722,sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,...toResponsiveImage(lROH7muHE)},className:\"framer-1pb79ft\"})}),/*#__PURE__*/_jsxs(\"article\",{className:\"framer-aa6g6\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ufjbq4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-osyb5\",\"data-border\":true,\"data-framer-name\":\"HorizontalBorder\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s9yt7g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Gxbba3jFQ\",scopeId:\"YP7x0GbJD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dIYgRFz7W:{style:{fontFamily:'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"}},ok5tz51EU:{style:{fontFamily:'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"}},Y1xulTkM9:{style:{fontFamily:'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(ReadingTime,{height:\"100%\",id:\"Gxbba3jFQ\",language:\"English\",layoutId:\"Gxbba3jFQ\",readingType:\"Talk Time\",style:{fontFamily:'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},text:aZnOQk5VV,textColor:\"var(--token-6335771f-2fb8-4ed5-bd60-403c52bcb8fe, rgb(7, 41, 41))\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"17.6px\",\"--framer-text-color\":\"rgb(11, 54, 54)\"},children:\"to read\"})}),className:\"framer-aiohjp hidden-1c8wrb6 hidden-140z1cq hidden-173k9ju\",\"data-framer-name\":\"4 min read\",fonts:[\"GF;Red Hat Text-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-184szs8\",\"data-border\":true,\"data-framer-name\":\"HorizontalBorder\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dIYgRFz7W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"17.6px\",\"--framer-text-color\":\"rgb(4, 23, 23)\"},children:\"Thursday, January 23, 2025\"})})},ok5tz51EU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"17.6px\",\"--framer-text-color\":\"rgb(4, 23, 23)\"},children:\"Thursday, January 23, 2025\"})})},Y1xulTkM9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"17.6px\",\"--framer-text-color\":\"rgb(4, 23, 23)\"},children:\"Thursday, January 23, 2025\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBUZXh0LTUwMA==\",\"--framer-font-family\":'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"17.6px\",\"--framer-text-color\":\"rgb(4, 23, 23)\"},children:\"Thursday, January 23, 2025\"})}),className:\"framer-1drdevi\",\"data-framer-name\":\"4 min read\",fonts:[\"GF;Red Hat Text-500\"],text:textContent1,verticalAlignment:\"center\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) * 0.2427)`,y:(componentViewport?.y||0)+180+614.6+80+0+111.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ggae2h-container hidden-1c8wrb6 hidden-140z1cq hidden-173k9ju\",nodeId:\"p0j9aoDPN\",rendersWithMotion:true,scopeId:\"YP7x0GbJD\",children:/*#__PURE__*/_jsx(BlogsTableOFContentWithTableOfContentggae2hWithMappedReactPropskmkmnh,{height:\"100%\",id:\"p0j9aoDPN\",layoutId:\"p0j9aoDPN\",style:{width:\"100%\"},variant:\"tQaHUXOGe\",width:\"100%\",Yg7HiXxpr:\"\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wg1n2z\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dIYgRFz7W:{stylesPresetsClassNames:{a:\"framer-styles-preset-17yo09a\",blockquote:\"framer-styles-preset-1niqt8u\",h1:\"framer-styles-preset-lpnj8r\",h2:\"framer-styles-preset-urfme1\",h3:\"framer-styles-preset-ez4wih\",h4:\"framer-styles-preset-pwdvip\",h5:\"framer-styles-preset-1iim1nn\",h6:\"framer-styles-preset-qnfkvm\",img:\"framer-styles-preset-egx7fo\",p:\"framer-styles-preset-o7h2hn\"}},ok5tz51EU:{stylesPresetsClassNames:{a:\"framer-styles-preset-17yo09a\",blockquote:\"framer-styles-preset-1niqt8u\",h1:\"framer-styles-preset-lpnj8r\",h2:\"framer-styles-preset-o2y9u1\",h3:\"framer-styles-preset-ez4wih\",h4:\"framer-styles-preset-pwdvip\",h5:\"framer-styles-preset-1iim1nn\",h6:\"framer-styles-preset-qnfkvm\",img:\"framer-styles-preset-egx7fo\",p:\"framer-styles-preset-ei8sym\"}},Y1xulTkM9:{stylesPresetsClassNames:{a:\"framer-styles-preset-17yo09a\",blockquote:\"framer-styles-preset-1niqt8u\",h1:\"framer-styles-preset-lpnj8r\",h2:\"framer-styles-preset-o2y9u1\",h3:\"framer-styles-preset-ez4wih\",h4:\"framer-styles-preset-pwdvip\",h5:\"framer-styles-preset-1iim1nn\",h6:\"framer-styles-preset-qnfkvm\",img:\"framer-styles-preset-egx7fo\",p:\"framer-styles-preset-ei8sym\"}}},children:/*#__PURE__*/_jsx(RichTextWithContent12lmdjo,{__fromCanvasComponent:true,children:DamhuLymp,className:\"framer-12lmdjo\",\"data-framer-name\":\"When we started Aria in 2020, we built an invoice financing API that developers could easily integrate into their marketplace checkout. It was a simple but effective idea (if we say so ourselves) and our first brand reflected that. Familiar tech blues, sans serifs, code snippets, etc. embodied our startup roots and served us well in our early years of growth.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-17yo09a\",blockquote:\"framer-styles-preset-1niqt8u\",h1:\"framer-styles-preset-lpnj8r\",h2:\"framer-styles-preset-urfme1\",h3:\"framer-styles-preset-ez4wih\",h4:\"framer-styles-preset-pwdvip\",h5:\"framer-styles-preset-1iim1nn\",h6:\"framer-styles-preset-qnfkvm\",img:\"framer-styles-preset-egx7fo\",p:\"framer-styles-preset-ei8sym\"},verticalAlignment:\"center\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dIYgRFz7W:{width:`min(${componentViewport?.width||\"100vw\"} - 28px, 1540px)`,y:(componentViewport?.y||0)+104+930},nDyFavK_Z:{y:(componentViewport?.y||0)+180+906.2},ok5tz51EU:{y:(componentViewport?.y||0)+124+1006},Y1xulTkM9:{y:(componentViewport?.y||0)+104+958}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:726,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1540px)`,y:(componentViewport?.y||0)+180+970.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fmb90-container\",id:elementId,nodeId:\"yFyWDUVHT\",ref:ref1,scopeId:\"YP7x0GbJD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dIYgRFz7W:{variant:\"YcGXPAktZ\"},ok5tz51EU:{variant:\"YcGXPAktZ\"},Y1xulTkM9:{variant:\"YcGXPAktZ\"}},children:/*#__PURE__*/_jsx(BottomFooterCompliment,{height:\"100%\",id:\"yFyWDUVHT\",layoutId:\"yFyWDUVHT\",SgxzvCGHs:\"24px 24px 24px 24px\",sHeVzli1J:ref1,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"XA7HbuhL_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dIYgRFz7W:{width:`calc(${componentViewport?.width||\"100vw\"} - 28px)`,y:(componentViewport?.y||0)+104+1656},nDyFavK_Z:{y:(componentViewport?.y||0)+180+1632.2},ok5tz51EU:{y:(componentViewport?.y||0)+124+1732},Y1xulTkM9:{y:(componentViewport?.y||0)+104+1684}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1143,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+180+1696.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hvz28-container\",nodeId:\"m8_jFOLGF\",scopeId:\"YP7x0GbJD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dIYgRFz7W:{UZO7A3xAv:\"jAmLvy2v3\",variant:\"kSYkMe7os\"},ok5tz51EU:{UZO7A3xAv:\"jAmLvy2v3\",variant:\"ve6QfDqho\"},Y1xulTkM9:{UZO7A3xAv:\"jAmLvy2v3\",variant:\"kSYkMe7os\"}},children:/*#__PURE__*/_jsx(Footer4,{height:\"100%\",id:\"m8_jFOLGF\",layoutId:\"m8_jFOLGF\",lz5fYYv4u:\"var(--token-ccda1a7d-267b-4e47-91d5-ac88a03988c0, rgb(255, 255, 255))\",style:{width:\"100%\"},UKlDyFdJ9:\"rgba(0, 0, 0, 0.8)\",UZO7A3xAv:\"jC07Ha64H\",variant:\"uCERsnYAx\",width:\"100%\",wZoE9SD_A:\"rgb(0, 0, 0)\"})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"55px\",y:915,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-jsmogc-container\",id:\"jsmogc\",layoutScroll:true,nodeId:\"kvBxDwBuk\",scopeId:\"YP7x0GbJD\",children:[/*#__PURE__*/_jsx(Component1,{height:\"100%\",id:\"kvBxDwBuk\",layoutId:\"kvBxDwBuk\",style:{height:\"100%\",width:\"100%\"},variant:overlay.visible?\"YP6sQmBnp\":\"YP6sQmBnp\",vjZ1hVKQD:vjZ1hVKQD3bnx0g({overlay}),width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.5,ease:[.95,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-nqoold\"),\"data-framer-portal-id\":\"jsmogc\",exit:{opacity:0,transition:{delay:0,duration:.5,ease:[1,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"HozzRwc7N\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-drmrpr\"),\"data-framer-portal-id\":\"jsmogc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation3,className:\"framer-w21mal-container\",exit:animation2,inComponentSlot:true,initial:animation4,nodeId:\"jM8whTVGt\",rendersWithMotion:true,scopeId:\"YP7x0GbJD\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PopupModal,{height:\"100%\",id:\"jM8whTVGt\",layoutId:\"jM8whTVGt\",variant:\"dS5X6hy5N\",width:\"100%\"})})})})]}),getContainer())})})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7BNkM.framer-1inabpw, .framer-7BNkM .framer-1inabpw { display: block; }\",\".framer-7BNkM.framer-19tzfxw { 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: visible; padding: 180px 24px 0px 24px; position: relative; width: 1440px; }\",\".framer-7BNkM .framer-hfshyu-container { flex: none; height: auto; left: 1px; position: fixed; right: 1px; top: 1px; z-index: 1; }\",\".framer-7BNkM .framer-1bw0a0j-container { flex: none; height: 80px; left: 0px; position: fixed; right: 0px; top: -1px; z-index: 10; }\",\".framer-7BNkM .framer-1nt4r5n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1100px; overflow: visible; padding: 0px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-7BNkM .framer-bqvmss { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7BNkM .framer-1007gni { --border-bottom-width: 1px; --border-color: rgba(11, 54, 54, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7BNkM .framer-11txrm7 { align-content: center; align-items: center; background-color: var(--token-3635fae1-26af-43ab-8c23-ea0ac4cfae93, #f7faf5); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 14px 8px 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-7BNkM .framer-ltu5jd, .framer-7BNkM .framer-1drdevi { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7BNkM .framer-q1gbmd, .framer-7BNkM .framer-1ry6oy5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7BNkM .framer-nvh7ny, .framer-7BNkM .framer-jci9ic, .framer-7BNkM .framer-12lmdjo { --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-7BNkM .framer-1pb79ft { aspect-ratio: 2.0472727272727274 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 98px); max-width: 1100px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7BNkM .framer-aa6g6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1100px; overflow: visible; padding: 80px 0px 128px 0px; position: relative; width: 100%; }\",\".framer-7BNkM .framer-1ufjbq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 112px; width: 24%; z-index: 1; }\",\".framer-7BNkM .framer-osyb5 { --border-bottom-width: 1px; --border-color: rgba(7, 41, 41, 0.05); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 46px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7BNkM .framer-s9yt7g-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-7BNkM .framer-aiohjp { --framer-paragraph-spacing: 0px; flex: none; height: 16px; position: relative; white-space: pre; width: auto; }\",\".framer-7BNkM .framer-184szs8 { --border-bottom-width: 1px; --border-color: rgba(7, 41, 41, 0.05); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-7BNkM .framer-ggae2h-container, .framer-7BNkM .framer-hvz28-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-7BNkM .framer-wg1n2z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 740px; }\",\".framer-7BNkM .framer-1fmb90-container { flex: none; height: auto; max-width: 1540px; position: relative; width: 100%; }\",\".framer-7BNkM .framer-jsmogc-container { bottom: 30px; flex: none; height: 55px; position: fixed; right: 30px; width: 55px; z-index: 9; }\",\".framer-7BNkM.framer-nqoold { inset: 0px; position: fixed; user-select: none; z-index: 8; }\",\".framer-7BNkM.framer-drmrpr { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-end; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px 20px 155px 0px; position: fixed; top: calc(50.00000000000002% - 100vh / 2); width: 100%; z-index: 8; }\",\".framer-7BNkM .framer-w21mal-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-7BNkM[data-border=\"true\"]::after, .framer-7BNkM [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; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-7BNkM.framer-19tzfxw { width: 1200px; } .framer-7BNkM .framer-aa6g6 { padding: 80px 0px 64px 0px; }}\",\"@media (min-width: 849px) and (max-width: 1199px) { .framer-7BNkM.framer-19tzfxw { padding: 124px 24px 0px 24px; width: 849px; } .framer-7BNkM .framer-hfshyu-container { left: 0px; order: 0; right: 0px; top: -1px; z-index: 10; } .framer-7BNkM .framer-1nt4r5n { max-width: unset; order: 2; } .framer-7BNkM .framer-1pb79ft { max-width: unset; order: 3; } .framer-7BNkM .framer-aa6g6 { flex-direction: column; gap: 12px; justify-content: flex-start; max-width: unset; order: 4; padding: 48px 0px 48px 0px; } .framer-7BNkM .framer-1ufjbq4 { flex-direction: row; gap: 24px; position: relative; top: unset; width: 100%; } .framer-7BNkM .framer-osyb5 { align-content: center; align-items: center; height: 32px; width: 59px; } .framer-7BNkM .framer-184szs8 { height: 32px; padding: 8px 0px 8px 0px; width: min-content; } .framer-7BNkM .framer-wg1n2z { align-content: flex-end; align-items: flex-end; width: 100%; } .framer-7BNkM .framer-1fmb90-container { order: 5; } .framer-7BNkM .framer-hvz28-container { order: 6; } .framer-7BNkM .framer-jsmogc-container { order: 7; }}\",\"@media (min-width: 584px) and (max-width: 848px) { .framer-7BNkM.framer-19tzfxw { padding: 104px 24px 0px 24px; width: 584px; } .framer-7BNkM .framer-hfshyu-container { left: 0px; right: 0px; top: -1px; z-index: 10; } .framer-7BNkM .framer-1nt4r5n { max-width: unset; padding: 0px 0px 32px 0px; } .framer-7BNkM .framer-1pb79ft { max-width: unset; } .framer-7BNkM .framer-aa6g6 { flex-direction: column; gap: 12px; justify-content: flex-start; max-width: unset; padding: 32px 0px 48px 0px; } .framer-7BNkM .framer-1ufjbq4 { flex-direction: row; gap: 22px; position: relative; top: unset; width: 100%; } .framer-7BNkM .framer-osyb5 { align-content: center; align-items: center; height: 32px; width: 56px; } .framer-7BNkM .framer-184szs8 { height: 32px; padding: 8px 0px 8px 0px; width: min-content; } .framer-7BNkM .framer-wg1n2z { align-content: flex-end; align-items: flex-end; width: 100%; } .framer-7BNkM.framer-drmrpr { padding: 0px 20px 170px 0px; }}\",\"@media (max-width: 583px) { .framer-7BNkM.framer-19tzfxw { padding: 104px 14px 0px 14px; width: 390px; } .framer-7BNkM .framer-hfshyu-container { left: 0px; right: 0px; top: -1px; z-index: 10; } .framer-7BNkM .framer-1nt4r5n { gap: 18px; max-width: unset; padding: 0px 0px 24px 0px; } .framer-7BNkM .framer-1pb79ft { max-width: unset; } .framer-7BNkM .framer-aa6g6 { flex-direction: column; gap: 12px; justify-content: flex-start; max-width: unset; padding: 24px 0px 48px 0px; } .framer-7BNkM .framer-1ufjbq4 { flex-direction: row; gap: 24px; position: relative; top: unset; width: 100%; } .framer-7BNkM .framer-osyb5 { align-content: center; align-items: center; height: 32px; width: 56px; } .framer-7BNkM .framer-184szs8 { height: 32px; padding: 8px 0px 8px 0px; width: min-content; } .framer-7BNkM .framer-wg1n2z { align-content: flex-end; align-items: flex-end; width: 100%; } .framer-7BNkM.framer-drmrpr { padding: 0px 20px 170px 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3151\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nDyFavK_Z\":{\"layout\":[\"fixed\",\"auto\"]},\"ok5tz51EU\":{\"layout\":[\"fixed\",\"auto\"]},\"Y1xulTkM9\":{\"layout\":[\"fixed\",\"auto\"]},\"dIYgRFz7W\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"yFyWDUVHT\":{\"pattern\":\":yFyWDUVHT\",\"name\":\"bottom-call\"}}\n * @framerResponsiveScreen\n */const FramerYP7x0GbJD=withCSS(Component,css,\"framer-7BNkM\");export default FramerYP7x0GbJD;FramerYP7x0GbJD.displayName=\"Blog\";FramerYP7x0GbJD.defaultProps={height:3151,width:1440};addFonts(FramerYP7x0GbJD,[{explicitInter:true,fonts:[{family:\"Red Hat Text\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/redhattext/v18/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrPacYVFtIY.woff2\",weight:\"600\"},{family:\"Red Hat Text\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/redhattext/v18/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrPacYVFtIY.woff2\",weight:\"500\"},{family:\"Red Hat Text\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/redhattext/v18/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrPacYVFtIY.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/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\"}]},...MobileNavigationFonts,...ComponentNavigationDesktopFonts,...ReadingTimeFonts,...BlogsTableOFContentFonts,...BottomFooterComplimentFonts,...Footer4Fonts,...Component1Fonts,...PopupModalFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYP7x0GbJD\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"3151\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nDyFavK_Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ok5tz51EU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y1xulTkM9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dIYgRFz7W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"yFyWDUVHT\\\":{\\\"pattern\\\":\\\":yFyWDUVHT\\\",\\\"name\\\":\\\"bottom-call\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ReadingTime", "props", "text", "readingType", "language", "style", "textColor", "readingTime", "wordsPerMinute", "words", "minutesText", "u", "addPropertyControls", "ControlType", "uWT3MLh7A_exports", "__export", "__FramerMetadata__", "uWT3MLh7A_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Yg7HiXxpr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "sharedStyleClassNames", "isDisplayed", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FrameruWT3MLh7A", "withCSS", "uWT3MLh7A_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "MobileNavigationFonts", "getFonts", "lMSAD9D3o_default", "ComponentNavigationDesktopFonts", "AeWZ5Pdf5_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ReadingTimeFonts", "ReadingTime", "BlogsTableOFContentFonts", "uWT3MLh7A_default", "BlogsTableOFContentWithTableOfContentggae2hWithMappedReactPropskmkmnh", "withMappedReactProps", "withCodeBoundaryForOverrides", "withTableOfContent", "uWT3MLh7A_exports", "RichTextWithContent12lmdjo", "RichText2", "withContent", "BottomFooterComplimentFonts", "apd0GBwEa_default", "Footer4Fonts", "ZWbQZIHH9_default", "Component1Fonts", "VVJRpyRYk_default", "PopupModalFonts", "kEpseySdG_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "transition2", "animation2", "animation3", "animation4", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "M3YHIt1j1_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "iGTegwJs3", "XxalEyZ8R", "wQ6_MCmev", "lROH7muHE", "aZnOQk5VV", "YtUEXapkh", "DamhuLymp", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "vjZ1hVKQD3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "textContent", "enumToDisplayNameFunctions", "activeLocaleCode", "useLocaleCode", "textContent1", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "getLoadingLazyAtYPosition", "Image2", "l", "AnimatePresence", "Ga", "css", "FramerYP7x0GbJD", "withCSS", "YP7x0GbJD_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
