{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/5UPpLsIptml8Pf2ste2Q/CGv6Dz5yIXHe6rOvd3YV/Table_test.js", "ssg:https://framerusercontent.com/modules/uONxGk7IyC8KhzZCoHMc/k4FVdNHxLGFe515J19Gv/pnpCH124p.js", "ssg:https://framerusercontent.com/modules/VYN48wOG4LbKBoH5VOhh/RXJ6y6uPVv7lohisWepg/JBn0SwZTY.js", "ssg:https://framerusercontent.com/modules/zkaZOKPJsyPpDK1y9LlS/FB3u2UGsoj2EOZTjrnaQ/ORuPQL35F.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth any\n * @framerDisableUnlink\n * @framerSupportedLayoutHeight any\n */export function MarkdownTable(props){const[ReactMarkdown,setReactMarkdown]=React.useState(null);const[remarkGfm,setRemarkGfm]=React.useState(null);React.useEffect(()=>{import(\"react-markdown\").then(module=>setReactMarkdown(()=>module.default));import(\"remark-gfm\").then(module=>setRemarkGfm(()=>module.default));},[]);const{markdown,width,height,headerText,cellText,firstColumnText,headerBackgroundColor,firstColumnBackgroundColor,cellBackgroundColor,innerBorder,outerBorder,cornerRadius}=props;const containerStyle={width:width,height:height,overflow:\"auto\"};const tableWrapperStyle={border:`${outerBorder.width}px ${outerBorder.style} ${outerBorder.color}`,borderRadius:`${cornerRadius}px`,overflow:\"hidden\"};const tableStyle={width:\"100%\",borderCollapse:\"separate\",borderSpacing:0,borderRadius:`${cornerRadius}px`};const cellBaseStyle={padding:\"8px\",position:\"relative\"};const createCellStyle=(isHeader,isFirstColumn,isLastColumn,rowIndex,colIndex)=>{var _textStyle_font_style,_textStyle_font;const textStyle=isHeader?headerText:isFirstColumn?firstColumnText:cellText;return{...cellBaseStyle,backgroundColor:isHeader?headerBackgroundColor:isFirstColumn?firstColumnBackgroundColor:cellBackgroundColor,fontFamily:textStyle.framerFont.fontFamily||\"Inter\",fontWeight:textStyle.framerFont.fontWeight||400,fontStyle:((_textStyle_font=textStyle.font)===null||_textStyle_font===void 0?void 0:(_textStyle_font_style=_textStyle_font.style)===null||_textStyle_font_style===void 0?void 0:_textStyle_font_style.includes(\"Italic\"))?\"italic\":\"normal\",fontSize:`${textStyle.size}px`,color:textStyle.color,letterSpacing:`${textStyle.letterSpacing}px`,lineHeight:textStyle.lineHeight,textAlign:textStyle.align,borderRight:!isLastColumn?`${innerBorder.width}px ${innerBorder.style} ${innerBorder.color}`:\"none\",borderBottom:`${innerBorder.width}px ${innerBorder.style} ${innerBorder.color}`,...rowIndex===0&&{borderTop:\"none\"},...colIndex===0&&{borderLeft:\"none\"}};};const MarkdownComponents={table:({children})=>/*#__PURE__*/_jsx(\"div\",{style:tableWrapperStyle,children:/*#__PURE__*/_jsx(\"table\",{style:tableStyle,children:children})}),thead:({children})=>/*#__PURE__*/_jsx(\"thead\",{children:children}),tbody:({children})=>/*#__PURE__*/_jsx(\"tbody\",{children:children}),tr:({children,index})=>/*#__PURE__*/_jsx(\"tr\",{\"data-row-index\":index,children:React.Children.map(children,(child,cellIndex)=>/*#__PURE__*/React.cloneElement(child,{isFirstColumn:cellIndex===0,isLastColumn:cellIndex===children.length-1,rowIndex:index,colIndex:cellIndex}))}),th:({children,isFirstColumn,isLastColumn,rowIndex,colIndex})=>/*#__PURE__*/_jsx(\"th\",{style:createCellStyle(true,isFirstColumn,isLastColumn,rowIndex,colIndex),children:React.Children.map(children,child=>typeof child===\"string\"?child.split(\"<br>\").map((text,i,array)=>i===array.length-1?text:/*#__PURE__*/_jsxs(React.Fragment,{children:[text,/*#__PURE__*/_jsx(\"br\",{})]},i)):child)}),td:({children,isFirstColumn,isLastColumn,rowIndex,colIndex})=>/*#__PURE__*/_jsx(\"td\",{style:createCellStyle(false,isFirstColumn,isLastColumn,rowIndex,colIndex),children:React.Children.map(children,child=>typeof child===\"string\"?child.split(\"<br>\").map((text,i,array)=>i===array.length-1?text:/*#__PURE__*/_jsxs(React.Fragment,{children:[text,/*#__PURE__*/_jsx(\"br\",{})]},i)):child)})};if(!ReactMarkdown||!remarkGfm){// Return a loading state or placeholder\nreturn /*#__PURE__*/_jsx(\"div\",{children:\"Loading...\"});}return /*#__PURE__*/_jsxs(\"div\",{style:containerStyle,children:[/*#__PURE__*/_jsx(ReactMarkdown,{components:MarkdownComponents,remarkPlugins:[remarkGfm],children:markdown}),/*#__PURE__*/_jsx(\"style\",{children:`\n                table tr:last-child td {\n                    border-bottom: none !important;\n                }\n                table tr td:first-child, table tr th:first-child {\n                    border-left: none !important;\n                }\n                table tr:first-child th {\n                    border-top: none !important;\n                }\n                table tr td:last-child, table tr th:last-child {\n                    border-right: none !important;\n                }\n            `})]});}MarkdownTable.defaultProps={markdown:\"| Header 1 | Header 2 | Header 3 |\\n|----------|----------|----------|\\n| Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 |\\n| Row 2 Col 1 | Row 2 Col 2 | Row 2 Col 3 |\",width:\"100%\",height:\"auto\",headerBackgroundColor:\"#f0f0f0\",firstColumnBackgroundColor:\"#f9f9f9\",cellBackgroundColor:\"#ffffff\",cornerRadius:4,innerBorder:{color:\"#dddddd\",width:1,style:\"solid\"},outerBorder:{color:\"#bbbbbb\",width:2,style:\"solid\"}};addPropertyControls(MarkdownTable,{markdown:{type:ControlType.String,title:\"Markdown\",displayTextArea:true},width:{type:ControlType.FusedNumber,title:\"Width\",defaultValue:300,toggleKey:\"widthType\",toggleTitles:[\"Fixed\",\"Flexible\"],valueKeys:[\"width\"],valueLabels:[\"W\"],min:0},height:{type:ControlType.FusedNumber,title:\"Height\",defaultValue:200,toggleKey:\"heightType\",toggleTitles:[\"Fixed\",\"Flexible\"],valueKeys:[\"height\"],valueLabels:[\"H\"],min:0},headerText:{type:ControlType.Object,title:\"Header Text\",controls:{framerFont:{type:ControlType.Font,title:\"Font\",defaultValue:{family:\"Inter\",weight:400}},color:{type:ControlType.Color,defaultValue:\"#000000\"},size:{type:ControlType.Number,defaultValue:16,min:0,max:200,unit:\"px\"},letterSpacing:{type:ControlType.Number,defaultValue:0,min:-20,max:100,unit:\"px\",step:.1,displayStepper:true},lineHeight:{type:ControlType.Number,defaultValue:1.2,min:0,max:3,step:.1,displayStepper:true},align:{type:ControlType.SegmentedEnum,options:[\"left\",\"center\",\"right\"],defaultValue:\"left\"}}},cellText:{type:ControlType.Object,title:\"Cell Text\",controls:{framerFont:{type:ControlType.Font,title:\"Font\",defaultValue:{family:\"Inter\",weight:400}},color:{type:ControlType.Color,defaultValue:\"#000000\"},size:{type:ControlType.Number,defaultValue:14,min:0,max:200,unit:\"px\"},letterSpacing:{type:ControlType.Number,defaultValue:0,min:-20,max:100,unit:\"px\",step:.1,displayStepper:true},lineHeight:{type:ControlType.Number,defaultValue:1.2,min:0,max:3,step:.1,displayStepper:true},align:{type:ControlType.SegmentedEnum,options:[\"left\",\"center\",\"right\"],defaultValue:\"left\"}}},firstColumnText:{type:ControlType.Object,title:\"First Column Text\",controls:{framerFont:{type:ControlType.Font,title:\"Font\",defaultValue:{family:\"Inter\",weight:400}},color:{type:ControlType.Color,defaultValue:\"#000000\"},size:{type:ControlType.Number,defaultValue:14,min:0,max:200,unit:\"px\"},letterSpacing:{type:ControlType.Number,defaultValue:0,min:-20,max:100,unit:\"px\",step:.1,displayStepper:true},lineHeight:{type:ControlType.Number,defaultValue:1.2,min:0,max:3,step:.1,displayStepper:true},align:{type:ControlType.SegmentedEnum,options:[\"left\",\"center\",\"right\"],defaultValue:\"left\"}}},headerBackgroundColor:{type:ControlType.Color,title:\"Header Color\",defaultValue:\"#f0f0f0\"},firstColumnBackgroundColor:{type:ControlType.Color,title:\"First Column Color\",defaultValue:\"#f9f9f9\"},cellBackgroundColor:{type:ControlType.Color,title:\"Cell Color\",defaultValue:\"#ffffff\"},innerBorder:{type:ControlType.Object,title:\"Inner Border\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#dddddd\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:1,min:0,max:10,step:1,unit:\"px\"},style:{type:ControlType.Enum,title:\"Style\",defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},outerBorder:{type:ControlType.Object,title:\"Outer Border\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#bbbbbb\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:2,min:0,max:10,step:1,unit:\"px\"},style:{type:ControlType.Enum,title:\"Style\",defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},cornerRadius:{type:ControlType.Number,title:\"Corner Radius\",defaultValue:4,min:0,max:20,step:1}});\nexport const __FramerMetadata__ = {\"exports\":{\"MarkdownTable\":{\"type\":\"reactComponent\",\"name\":\"MarkdownTable\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"* @framerSupportedLayoutHeight any\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Table_test.map", "// Generated by Framer (2e9e6ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/6BytQU8Od2wQYEIhteBJ/0mqKLf6DnYqlUXOsRZw3/cuuRwsx4F.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={tACSCcOya:{hover:true,pressed:true}};const cycleOrder=[\"tACSCcOya\",\"v8LNQlcwT\",\"lEIkinoMq\",\"Opw5dbZwe\",\"RBjCkivGI\"];const serializationHash=\"framer-pRp8w\";const variantClassNames={lEIkinoMq:\"framer-v-znsnoe\",Opw5dbZwe:\"framer-v-g1vaod\",RBjCkivGI:\"framer-v-1njgzl7\",tACSCcOya:\"framer-v-s1dduz\",v8LNQlcwT:\"framer-v-1jtg3us\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={Default:\"tACSCcOya\",Disabled:\"lEIkinoMq\",Error:\"RBjCkivGI\",Loading:\"v8LNQlcwT\",Success:\"Opw5dbZwe\"};const getProps=({height,id,title2,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tACSCcOya\",vi1KY5ubj:title2??props.vi1KY5ubj??\"text\"};};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,vi1KY5ubj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tACSCcOya\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"v8LNQlcwT\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"v8LNQlcwT\")return true;return false;};const isDisplayed2=()=>{if([\"v8LNQlcwT\",\"Opw5dbZwe\",\"RBjCkivGI\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-s1dduz\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"tACSCcOya\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",opacity:1,...style},variants:{\"tACSCcOya-hover\":{\"--border-color\":\"var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, rgb(205, 18, 138))\",opacity:1},\"tACSCcOya-pressed\":{\"--border-color\":\"var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, rgb(205, 18, 138))\",opacity:1},lEIkinoMq:{opacity:.5},Opw5dbZwe:{opacity:1},RBjCkivGI:{opacity:1}},...addPropertyOverrides({\"tACSCcOya-hover\":{\"data-framer-name\":undefined},\"tACSCcOya-pressed\":{\"data-framer-name\":undefined},lEIkinoMq:{\"data-framer-name\":\"Disabled\"},Opw5dbZwe:{\"data-framer-name\":\"Success\"},RBjCkivGI:{\"data-framer-name\":\"Error\"},v8LNQlcwT:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-169ztjm\",\"data-styles-preset\":\"cuuRwsx4F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39)))\"},children:\"text\"})}),className:\"framer-old1va\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k2nVAxStQ\",style:{\"--extracted-r6o4lv\":\"var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vi1KY5ubj,variants:{\"tACSCcOya-hover\":{\"--extracted-r6o4lv\":\"var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, rgb(205, 18, 138))\"},\"tACSCcOya-pressed\":{\"--extracted-r6o4lv\":\"var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, rgb(205, 18, 138))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"tACSCcOya-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-169ztjm\",\"data-styles-preset\":\"cuuRwsx4F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, rgb(205, 18, 138)))\"},children:\"text\"})})},\"tACSCcOya-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-169ztjm\",\"data-styles-preset\":\"cuuRwsx4F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, rgb(205, 18, 138)))\"},children:\"text\"})})},Opw5dbZwe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-169ztjm\",\"data-styles-preset\":\"cuuRwsx4F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39)))\"},children:\"Thank you\"})}),text:undefined},RBjCkivGI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-169ztjm\",\"data-styles-preset\":\"cuuRwsx4F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39)))\"},children:\"Thank you\"})}),text:undefined}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-z49jtg\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"ptZsj2SoZ\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ybnr59\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"H2ARaFNa7\",style:{background:\"conic-gradient(from 0deg at 50% 50%, var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, rgb(205, 18, 138)) 7.208614864864882deg, var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39)) 342deg)\",mask:\"none\",WebkitMask:\"none\"},variants:{v8LNQlcwT:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l0w7nd\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"WlyFcFQFD\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1em82jt\",\"data-framer-name\":\"arrow\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rLjCgINO6\",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 22 11\"><path d=\"M 0.285 6.255 L 19.906 6.255 L 19.906 4.746 L 0.285 4.746 Z\" fill=\"var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39)) /* {&quot;name&quot;:&quot;#001427&quot;} */\"></path><path d=\"M 16.663 10.557 L 15.605 9.5 L 19.605 5.5 L 15.605 1.5 L 16.663 0.443 L 21.718 5.499 Z\" fill=\"var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39)) /* {&quot;name&quot;:&quot;#001427&quot;} */\"></path></svg>',svgContentId:11954989933,variants:{\"tACSCcOya-hover\":{backgroundColor:\"rgba(239, 67, 179, 0)\"},\"tACSCcOya-pressed\":{backgroundColor:\"rgba(0, 0, 0, 0)\"}},withExternalLayout:true,...addPropertyOverrides({\"tACSCcOya-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 11\"><path d=\"M 0.285 6.255 L 19.906 6.255 L 19.906 4.746 L 0.285 4.746 Z\" fill=\"var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, rgb(205, 18, 138)) /* {&quot;name&quot;:&quot;Dark Pink&quot;} */\"></path><path d=\"M 16.663 10.557 L 15.605 9.5 L 19.605 5.5 L 15.605 1.5 L 16.663 0.443 L 21.718 5.499 Z\" fill=\"var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, rgb(205, 18, 138)) /* {&quot;name&quot;:&quot;Dark Pink&quot;} */\"></path></svg>',svgContentId:10187008167},\"tACSCcOya-pressed\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 11\"><path d=\"M 0.285 6.255 L 19.906 6.255 L 19.906 4.746 L 0.285 4.746 Z\" fill=\"var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, rgb(205, 18, 138)) /* {&quot;name&quot;:&quot;Dark Pink&quot;} */\"></path><path d=\"M 16.663 10.557 L 15.605 9.5 L 19.605 5.5 L 15.605 1.5 L 16.663 0.443 L 21.718 5.499 Z\" fill=\"var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, rgb(205, 18, 138)) /* {&quot;name&quot;:&quot;Dark Pink&quot;} */\"></path></svg>',svgContentId:12263604634}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pRp8w.framer-1szruf2, .framer-pRp8w .framer-1szruf2 { display: block; }\",\".framer-pRp8w.framer-s1dduz { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: 50px; justify-content: center; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: min-content; }\",\".framer-pRp8w .framer-old1va { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-pRp8w .framer-z49jtg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-pRp8w .framer-ybnr59 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-pRp8w .framer-l0w7nd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-pRp8w .framer-1em82jt { flex: none; height: 11px; position: relative; width: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pRp8w.framer-s1dduz { gap: 0px; } .framer-pRp8w.framer-s1dduz > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-pRp8w.framer-s1dduz > :first-child { margin-left: 0px; } .framer-pRp8w.framer-s1dduz > :last-child { margin-right: 0px; } }\",\".framer-pRp8w.framer-v-1jtg3us.framer-s1dduz, .framer-pRp8w.framer-v-znsnoe.framer-s1dduz, .framer-pRp8w.framer-v-g1vaod.framer-s1dduz, .framer-pRp8w.framer-v-1njgzl7.framer-s1dduz { cursor: unset; }\",\".framer-pRp8w.framer-v-1jtg3us .framer-ybnr59 { overflow: hidden; }\",...sharedStyle.css,'.framer-pRp8w[data-border=\"true\"]::after, .framer-pRp8w [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 119\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"v8LNQlcwT\":{\"layout\":[\"auto\",\"fixed\"]},\"lEIkinoMq\":{\"layout\":[\"auto\",\"fixed\"]},\"Opw5dbZwe\":{\"layout\":[\"auto\",\"fixed\"]},\"RBjCkivGI\":{\"layout\":[\"auto\",\"fixed\"]},\"zmFaAuf5h\":{\"layout\":[\"auto\",\"fixed\"]},\"p5p2s19IK\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"vi1KY5ubj\":\"title2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerpnpCH124p=withCSS(Component,css,\"framer-pRp8w\");export default FramerpnpCH124p;FramerpnpCH124p.displayName=\"Button 2\";FramerpnpCH124p.defaultProps={height:50,width:119};addPropertyControls(FramerpnpCH124p,{variant:{options:[\"tACSCcOya\",\"v8LNQlcwT\",\"lEIkinoMq\",\"Opw5dbZwe\",\"RBjCkivGI\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum},vi1KY5ubj:{defaultValue:\"text\",displayTextArea:false,title:\"Title 2\",type:ControlType.String}});addFonts(FramerpnpCH124p,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpnpCH124p\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"v8LNQlcwT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lEIkinoMq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Opw5dbZwe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"RBjCkivGI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zmFaAuf5h\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"p5p2s19IK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"vi1KY5ubj\\\":\\\"title2\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"50\",\"framerIntrinsicWidth\":\"119\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pnpCH124p.map", "// Generated by Framer (c563d2c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Roboto-regular\",\"GF;Roboto-700\",\"GF;Roboto-700italic\",\"GF;Roboto-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Roboto\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"},{family:\"Roboto\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammWggvWl0Qn.woff2\",weight:\"700\"},{family:\"Roboto\",openType:true,source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXiAr0klQnx24.woff2\",weight:\"700\"},{family:\"Roboto\",openType:true,source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQiAr0klQnx24.woff2\",weight:\"400\"}]}];export const css=['.framer-9W6B9 .framer-styles-preset-6z6l0r:not(.rich-text-wrapper), .framer-9W6B9 .framer-styles-preset-6z6l0r.rich-text-wrapper p { --framer-font-family: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, #ef43b3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1599px) and (min-width: 1000px) { .framer-9W6B9 .framer-styles-preset-6z6l0r:not(.rich-text-wrapper), .framer-9W6B9 .framer-styles-preset-6z6l0r.rich-text-wrapper p { --framer-font-family: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, #ef43b3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 999px) and (min-width: 600px) { .framer-9W6B9 .framer-styles-preset-6z6l0r:not(.rich-text-wrapper), .framer-9W6B9 .framer-styles-preset-6z6l0r.rich-text-wrapper p { --framer-font-family: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, #ef43b3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 599px) and (min-width: 0px) { .framer-9W6B9 .framer-styles-preset-6z6l0r:not(.rich-text-wrapper), .framer-9W6B9 .framer-styles-preset-6z6l0r.rich-text-wrapper p { --framer-font-family: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 8px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, #ef43b3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-9W6B9\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d19865c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useQueryData,useRouter,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{MarkdownTable}from\"https://framerusercontent.com/modules/5UPpLsIptml8Pf2ste2Q/CGv6Dz5yIXHe6rOvd3YV/Table_test.js\";import Footer from\"https://framerusercontent.com/modules/ezm2ohQ6NQon6LjqAyXH/I8kyS1iiqHfqRuJvGabE/QtdgcA1EY.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import NavigationWithPromo from\"#framer/local/canvasComponent/e2OqWRN2a/e2OqWRN2a.js\";import ArrowCtaHover from\"#framer/local/canvasComponent/LW3cUDjKy/LW3cUDjKy.js\";import Button2 from\"#framer/local/canvasComponent/pnpCH124p/pnpCH124p.js\";import{withFullWidthFramerImage}from\"#framer/local/codeFile/SAoDkUt/CMS_Images.js\";import ShareButton from\"#framer/local/codeFile/A9HMkXK/ShareButton.js\";import Authors from\"#framer/local/collection/q5caK9ueT/q5caK9ueT.js\";import Blog from\"#framer/local/collection/RB8RO_5Kf/RB8RO_5Kf.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle8 from\"#framer/local/css/a81uPNzwt/a81uPNzwt.js\";import*as sharedStyle14 from\"#framer/local/css/ADC_NKw27/ADC_NKw27.js\";import*as sharedStyle15 from\"#framer/local/css/BzPsCKlkD/BzPsCKlkD.js\";import*as sharedStyle12 from\"#framer/local/css/cuuRwsx4F/cuuRwsx4F.js\";import*as sharedStyle1 from\"#framer/local/css/CzO8GNTIG/CzO8GNTIG.js\";import*as sharedStyle6 from\"#framer/local/css/eezsk_DLo/eezsk_DLo.js\";import*as sharedStyle9 from\"#framer/local/css/f04mLmn9t/f04mLmn9t.js\";import*as sharedStyle from\"#framer/local/css/gbhWjjkx_/gbhWjjkx_.js\";import*as sharedStyle13 from\"#framer/local/css/gQGogigNB/gQGogigNB.js\";import*as sharedStyle11 from\"#framer/local/css/GTGJBCiiA/GTGJBCiiA.js\";import*as sharedStyle5 from\"#framer/local/css/JBn0SwZTY/JBn0SwZTY.js\";import*as sharedStyle2 from\"#framer/local/css/JUIkLrggI/JUIkLrggI.js\";import*as sharedStyle17 from\"#framer/local/css/mLKK5uTux/mLKK5uTux.js\";import*as sharedStyle3 from\"#framer/local/css/nGrkywCK1/nGrkywCK1.js\";import*as sharedStyle7 from\"#framer/local/css/RmExUXe3h/RmExUXe3h.js\";import*as sharedStyle16 from\"#framer/local/css/rYazBMq6G/rYazBMq6G.js\";import*as sharedStyle19 from\"#framer/local/css/sTlJ2m8Cs/sTlJ2m8Cs.js\";import*as sharedStyle18 from\"#framer/local/css/tUwkfbVlW/tUwkfbVlW.js\";import*as sharedStyle10 from\"#framer/local/css/wymM0Q59_/wymM0Q59_.js\";import*as sharedStyle4 from\"#framer/local/css/xWXkYwB13/xWXkYwB13.js\";import metadataProvider from\"#framer/local/webPageMetadata/ORuPQL35F/ORuPQL35F.js\";const NavigationWithPromoFonts=getFonts(NavigationWithPromo);const ShareButtonFonts=getFonts(ShareButton);const RichTextWithFullWidthFramerImage1aufhf=withCodeBoundaryForOverrides(RichText,{nodeId:\"cw5EAdNeV\",override:withFullWidthFramerImage,scopeId:\"ORuPQL35F\"});const ArrowCtaHoverFonts=getFonts(ArrowCtaHover);const VideoFonts=getFonts(Video);const MarkdownTableFonts=getFonts(MarkdownTable);const RichTextWithFullWidthFramerImagewk3w2e=withCodeBoundaryForOverrides(RichText,{nodeId:\"M0DpUZEYi\",override:withFullWidthFramerImage,scopeId:\"ORuPQL35F\"});const Button2Fonts=getFonts(Button2);const FooterFonts=getFonts(Footer);const breakpoints={hN7K0CRXW:\"(min-width: 600px) and (max-width: 999px)\",Iq9Yw88k3:\"(min-width: 1600px)\",vELroyhM9:\"(min-width: 1000px) and (max-width: 1599px)\",ZBnQd6ExH:\"(max-width: 599px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-w2lnQ\";const variantClassNames={hN7K0CRXW:\"framer-v-maxe9o\",Iq9Yw88k3:\"framer-v-t8p5ne\",vELroyhM9:\"framer-v-dzqgch\",ZBnQd6ExH:\"framer-v-8e0ysk\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Iq9Yw88k3\",Laptop:\"vELroyhM9\",Phone:\"ZBnQd6ExH\",Tablet:\"hN7K0CRXW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Iq9Yw88k3\"};};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:\"ORuPQL35F\",data:Blog,type:\"Collection\"},select:[{collection:\"ORuPQL35F\",name:\"KIbcOugSK\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"Y9ld4CNKs\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"m6R9g8UpO\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"cBs02DL5o\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"ZptuaMJPK\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"bCFZiJQjW\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"GiK674Aqj\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"odXmSsfXy\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"uwNxTsfmJ\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"DqYwxSVA7\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"ORp3EcTQ0\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"CE7f_oe15\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"yxs7HqjNE\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"eO8BS_s3I\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"Jww_0TFZs\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"dICCW43S5\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"iflzi9nSb\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"odOCNWInq\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"fdRvcYqAQ\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"QtT2K_Gs6\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"UQop2XxW3\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"igFiK0gsR\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"P1oHPu2IJ\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"OQQmQFCxb\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"TR8TGZhJe\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"MBqP3S7UU\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"bU_ylxVTX\",type:\"Identifier\"},{collection:\"ORuPQL35F\",name:\"Ww96qvAt5\",type:\"Identifier\"},{alias:\"CgSJgjoNy\",arguments:[{from:{alias:\"CgSJgjoNy\",data:Authors,type:\"Collection\"},orderBy:[{arguments:[{collection:\"ORuPQL35F\",name:\"CgSJgjoNy\",type:\"Identifier\"},{collection:\"CgSJgjoNy\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"CgSJgjoNy\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"CgSJgjoNy\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"ORuPQL35F\",name:\"CgSJgjoNy\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"ORuPQL35F\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,KIbcOugSK=getFromCurrentRouteData(\"KIbcOugSK\")??\"\",iflzi9nSb=getFromCurrentRouteData(\"iflzi9nSb\")??true,odOCNWInq=getFromCurrentRouteData(\"odOCNWInq\")??\"\",fdRvcYqAQ=getFromCurrentRouteData(\"fdRvcYqAQ\")??true,QtT2K_Gs6=getFromCurrentRouteData(\"QtT2K_Gs6\")??\"\",UQop2XxW3=getFromCurrentRouteData(\"UQop2XxW3\")??true,igFiK0gsR=getFromCurrentRouteData(\"igFiK0gsR\")??\"\",P1oHPu2IJ=getFromCurrentRouteData(\"P1oHPu2IJ\")??true,OQQmQFCxb=getFromCurrentRouteData(\"OQQmQFCxb\")??\"\",TR8TGZhJe=getFromCurrentRouteData(\"TR8TGZhJe\")??true,MBqP3S7UU=getFromCurrentRouteData(\"MBqP3S7UU\")??\"\",cBs02DL5o=getFromCurrentRouteData(\"cBs02DL5o\")??true,m6R9g8UpO=getFromCurrentRouteData(\"m6R9g8UpO\"),odXmSsfXy=getFromCurrentRouteData(\"odXmSsfXy\")??\"\",uwNxTsfmJ=getFromCurrentRouteData(\"uwNxTsfmJ\")??true,ORp3EcTQ0=getFromCurrentRouteData(\"ORp3EcTQ0\")??true,DqYwxSVA7=getFromCurrentRouteData(\"DqYwxSVA7\"),ZptuaMJPK=getFromCurrentRouteData(\"ZptuaMJPK\")??true,bCFZiJQjW=getFromCurrentRouteData(\"bCFZiJQjW\")??true,GiK674Aqj=getFromCurrentRouteData(\"GiK674Aqj\")??true,CE7f_oe15=getFromCurrentRouteData(\"CE7f_oe15\")??\"\",Ww96qvAt5=getFromCurrentRouteData(\"Ww96qvAt5\")??true,bU_ylxVTX=getFromCurrentRouteData(\"bU_ylxVTX\")??\"\",CgSJgjoNy=getFromCurrentRouteData(\"CgSJgjoNy\"),jYxt6BJEDIin1TIeO0,YiJa1FAgdIin1TIeO0,PTmE3i82EIin1TIeO0,WpZfISlKIIin1TIeO0,dUw_B9MOmIin1TIeO0,idIin1TIeO0,yxs7HqjNE=getFromCurrentRouteData(\"yxs7HqjNE\")??\"\",eO8BS_s3I=getFromCurrentRouteData(\"eO8BS_s3I\")??\"\",Jww_0TFZs=getFromCurrentRouteData(\"Jww_0TFZs\")??\"\",dICCW43S5=getFromCurrentRouteData(\"dICCW43S5\")??\"\",...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(currentRouteData,activeLocale),[currentRouteData,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;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,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className,sharedStyle17.className,sharedStyle18.className,sharedStyle19.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"hN7K0CRXW\",\"ZBnQd6ExH\"].includes(baseVariant))return false;return true;};const router=useRouter();const visible=isSet(CgSJgjoNy);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Iq9Yw88k3\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-t8p5ne\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:193,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-lwflsb-container\",nodeId:\"mDQu4BVJJ\",scopeId:\"ORuPQL35F\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hN7K0CRXW:{variant:\"aM2p9zJSe\"},vELroyhM9:{variant:\"GtGLG2oAX\"},ZBnQd6ExH:{variant:\"rR64hO0Dv\"}},children:/*#__PURE__*/_jsx(NavigationWithPromo,{height:\"100%\",id:\"mDQu4BVJJ\",IJ01Sv0ym:true,KKix9osmk:\"D6wJOpK7R\",layoutId:\"mDQu4BVJJ\",style:{width:\"100%\"},variant:\"oE0UVAsDx\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cth77d\",\"data-framer-name\":\"background\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4g9k0x\",\"data-framer-name\":\"blog post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16fmqsf\",\"data-framer-name\":\"header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uc74w7\",\"data-framer-name\":\"breadcrumb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kmnd8f\",\"data-styles-preset\":\"gbhWjjkx_\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eAUa0P8Zl\"},motionChild:true,nodeId:\"ne5Ve_AGQ\",openInNewTab:false,relValues:[],scopeId:\"ORuPQL35F\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jlsu8h\",\"data-styles-preset\":\"CzO8GNTIG\",children:\"Back to blog\"})})})}),className:\"framer-11vr6mg\",\"data-framer-name\":\"back\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kmnd8f\",\"data-styles-preset\":\"gbhWjjkx_\",children:\" / \"})}),className:\"framer-157crc2 hidden-maxe9o hidden-8e0ysk\",\"data-framer-name\":\"/\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mna4nr\",\"data-styles-preset\":\"JUIkLrggI\",children:\"DeepSeek-V3 makes enterprise AI smarter, faster, and more affordable\"})}),className:\"framer-1au32ao hidden-maxe9o hidden-8e0ysk\",\"data-framer-name\":\"article\",fonts:[\"Inter\"],text:KIbcOugSK,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1sgbqgy\",\"data-styles-preset\":\"nGrkywCK1\",children:\"DeepSeek-V3 makes enterprise AI smarter, faster, and more affordable\"})}),className:\"framer-fmhhve\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],text:KIbcOugSK,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oo5r0o\",\"data-framer-name\":\"categories and social\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jlhbuk\",\"data-framer-name\":\"categories\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2q1y24\",\"data-styles-preset\":\"xWXkYwB13\",children:\"Categories\"})}),className:\"framer-tbg213\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106ncet\",\"data-framer-name\":\"Categories Grid\",children:[iflzi9nSb&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-yk5ijv\",\"data-framer-name\":\"Frame 111385\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z6l0r\",\"data-styles-preset\":\"JBn0SwZTY\",children:\"Enterprise AI\"})}),className:\"framer-71s2u6\",\"data-framer-name\":\"Supply chain\",fonts:[\"Inter\"],text:odOCNWInq,verticalAlignment:\"top\",withExternalLayout:true})}),fdRvcYqAQ&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oqd6nw\",\"data-framer-name\":\"Frame 111383\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z6l0r\",\"data-styles-preset\":\"JBn0SwZTY\",children:\"Foundational models\"})}),className:\"framer-k0wnah\",\"data-framer-name\":\"Supply chain\",fonts:[\"Inter\"],text:QtT2K_Gs6,verticalAlignment:\"top\",withExternalLayout:true})}),UQop2XxW3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q1m1sw\",\"data-framer-name\":\"Frame 111384\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z6l0r\",\"data-styles-preset\":\"JBn0SwZTY\",children:\"GenAI\"})}),className:\"framer-1c0u53\",\"data-framer-name\":\"Supply chain\",fonts:[\"Inter\"],text:igFiK0gsR,verticalAlignment:\"top\",withExternalLayout:true})}),P1oHPu2IJ&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lknbq5\",\"data-framer-name\":\"Frame 111382\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z6l0r\",\"data-styles-preset\":\"JBn0SwZTY\",children:\"LLM\"})}),className:\"framer-1gynvyt\",\"data-framer-name\":\"Supply chain\",fonts:[\"Inter\"],text:OQQmQFCxb,verticalAlignment:\"top\",withExternalLayout:true})}),TR8TGZhJe&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-10jvg9e\",\"data-framer-name\":\"Frame 111386\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z6l0r\",\"data-styles-preset\":\"JBn0SwZTY\",children:\"Content\"})}),className:\"framer-b6jrnq\",\"data-framer-name\":\"Supply chain\",fonts:[\"Inter\"],text:MBqP3S7UU,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f99b7\",\"data-framer-name\":\"social\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2q1y24\",\"data-styles-preset\":\"xWXkYwB13\",children:\"Share\"})}),className:\"framer-1gyteap\",\"data-framer-name\":\"Share\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dwrzxa\",\"data-framer-name\":\"Social Icons\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lwscbw-container\",id:\"lwscbw\",isAuthoredByUser:true,nodeId:\"bEhCcMRVl\",scopeId:\"ORuPQL35F\",children:/*#__PURE__*/_jsx(ShareButton,{backgroundType:\"Solid\",borderColor:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",borderWidth:0,bottomLeftRadius:0,bottomPadding:16,bottomRightRadius:0,font:{color:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",fontFace:\"Inter\",size:16,weight:\"bold\"},height:\"100%\",iconProperties:{color:\"var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, rgb(239, 67, 179))\",gap:10,size:20},id:\"bEhCcMRVl\",isMixedPadding:false,isMixedRadius:false,layoutId:\"bEhCcMRVl\",leftPadding:16,linear:{degree:90,fromColor:\"rgb(46, 46, 46)\",opacityFrom:100,opacityTo:0,toColor:\"rgb(36, 36, 36)\"},radius:0,rightPadding:16,shareCurrentUrl:true,shareText:\"\",socialMedia:\"LinkedIn\",stylePadding:16,tint:\"rgba(255, 255, 255, 0)\",title:\"\",topLeftRadius:0,topPadding:16,topRightRadius:0,urlToShare:\"https://framer.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qcvfph-container\",isAuthoredByUser:true,nodeId:\"TTxhQIG8e\",scopeId:\"ORuPQL35F\",children:/*#__PURE__*/_jsx(ShareButton,{backgroundType:\"Solid\",borderColor:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",borderWidth:0,bottomLeftRadius:0,bottomPadding:16,bottomRightRadius:0,font:{color:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",fontFace:\"Inter\",size:16,weight:\"bold\"},height:\"100%\",iconProperties:{color:\"var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, rgb(239, 67, 179))\",gap:10,size:20},id:\"TTxhQIG8e\",isMixedPadding:false,isMixedRadius:false,layoutId:\"TTxhQIG8e\",leftPadding:16,linear:{degree:90,fromColor:\"rgb(46, 46, 46)\",opacityFrom:100,opacityTo:0,toColor:\"rgb(36, 36, 36)\"},radius:0,rightPadding:16,shareCurrentUrl:true,shareText:\"\",socialMedia:\"Twitter\",stylePadding:16,tint:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",title:\"\",topLeftRadius:0,topPadding:16,topRightRadius:0,urlToShare:\"https://framer.com\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yhqweg\",\"data-framer-name\":\"separator\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-a5joab\",\"data-framer-name\":\"separator\",fill:'var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39)) /* {\"name\":\"#001427\"} */',intrinsicHeight:3,intrinsicWidth:1802,svg:'<svg width=\"1802\" height=\"3\" viewBox=\"-1 -1 1802 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"1800\" y2=\"0.5\" stroke=\"#707070\"/>\\n</svg>\\n',withExternalLayout:true})})]}),cBs02DL5o&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hN7K0CRXW:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px)`,...toResponsiveImage(m6R9g8UpO)}},vELroyhM9:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 80px)`,...toResponsiveImage(m6R9g8UpO)}},ZBnQd6ExH:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px)`,...toResponsiveImage(m6R9g8UpO)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px)`,...toResponsiveImage(m6R9g8UpO)},className:\"framer-sdfhdu\",\"data-framer-name\":\"banner image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gic7km\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1glon6u\",\"data-framer-name\":\"copy\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"SzjQftZ8X\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"p_UlWjxBk\"]},children:/*#__PURE__*/_jsx(RichTextWithFullWidthFramerImage1aufhf,{__fromCanvasComponent:true,children:odXmSsfXy,className:\"framer-1aufhf\",\"data-framer-name\":\"#1 copy\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1jlsu8h\",blockquote:\"framer-styles-preset-1vymif8\",code:\"framer-styles-preset-b8uqc\",h1:\"framer-styles-preset-8x4jkl\",h2:\"framer-styles-preset-1faewsn\",h3:\"framer-styles-preset-snzir2\",h4:\"framer-styles-preset-kojbd4\",h5:\"framer-styles-preset-cvdgy0\",h6:\"framer-styles-preset-a2lryl\",img:\"framer-styles-preset-nhwg8b\",p:\"framer-styles-preset-169ztjm\",table:\"framer-styles-preset-eovjb7\"},verticalAlignment:\"top\",withExternalLayout:true})}),uwNxTsfmJ&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4u11av\",\"data-border\":true,\"data-framer-name\":\"product\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hN7K0CRXW:{background:{alt:\"\",fit:\"fill\",pixelHeight:337,pixelWidth:1494,sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px, 1px), 888px)`,src:\"https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png\",srcSet:\"https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png?scale-down-to=512 512w,https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png 1494w\"}},vELroyhM9:{background:{alt:\"\",fit:\"fill\",pixelHeight:337,pixelWidth:1494,sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 80px, 1px), 888px)`,src:\"https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png\",srcSet:\"https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png?scale-down-to=512 512w,https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png 1494w\"}},ZBnQd6ExH:{background:{alt:\"\",fit:\"fill\",pixelHeight:337,pixelWidth:1494,sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px, 1px), 888px)`,src:\"https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png\",srcSet:\"https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png?scale-down-to=512 512w,https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png 1494w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:337,pixelWidth:1494,sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px), 1px), 888px)`,src:\"https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png\",srcSet:\"https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png?scale-down-to=512 512w,https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jKEgJgatzAfQrI1HcnQdK5FKnu8.png 1494w\"},className:\"framer-332n4r\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Centific FLow logo\",fit:\"fit\",pixelHeight:272,pixelWidth:1525,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ztaK05jXslyQhZbpeWYqtqs4.png\"},className:\"framer-1we823u\",\"data-framer-name\":\"flow logo\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hN7K0CRXW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Level up localization with Centific Flow\"})})})},ZBnQd6ExH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Level up localization with Centific Flow\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Level up localization with Centific Flow\"})})}),className:\"framer-gfl0pe\",\"data-framer-name\":\"Title\",fonts:[\"GF;Poppins-300\",\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZBnQd6ExH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"Lead globalization for your business with an AI-driven application built for localization and content teams.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"Lead globalization for your business with an AI-driven application built for localization and content teams.\"})}),className:\"framer-v7cqyz\",\"data-framer-name\":\"Description\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ybb7Qkcl9\"},implicitPathVariables:undefined},{href:{webPageId:\"Ybb7Qkcl9\"},implicitPathVariables:undefined},{href:{webPageId:\"Ybb7Qkcl9\"},implicitPathVariables:undefined},{href:{webPageId:\"Ybb7Qkcl9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s8iz0w-container\",\"data-framer-name\":\"CTA\",name:\"CTA\",nodeId:\"Al86FKU17\",scopeId:\"ORuPQL35F\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hN7K0CRXW:{j6ZbV1AmZ:resolvedLinks[2]},vELroyhM9:{j6ZbV1AmZ:resolvedLinks[1]},ZBnQd6ExH:{j6ZbV1AmZ:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(ArrowCtaHover,{height:\"100%\",id:\"Al86FKU17\",iqlm44PMW:\"Discover Flow\",j6ZbV1AmZ:resolvedLinks[0],layoutId:\"Al86FKU17\",name:\"CTA\",UiOUH52t0:true,variant:\"V7bREEfHG\",width:\"100%\"})})})})})]}),ORp3EcTQ0&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hN7K0CRXW:{background:{alt:\"\",fit:\"fit\",sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px, 1px), 888px)`,...toResponsiveImage(DqYwxSVA7),...{positionX:\"center\",positionY:\"center\"}}},vELroyhM9:{background:{alt:\"\",fit:\"fit\",sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 80px, 1px), 888px)`,...toResponsiveImage(DqYwxSVA7),...{positionX:\"center\",positionY:\"center\"}}},ZBnQd6ExH:{background:{alt:\"\",fit:\"fit\",sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px, 1px), 888px)`,...toResponsiveImage(DqYwxSVA7),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px), 1px), 888px)`,...toResponsiveImage(DqYwxSVA7),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-18my5on\"})}),ZptuaMJPK&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-160sn1r-container\",isModuleExternal:true,nodeId:\"s935Ni34q\",scopeId:\"ORuPQL35F\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"s935Ni34q\",isMixedBorderRadius:false,layoutId:\"s935Ni34q\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/uxbGxQIwf8uFLJWg8l8Qp3dbbTY.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),bCFZiJQjW&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-txha9t\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8moxe7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"digIxqz3V\",scopeId:\"ORuPQL35F\",children:/*#__PURE__*/_jsx(MarkdownTable,{cellBackgroundColor:\"rgb(255, 255, 255)\",cellText:{align:\"left\",color:\"var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39))\",framerFont:{fontFamily:'\"Roboto\", \"Roboto Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},letterSpacing:0,lineHeight:1.2,size:14},cornerRadius:0,firstColumnBackgroundColor:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",firstColumnText:{align:\"left\",color:\"var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39))\",framerFont:{fontFamily:'\"Roboto\", \"Roboto Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:14},headerBackgroundColor:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",headerText:{align:\"left\",color:\"var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39))\",framerFont:{fontFamily:'\"Roboto\", \"Roboto Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:16},height:\"100%\",id:\"digIxqz3V\",innerBorder:{color:\"rgb(221, 221, 221)\",style:\"solid\",width:1},layoutId:\"digIxqz3V\",markdown:\"| DeepSeek features | Centific\u2019s frontier AI data foundry platform |\\n|-------------------|----------------------------------------------|\\n| FP8 mixed-precision training | Reduce memory overhead, accelerating model convergence rates. |\\n| MoE architecture optimization | Balance computational workloads, helping to ensure high-efficiency model scaling. |\\n| RLHF and supervised fine tuning | Automate parameter tuning, reducing computational costs. |\\n| Security and compliance auditing | Provide enterprise-grade security risk assessments. |\\n| Custom model distillation | Facilitate highly specialized, lightweight DeepSeek models. |\\n| Scalable multi-node deployment | Drive seamless multi-cloud and on-premise integrations. |\",outerBorder:{color:\"var(--token-13ed80bf-b17b-4be8-99d8-0f9c8c47e687, rgb(204, 18, 173))\",style:\"solid\",width:3},width:\"100%\"})})})}),GiK674Aqj&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-yt22hv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vb7hh1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zFjZgRZL_\",scopeId:\"ORuPQL35F\",children:/*#__PURE__*/_jsx(MarkdownTable,{cellBackgroundColor:\"rgb(255, 255, 255)\",cellText:{align:\"left\",color:\"var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39))\",framerFont:{fontFamily:'\"Roboto\", \"Roboto Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},letterSpacing:0,lineHeight:1.2,size:14},cornerRadius:0,firstColumnBackgroundColor:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",firstColumnText:{align:\"left\",color:\"var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39))\",framerFont:{fontFamily:'\"Roboto\", \"Roboto Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:14},headerBackgroundColor:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",headerText:{align:\"left\",color:\"var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39))\",framerFont:{fontFamily:'\"Roboto\", \"Roboto Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:16},height:\"100%\",id:\"zFjZgRZL_\",innerBorder:{color:\"rgb(221, 221, 221)\",style:\"solid\",width:1},layoutId:\"zFjZgRZL_\",markdown:\"| Framework | Key features | Use cases | Strengths | Weaknesses | \\n|-----------|--------------|-----------|-----------|------------|\\n| ProAgent | LLM-driven workflow automation, memory retention | Business process automation, finance, customer support | Strong workflow automation, contextual memory | High resource consumption, domain-specific tuning required |\\n| Agent-E | Observation distillation, hierarchical planning | Autonomous web navigation, e-commerce assistants | Efficient web navigation, robust planning | Struggles with dynamic web content and frequent website changes |\\n| AutoGen | Multi-agent collaboration, task delegation | Conversational AI, project management | Seamless multi-agent interaction, modular design | Requires careful task orchestration and dependency management |\\n| Maestro | Multi-modal integration, dynamic adaptation | Content creation, data analysis, decision support | Handles multiple data types, flexible adaptation | Complexity in orchestrating multi-modal data sources |\\n| LangGraph | Multi-agent reasoning, event-driven architecture | Knowledge-based AI applications, analytics | Strong interoperability, scalable agent coordination | Requires structured agent pipelines for best results|\",outerBorder:{color:\"var(--token-13ed80bf-b17b-4be8-99d8-0f9c8c47e687, rgb(204, 18, 173))\",style:\"solid\",width:3},style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"SzjQftZ8X\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"p_UlWjxBk\"]},children:/*#__PURE__*/_jsx(RichTextWithFullWidthFramerImagewk3w2e,{__fromCanvasComponent:true,children:CE7f_oe15,className:\"framer-wk3w2e\",\"data-framer-name\":\"#2 copy\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1jlsu8h\",blockquote:\"framer-styles-preset-1vymif8\",code:\"framer-styles-preset-b8uqc\",h1:\"framer-styles-preset-8x4jkl\",h2:\"framer-styles-preset-1faewsn\",h3:\"framer-styles-preset-snzir2\",h4:\"framer-styles-preset-kojbd4\",h5:\"framer-styles-preset-cvdgy0\",h6:\"framer-styles-preset-a2lryl\",img:\"framer-styles-preset-nhwg8b\",p:\"framer-styles-preset-169ztjm\",table:\"framer-styles-preset-eovjb7\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),Ww96qvAt5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jdyp8i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1faewsn\",\"data-styles-preset\":\"RmExUXe3h\",children:\"Access this exclusive content\"})}),className:\"framer-1wl9etn\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/703a7e5b-07e0-4683-b4cb-248df0d7f0fe/submit\",className:\"framer-1dwmirt\",nodeId:\"pVPPpdBtC\",redirectUrl:bU_ylxVTX,children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xygx6u\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j6d50k\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-113tg42\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1mneu9w\",inputName:\"First name\",placeholder:\"First name\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1rdjvek\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-g9f4ea\",inputName:\"Last name\",placeholder:\"Last name\",required:true,type:\"text\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-81kg9o\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-1x4erkp\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-449t8s\",inputName:\"Company name\",placeholder:\"Company name\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1wnuzfn\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-16rl174\",inputName:\"Job title\",placeholder:\"Job title\",required:true,type:\"text\"})})]}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-19r4xeo\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-11mppun\",inputName:\"Company email\",placeholder:\"Company email\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-153rfv\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-m5t7zf\",defaultValue:KIbcOugSK,inputName:\"Blog form\",placeholder:\"Blog form\",required:true,type:\"text\"})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e248hg-container\",nodeId:\"kuadMDUZk\",scopeId:\"ORuPQL35F\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"kuadMDUZk\",layoutId:\"kuadMDUZk\",style:{height:\"100%\"},variant:\"tACSCcOya\",vi1KY5ubj:\"Get report\",width:\"100%\"})})})]})})]}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qgl1en\",\"data-framer-name\":\"Authors\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qc3ngc\",\"data-border\":true,\"data-framer-name\":\"Authors Collection\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Iin1TIeO0\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},orderBy:[{arguments:[{type:\"LiteralValue\",value:CgSJgjoNy},{collection:\"Iin1TIeO0\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"Iin1TIeO0\",name:\"jYxt6BJED\",type:\"Identifier\"},{collection:\"Iin1TIeO0\",name:\"YiJa1FAgd\",type:\"Identifier\"},{collection:\"Iin1TIeO0\",name:\"PTmE3i82E\",type:\"Identifier\"},{collection:\"Iin1TIeO0\",name:\"WpZfISlKI\",type:\"Identifier\"},{collection:\"Iin1TIeO0\",name:\"dUw_B9MOm\",type:\"Identifier\"},{collection:\"Iin1TIeO0\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Iin1TIeO0\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:CgSJgjoNy},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({dUw_B9MOm:dUw_B9MOmIin1TIeO0,id:idIin1TIeO0,jYxt6BJED:jYxt6BJEDIin1TIeO0,PTmE3i82E:PTmE3i82EIin1TIeO0,WpZfISlKI:WpZfISlKIIin1TIeO0,YiJa1FAgd:YiJa1FAgdIin1TIeO0},index)=>{YiJa1FAgdIin1TIeO0??=\"\";PTmE3i82EIin1TIeO0??=\"\";WpZfISlKIIin1TIeO0??=\"\";dUw_B9MOmIin1TIeO0??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Iin1TIeO0-${idIin1TIeO0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{dUw_B9MOm:dUw_B9MOmIin1TIeO0},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvq835\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15d2e8k\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xtvgh7\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hN7K0CRXW:{background:{alt:\"\",fit:\"fit\",sizes:\"116.8067px\",...toResponsiveImage(jYxt6BJEDIin1TIeO0),...{positionX:\"center\",positionY:\"center\"}}},ZBnQd6ExH:{background:{alt:\"\",fit:\"fit\",sizes:\"100px\",...toResponsiveImage(jYxt6BJEDIin1TIeO0),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"139px\",...toResponsiveImage(jYxt6BJEDIin1TIeO0),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1melhy8\",\"data-framer-name\":\"Headshot\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ys2cb\",\"data-framer-name\":\"Name and Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZBnQd6ExH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y1387w\",\"data-styles-preset\":\"mLKK5uTux\",style:{\"--framer-text-alignment\":\"center\"},children:\"Peter Schultz\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y1387w\",\"data-styles-preset\":\"mLKK5uTux\",children:\"Peter Schultz\"})}),className:\"framer-qw6pae\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],text:YiJa1FAgdIin1TIeO0,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZBnQd6ExH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-183hjxm\",\"data-styles-preset\":\"tUwkfbVlW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Senior Director, Business Development\u202F\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-183hjxm\",\"data-styles-preset\":\"tUwkfbVlW\",children:\"Senior Director, Business Development\u202F\"})}),className:\"framer-2nfv45\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:PTmE3i82EIin1TIeO0,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ecx9f9\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ed5bms\",\"data-framer-name\":\"Bio\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-o3z84x\",\"data-styles-preset\":\"sTlJ2m8Cs\",children:\"Peter Schultz is a seasoned marketing, business development, and product strategy executive with more than 30 years of experience building companies around disruptive technologies. He has proven track record for driving revenue by developing innovative products, leading digital transformations, and crafting campaigns for global brands. A hybrid business development and product leader, Peter excels at aligning products with customer needs through a consultative, solution-focused approach. His expertise spans product strategy, AI and machine learning, digital marketing, emerging media, customer engagement, and strategic partnerships with a commitment to driving business growth and fostering social responsibility.\"})}),className:\"framer-zldnx9\",\"data-framer-name\":\"Bio\",fonts:[\"Inter\"],text:WpZfISlKIIin1TIeO0,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tttm9j\",\"data-framer-name\":\"separator\",fill:'var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39)) /* {\"name\":\"#001427\"} */',intrinsicHeight:3,intrinsicWidth:1802,svg:'<svg width=\"1802\" height=\"3\" viewBox=\"-1 -1 1802 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"1800\" y2=\"0.5\" stroke=\"#707070\"/>\\n</svg>\\n',withExternalLayout:true})]})})},idIin1TIeO0);})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1as1flr\",\"data-framer-name\":\"footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qjzsop\",\"data-framer-name\":\"categories and social\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cha7dl\",\"data-framer-name\":\"categories\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2q1y24\",\"data-styles-preset\":\"xWXkYwB13\",children:\"Categories\"})}),className:\"framer-ovu036\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-198lsxr\",\"data-framer-name\":\"Categories Grid\",children:[iflzi9nSb&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11lsgg9\",\"data-framer-name\":\"Frame 111385\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z6l0r\",\"data-styles-preset\":\"JBn0SwZTY\",children:\"Enterprise AI\"})}),className:\"framer-1ry3d5r\",\"data-framer-name\":\"Supply chain\",fonts:[\"Inter\"],text:odOCNWInq,verticalAlignment:\"top\",withExternalLayout:true})}),fdRvcYqAQ&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-uv55fy\",\"data-framer-name\":\"Frame 111383\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z6l0r\",\"data-styles-preset\":\"JBn0SwZTY\",children:\"Foundational models\"})}),className:\"framer-2mumwu\",\"data-framer-name\":\"Supply chain\",fonts:[\"Inter\"],text:QtT2K_Gs6,verticalAlignment:\"top\",withExternalLayout:true})}),UQop2XxW3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1563gwo\",\"data-framer-name\":\"Frame 111384\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z6l0r\",\"data-styles-preset\":\"JBn0SwZTY\",children:\"GenAI\"})}),className:\"framer-14aw3w8\",\"data-framer-name\":\"Supply chain\",fonts:[\"Inter\"],text:igFiK0gsR,verticalAlignment:\"top\",withExternalLayout:true})}),P1oHPu2IJ&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4sgs6k\",\"data-framer-name\":\"Frame 111382\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z6l0r\",\"data-styles-preset\":\"JBn0SwZTY\",children:\"LLM\"})}),className:\"framer-1sg8wbi\",\"data-framer-name\":\"Supply chain\",fonts:[\"Inter\"],text:OQQmQFCxb,verticalAlignment:\"top\",withExternalLayout:true})}),TR8TGZhJe&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-175u6ca\",\"data-framer-name\":\"Frame 111386\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6z6l0r\",\"data-styles-preset\":\"JBn0SwZTY\",children:\"Content\"})}),className:\"framer-1yub0lp\",\"data-framer-name\":\"Supply chain\",fonts:[\"Inter\"],text:MBqP3S7UU,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sc1pak\",\"data-framer-name\":\"social\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2q1y24\",\"data-styles-preset\":\"xWXkYwB13\",children:\"Share\"})}),className:\"framer-1jolmk4\",\"data-framer-name\":\"Share\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1djy4j\",\"data-framer-name\":\"Social Icons\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wsepp6-container\",isAuthoredByUser:true,nodeId:\"W_Yc4HpXU\",scopeId:\"ORuPQL35F\",children:/*#__PURE__*/_jsx(ShareButton,{backgroundType:\"Solid\",borderColor:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",borderWidth:0,bottomLeftRadius:0,bottomPadding:16,bottomRightRadius:0,font:{color:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",fontFace:\"Inter\",size:16,weight:\"bold\"},height:\"100%\",iconProperties:{color:\"var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, rgb(239, 67, 179))\",gap:10,size:20},id:\"W_Yc4HpXU\",isMixedPadding:false,isMixedRadius:false,layoutId:\"W_Yc4HpXU\",leftPadding:16,linear:{degree:90,fromColor:\"rgb(46, 46, 46)\",opacityFrom:100,opacityTo:0,toColor:\"rgb(36, 36, 36)\"},radius:0,rightPadding:16,shareCurrentUrl:true,shareText:\"\",socialMedia:\"LinkedIn\",stylePadding:16,tint:\"rgba(255, 255, 255, 0)\",title:\"\",topLeftRadius:0,topPadding:16,topRightRadius:0,urlToShare:\"https://framer.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wa6hry-container\",isAuthoredByUser:true,nodeId:\"L_2Gz4CU1\",scopeId:\"ORuPQL35F\",children:/*#__PURE__*/_jsx(ShareButton,{backgroundType:\"Solid\",borderColor:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",borderWidth:0,bottomLeftRadius:0,bottomPadding:16,bottomRightRadius:0,font:{color:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",fontFace:\"Inter\",size:16,weight:\"bold\"},height:\"100%\",iconProperties:{color:\"var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, rgb(239, 67, 179))\",gap:10,size:20},id:\"L_2Gz4CU1\",isMixedPadding:false,isMixedRadius:false,layoutId:\"L_2Gz4CU1\",leftPadding:16,linear:{degree:90,fromColor:\"rgb(46, 46, 46)\",opacityFrom:100,opacityTo:0,toColor:\"rgb(36, 36, 36)\"},radius:0,rightPadding:16,shareCurrentUrl:true,shareText:\"\",socialMedia:\"Twitter\",stylePadding:16,tint:\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\",title:\"\",topLeftRadius:0,topPadding:16,topRightRadius:0,urlToShare:\"https://framer.com\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17xn88p\",\"data-framer-name\":\"separator\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-q13wpx\",\"data-framer-name\":\"separator\",fill:'var(--token-c3578308-1e6f-4dbb-8507-7ea2e53361be, rgb(0, 20, 39)) /* {\"name\":\"#001427\"} */',intrinsicHeight:3,intrinsicWidth:1802,svg:'<svg width=\"1802\" height=\"3\" viewBox=\"-1 -1 1802 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"1800\" y2=\"0.5\" stroke=\"#707070\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:dICCW43S5,implicitPathVariables:undefined},{href:dICCW43S5,implicitPathVariables:undefined},{href:dICCW43S5,implicitPathVariables:undefined},{href:dICCW43S5,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:805,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-o2pmgc-container\",isModuleExternal:true,nodeId:\"YykZyyzW7\",scopeId:\"ORuPQL35F\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hN7K0CRXW:{variant:\"ciEDkkCVX\",XPDVyUo_i:resolvedLinks1[2]},vELroyhM9:{variant:\"ciEDkkCVX\",XPDVyUo_i:resolvedLinks1[1]},ZBnQd6ExH:{variant:\"FhPB2SsJN\",XPDVyUo_i:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Footer,{ecApQKZ2T:yxs7HqjNE,height:\"100%\",id:\"YykZyyzW7\",layoutId:\"YykZyyzW7\",mJpnZNp5n:eO8BS_s3I,q7nSy8RdZ:Jww_0TFZs,style:{width:\"100%\"},UcqHmEwUG:false,variant:\"zfFhNGFoG\",width:\"100%\",XPDVyUo_i:resolvedLinks1[0]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w2lnQ.framer-fq31hz, .framer-w2lnQ .framer-fq31hz { display: block; }\",\".framer-w2lnQ.framer-t8p5ne { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1600px; }\",\".framer-w2lnQ .framer-lwflsb-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-w2lnQ .framer-cth77d { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-4g9k0x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1200px; padding: 60px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-w2lnQ .framer-16fmqsf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-uc74w7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-w2lnQ .framer-11vr6mg, .framer-w2lnQ .framer-157crc2, .framer-w2lnQ .framer-1au32ao, .framer-w2lnQ .framer-tbg213, .framer-w2lnQ .framer-71s2u6, .framer-w2lnQ .framer-k0wnah, .framer-w2lnQ .framer-1c0u53, .framer-w2lnQ .framer-1gynvyt, .framer-w2lnQ .framer-b6jrnq, .framer-w2lnQ .framer-1ry3d5r, .framer-w2lnQ .framer-2mumwu, .framer-w2lnQ .framer-14aw3w8, .framer-w2lnQ .framer-1sg8wbi, .framer-w2lnQ .framer-1yub0lp { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-w2lnQ .framer-fmhhve, .framer-w2lnQ .framer-gfl0pe, .framer-w2lnQ .framer-v7cqyz, .framer-w2lnQ .framer-1wl9etn, .framer-w2lnQ .framer-qw6pae, .framer-w2lnQ .framer-2nfv45 { --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-w2lnQ .framer-1oo5r0o, .framer-w2lnQ .framer-1xtvgh7, .framer-w2lnQ .framer-1qjzsop { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-jlhbuk, .framer-w2lnQ .framer-1cha7dl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-w2lnQ .framer-106ncet, .framer-w2lnQ .framer-198lsxr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-w2lnQ .framer-yk5ijv, .framer-w2lnQ .framer-1oqd6nw, .framer-w2lnQ .framer-1q1m1sw, .framer-w2lnQ .framer-1lknbq5, .framer-w2lnQ .framer-10jvg9e, .framer-w2lnQ .framer-11lsgg9, .framer-w2lnQ .framer-uv55fy, .framer-w2lnQ .framer-1563gwo, .framer-w2lnQ .framer-4sgs6k, .framer-w2lnQ .framer-175u6ca { align-content: center; align-items: center; background-color: #f1f4f9; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 20px 6px 20px; position: relative; width: min-content; }\",\".framer-w2lnQ .framer-1f99b7, .framer-w2lnQ .framer-1sc1pak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-w2lnQ .framer-1gyteap, .framer-w2lnQ .framer-1jolmk4 { --framer-paragraph-spacing: 0px; flex: none; height: 19px; position: relative; white-space: pre-wrap; width: 53px; word-break: break-word; word-wrap: break-word; }\",\".framer-w2lnQ .framer-dwrzxa, .framer-w2lnQ .framer-1djy4j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-w2lnQ .framer-lwscbw-container, .framer-w2lnQ .framer-qcvfph-container, .framer-w2lnQ .framer-s8iz0w-container, .framer-w2lnQ .framer-8moxe7-container, .framer-w2lnQ .framer-wsepp6-container, .framer-w2lnQ .framer-1wa6hry-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-w2lnQ .framer-1yhqweg, .framer-w2lnQ .framer-17xn88p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-w2lnQ .framer-a5joab, .framer-w2lnQ .framer-1tttm9j, .framer-w2lnQ .framer-q13wpx { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-sdfhdu { flex: none; gap: 10px; height: 600px; overflow: hidden; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-gic7km { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-1glon6u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 888px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-w2lnQ .framer-1aufhf, .framer-w2lnQ .framer-wk3w2e { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w2lnQ .framer-4u11av { --border-bottom-width: 8px; --border-color: rgba(112, 112, 112, 0.25); --border-left-width: 8px; --border-right-width: 8px; --border-style: solid; --border-top-width: 8px; align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 60px 40px 60px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-332n4r { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.65; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-w2lnQ .framer-1we823u { aspect-ratio: 5.597014925373134 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); position: relative; width: 375px; }\",\".framer-w2lnQ .framer-18my5on { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-160sn1r-container { flex: none; height: 600px; position: relative; width: 135%; }\",\".framer-w2lnQ .framer-txha9t, .framer-w2lnQ .framer-yt22hv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-vb7hh1-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-w2lnQ .framer-jdyp8i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 888px; overflow: hidden; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-1dwmirt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 888px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-xygx6u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-1j6d50k, .framer-w2lnQ .framer-81kg9o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-113tg42, .framer-w2lnQ .framer-1rdjvek, .framer-w2lnQ .framer-1wnuzfn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: flex-start; max-width: 650px; min-width: 300px; padding: 0px; position: relative; width: 1px; }\",'.framer-w2lnQ .framer-1mneu9w { --framer-input-border-bottom-width: 1px; --framer-input-border-color: #001427; --framer-input-border-left-width: 1px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #ef43b3; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-focused-transition: all 0.3s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-font-color: #001427; --framer-input-font-family: \"Roboto\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.3em; --framer-input-font-size: 18px; --framer-input-font-text-alignment: left; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: var(--token-96d16f9e-9cd4-4590-83a8-b64a7a2ed184, #707070); flex: none; height: 64px; position: relative; width: 100%; }','.framer-w2lnQ .framer-g9f4ea, .framer-w2lnQ .framer-449t8s, .framer-w2lnQ .framer-16rl174, .framer-w2lnQ .framer-11mppun, .framer-w2lnQ .framer-m5t7zf { --framer-input-border-bottom-width: 1px; --framer-input-border-color: #001427; --framer-input-border-left-width: 1px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #ef43b3; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #001427; --framer-input-font-family: \"Roboto\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.3em; --framer-input-font-size: 18px; --framer-input-font-text-alignment: left; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: var(--token-96d16f9e-9cd4-4590-83a8-b64a7a2ed184, #707070); flex: none; height: 64px; position: relative; width: 100%; }',\".framer-w2lnQ .framer-1x4erkp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 10px; height: 64px; justify-content: flex-start; max-width: 650px; min-width: 300px; padding: 0px; position: relative; width: 1px; }\",\".framer-w2lnQ .framer-19r4xeo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-153rfv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-w2lnQ .framer-1e248hg-container { flex: none; height: 40px; position: relative; width: auto; z-index: 1; }\",\".framer-w2lnQ .framer-1qgl1en { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 888px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-1qc3ngc { --border-bottom-width: 3px; --border-color: var(--token-960a0b6d-02ea-4ddd-90ea-93bb9b7f69c9, #cd128a); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: var(--token-82fa75d7-00f2-4357-8265-5f9b25a4d948, #121212); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-w2lnQ .framer-pvq835 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 888px; padding: 0px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-15d2e8k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-1melhy8 { aspect-ratio: 1.1680672268907564 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 119px); position: relative; width: 139px; }\",\".framer-w2lnQ .framer-7ys2cb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-w2lnQ .framer-ecx9f9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-ed5bms { 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: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-zldnx9 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-w2lnQ .framer-1as1flr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-w2lnQ .framer-ovu036 { --framer-paragraph-spacing: 0px; flex: none; height: 21px; position: relative; white-space: pre-wrap; width: 116px; word-break: break-word; word-wrap: break-word; }\",\".framer-w2lnQ .framer-o2pmgc-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,...sharedStyle17.css,...sharedStyle18.css,...sharedStyle19.css,'.framer-w2lnQ[data-border=\"true\"]::after, .framer-w2lnQ [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: 1000px) and (max-width: 1599px) { .framer-w2lnQ.framer-t8p5ne { width: 1000px; } .framer-w2lnQ .framer-4g9k0x { padding: 20px 40px 0px 40px; } .framer-w2lnQ .framer-sdfhdu { height: 440px; } .framer-w2lnQ .framer-4u11av { justify-content: flex-start; } .framer-w2lnQ .framer-1mneu9w, .framer-w2lnQ .framer-g9f4ea, .framer-w2lnQ .framer-449t8s, .framer-w2lnQ .framer-16rl174, .framer-w2lnQ .framer-11mppun { --framer-input-font-size: 16px; }}\",\"@media (min-width: 600px) and (max-width: 999px) { .framer-w2lnQ.framer-t8p5ne { width: 600px; } .framer-w2lnQ .framer-4g9k0x { gap: 40px; padding: 20px 20px 0px 20px; } .framer-w2lnQ .framer-16fmqsf { gap: 20px; } .framer-w2lnQ .framer-1oo5r0o, .framer-w2lnQ .framer-1qjzsop { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 30px 0px 30px 0px; } .framer-w2lnQ .framer-jlhbuk, .framer-w2lnQ .framer-1cha7dl { flex: none; width: 100%; } .framer-w2lnQ .framer-1f99b7, .framer-w2lnQ .framer-1sc1pak { justify-content: flex-start; } .framer-w2lnQ .framer-sdfhdu { height: 300px; } .framer-w2lnQ .framer-1we823u { height: var(--framer-aspect-ratio-supported, 50px); width: 280px; } .framer-w2lnQ .framer-18my5on { height: 500px; } .framer-w2lnQ .framer-1mneu9w, .framer-w2lnQ .framer-g9f4ea, .framer-w2lnQ .framer-449t8s, .framer-w2lnQ .framer-16rl174, .framer-w2lnQ .framer-11mppun { --framer-input-font-size: 14px; height: 60px; } .framer-w2lnQ .framer-pvq835 { padding: 0px 38px 0px 38px; } .framer-w2lnQ .framer-15d2e8k { padding: 38px 0px 38px 0px; } .framer-w2lnQ .framer-1melhy8 { height: var(--framer-aspect-ratio-supported, 100px); order: 0; width: 117px; } .framer-w2lnQ .framer-7ys2cb { order: 1; } .framer-w2lnQ .framer-1as1flr { padding: 0px 0px 80px 0px; } .framer-w2lnQ .framer-17xn88p { padding: 0px 30px 0px 30px; }}\",\"@media (max-width: 599px) { .framer-w2lnQ.framer-t8p5ne { width: 390px; } .framer-w2lnQ .framer-4g9k0x { gap: 40px; padding: 20px 20px 0px 20px; } .framer-w2lnQ .framer-16fmqsf { gap: 20px; } .framer-w2lnQ .framer-1oo5r0o, .framer-w2lnQ .framer-1qjzsop { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 20px 0px 10px 0px; } .framer-w2lnQ .framer-jlhbuk, .framer-w2lnQ .framer-7ys2cb, .framer-w2lnQ .framer-1cha7dl { flex: none; width: 100%; } .framer-w2lnQ .framer-sdfhdu { height: 240px; } .framer-w2lnQ .framer-1we823u { height: var(--framer-aspect-ratio-supported, 40px); width: 224px; } .framer-w2lnQ .framer-18my5on { height: 300px; } .framer-w2lnQ .framer-yt22hv { justify-content: flex-start; overflow: auto; width: 80%; } .framer-w2lnQ .framer-vb7hh1-container { flex: none; width: auto; } .framer-w2lnQ .framer-jdyp8i { padding: 20px; } .framer-w2lnQ .framer-1mneu9w, .framer-w2lnQ .framer-g9f4ea, .framer-w2lnQ .framer-449t8s, .framer-w2lnQ .framer-16rl174, .framer-w2lnQ .framer-11mppun { --framer-input-font-size: 14px; height: 60px; } .framer-w2lnQ .framer-pvq835 { padding: 0px 28px 0px 28px; } .framer-w2lnQ .framer-15d2e8k { padding: 28px 0px 28px 0px; } .framer-w2lnQ .framer-1xtvgh7 { flex-direction: column; } .framer-w2lnQ .framer-1melhy8 { height: var(--framer-aspect-ratio-supported, 85px); width: 100px; } .framer-w2lnQ .framer-1as1flr { padding: 0px 0px 80px 0px; } .framer-w2lnQ .framer-17xn88p { padding: 0px 20px 0px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6190\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vELroyhM9\":{\"layout\":[\"fixed\",\"auto\"]},\"hN7K0CRXW\":{\"layout\":[\"fixed\",\"auto\"]},\"ZBnQd6ExH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerORuPQL35F=withCSS(Component,css,\"framer-w2lnQ\");export default FramerORuPQL35F;FramerORuPQL35F.displayName=\"Page\";FramerORuPQL35F.defaultProps={height:6190,width:1600};addFonts(FramerORuPQL35F,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLDz8V15vFP-KUEg.woff2\",weight:\"300\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v48/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v48/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammWggvWl0Qn.woff2\",weight:\"700\"}]},...NavigationWithPromoFonts,...ShareButtonFonts,...ArrowCtaHoverFonts,...VideoFonts,...MarkdownTableFonts,...Button2Fonts,...FooterFonts,...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),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...getFontsFromSharedStyle(sharedStyle17.fonts),...getFontsFromSharedStyle(sharedStyle18.fonts),...getFontsFromSharedStyle(sharedStyle19.fonts),...componentPresets.fonts?.[\"SzjQftZ8X\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"SzjQftZ8X\"]):[],...componentPresets.fonts?.[\"p_UlWjxBk\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"p_UlWjxBk\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerORuPQL35F\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vELroyhM9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hN7K0CRXW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZBnQd6ExH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1600\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"6190\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MarkdownTable", "props", "ReactMarkdown", "setReactMarkdown", "remarkGfm", "setRemarkGfm", "ue", "module", "markdown", "width", "height", "headerText", "cellText", "firstColumnText", "headerBackgroundColor", "firstColumnBackgroundColor", "cellBackgroundColor", "innerBorder", "outerBorder", "cornerRadius", "containerStyle", "tableWrapperStyle", "tableStyle", "cellBaseStyle", "createCellStyle", "isHeader", "isFirstColumn", "isLastColumn", "rowIndex", "colIndex", "_textStyle_font_style", "_textStyle_font", "textStyle", "MarkdownComponents", "children", "p", "index", "j", "child", "cellIndex", "q", "text", "i", "array", "u", "x", "addPropertyControls", "ControlType", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "title2", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vi1KY5ubj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "RichText", "SVG", "css", "FramerpnpCH124p", "withCSS", "pnpCH124p_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "NavigationWithPromoFonts", "getFonts", "e2OqWRN2a_default", "ShareButtonFonts", "ShareButton", "RichTextWithFullWidthFramerImage1aufhf", "withCodeBoundaryForOverrides", "RichText", "withFullWidthFramerImage", "ArrowCtaHoverFonts", "LW3cUDjKy_default", "VideoFonts", "Video", "MarkdownTableFonts", "MarkdownTable", "RichTextWithFullWidthFramerImagewk3w2e", "Button2Fonts", "pnpCH124p_default", "FooterFonts", "QtdgcA1EY_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "isSet", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "RB8RO_5Kf_default", "q5caK9ueT_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "KIbcOugSK", "iflzi9nSb", "odOCNWInq", "fdRvcYqAQ", "QtT2K_Gs6", "UQop2XxW3", "igFiK0gsR", "P1oHPu2IJ", "OQQmQFCxb", "TR8TGZhJe", "MBqP3S7UU", "cBs02DL5o", "m6R9g8UpO", "odXmSsfXy", "uwNxTsfmJ", "ORp3EcTQ0", "DqYwxSVA7", "ZptuaMJPK", "bCFZiJQjW", "GiK674Aqj", "CE7f_oe15", "Ww96qvAt5", "bU_ylxVTX", "CgSJgjoNy", "jYxt6BJEDIin1TIeO0", "YiJa1FAgdIin1TIeO0", "PTmE3i82EIin1TIeO0", "WpZfISlKIIin1TIeO0", "dUw_B9MOmIin1TIeO0", "idIin1TIeO0", "yxs7HqjNE", "eO8BS_s3I", "Jww_0TFZs", "dICCW43S5", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "visible", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "Link", "SVG", "Image2", "ComponentPresetsProvider", "ResolveLinks", "resolvedLinks", "FormContainer", "formState", "l", "FormPlainTextInput2", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "index", "PathVariablesContext", "resolvedLinks1", "css", "FramerORuPQL35F", "withCSS", "ORuPQL35F_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
