{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js", "ssg:https://framerusercontent.com/modules/9s7xoFKaRcewkGsMW2rS/UiVQIsdNx28uPOLTRqnB/R1kthaA1f.js", "ssg:https://framerusercontent.com/modules/qghpZXH8Y54wZBGtCebV/cxoht5xMbzSCYsA4I9Oq/jt2UFqllB.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Animator(props){/* Properties */const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */const hasChildren=Children.count(slots)>0;/* Empty State */let customShape=/*#__PURE__*/_jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u270D\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties *//* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */if(isCanvas){customShape=firstChild;}/* If on a web page */if(!isCanvas&&svgChild){/* Pass Attributes */let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/_jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/_jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/_jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity},initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\"})})});}}return customShape;}/* Default Properties */Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Outfit-regular\",\"GF;Outfit-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\",weight:\"700\"}]}];export const css=['.framer-fSKFs .framer-styles-preset-1mdunlf:not(.rich-text-wrapper), .framer-fSKFs .framer-styles-preset-1mdunlf.rich-text-wrapper p { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.01em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-fSKFs\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/9s7xoFKaRcewkGsMW2rS/UiVQIsdNx28uPOLTRqnB/R1kthaA1f.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/94EE2I5cPKzTK5lDDvPm/BdQ8vDzuAnVIvWCBM5CW/TJWT3cVJd.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/l7DmK1JxLYwJo6Qovm13/hcO0Pm2IFlPUOB9z0NYp/xxobpGKc2.js\";const AnimatorFonts=getFonts(Animator);const cycleOrder=[\"CTHgIdto4\",\"SJ02nlvDH\",\"vJYu4N4mF\",\"voeYunZv_\",\"s9BZ9dAG5\",\"aE6jyyDCc\"];const serializationHash=\"framer-hwGzl\";const variantClassNames={aE6jyyDCc:\"framer-v-1lbhrvm\",CTHgIdto4:\"framer-v-11abp3s\",s9BZ9dAG5:\"framer-v-t74e3q\",SJ02nlvDH:\"framer-v-7bdxca\",vJYu4N4mF:\"framer-v-mr274z\",voeYunZv_:\"framer-v-hbh9jf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.83,0,.17,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Article Card Hover Out\":\"vJYu4N4mF\",\"Article Card Hover\":\"SJ02nlvDH\",\"Article Card Tablet / Mobile\":\"aE6jyyDCc\",\"Article Card\":\"CTHgIdto4\",\"Article Wide mobile\":\"s9BZ9dAG5\",\"Article Wide\":\"voeYunZv_\"};const getProps=({category,height,id,image,link,previewText,read,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5;return{...props,GdNar7EyN:(_ref=title!==null&&title!==void 0?title:props.GdNar7EyN)!==null&&_ref!==void 0?_ref:\"A Letter From the Founders\",LNjJXUTM9:(_ref1=read!==null&&read!==void 0?read:props.LNjJXUTM9)!==null&&_ref1!==void 0?_ref1:\"2 min read\",mIOOQqdxL:(_ref2=category!==null&&category!==void 0?category:props.mIOOQqdxL)!==null&&_ref2!==void 0?_ref2:\"Type\",Omtc4De91:(_ref3=previewText!==null&&previewText!==void 0?previewText:props.Omtc4De91)!==null&&_ref3!==void 0?_ref3:\"Join us on a journey through the digital landscape as we explore the transformative power of technology in today's interconnected world.\",Qxj8PMfxV:link!==null&&link!==void 0?link:props.Qxj8PMfxV,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"CTHgIdto4\",ZYZ194zvr:(_ref5=image!==null&&image!==void 0?image:props.ZYZ194zvr)!==null&&_ref5!==void 0?_ref5:{src:\"https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg 6000w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZYZ194zvr,GdNar7EyN,LNjJXUTM9,mIOOQqdxL,Qxj8PMfxV,Omtc4De91,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CTHgIdto4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1s6gqd1=activeVariantCallback(async(...args)=>{setVariant(\"SJ02nlvDH\");});const onMouseLeave776gq1=activeVariantCallback(async(...args)=>{setVariant(\"vJYu4N4mF\");});const onAppearz0sj8v=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"CTHgIdto4\"),1e3);});useOnVariantChange(baseVariant,{vJYu4N4mF:onAppearz0sj8v});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"SJ02nlvDH\",\"vJYu4N4mF\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"voeYunZv_\",\"s9BZ9dAG5\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"voeYunZv_\",\"s9BZ9dAG5\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Qxj8PMfxV,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-11abp3s\",className,classNames)} framer-kvjkwj`,\"data-framer-name\":\"Article Card\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CTHgIdto4\",onMouseEnter:onMouseEnter1s6gqd1,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aE6jyyDCc:{\"data-framer-name\":\"Article Card Tablet / Mobile\",\"data-highlight\":undefined,onMouseEnter:undefined},s9BZ9dAG5:{\"data-framer-name\":\"Article Wide mobile\",\"data-highlight\":undefined,onMouseEnter:undefined},SJ02nlvDH:{\"data-framer-name\":\"Article Card Hover\",onMouseLeave:onMouseLeave776gq1},vJYu4N4mF:{\"data-framer-name\":\"Article Card Hover Out\",onMouseLeave:onMouseLeave776gq1},voeYunZv_:{\"data-framer-name\":\"Article Wide\",\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9jusdi\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"CEo9SsKOc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13di95q\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"R4grZbihR\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{s9BZ9dAG5:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},voeYunZv_:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(ZYZ194zvr)},className:\"framer-19xcoaa\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VeI3ZSumF\",style:{filter:\"brightness(0.96)\",WebkitFilter:\"brightness(0.96)\"},variants:{aE6jyyDCc:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},SJ02nlvDH:{filter:\"brightness(1.05)\",WebkitFilter:\"brightness(1.05)\"},vJYu4N4mF:{filter:\"brightness(1.05)\",WebkitFilter:\"brightness(1.05)\"},voeYunZv_:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"}}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ey5p9z\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"bw_Uy8qwQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\"},children:\"Type\"})}),className:\"framer-1yirssw\",fonts:[\"FS;General Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"nAWuwQTHo\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.4},text:mIOOQqdxL,variants:{s9BZ9dAG5:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},voeYunZv_:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({s9BZ9dAG5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qexw1m\",\"data-styles-preset\":\"TJWT3cVJd\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join us on a journey through the digital landscape as we explore the transformative power of technology in today's interconnected world.\"})}),fonts:[\"Inter\"],text:Omtc4De91},voeYunZv_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join us on a journey through the digital landscape as we explore the transformative power of technology in today's interconnected world.\"})}),fonts:[\"Inter\"],text:Omtc4De91}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mdunlf\",\"data-styles-preset\":\"R1kthaA1f\",children:\"A Letter From the Founders\"})}),className:\"framer-16iqa9y\",\"data-framer-name\":\"A Letter From the Founders\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iFoW1FA1_\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:GdNar7EyN,variants:{s9BZ9dAG5:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},voeYunZv_:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({s9BZ9dAG5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"A Letter From the Founders\"})}),fonts:[\"FS;General Sans-regular\"]},voeYunZv_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"A Letter From the Founders\"})}),fonts:[\"FS;General Sans-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-82dlx6\",layoutDependency:layoutDependency,layoutId:\"m52lAKqL_\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3km8dx\",\"data-framer-name\":\"Time Read\",layoutDependency:layoutDependency,layoutId:\"i3qfREGOy\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vrr7u8-container\",layoutDependency:layoutDependency,layoutId:\"crf1MpMYP-container\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"crf1MpMYP\",layoutId:\"crf1MpMYP\",loopOptions:\"reverse\",pathAnimation:{damping:60,delay:0,duration:1,ease:[.83,0,.17,1],mass:1,stiffness:500,type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kvcus5\",\"data-framer-name\":\"Circle\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Zedc25stW\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z\" fill=\"transparent\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10058952036,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\",...addPropertyOverrides({vJYu4N4mF:{from:100,to:0}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w9oovr\",\"data-framer-name\":\"Circle - Grey\",layoutDependency:layoutDependency,layoutId:\"b40SYtXDX\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gybr8f\",\"data-framer-name\":\"Circle Grey\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"eGpiBKr5q\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z\" fill=\"transparent\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\" opacity=\"0.2\"></path></svg>',svgContentId:8775515711,withExternalLayout:true,...addPropertyOverrides({aE6jyyDCc:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z\" fill=\"transparent\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10058952036},SJ02nlvDH:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z\" fill=\"transparent\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" opacity=\"0.2\"></path></svg>',svgContentId:9318576318},vJYu4N4mF:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z\" fill=\"transparent\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" opacity=\"0.2\"></path></svg>',svgContentId:9318576318}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v4gn8x\",\"data-framer-name\":\"Arrow Wrapper\",layoutDependency:layoutDependency,layoutId:\"RJGLcKaAd\",style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tqbj6m\",\"data-framer-name\":\"Arrow 2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"B6v7TZ3EQ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 6.417 8.025 L 8.929 5.513 M 8.929 5.513 L 6.417 3 M 8.929 5.513 L 3 5.513\" fill=\"transparent\" stroke-width=\"0.889401\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12848632926,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nsdqd0\",\"data-framer-name\":\"Arrow 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"QteMAygTa\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 6.417 8.025 L 8.929 5.513 M 8.929 5.513 L 6.417 3 M 8.929 5.513 L 3 5.513\" fill=\"transparent\" stroke-width=\"0.889401\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12848632926,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"left\"},children:\"2 min read\"})}),className:\"framer-ab7lw6\",\"data-framer-name\":\"2 min read\",fonts:[\"FS;General Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"kI7tJQF5F\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:LNjJXUTM9,variants:{s9BZ9dAG5:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},voeYunZv_:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({s9BZ9dAG5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"2 min read\"})})},voeYunZv_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"2 min read\"})})}},baseVariant,gestureVariant)})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-130lc95\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"Rz96RV6UJ\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(0, 0, 0, 0.39) 100%)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},variants:{s9BZ9dAG5:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, 0.6) 100%)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},voeYunZv_:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, 0.6) 100%)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}}})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hwGzl.framer-kvjkwj, .framer-hwGzl .framer-kvjkwj { display: block; }\",\".framer-hwGzl.framer-11abp3s { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 390px; }\",\".framer-hwGzl .framer-9jusdi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hwGzl .framer-13di95q { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 390px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hwGzl .framer-19xcoaa { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-hwGzl .framer-ey5p9z { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hwGzl .framer-1yirssw, .framer-hwGzl .framer-16iqa9y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hwGzl .framer-82dlx6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hwGzl .framer-3km8dx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hwGzl .framer-1vrr7u8-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 1; }\",\".framer-hwGzl .framer-kvcus5 { height: 20px; position: relative; width: 20px; }\",\".framer-hwGzl .framer-1w9oovr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 20px; z-index: 1; }\",\".framer-hwGzl .framer-1gybr8f { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-hwGzl .framer-v4gn8x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 21px; justify-content: flex-end; left: 1px; overflow: hidden; padding: 1.5px 3px 0px 0px; position: absolute; top: calc(47.61904761904764% - 21px / 2); width: 18px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-hwGzl .framer-1tqbj6m, .framer-hwGzl .framer-nsdqd0 { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-hwGzl .framer-ab7lw6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hwGzl .framer-130lc95 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 24px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwGzl.framer-11abp3s, .framer-hwGzl .framer-9jusdi, .framer-hwGzl .framer-13di95q, .framer-hwGzl .framer-ey5p9z, .framer-hwGzl .framer-82dlx6, .framer-hwGzl .framer-3km8dx, .framer-hwGzl .framer-1w9oovr, .framer-hwGzl .framer-v4gn8x { gap: 0px; } .framer-hwGzl.framer-11abp3s > *, .framer-hwGzl .framer-ey5p9z > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hwGzl.framer-11abp3s > :first-child, .framer-hwGzl .framer-9jusdi > :first-child, .framer-hwGzl .framer-ey5p9z > :first-child, .framer-hwGzl .framer-82dlx6 > :first-child { margin-top: 0px; } .framer-hwGzl.framer-11abp3s > :last-child, .framer-hwGzl .framer-9jusdi > :last-child, .framer-hwGzl .framer-ey5p9z > :last-child, .framer-hwGzl .framer-82dlx6 > :last-child { margin-bottom: 0px; } .framer-hwGzl .framer-9jusdi > *, .framer-hwGzl .framer-82dlx6 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-hwGzl .framer-13di95q > *, .framer-hwGzl .framer-3km8dx > *, .framer-hwGzl .framer-1w9oovr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hwGzl .framer-13di95q > :first-child, .framer-hwGzl .framer-3km8dx > :first-child, .framer-hwGzl .framer-1w9oovr > :first-child, .framer-hwGzl .framer-v4gn8x > :first-child { margin-left: 0px; } .framer-hwGzl .framer-13di95q > :last-child, .framer-hwGzl .framer-3km8dx > :last-child, .framer-hwGzl .framer-1w9oovr > :last-child, .framer-hwGzl .framer-v4gn8x > :last-child { margin-right: 0px; } .framer-hwGzl .framer-v4gn8x > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-hwGzl.framer-v-7bdxca .framer-1w9oovr, .framer-hwGzl.framer-v-mr274z .framer-1w9oovr { gap: 0px; left: 0px; position: absolute; top: 0px; }\",\".framer-hwGzl.framer-v-7bdxca .framer-v4gn8x { justify-content: flex-start; padding: 1.5px 0px 0px 3px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwGzl.framer-v-7bdxca .framer-1w9oovr { gap: 0px; } .framer-hwGzl.framer-v-7bdxca .framer-1w9oovr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hwGzl.framer-v-7bdxca .framer-1w9oovr > :first-child { margin-left: 0px; } .framer-hwGzl.framer-v-7bdxca .framer-1w9oovr > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwGzl.framer-v-mr274z .framer-1w9oovr { gap: 0px; } .framer-hwGzl.framer-v-mr274z .framer-1w9oovr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hwGzl.framer-v-mr274z .framer-1w9oovr > :first-child { margin-left: 0px; } .framer-hwGzl.framer-v-mr274z .framer-1w9oovr > :last-child { margin-right: 0px; } }\",\".framer-hwGzl.framer-v-hbh9jf.framer-11abp3s { width: 1170px; }\",\".framer-hwGzl.framer-v-hbh9jf .framer-13di95q { aspect-ratio: 1.9830508474576272 / 1; height: var(--framer-aspect-ratio-supported, 590px); }\",\".framer-hwGzl.framer-v-hbh9jf .framer-ey5p9z { bottom: 30px; gap: 15px; left: 30px; position: absolute; width: 530px; z-index: 4; }\",\".framer-hwGzl.framer-v-hbh9jf .framer-1yirssw, .framer-hwGzl.framer-v-t74e3q .framer-1yirssw { max-width: 400px; order: 1; }\",\".framer-hwGzl.framer-v-hbh9jf .framer-16iqa9y, .framer-hwGzl.framer-v-t74e3q .framer-16iqa9y { order: 0; }\",\".framer-hwGzl.framer-v-hbh9jf .framer-82dlx6, .framer-hwGzl.framer-v-t74e3q .framer-82dlx6 { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwGzl.framer-v-hbh9jf .framer-ey5p9z { gap: 0px; } .framer-hwGzl.framer-v-hbh9jf .framer-ey5p9z > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-hwGzl.framer-v-hbh9jf .framer-ey5p9z > :first-child { margin-top: 0px; } .framer-hwGzl.framer-v-hbh9jf .framer-ey5p9z > :last-child { margin-bottom: 0px; } }\",\".framer-hwGzl.framer-v-t74e3q .framer-13di95q { aspect-ratio: 0.6610169491525424 / 1; height: var(--framer-aspect-ratio-supported, 590px); }\",\".framer-hwGzl.framer-v-t74e3q .framer-ey5p9z { bottom: 20px; gap: 15px; left: 20px; position: absolute; width: 290px; z-index: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hwGzl.framer-v-t74e3q .framer-ey5p9z { gap: 0px; } .framer-hwGzl.framer-v-t74e3q .framer-ey5p9z > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-hwGzl.framer-v-t74e3q .framer-ey5p9z > :first-child { margin-top: 0px; } .framer-hwGzl.framer-v-t74e3q .framer-ey5p9z > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 485\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SJ02nlvDH\":{\"layout\":[\"fixed\",\"auto\"]},\"vJYu4N4mF\":{\"layout\":[\"fixed\",\"auto\"]},\"voeYunZv_\":{\"layout\":[\"fixed\",\"auto\"]},\"s9BZ9dAG5\":{\"layout\":[\"fixed\",\"auto\"]},\"aE6jyyDCc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ZYZ194zvr\":\"image\",\"GdNar7EyN\":\"title\",\"LNjJXUTM9\":\"read\",\"mIOOQqdxL\":\"category\",\"Qxj8PMfxV\":\"link\",\"Omtc4De91\":\"previewText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerjt2UFqllB=withCSS(Component,css,\"framer-hwGzl\");export default Framerjt2UFqllB;Framerjt2UFqllB.displayName=\"News / News Article\";Framerjt2UFqllB.defaultProps={height:485,width:390};addPropertyControls(Framerjt2UFqllB,{variant:{options:[\"CTHgIdto4\",\"SJ02nlvDH\",\"vJYu4N4mF\",\"voeYunZv_\",\"s9BZ9dAG5\",\"aE6jyyDCc\"],optionTitles:[\"Article Card\",\"Article Card Hover\",\"Article Card Hover Out\",\"Article Wide\",\"Article Wide mobile\",\"Article Card Tablet / Mobile\"],title:\"Variant\",type:ControlType.Enum},ZYZ194zvr:{__defaultAssetReference:\"data:framer/asset-reference,nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?originalFilename=photo-1711976972831-d81e4a3c9d33%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfGFsbHw0fHx8fHx8Mnx8MTcxMjIyODQzNXw%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},GdNar7EyN:{defaultValue:\"A Letter From the Founders\",displayTextArea:false,title:\"Title\",type:ControlType.String},LNjJXUTM9:{defaultValue:\"2 min read\",displayTextArea:false,title:\"Read\",type:ControlType.String},mIOOQqdxL:{defaultValue:\"Type\",displayTextArea:false,title:\"Category\",type:ControlType.String},Qxj8PMfxV:{title:\"Link\",type:ControlType.Link},Omtc4De91:{defaultValue:\"Join us on a journey through the digital landscape as we explore the transformative power of technology in today's interconnected world.\",displayTextArea:false,title:\"Preview Text\",type:ControlType.String}});addFonts(Framerjt2UFqllB,[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MFQT7HFGCR2L5ULQTW6YXYZXXHMPKLJ3/YWQ244D6TACUX5JBKATPOW5I5MGJ3G73/7YY3ZAAE3TRV2LANYOLXNHTPHLXVWTKH.woff2\",weight:\"400\"}]},...AnimatorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerjt2UFqllB\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"390\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ZYZ194zvr\\\":\\\"image\\\",\\\"GdNar7EyN\\\":\\\"title\\\",\\\"LNjJXUTM9\\\":\\\"read\\\",\\\"mIOOQqdxL\\\":\\\"category\\\",\\\"Qxj8PMfxV\\\":\\\"link\\\",\\\"Omtc4De91\\\":\\\"previewText\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SJ02nlvDH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vJYu4N4mF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"voeYunZv_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s9BZ9dAG5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aE6jyyDCc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"485\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jt2UFqllB.map"],
  "mappings": "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",
  "names": ["Animator", "props", "pathAnimation", "from", "to", "animate", "shouldLoop", "loopOptions", "slots", "endCircle", "hasChildren", "j", "customShape", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "firstChild", "getFirstChild", "svgChild", "isSpring", "shapeTransition", "pathLength", "useMotionValue", "opacity", "useTransform", "shapeProps", "isCanvas", "RenderTarget", "attributes", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "element", "splitAndReplace", "svgViewbox", "motion", "addPropertyControls", "ControlType", "string", "child", "fontStore", "fonts", "css", "className", "AnimatorFonts", "getFonts", "Animator", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "category", "height", "id", "image", "link", "previewText", "read", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZYZ194zvr", "GdNar7EyN", "LNjJXUTM9", "mIOOQqdxL", "Qxj8PMfxV", "Omtc4De91", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1s6gqd1", "args", "onMouseLeave776gq1", "onAppearz0sj8v", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "Image2", "RichText2", "ComponentViewportProvider", "SVG", "css", "Framerjt2UFqllB", "withCSS", "jt2UFqllB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
