{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js", "ssg:https://framerusercontent.com/modules/l0vKv3R3WsGOthpptg8c/FUraVYjuvudkZl1ISAfY/KXmxgT7Zx.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", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,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\";const AnimatorFonts=getFonts(Animator);const cycleOrder=[\"VAUWPtRbg\",\"SL4gy0Cnt\",\"FW3ZmxgCL\",\"zrpe0G18L\",\"xNhp4ZwTH\",\"BwfHQOmQi\",\"MI4ULKJep\",\"bEMzcdZto\"];const serializationHash=\"framer-I6Bul\";const variantClassNames={bEMzcdZto:\"framer-v-r04wt9\",BwfHQOmQi:\"framer-v-6ifj64\",FW3ZmxgCL:\"framer-v-ideip3\",MI4ULKJep:\"framer-v-w2blgg\",SL4gy0Cnt:\"framer-v-tv9718\",VAUWPtRbg:\"framer-v-h23npx\",xNhp4ZwTH:\"framer-v-51vu6l\",zrpe0G18L:\"framer-v-1x143i5\"};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 White\":\"MI4ULKJep\",\"Article Card Hover\":\"SL4gy0Cnt\",\"Article Card Tablet / Mobile White\":\"bEMzcdZto\",\"Article Card Tablet / Mobile\":\"xNhp4ZwTH\",\"Article Card White\":\"BwfHQOmQi\",\"Article Card\":\"VAUWPtRbg\",\"Article Wide mobile\":\"zrpe0G18L\",\"Article Wide\":\"FW3ZmxgCL\"};const getProps=({category,color,height,id,image,link,previewText,read,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6;return{...props,GdNar7EyN:(_ref=title!==null&&title!==void 0?title:props.GdNar7EyN)!==null&&_ref!==void 0?_ref:\"A Letter From the Founders\",HAxoz4c0f:(_ref1=color!==null&&color!==void 0?color:props.HAxoz4c0f)!==null&&_ref1!==void 0?_ref1:\"rgb(0, 0, 0)\",LNjJXUTM9:(_ref2=read!==null&&read!==void 0?read:props.LNjJXUTM9)!==null&&_ref2!==void 0?_ref2:\"2 min read\",mIOOQqdxL:(_ref3=category!==null&&category!==void 0?category:props.mIOOQqdxL)!==null&&_ref3!==void 0?_ref3:\"Type\",Omtc4De91:(_ref4=previewText!==null&&previewText!==void 0?previewText:props.Omtc4De91)!==null&&_ref4!==void 0?_ref4:\"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:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"VAUWPtRbg\",ZYZ194zvr:(_ref6=image!==null&&image!==void 0?image:props.ZYZ194zvr)!==null&&_ref6!==void 0?_ref6:{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,HAxoz4c0f,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VAUWPtRbg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1vgmzdi=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"SL4gy0Cnt\");});const onMouseLeave9n5gkc=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"VAUWPtRbg\");});const onMouseEntergjpgiy=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"MI4ULKJep\");});const onMouseLeave1654jbh=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"BwfHQOmQi\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"SL4gy0Cnt\",\"MI4ULKJep\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"FW3ZmxgCL\",\"zrpe0G18L\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"FW3ZmxgCL\",\"zrpe0G18L\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-h23npx\",className,classNames)} framer-i12dwu`,\"data-framer-name\":\"Article Card\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"VAUWPtRbg\",onMouseEnter:onMouseEnter1vgmzdi,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bEMzcdZto:{\"data-framer-name\":\"Article Card Tablet / Mobile White\",\"data-highlight\":undefined,onMouseEnter:undefined},BwfHQOmQi:{\"data-framer-name\":\"Article Card White\",onMouseEnter:onMouseEntergjpgiy},FW3ZmxgCL:{\"data-framer-name\":\"Article Wide\",\"data-highlight\":undefined,onMouseEnter:undefined},MI4ULKJep:{\"data-framer-name\":\"Article Card Hover White\",onMouseEnter:onMouseEntergjpgiy,onMouseLeave:onMouseLeave1654jbh},SL4gy0Cnt:{\"data-framer-name\":\"Article Card Hover\",onMouseLeave:onMouseLeave9n5gkc},xNhp4ZwTH:{\"data-framer-name\":\"Article Card Tablet / Mobile\",\"data-highlight\":undefined,onMouseEnter:undefined},zrpe0G18L:{\"data-framer-name\":\"Article Wide mobile\",\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xus7e2\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"r2DksAwJP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s09jkj\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"gqT62cuAM\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{FW3ZmxgCL:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},zrpe0G18L:{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-rt53th\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"M9lqPxTnI\",style:{filter:\"brightness(0.96)\",WebkitFilter:\"brightness(0.96)\"},variants:{bEMzcdZto:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},FW3ZmxgCL:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},MI4ULKJep:{filter:\"brightness(1.05)\",WebkitFilter:\"brightness(1.05)\"},SL4gy0Cnt:{filter:\"brightness(1.05)\",WebkitFilter:\"brightness(1.05)\"},xNhp4ZwTH:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"}}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rjyuw3\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"jRVBnQpO5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-HAxoz4c0f-KXmxgT7Zx))\"},children:\"Type\"})}),className:\"framer-1g8gran\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"qn7XvLLwY\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-HAxoz4c0f-KXmxgT7Zx)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-HAxoz4c0f-KXmxgT7Zx\":HAxoz4c0f,opacity:.4},text:mIOOQqdxL,variants:{BwfHQOmQi:{opacity:.8},FW3ZmxgCL:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},zrpe0G18L:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FW3ZmxgCL:{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-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--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:[\"FS;General Sans-medium\"],text:Omtc4De91},zrpe0G18L:{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-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--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:[\"FS;General Sans-medium\"],text:Omtc4De91}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-HAxoz4c0f-KXmxgT7Zx))\"},children:\"A Letter From the Founders\"})}),className:\"framer-18a01we\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"AOOQGBNdW\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-HAxoz4c0f-KXmxgT7Zx)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-HAxoz4c0f-KXmxgT7Zx\":HAxoz4c0f},text:GdNar7EyN,variants:{FW3ZmxgCL:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},zrpe0G18L:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FW3ZmxgCL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM 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\"})})},zrpe0G18L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM 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\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k9aj2c\",\"data-framer-name\":\"Time Read\",layoutDependency:layoutDependency,layoutId:\"vGiULIj6B\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l22e65-container\",layoutDependency:layoutDependency,layoutId:\"xYLK4tU01-container\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"xYLK4tU01\",layoutId:\"xYLK4tU01\",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-121jzfo\",\"data-framer-name\":\"Circle\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lDJsmR_xl\",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%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h5bol7\",\"data-framer-name\":\"Circle - Grey\",layoutDependency:layoutDependency,layoutId:\"jvDWwfqjy\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1chb8ag\",\"data-framer-name\":\"Circle Grey\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KCNLQkBRW\",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({bEMzcdZto:{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=\"var(--token-e6c22849-8f10-41f1-a5d4-c9f5a1cf6ec1, rgb(126, 128, 132)) /* {&quot;name&quot;:&quot;Light Grey Subtitle&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:8850201575},BwfHQOmQi:{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=\"var(--token-19c4d968-686b-4453-833f-3a348027445d, rgb(255, 255, 247)) /* {&quot;name&quot;:&quot;Metallic&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\" opacity=\"0.2\"></path></svg>',svgContentId:12604047484},MI4ULKJep:{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=\"var(--token-19c4d968-686b-4453-833f-3a348027445d, rgb(255, 255, 247)) /* {&quot;name&quot;:&quot;Metallic&quot;} */\" stroke-miterlimit=\"10\" opacity=\"0.2\"></path></svg>',svgContentId:8942028178},SL4gy0Cnt:{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},xNhp4ZwTH:{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}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ngkxqp\",\"data-framer-name\":\"Arrow Wrapper\",layoutDependency:layoutDependency,layoutId:\"OWyiTuSZ9\",style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1cg533d\",\"data-framer-name\":\"Arrow 2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CkF_Gbjsf\",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,...addPropertyOverrides({bEMzcdZto:{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=\"var(--token-19c4d968-686b-4453-833f-3a348027445d, rgb(255, 255, 247)) /* {&quot;name&quot;:&quot;Metallic&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10477282211},BwfHQOmQi:{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=\"var(--token-9ee90664-4667-48ae-b2fa-72f31ba3dbfb, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10271528335},MI4ULKJep:{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=\"var(--token-9ee90664-4667-48ae-b2fa-72f31ba3dbfb, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10271528335}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-131mjwm\",\"data-framer-name\":\"Arrow 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pedU3HuzA\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},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,variants:{MI4ULKJep:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},withExternalLayout:true,...addPropertyOverrides({bEMzcdZto:{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=\"var(--token-19c4d968-686b-4453-833f-3a348027445d, rgb(255, 255, 247)) /* {&quot;name&quot;:&quot;Metallic&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10477282211},BwfHQOmQi:{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=\"var(--token-9ee90664-4667-48ae-b2fa-72f31ba3dbfb, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10271528335},MI4ULKJep:{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=\"var(--token-9ee90664-4667-48ae-b2fa-72f31ba3dbfb, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9538931216}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM 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, var(--variable-reference-HAxoz4c0f-KXmxgT7Zx))\"},children:\"2 min read\"})}),className:\"framer-1lb2mxa\",\"data-framer-name\":\"2 min read\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"k7zlDmcDJ\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-HAxoz4c0f-KXmxgT7Zx)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-HAxoz4c0f-KXmxgT7Zx\":HAxoz4c0f},text:LNjJXUTM9,variants:{FW3ZmxgCL:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},zrpe0G18L:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FW3ZmxgCL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM 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\"})})},zrpe0G18L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM 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-d294z2\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"UZeHnwrGw\",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:{FW3ZmxgCL:{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},zrpe0G18L:{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-I6Bul.framer-i12dwu, .framer-I6Bul .framer-i12dwu { display: block; }\",\".framer-I6Bul.framer-h23npx { 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-I6Bul .framer-xus7e2 { 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-I6Bul .framer-s09jkj { 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-I6Bul .framer-rt53th { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-I6Bul .framer-1rjyuw3 { 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-I6Bul .framer-1g8gran, .framer-I6Bul .framer-18a01we { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-I6Bul .framer-k9aj2c { 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-I6Bul .framer-l22e65-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 1; }\",\".framer-I6Bul .framer-121jzfo { height: 20px; position: relative; width: 20px; }\",\".framer-I6Bul .framer-1h5bol7 { 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-I6Bul .framer-1chb8ag { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-I6Bul .framer-ngkxqp { 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-I6Bul .framer-1cg533d, .framer-I6Bul .framer-131mjwm { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-I6Bul .framer-1lb2mxa { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-I6Bul .framer-d294z2 { 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-I6Bul.framer-h23npx, .framer-I6Bul .framer-xus7e2, .framer-I6Bul .framer-s09jkj, .framer-I6Bul .framer-1rjyuw3, .framer-I6Bul .framer-k9aj2c, .framer-I6Bul .framer-1h5bol7, .framer-I6Bul .framer-ngkxqp { gap: 0px; } .framer-I6Bul.framer-h23npx > *, .framer-I6Bul .framer-1rjyuw3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-I6Bul.framer-h23npx > :first-child, .framer-I6Bul .framer-xus7e2 > :first-child, .framer-I6Bul .framer-1rjyuw3 > :first-child { margin-top: 0px; } .framer-I6Bul.framer-h23npx > :last-child, .framer-I6Bul .framer-xus7e2 > :last-child, .framer-I6Bul .framer-1rjyuw3 > :last-child { margin-bottom: 0px; } .framer-I6Bul .framer-xus7e2 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-I6Bul .framer-s09jkj > *, .framer-I6Bul .framer-k9aj2c > *, .framer-I6Bul .framer-1h5bol7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-I6Bul .framer-s09jkj > :first-child, .framer-I6Bul .framer-k9aj2c > :first-child, .framer-I6Bul .framer-1h5bol7 > :first-child, .framer-I6Bul .framer-ngkxqp > :first-child { margin-left: 0px; } .framer-I6Bul .framer-s09jkj > :last-child, .framer-I6Bul .framer-k9aj2c > :last-child, .framer-I6Bul .framer-1h5bol7 > :last-child, .framer-I6Bul .framer-ngkxqp > :last-child { margin-right: 0px; } .framer-I6Bul .framer-ngkxqp > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-I6Bul.framer-v-tv9718 .framer-1h5bol7, .framer-I6Bul.framer-v-w2blgg .framer-1h5bol7 { gap: 0px; left: 0px; position: absolute; top: 0px; }\",\".framer-I6Bul.framer-v-tv9718 .framer-ngkxqp, .framer-I6Bul.framer-v-w2blgg .framer-ngkxqp { justify-content: flex-start; padding: 1.5px 0px 0px 3px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-I6Bul.framer-v-tv9718 .framer-1h5bol7 { gap: 0px; } .framer-I6Bul.framer-v-tv9718 .framer-1h5bol7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-I6Bul.framer-v-tv9718 .framer-1h5bol7 > :first-child { margin-left: 0px; } .framer-I6Bul.framer-v-tv9718 .framer-1h5bol7 > :last-child { margin-right: 0px; } }\",\".framer-I6Bul.framer-v-ideip3.framer-h23npx { width: 1170px; }\",\".framer-I6Bul.framer-v-ideip3 .framer-s09jkj { aspect-ratio: 1.9830508474576272 / 1; height: var(--framer-aspect-ratio-supported, 590px); }\",\".framer-I6Bul.framer-v-ideip3 .framer-1rjyuw3 { bottom: 30px; gap: 15px; left: 30px; position: absolute; width: 530px; z-index: 4; }\",\".framer-I6Bul.framer-v-ideip3 .framer-1g8gran, .framer-I6Bul.framer-v-1x143i5 .framer-1g8gran { max-width: 400px; order: 1; }\",\".framer-I6Bul.framer-v-ideip3 .framer-18a01we, .framer-I6Bul.framer-v-1x143i5 .framer-18a01we { order: 0; }\",\".framer-I6Bul.framer-v-ideip3 .framer-k9aj2c, .framer-I6Bul.framer-v-1x143i5 .framer-k9aj2c { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-I6Bul.framer-v-ideip3 .framer-1rjyuw3 { gap: 0px; } .framer-I6Bul.framer-v-ideip3 .framer-1rjyuw3 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-I6Bul.framer-v-ideip3 .framer-1rjyuw3 > :first-child { margin-top: 0px; } .framer-I6Bul.framer-v-ideip3 .framer-1rjyuw3 > :last-child { margin-bottom: 0px; } }\",\".framer-I6Bul.framer-v-1x143i5 .framer-s09jkj { aspect-ratio: 0.6610169491525424 / 1; height: var(--framer-aspect-ratio-supported, 590px); }\",\".framer-I6Bul.framer-v-1x143i5 .framer-1rjyuw3 { 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-I6Bul.framer-v-1x143i5 .framer-1rjyuw3 { gap: 0px; } .framer-I6Bul.framer-v-1x143i5 .framer-1rjyuw3 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-I6Bul.framer-v-1x143i5 .framer-1rjyuw3 > :first-child { margin-top: 0px; } .framer-I6Bul.framer-v-1x143i5 .framer-1rjyuw3 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-I6Bul.framer-v-w2blgg .framer-1h5bol7 { gap: 0px; } .framer-I6Bul.framer-v-w2blgg .framer-1h5bol7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-I6Bul.framer-v-w2blgg .framer-1h5bol7 > :first-child { margin-left: 0px; } .framer-I6Bul.framer-v-w2blgg .framer-1h5bol7 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 485\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SL4gy0Cnt\":{\"layout\":[\"fixed\",\"auto\"]},\"FW3ZmxgCL\":{\"layout\":[\"fixed\",\"auto\"]},\"zrpe0G18L\":{\"layout\":[\"fixed\",\"auto\"]},\"xNhp4ZwTH\":{\"layout\":[\"fixed\",\"auto\"]},\"BwfHQOmQi\":{\"layout\":[\"fixed\",\"auto\"]},\"MI4ULKJep\":{\"layout\":[\"fixed\",\"auto\"]},\"bEMzcdZto\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ZYZ194zvr\":\"image\",\"GdNar7EyN\":\"title\",\"LNjJXUTM9\":\"read\",\"mIOOQqdxL\":\"category\",\"Qxj8PMfxV\":\"link\",\"Omtc4De91\":\"previewText\",\"HAxoz4c0f\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKXmxgT7Zx=withCSS(Component,css,\"framer-I6Bul\");export default FramerKXmxgT7Zx;FramerKXmxgT7Zx.displayName=\"News / News Article\";FramerKXmxgT7Zx.defaultProps={height:485,width:390};addPropertyControls(FramerKXmxgT7Zx,{variant:{options:[\"VAUWPtRbg\",\"SL4gy0Cnt\",\"FW3ZmxgCL\",\"zrpe0G18L\",\"xNhp4ZwTH\",\"BwfHQOmQi\",\"MI4ULKJep\",\"bEMzcdZto\"],optionTitles:[\"Article Card\",\"Article Card Hover\",\"Article Wide\",\"Article Wide mobile\",\"Article Card Tablet / Mobile\",\"Article Card White\",\"Article Card Hover White\",\"Article Card Tablet / Mobile White\"],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},HAxoz4c0f:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color}});addFonts(FramerKXmxgT7Zx,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...AnimatorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKXmxgT7Zx\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SL4gy0Cnt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FW3ZmxgCL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zrpe0G18L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xNhp4ZwTH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BwfHQOmQi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MI4ULKJep\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bEMzcdZto\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"ZYZ194zvr\\\":\\\"image\\\",\\\"GdNar7EyN\\\":\\\"title\\\",\\\"LNjJXUTM9\\\":\\\"read\\\",\\\"mIOOQqdxL\\\":\\\"category\\\",\\\"Qxj8PMfxV\\\":\\\"link\\\",\\\"Omtc4De91\\\":\\\"previewText\\\",\\\"HAxoz4c0f\\\":\\\"color\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"390\",\"framerIntrinsicHeight\":\"485\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KXmxgT7Zx.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", "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", "color", "height", "id", "image", "link", "previewText", "read", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZYZ194zvr", "GdNar7EyN", "LNjJXUTM9", "mIOOQqdxL", "Qxj8PMfxV", "Omtc4De91", "HAxoz4c0f", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1vgmzdi", "args", "onMouseLeave9n5gkc", "onMouseEntergjpgiy", "onMouseLeave1654jbh", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "Image2", "RichText2", "ComponentViewportProvider", "SVG", "css", "FramerKXmxgT7Zx", "withCSS", "KXmxgT7Zx_default", "addPropertyControls", "ControlType", "addFonts"]
}
