{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js", "ssg:https://framerusercontent.com/modules/j9RJaunh4OYZ5ThGzfCN/uaQxRYEpc3Y9AnaxfzAg/IDCJc1Ytb.js", "ssg:https://framerusercontent.com/modules/z3qcAv1t228nxWEi2CB7/learooCXmK8T4w6tTcDz/SStgQbYgI.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js", "ssg:https://framerusercontent.com/modules/slSCziMb4r7tYMI6DHlO/DEjRb9Jw4Po9Lkf1jXlY/eGGC8IYk0.js", "ssg:https://framerusercontent.com/modules/qnGUjiHTYdnMtXnt9MUJ/Vc18hzl08EqCC2LZ8k6C/wX791DHMJ.js", "ssg:https://framerusercontent.com/modules/tjeRJ7XW94FbGwEqlT0T/YFpSVosPiMaVpHUYaSEm/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const Phosphor1Controls=getPropertyControls(Phosphor1);const enabledGestures={yD8xsERpQ:{hover:true}};const cycleOrder=[\"yD8xsERpQ\",\"W59ApwHFk\"];const serializationHash=\"framer-MWV7E\";const variantClassNames={W59ApwHFk:\"framer-v-1u3n203\",yD8xsERpQ:\"framer-v-s13tog\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};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={\"main cta\":\"yD8xsERpQ\",\"secondary cta\":\"W59ApwHFk\"};const getProps=({background,border,fontSize,height,id,link,newTab,padding,phospherIcon,radius,textColor,title,width,...props})=>{return{...props,CbqVKrfIw:radius??props.CbqVKrfIw??\"14px\",cRoeZpcrs:title??props.cRoeZpcrs??\"Check Case Studies \",FsefAOOPs:textColor??props.FsefAOOPs??\"rgb(255, 255, 255)\",Ftmhs83NY:background??props.Ftmhs83NY??\"rgb(43, 37, 53)\",GrpQ8zFBL:link??props.GrpQ8zFBL,oXzUBvlXy:fontSize??props.oXzUBvlXy??20,pnSbqlsuz:padding??props.pnSbqlsuz??\"15px 24px 15px 24px\",RCPR2dydG:phospherIcon??props.RCPR2dydG??\"Crown\",SM93ZbT4W:newTab??props.SM93ZbT4W,variant:humanReadableVariantMap[props.variant]??props.variant??\"yD8xsERpQ\",Y0hFOu99i:border??props.Y0hFOu99i??{borderColor:\"rgb(74, 75, 84)\",borderStyle:\"solid\",borderWidth:1}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,cRoeZpcrs,GrpQ8zFBL,FsefAOOPs,RCPR2dydG,SM93ZbT4W,pnSbqlsuz,oXzUBvlXy,CbqVKrfIw,Ftmhs83NY,Y0hFOu99i,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yD8xsERpQ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"W59ApwHFk\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:GrpQ8zFBL,nodeId:\"yD8xsERpQ\",openInNewTab:SM93ZbT4W,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-s13tog\",className,classNames)} framer-obto6v`,\"data-border\":true,\"data-framer-name\":\"main cta\",layoutDependency:layoutDependency,layoutId:\"yD8xsERpQ\",ref:ref??ref1,style:{\"--1tagr76\":numberToPixelString(pnSbqlsuz),\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-330dd38f-b9f3-4029-8b3f-ea4ad498014a, rgba(29, 31, 19, 0.05))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(125deg, rgb(255, 255, 255) -123%, var(--token-3e2537c3-eabd-4676-8d1c-673071703fb4, rgb(0, 0, 0)) /* {\"name\":\"button\"} */ 74%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9,boxShadow:\"none\",...style},variants:{\"yD8xsERpQ-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"inset 0px 0px 0px 1px rgba(0,0,0,0.25)\"},W59ApwHFk:{\"--border-bottom-width\":(Y0hFOu99i.borderBottomWidth??Y0hFOu99i.borderWidth)+\"px\",\"--border-color\":Y0hFOu99i.borderColor,\"--border-left-width\":(Y0hFOu99i.borderLeftWidth??Y0hFOu99i.borderWidth)+\"px\",\"--border-right-width\":(Y0hFOu99i.borderRightWidth??Y0hFOu99i.borderWidth)+\"px\",\"--border-style\":Y0hFOu99i.borderStyle,\"--border-top-width\":(Y0hFOu99i.borderTopWidth??Y0hFOu99i.borderWidth)+\"px\",background:`linear-gradient(125deg, ${Ftmhs83NY} 0%, ${Ftmhs83NY} 100%)`,backgroundColor:Ftmhs83NY,borderBottomLeftRadius:radiusForCorner(CbqVKrfIw,3),borderBottomRightRadius:radiusForCorner(CbqVKrfIw,2),borderTopLeftRadius:radiusForCorner(CbqVKrfIw,0),borderTopRightRadius:radiusForCorner(CbqVKrfIw,1)}},...addPropertyOverrides({\"yD8xsERpQ-hover\":{\"data-framer-name\":undefined},W59ApwHFk:{\"data-framer-name\":\"secondary cta\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v6d429\",\"data-framer-name\":\"icon & text\",layoutDependency:layoutDependency,layoutId:\"REIUnhsIl\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18p7xh5-container\",layoutDependency:layoutDependency,layoutId:\"xHRyHwgQl-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:FsefAOOPs,height:\"100%\",iconSearch:\"House\",iconSelection:RCPR2dydG,id:\"xHRyHwgQl\",layoutId:\"xHRyHwgQl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-FsefAOOPs-IDCJc1Ytb))\"},children:\"Check Case Studies \"})}),className:\"framer-1cn10vj\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"SeVoLNuzE\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-FsefAOOPs-IDCJc1Ytb)\",\"--variable-reference-FsefAOOPs-IDCJc1Ytb\":FsefAOOPs,\"--variable-reference-oXzUBvlXy-IDCJc1Ytb\":oXzUBvlXy},text:cRoeZpcrs,variants:{W59ApwHFk:{\"--variable-reference-oXzUBvlXy-IDCJc1Ytb\":oXzUBvlXy}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({W59ApwHFk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-oXzUBvlXy-IDCJc1Ytb) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-FsefAOOPs-IDCJc1Ytb))\"},children:\"Check Case Studies \"})}),fonts:[\"GF;Mulish-700\"]}},baseVariant,gestureVariant)})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MWV7E.framer-obto6v, .framer-MWV7E .framer-obto6v { display: block; }\",\".framer-MWV7E.framer-s13tog { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-MWV7E .framer-v6d429 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MWV7E .framer-18p7xh5-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-MWV7E .framer-1cn10vj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MWV7E.framer-s13tog, .framer-MWV7E .framer-v6d429 { gap: 0px; } .framer-MWV7E.framer-s13tog > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-MWV7E.framer-s13tog > :first-child, .framer-MWV7E .framer-v6d429 > :first-child { margin-left: 0px; } .framer-MWV7E.framer-s13tog > :last-child, .framer-MWV7E .framer-v6d429 > :last-child { margin-right: 0px; } .framer-MWV7E .framer-v6d429 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-MWV7E.framer-v-1u3n203.framer-s13tog { cursor: unset; padding: var(--1tagr76); }\",\".framer-MWV7E.framer-v-s13tog.hover.framer-s13tog { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MWV7E.framer-v-s13tog.hover.framer-s13tog { gap: 0px; } .framer-MWV7E.framer-v-s13tog.hover.framer-s13tog > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MWV7E.framer-v-s13tog.hover.framer-s13tog > :first-child { margin-left: 0px; } .framer-MWV7E.framer-v-s13tog.hover.framer-s13tog > :last-child { margin-right: 0px; } }\",'.framer-MWV7E[data-border=\"true\"]::after, .framer-MWV7E [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 52\n * @framerIntrinsicWidth 239\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"W59ApwHFk\":{\"layout\":[\"auto\",\"auto\"]},\"fED_s0saY\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"cRoeZpcrs\":\"title\",\"GrpQ8zFBL\":\"link\",\"FsefAOOPs\":\"textColor\",\"RCPR2dydG\":\"phospherIcon\",\"SM93ZbT4W\":\"newTab\",\"pnSbqlsuz\":\"padding\",\"oXzUBvlXy\":\"fontSize\",\"CbqVKrfIw\":\"radius\",\"Ftmhs83NY\":\"background\",\"Y0hFOu99i\":\"border\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIDCJc1Ytb=withCSS(Component,css,\"framer-MWV7E\");export default FramerIDCJc1Ytb;FramerIDCJc1Ytb.displayName=\"Buttons / Button 2\";FramerIDCJc1Ytb.defaultProps={height:52,width:239};addPropertyControls(FramerIDCJc1Ytb,{variant:{options:[\"yD8xsERpQ\",\"W59ApwHFk\"],optionTitles:[\"main cta\",\"secondary cta\"],title:\"Variant\",type:ControlType.Enum},cRoeZpcrs:{defaultValue:\"Check Case Studies \",displayTextArea:false,title:\"Title\",type:ControlType.String},GrpQ8zFBL:{title:\"Link\",type:ControlType.Link},FsefAOOPs:{defaultValue:\"rgb(255, 255, 255)\",title:\"text color\",type:ControlType.Color},RCPR2dydG:Phosphor1Controls?.[\"iconSelection\"]&&{...Phosphor1Controls[\"iconSelection\"],defaultValue:\"Crown\",description:undefined,hidden:undefined,title:\"phospher icon\"},SM93ZbT4W:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},pnSbqlsuz:{defaultValue:\"15px 24px 15px 24px\",title:\"Padding\",type:ControlType.Padding},oXzUBvlXy:{defaultValue:20,title:\"Font Size\",type:ControlType.Number},CbqVKrfIw:{defaultValue:\"14px\",title:\"Radius\",type:ControlType.BorderRadius},Ftmhs83NY:{defaultValue:\"rgb(43, 37, 53)\",title:\"Background\",type:ControlType.Color},Y0hFOu99i:{defaultValue:{borderColor:\"rgb(74, 75, 84)\",borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border}});addFonts(FramerIDCJc1Ytb,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaWlGrw-PTY.woff2\",weight:\"700\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIDCJc1Ytb\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"cRoeZpcrs\\\":\\\"title\\\",\\\"GrpQ8zFBL\\\":\\\"link\\\",\\\"FsefAOOPs\\\":\\\"textColor\\\",\\\"RCPR2dydG\\\":\\\"phospherIcon\\\",\\\"SM93ZbT4W\\\":\\\"newTab\\\",\\\"pnSbqlsuz\\\":\\\"padding\\\",\\\"oXzUBvlXy\\\":\\\"fontSize\\\",\\\"CbqVKrfIw\\\":\\\"radius\\\",\\\"Ftmhs83NY\\\":\\\"background\\\",\\\"Y0hFOu99i\\\":\\\"border\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"239\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"W59ApwHFk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fED_s0saY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"52\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IDCJc1Ytb.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withwithAppendUTMOnClick}from\"https://framerusercontent.com/modules/khAmBqcXg5piMk3qu15A/klKQKSpBcvVGFVvxFj1j/PreserveUTMParameters.js\";const MotionAWithwithAppendUTMOnClickr96luf=withCodeBoundaryForOverrides(motion.a,{nodeId:\"pKy1SQOPl\",override:withwithAppendUTMOnClick,scopeId:\"SStgQbYgI\"});const cycleOrder=[\"EzF33cWIh\",\"ck5ipbFAn\",\"uTJrfv685\",\"WUj21ZBJ3\",\"V6oPFXeSa\",\"UWLfpasWP\"];const serializationHash=\"framer-UmjnK\";const variantClassNames={ck5ipbFAn:\"framer-v-1nnem9u\",EzF33cWIh:\"framer-v-1tavmw2\",uTJrfv685:\"framer-v-136lqih\",UWLfpasWP:\"framer-v-189u672\",V6oPFXeSa:\"framer-v-1ir37q5\",WUj21ZBJ3:\"framer-v-g2uy0p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const 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={\"Variant 1\":\"EzF33cWIh\",\"Variant 2\":\"ck5ipbFAn\",\"Variant 3\":\"uTJrfv685\",\"Variant 5\":\"WUj21ZBJ3\",\"Variant 7\":\"V6oPFXeSa\",\"Variant 8\":\"UWLfpasWP\"};const getProps=({background,background2,border,color,color2,color3,height,id,image,text,title,width,...props})=>{return{...props,GOKbNSLB3:title??props.GOKbNSLB3??\"ANALYSE\",PvFCHLJ2L:text??props.PvFCHLJ2L??\"Lorem ipsum dolor sit amet consectetur. Ut tempor interdum lorem arcu nibh. Adipiscing lobortis in sagittis massa nunc habitasse.\",SH26uqw46:background??props.SH26uqw46??\"rgb(108, 43, 160)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"EzF33cWIh\",voR6WU_0f:color??props.voR6WU_0f??\"rgb(255, 255, 255)\",WNXF2KHYl:border??props.WNXF2KHYl??{borderColor:\"black\",borderStyle:\"solid\",borderWidth:1},xnB7MF0CK:color2??props.xnB7MF0CK??\"var(--token-89961450-d03b-40c8-92ee-94aff41682bd, rgb(249, 244, 244))\",XPMJb2T7e:color3??props.XPMJb2T7e??\"rgb(41, 41, 41)\",ylPJhbgKV:background2??props.ylPJhbgKV??\"rgb(46, 0, 86)\",z_p1aWZ_4:image??props.z_p1aWZ_4};};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,GOKbNSLB3,PvFCHLJ2L,z_p1aWZ_4,SH26uqw46,ylPJhbgKV,voR6WU_0f,xnB7MF0CK,WNXF2KHYl,XPMJb2T7e,bWBOxWnGBDylMXiqkZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EzF33cWIh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"uTJrfv685\",\"WUj21ZBJ3\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"WUj21ZBJ3\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"WUj21ZBJ3\")return true;return false;};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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1tavmw2\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"EzF33cWIh\",ref:refBinding,style:{backgroundColor:SH26uqw46,borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,...style},...addPropertyOverrides({ck5ipbFAn:{\"data-framer-name\":\"Variant 2\"},uTJrfv685:{\"data-framer-name\":\"Variant 3\"},UWLfpasWP:{\"data-framer-name\":\"Variant 8\"},V6oPFXeSa:{\"data-framer-name\":\"Variant 7\"},WUj21ZBJ3:{\"data-framer-name\":\"Variant 5\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bu5fet\",layoutDependency:layoutDependency,layoutId:\"nBIvjIs3W\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19uwbfq\",layoutDependency:layoutDependency,layoutId:\"jipJ80TkF\",style:{backgroundColor:ylPJhbgKV,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||442)-0-442)/2+0+0)+12+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 24px) * 0.58, 1px)`,...toResponsiveImage(z_p1aWZ_4),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-12i0fzk\",layoutDependency:layoutDependency,layoutId:\"fdPjB5W7a\",...addPropertyOverrides({ck5ipbFAn:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||403)-0-395)/2+0+0)+12+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 24px) / 2, 1px)`,...toResponsiveImage(z_p1aWZ_4),...{positionX:\"center\",positionY:\"center\"}}},UWLfpasWP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+12+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 24px, 1px)`,...toResponsiveImage(z_p1aWZ_4),...{positionX:\"center\",positionY:\"center\"}}},V6oPFXeSa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+12+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 24px, 1px)`,...toResponsiveImage(z_p1aWZ_4),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lwcwc7\",layoutDependency:layoutDependency,layoutId:\"h40vNrG6t\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"37px\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--variable-reference-voR6WU_0f-SStgQbYgI))\"},children:\"ANALYSE\"})}),className:\"framer-1fw0y3h\",\"data-framer-name\":\"ANALYSE\",fonts:[\"GF;Mulish-700\"],layoutDependency:layoutDependency,layoutId:\"IZAtWsGg1\",style:{\"--extracted-tcooor\":\"var(--variable-reference-voR6WU_0f-SStgQbYgI)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-voR6WU_0f-SStgQbYgI\":voR6WU_0f},text:GOKbNSLB3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTYwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-xnB7MF0CK-SStgQbYgI))\"},children:\"Lorem ipsum dolor sit amet consectetur. Ut tempor interdum lorem arcu nibh. Adipiscing lobortis in sagittis massa nunc habitasse.\"})}),className:\"framer-1ydvo7z\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Ut tempor interdum lorem arcu nibh. Adipiscing lobortis in sagittis massa nunc habitasse.\",fonts:[\"GF;Mulish-600\"],layoutDependency:layoutDependency,layoutId:\"RBaI9htEp\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-xnB7MF0CK-SStgQbYgI)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-xnB7MF0CK-SStgQbYgI\":xnB7MF0CK},text:PvFCHLJ2L,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ada0mx\",layoutDependency:layoutDependency,layoutId:\"wpRcyVLuI\",children:/*#__PURE__*/_jsx(Link,{href:\"https://app.futureagi.com/auth/jwt/register\",motionChild:true,nodeId:\"pKy1SQOPl\",openInNewTab:true,scopeId:\"SStgQbYgI\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithwithAppendUTMOnClickr96luf,{className:\"framer-r96luf framer-15f3i6n\",\"data-border\":true,\"data-framer-name\":\"Primary-Button\",layoutDependency:layoutDependency,layoutId:\"pKy1SQOPl\",style:{\"--border-bottom-width\":(WNXF2KHYl.borderBottomWidth??WNXF2KHYl.borderWidth)+\"px\",\"--border-color\":WNXF2KHYl.borderColor,\"--border-left-width\":(WNXF2KHYl.borderLeftWidth??WNXF2KHYl.borderWidth)+\"px\",\"--border-right-width\":(WNXF2KHYl.borderRightWidth??WNXF2KHYl.borderWidth)+\"px\",\"--border-style\":WNXF2KHYl.borderStyle,\"--border-top-width\":(WNXF2KHYl.borderTopWidth??WNXF2KHYl.borderWidth)+\"px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"17px\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--variable-reference-XPMJb2T7e-SStgQbYgI))\"},children:\"Get Started\"})}),className:\"framer-15ob11l\",fonts:[\"GF;Mulish-700\"],layoutDependency:layoutDependency,layoutId:\"tITtcM0nQ\",style:{\"--extracted-tcooor\":\"var(--variable-reference-XPMJb2T7e-SStgQbYgI)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-XPMJb2T7e-SStgQbYgI\":XPMJb2T7e},verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(249, 244, 244))\",\"--framer-text-transform\":\"uppercase\"},children:\"Title\"})}),className:\"framer-1ert892\",\"data-framer-name\":\"Title\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"QqNxg4GTi\",style:{\"--extracted-1of0zx5\":\"rgb(249, 244, 244)\",\"--framer-paragraph-spacing\":\"0px\"},text:bWBOxWnGBDylMXiqkZ,variants:{WUj21ZBJ3:{\"--extracted-1lwpl3i\":\"rgb(249, 244, 244)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WUj21ZBJ3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(249, 244, 244))\",\"--framer-text-transform\":\"uppercase\"},children:\"ANALYSE\"})}),text:GOKbNSLB3}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UmjnK.framer-15f3i6n, .framer-UmjnK .framer-15f3i6n { display: block; }\",\".framer-UmjnK.framer-1tavmw2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 870px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UmjnK .framer-bu5fet { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: 100%; }\",\".framer-UmjnK .framer-19uwbfq { 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: visible; padding: 0px; position: relative; width: 58%; }\",\".framer-UmjnK .framer-12i0fzk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 418px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UmjnK .framer-lwcwc7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 35px 0px 0px; position: relative; width: 1px; }\",\".framer-UmjnK .framer-1fw0y3h, .framer-UmjnK .framer-1ydvo7z, .framer-UmjnK .framer-1ert892 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UmjnK .framer-ada0mx { 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: visible; padding: 10px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-UmjnK .framer-r96luf { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 9px 11px 9px 11px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-UmjnK .framer-15ob11l { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UmjnK.framer-1tavmw2, .framer-UmjnK .framer-bu5fet, .framer-UmjnK .framer-19uwbfq, .framer-UmjnK .framer-lwcwc7, .framer-UmjnK .framer-ada0mx, .framer-UmjnK .framer-r96luf { gap: 0px; } .framer-UmjnK.framer-1tavmw2 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-UmjnK.framer-1tavmw2 > :first-child, .framer-UmjnK .framer-lwcwc7 > :first-child { margin-top: 0px; } .framer-UmjnK.framer-1tavmw2 > :last-child, .framer-UmjnK .framer-lwcwc7 > :last-child { margin-bottom: 0px; } .framer-UmjnK .framer-bu5fet > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-UmjnK .framer-bu5fet > :first-child, .framer-UmjnK .framer-19uwbfq > :first-child, .framer-UmjnK .framer-ada0mx > :first-child, .framer-UmjnK .framer-r96luf > :first-child { margin-left: 0px; } .framer-UmjnK .framer-bu5fet > :last-child, .framer-UmjnK .framer-19uwbfq > :last-child, .framer-UmjnK .framer-ada0mx > :last-child, .framer-UmjnK .framer-r96luf > :last-child { margin-right: 0px; } .framer-UmjnK .framer-19uwbfq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UmjnK .framer-lwcwc7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UmjnK .framer-ada0mx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UmjnK .framer-r96luf > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-UmjnK.framer-v-1nnem9u.framer-1tavmw2 { height: 403px; }\",\".framer-UmjnK.framer-v-1nnem9u .framer-19uwbfq { width: 50%; }\",\".framer-UmjnK.framer-v-1nnem9u .framer-12i0fzk { height: 371px; }\",\".framer-UmjnK.framer-v-136lqih.framer-1tavmw2 { justify-content: flex-start; }\",\".framer-UmjnK.framer-v-136lqih .framer-19uwbfq, .framer-UmjnK.framer-v-g2uy0p .framer-19uwbfq { min-height: 363px; }\",\".framer-UmjnK.framer-v-136lqih .framer-lwcwc7 { gap: 40px; justify-content: flex-start; }\",\".framer-UmjnK.framer-v-136lqih .framer-1fw0y3h { order: 0; }\",\".framer-UmjnK.framer-v-136lqih .framer-1ydvo7z { order: 1; }\",\".framer-UmjnK.framer-v-136lqih .framer-ada0mx { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UmjnK.framer-v-136lqih .framer-lwcwc7 { gap: 0px; } .framer-UmjnK.framer-v-136lqih .framer-lwcwc7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-UmjnK.framer-v-136lqih .framer-lwcwc7 > :first-child { margin-top: 0px; } .framer-UmjnK.framer-v-136lqih .framer-lwcwc7 > :last-child { margin-bottom: 0px; } }\",\".framer-UmjnK.framer-v-g2uy0p.framer-1tavmw2 { height: 178px; padding: 6px; width: 242px; }\",\".framer-UmjnK.framer-v-1ir37q5.framer-1tavmw2 { justify-content: flex-start; width: 800px; }\",\".framer-UmjnK.framer-v-1ir37q5 .framer-bu5fet { flex-direction: column; }\",\".framer-UmjnK.framer-v-1ir37q5 .framer-19uwbfq, .framer-UmjnK.framer-v-189u672 .framer-19uwbfq { width: 100%; }\",\".framer-UmjnK.framer-v-1ir37q5 .framer-lwcwc7 { flex: none; padding: 0px 20px 20px 10px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UmjnK.framer-v-1ir37q5 .framer-bu5fet { gap: 0px; } .framer-UmjnK.framer-v-1ir37q5 .framer-bu5fet > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-UmjnK.framer-v-1ir37q5 .framer-bu5fet > :first-child { margin-top: 0px; } .framer-UmjnK.framer-v-1ir37q5 .framer-bu5fet > :last-child { margin-bottom: 0px; } }\",\".framer-UmjnK.framer-v-189u672.framer-1tavmw2 { justify-content: flex-start; width: 300px; }\",\".framer-UmjnK.framer-v-189u672 .framer-bu5fet { flex-direction: column; gap: 20px; justify-content: flex-start; }\",\".framer-UmjnK.framer-v-189u672 .framer-12i0fzk { height: 289px; }\",\".framer-UmjnK.framer-v-189u672 .framer-lwcwc7 { flex: none; padding: 0px 6px 10px 6px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UmjnK.framer-v-189u672 .framer-bu5fet { gap: 0px; } .framer-UmjnK.framer-v-189u672 .framer-bu5fet > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UmjnK.framer-v-189u672 .framer-bu5fet > :first-child { margin-top: 0px; } .framer-UmjnK.framer-v-189u672 .framer-bu5fet > :last-child { margin-bottom: 0px; } }\",'.framer-UmjnK[data-border=\"true\"]::after, .framer-UmjnK [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 442\n * @framerIntrinsicWidth 870\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ck5ipbFAn\":{\"layout\":[\"fixed\",\"fixed\"]},\"uTJrfv685\":{\"layout\":[\"fixed\",\"auto\"]},\"WUj21ZBJ3\":{\"layout\":[\"fixed\",\"fixed\"]},\"V6oPFXeSa\":{\"layout\":[\"fixed\",\"auto\"]},\"UWLfpasWP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"GOKbNSLB3\":\"title\",\"PvFCHLJ2L\":\"text\",\"z_p1aWZ_4\":\"image\",\"SH26uqw46\":\"background\",\"ylPJhbgKV\":\"background2\",\"voR6WU_0f\":\"color\",\"xnB7MF0CK\":\"color2\",\"WNXF2KHYl\":\"border\",\"XPMJb2T7e\":\"color3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSStgQbYgI=withCSS(Component,css,\"framer-UmjnK\");export default FramerSStgQbYgI;FramerSStgQbYgI.displayName=\"Card\";FramerSStgQbYgI.defaultProps={height:442,width:870};addPropertyControls(FramerSStgQbYgI,{variant:{options:[\"EzF33cWIh\",\"ck5ipbFAn\",\"uTJrfv685\",\"WUj21ZBJ3\",\"V6oPFXeSa\",\"UWLfpasWP\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 5\",\"Variant 7\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum},GOKbNSLB3:{defaultValue:\"ANALYSE\",displayTextArea:false,title:\"Title\",type:ControlType.String},PvFCHLJ2L:{defaultValue:\"Lorem ipsum dolor sit amet consectetur. Ut tempor interdum lorem arcu nibh. Adipiscing lobortis in sagittis massa nunc habitasse.\",displayTextArea:false,title:\"Text\",type:ControlType.String},z_p1aWZ_4:{title:\"Image\",type:ControlType.ResponsiveImage},SH26uqw46:{defaultValue:\"rgb(108, 43, 160)\",title:\"Background\",type:ControlType.Color},ylPJhbgKV:{defaultValue:\"rgb(46, 0, 86)\",title:\"Background 2\",type:ControlType.Color},voR6WU_0f:{defaultValue:\"rgb(255, 255, 255)\",title:\"Color\",type:ControlType.Color},xnB7MF0CK:{defaultValue:\"var(--token-89961450-d03b-40c8-92ee-94aff41682bd, rgb(249, 244, 244))\",title:\"Color 2\",type:ControlType.Color},WNXF2KHYl:{defaultValue:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border},XPMJb2T7e:{defaultValue:\"rgb(41, 41, 41)\",title:\"Color 3\",type:ControlType.Color}});addFonts(FramerSStgQbYgI,[{explicitInter:true,fonts:[{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaWlGrw-PTY.woff2\",weight:\"700\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaWlGrw-PTY.woff2\",weight:\"600\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4S-EiAou6Y.woff2\",weight:\"300\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSStgQbYgI\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ck5ipbFAn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uTJrfv685\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WUj21ZBJ3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"V6oPFXeSa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UWLfpasWP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"442\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"870\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"GOKbNSLB3\\\":\\\"title\\\",\\\"PvFCHLJ2L\\\":\\\"text\\\",\\\"z_p1aWZ_4\\\":\\\"image\\\",\\\"SH26uqw46\\\":\\\"background\\\",\\\"ylPJhbgKV\\\":\\\"background2\\\",\\\"voR6WU_0f\\\":\\\"color\\\",\\\"xnB7MF0CK\\\":\\\"color2\\\",\\\"WNXF2KHYl\\\":\\\"border\\\",\\\"XPMJb2T7e\\\":\\\"color3\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SStgQbYgI.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "// Generated by Framer (59b6ee7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"U7k1CIO3C\",\"lJmDgfcl7\"];const serializationHash=\"framer-9G8gl\";const variantClassNames={lJmDgfcl7:\"framer-v-1wqct8x\",U7k1CIO3C:\"framer-v-4kroff\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"U7k1CIO3C\",\"Variant 2\":\"lJmDgfcl7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"U7k1CIO3C\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"U7k1CIO3C\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapvylaf9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"lJmDgfcl7\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-4kroff\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"U7k1CIO3C\",onTap:onTapvylaf9,ref:ref??ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({lJmDgfcl7:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oul59s-container\",layoutDependency:layoutDependency,layoutId:\"eMrXhp_8j-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"CopyAll\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"eMrXhp_8j\",layoutId:\"eMrXhp_8j\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({lJmDgfcl7:{color:\"rgb(0, 255, 4)\",iconSelection:\"Check\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"17px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc833bc8-5889-4c5d-8b98-862b6e5a7d3d, rgb(27, 21, 43)))\"},children:\"Copy\"})}),className:\"framer-1gsrbgj\",\"data-framer-name\":\"Label\",fonts:[\"GF;Mulish-700\"],layoutDependency:layoutDependency,layoutId:\"xVQD2dSGt\",style:{\"--extracted-r6o4lv\":\"var(--token-cc833bc8-5889-4c5d-8b98-862b6e5a7d3d, rgb(27, 21, 43))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lJmDgfcl7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"17px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc833bc8-5889-4c5d-8b98-862b6e5a7d3d, rgb(27, 21, 43)))\"},children:\"Copied\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9G8gl.framer-1mgaaip, .framer-9G8gl .framer-1mgaaip { display: block; }\",\".framer-9G8gl.framer-4kroff { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; padding: 6px 16px 6px 16px; position: relative; width: min-content; }\",\".framer-9G8gl .framer-1oul59s-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-9G8gl .framer-1gsrbgj { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9G8gl.framer-4kroff { gap: 0px; } .framer-9G8gl.framer-4kroff > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-9G8gl.framer-4kroff > :first-child { margin-left: 0px; } .framer-9G8gl.framer-4kroff > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 29\n * @framerIntrinsicWidth 82\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"lJmDgfcl7\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereGGC8IYk0=withCSS(Component,css,\"framer-9G8gl\");export default FramereGGC8IYk0;FramereGGC8IYk0.displayName=\"copy_button\";FramereGGC8IYk0.defaultProps={height:29,width:82};addPropertyControls(FramereGGC8IYk0,{variant:{options:[\"U7k1CIO3C\",\"lJmDgfcl7\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereGGC8IYk0,[{explicitInter:true,fonts:[{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaWlGrw-PTY.woff2\",weight:\"700\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereGGC8IYk0\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lJmDgfcl7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"29\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"82\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eGGC8IYk0.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";import CodeBlock from\"https://framerusercontent.com/modules/pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js\";import Copy_button from\"https://framerusercontent.com/modules/slSCziMb4r7tYMI6DHlO/DEjRb9Jw4Po9Lkf1jXlY/eGGC8IYk0.js\";const CodeBlockFonts=getFonts(CodeBlock);const ClipboardFonts=getFonts(Clipboard);const Copy_buttonFonts=getFonts(Copy_button);const cycleOrder=[\"MLY4BV6LW\",\"S5p5EeBf8\",\"Lv8U9qyaR\",\"YkMaAGmbF\",\"UIY6BciBX\",\"HGSV2oe6X\",\"tzAtOP2h_\",\"S2QXPxzRQ\",\"sy6IOJb7c\",\"CSWuNTIuB\",\"xdS39TEid\",\"LBj0GQwXU\",\"IYCi5PmRF\"];const serializationHash=\"framer-l9me1\";const variantClassNames={CSWuNTIuB:\"framer-v-1f8pjw5\",HGSV2oe6X:\"framer-v-1cyxhy2\",IYCi5PmRF:\"framer-v-4zu2j0\",LBj0GQwXU:\"framer-v-qi0e49\",Lv8U9qyaR:\"framer-v-swb1g0\",MLY4BV6LW:\"framer-v-1ys44no\",S2QXPxzRQ:\"framer-v-15meypg\",S5p5EeBf8:\"framer-v-k6577w\",sy6IOJb7c:\"framer-v-8lqb71\",tzAtOP2h_:\"framer-v-waifd6\",UIY6BciBX:\"framer-v-v7m3kz\",xdS39TEid:\"framer-v-x23uk7\",YkMaAGmbF:\"framer-v-vhfguj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -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 humanReadableEnumMap={Hidden:\"hidden\",Scroll:\"auto\",Visible:\"visible\"};const humanReadableVariantMap={\"ANTHROP\\\\C\":\"S5p5EeBf8\",\"lite LLM\":\"xdS39TEid\",\"Mistral AI_\":\"tzAtOP2h_\",\"Vertex AI\":\"IYCi5PmRF\",Bedrock:\"HGSV2oe6X\",CrewAI:\"CSWuNTIuB\",Dspy:\"S2QXPxzRQ\",Groq:\"sy6IOJb7c\",Haystack:\"UIY6BciBX\",Instructor:\"LBj0GQwXU\",LangChain:\"YkMaAGmbF\",LlamaIndex:\"Lv8U9qyaR\",OpenAI:\"MLY4BV6LW\"};const getProps=({height,id,overflow,width,...props})=>{return{...props,emE111WLT:humanReadableEnumMap[overflow]??overflow??props.emE111WLT??\"auto\",variant:humanReadableVariantMap[props.variant]??props.variant??\"MLY4BV6LW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,emE111WLT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MLY4BV6LW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1487t2t=activeVariantCallback(async(...args)=>{setVariant(\"MLY4BV6LW\");});const onTap143uuyr=activeVariantCallback(async(...args)=>{setVariant(\"S5p5EeBf8\");});const onTap11kvus=activeVariantCallback(async(...args)=>{setVariant(\"Lv8U9qyaR\");});const onTap13icn34=activeVariantCallback(async(...args)=>{setVariant(\"YkMaAGmbF\");});const onTapy5fr20=activeVariantCallback(async(...args)=>{setVariant(\"UIY6BciBX\");});const onTap1g8q0z1=activeVariantCallback(async(...args)=>{setVariant(\"HGSV2oe6X\");});const onTap1m8jnql=activeVariantCallback(async(...args)=>{setVariant(\"tzAtOP2h_\");});const onTap1gnxje6=activeVariantCallback(async(...args)=>{setVariant(\"S2QXPxzRQ\");});const onTapt2p0wr=activeVariantCallback(async(...args)=>{setVariant(\"sy6IOJb7c\");});const onTapimgpq0=activeVariantCallback(async(...args)=>{setVariant(\"CSWuNTIuB\");});const onTape5t7qz=activeVariantCallback(async(...args)=>{setVariant(\"xdS39TEid\");});const onTapx22g28=activeVariantCallback(async(...args)=>{setVariant(\"LBj0GQwXU\");});const onTap1197pu5=activeVariantCallback(async(...args)=>{setVariant(\"IYCi5PmRF\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ys44no\",className,classNames),\"data-border\":true,\"data-framer-name\":\"OpenAI\",layoutDependency:layoutDependency,layoutId:\"MLY4BV6LW\",ref:ref??ref1,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",\"--ndo37g\":emE111WLT,backdropFilter:\"blur(20px)\",backgroundColor:\"rgba(246, 244, 250, 0.6)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"2px 2px 4px 0px rgba(109, 109, 156, 0.2), -2px -2px 4px 0px rgba(109, 109, 156, 0.2)\",WebkitBackdropFilter:\"blur(20px)\",...style},...addPropertyOverrides({CSWuNTIuB:{\"data-framer-name\":\"CrewAI\"},HGSV2oe6X:{\"data-framer-name\":\"Bedrock\"},IYCi5PmRF:{\"data-framer-name\":\"Vertex AI\"},LBj0GQwXU:{\"data-framer-name\":\"Instructor\"},Lv8U9qyaR:{\"data-framer-name\":\"LlamaIndex\"},S2QXPxzRQ:{\"data-framer-name\":\"Dspy\"},S5p5EeBf8:{\"data-framer-name\":\"ANTHROP\\\\C\"},sy6IOJb7c:{\"data-framer-name\":\"Groq\"},tzAtOP2h_:{\"data-framer-name\":\"Mistral AI_\"},UIY6BciBX:{\"data-framer-name\":\"Haystack\"},xdS39TEid:{\"data-framer-name\":\"lite LLM\"},YkMaAGmbF:{\"data-framer-name\":\"LangChain\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qs7gl5\",\"data-framer-name\":\"Code-preview\",layoutDependency:layoutDependency,layoutId:\"eOOQZP0Eu\",style:{\"--ndo37g\":emE111WLT,backgroundColor:\"rgba(246, 244, 250, 0.6)\",borderBottomLeftRadius:8,borderTopLeftRadius:12,borderTopRightRadius:14},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1issh8q\",\"data-framer-name\":\"Languages\",layoutDependency:layoutDependency,layoutId:\"cnBsuLkJ8\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderTopRightRadius:15},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yifvdz\",\"data-framer-name\":\"1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TI8EpCL6F\",onTap:onTap1487t2t,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(120, 87, 252)\",borderTopLeftRadius:12},variants:{CSWuNTIuB:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},HGSV2oe6X:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},IYCi5PmRF:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},LBj0GQwXU:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},Lv8U9qyaR:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderTopLeftRadius:0},S2QXPxzRQ:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},S5p5EeBf8:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},sy6IOJb7c:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},tzAtOP2h_:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},UIY6BciBX:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},xdS39TEid:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"},YkMaAGmbF:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({CSWuNTIuB:{\"data-border\":true},HGSV2oe6X:{\"data-border\":true},IYCi5PmRF:{\"data-border\":true},LBj0GQwXU:{\"data-border\":true},Lv8U9qyaR:{\"data-border\":true},S2QXPxzRQ:{\"data-border\":true},S5p5EeBf8:{\"data-border\":true},sy6IOJb7c:{\"data-border\":true},tzAtOP2h_:{\"data-border\":true},UIY6BciBX:{\"data-border\":true},xdS39TEid:{\"data-border\":true},YkMaAGmbF:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:31,pixelWidth:29,src:\"https://framerusercontent.com/images/oB9e6m2tBMYPwzwqxNoAjKX4.svg\"},className:\"framer-xystx9\",layoutDependency:layoutDependency,layoutId:\"zho_cxtb7\",...addPropertyOverrides({CSWuNTIuB:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}},HGSV2oe6X:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}},IYCi5PmRF:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}},LBj0GQwXU:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}},Lv8U9qyaR:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}},S2QXPxzRQ:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}},S5p5EeBf8:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}},sy6IOJb7c:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}},tzAtOP2h_:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}},UIY6BciBX:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}},xdS39TEid:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}},YkMaAGmbF:{background:{alt:\"Open ai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:25,pixelWidth:25,src:\"https://framerusercontent.com/images/072LaGkTcCo06eKZylRbjkQEfjI.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12jk948\",\"data-border\":true,\"data-framer-name\":\"2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"n8ibsaCjO\",onTap:onTap143uuyr,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{backgroundColor:\"rgba(0, 0, 0, 0)\"},HGSV2oe6X:{backgroundColor:\"rgba(0, 0, 0, 0)\"},IYCi5PmRF:{backgroundColor:\"rgba(0, 0, 0, 0)\"},LBj0GQwXU:{backgroundColor:\"rgba(0, 0, 0, 0)\"},Lv8U9qyaR:{backgroundColor:\"rgba(0, 0, 0, 0)\"},S2QXPxzRQ:{backgroundColor:\"rgba(0, 0, 0, 0)\"},S5p5EeBf8:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(120, 87, 252)\"},sy6IOJb7c:{backgroundColor:\"rgba(0, 0, 0, 0)\"},tzAtOP2h_:{backgroundColor:\"rgba(0, 0, 0, 0)\"},UIY6BciBX:{backgroundColor:\"rgba(0, 0, 0, 0)\"},xdS39TEid:{backgroundColor:\"rgba(0, 0, 0, 0)\"},YkMaAGmbF:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"anthropic\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/EvF4aXAq1selTJuw3gjss8EWk.svg\"},className:\"framer-3gs687\",layoutDependency:layoutDependency,layoutId:\"qtJqwhcPU\",...addPropertyOverrides({HGSV2oe6X:{background:{alt:\"anthropic\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/EvF4aXAq1selTJuw3gjss8EWk.svg\"}},IYCi5PmRF:{background:{alt:\"anthropic\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/EvF4aXAq1selTJuw3gjss8EWk.svg\"}},LBj0GQwXU:{background:{alt:\"anthropic\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/EvF4aXAq1selTJuw3gjss8EWk.svg\"}},Lv8U9qyaR:{background:{alt:\"anthropic\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/EvF4aXAq1selTJuw3gjss8EWk.svg\"}},S5p5EeBf8:{background:{alt:\"anthropic\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/5ZIOeyfQdpbLkBTIzk4Wh7jaYM.svg\"}},xdS39TEid:{background:{alt:\"anthropic\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/EvF4aXAq1selTJuw3gjss8EWk.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bd1kov\",\"data-border\":true,\"data-framer-name\":\"3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ObHEmc1sV\",onTap:onTap11kvus,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{backgroundColor:\"rgba(0, 0, 0, 0)\"},HGSV2oe6X:{backgroundColor:\"rgba(0, 0, 0, 0)\"},IYCi5PmRF:{backgroundColor:\"rgba(0, 0, 0, 0)\"},LBj0GQwXU:{backgroundColor:\"rgba(0, 0, 0, 0)\"},Lv8U9qyaR:{\"--border-color\":\"var(--token-c7ff8f69-0ac2-4279-916a-0c20a96a4d86, rgb(0, 128, 77))\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(120, 87, 252)\"},S2QXPxzRQ:{backgroundColor:\"rgba(0, 0, 0, 0)\"},sy6IOJb7c:{backgroundColor:\"rgba(0, 0, 0, 0)\"},tzAtOP2h_:{backgroundColor:\"rgba(0, 0, 0, 0)\"},UIY6BciBX:{backgroundColor:\"rgba(0, 0, 0, 0)\"},xdS39TEid:{backgroundColor:\"rgba(0, 0, 0, 0)\"},YkMaAGmbF:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"llama\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/OCkAg8RRWCv2SojD3xI7mUW5MEE.svg\"},className:\"framer-aco6j2\",layoutDependency:layoutDependency,layoutId:\"iub6TiYIh\",...addPropertyOverrides({HGSV2oe6X:{background:{alt:\"llama\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/OCkAg8RRWCv2SojD3xI7mUW5MEE.svg\"}},IYCi5PmRF:{background:{alt:\"llama\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/OCkAg8RRWCv2SojD3xI7mUW5MEE.svg\"}},LBj0GQwXU:{background:{alt:\"llama\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/OCkAg8RRWCv2SojD3xI7mUW5MEE.svg\"}},Lv8U9qyaR:{background:{alt:\"llama\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/zlhi8D5m2624thipy67foBsr0s.svg\"}},xdS39TEid:{background:{alt:\"llama\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/OCkAg8RRWCv2SojD3xI7mUW5MEE.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bkayad\",\"data-border\":true,\"data-framer-name\":\"4\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xV7txDIlq\",onTap:onTap13icn34,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{backgroundColor:\"rgba(0, 0, 0, 0)\"},HGSV2oe6X:{backgroundColor:\"rgba(0, 0, 0, 0)\"},IYCi5PmRF:{backgroundColor:\"rgba(0, 0, 0, 0)\"},LBj0GQwXU:{backgroundColor:\"rgba(0, 0, 0, 0)\"},S2QXPxzRQ:{backgroundColor:\"rgba(0, 0, 0, 0)\"},sy6IOJb7c:{backgroundColor:\"rgba(0, 0, 0, 0)\"},tzAtOP2h_:{backgroundColor:\"rgba(0, 0, 0, 0)\"},UIY6BciBX:{backgroundColor:\"rgba(0, 0, 0, 0)\"},xdS39TEid:{backgroundColor:\"rgba(0, 0, 0, 0)\"},YkMaAGmbF:{\"--border-color\":\"var(--token-c7ff8f69-0ac2-4279-916a-0c20a96a4d86, rgb(0, 128, 77))\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(120, 87, 252)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t071h\",layoutDependency:layoutDependency,layoutId:\"ldysm7fWC\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"langchain\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0+0),pixelHeight:14,pixelWidth:27,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KCiq2VGWHFKaQId58mvorIYzvK8.svg\"},className:\"framer-1ez8vi7\",\"data-framer-name\":\"Companies\",layoutDependency:layoutDependency,layoutId:\"mvUheGh4_\",...addPropertyOverrides({HGSV2oe6X:{background:{alt:\"langchain\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0+0),pixelHeight:14,pixelWidth:27,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KCiq2VGWHFKaQId58mvorIYzvK8.svg\"}},IYCi5PmRF:{background:{alt:\"langchain\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0+0),pixelHeight:14,pixelWidth:27,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KCiq2VGWHFKaQId58mvorIYzvK8.svg\"}},LBj0GQwXU:{background:{alt:\"langchain\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0+0),pixelHeight:14,pixelWidth:27,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KCiq2VGWHFKaQId58mvorIYzvK8.svg\"}},Lv8U9qyaR:{background:{alt:\"langchain\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0+0),pixelHeight:14,pixelWidth:27,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KCiq2VGWHFKaQId58mvorIYzvK8.svg\"}},xdS39TEid:{background:{alt:\"langchain\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0+0),pixelHeight:14,pixelWidth:27,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KCiq2VGWHFKaQId58mvorIYzvK8.svg\"}},YkMaAGmbF:{background:{alt:\"langchain\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0+0),pixelHeight:14,pixelWidth:27,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GfDFfFtRjMJEnSHC0FoA3YNV4.svg\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bjkg90\",\"data-border\":true,\"data-framer-name\":\"5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"doAY24DxX\",onTap:onTapy5fr20,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},HGSV2oe6X:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},IYCi5PmRF:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},LBj0GQwXU:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},S2QXPxzRQ:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},sy6IOJb7c:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},tzAtOP2h_:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},UIY6BciBX:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgb(120, 87, 252)\"},xdS39TEid:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"haystack\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:76,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1M6ctT7t9XxmurweG18eVG9t08c.png\"},className:\"framer-tmkm17\",layoutDependency:layoutDependency,layoutId:\"KhdJ_McYs\",...addPropertyOverrides({HGSV2oe6X:{background:{alt:\"haystack\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:76,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1M6ctT7t9XxmurweG18eVG9t08c.png\"}},IYCi5PmRF:{background:{alt:\"haystack\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:76,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1M6ctT7t9XxmurweG18eVG9t08c.png\"}},LBj0GQwXU:{background:{alt:\"haystack\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:76,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1M6ctT7t9XxmurweG18eVG9t08c.png\"}},Lv8U9qyaR:{background:{alt:\"haystack\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:76,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1M6ctT7t9XxmurweG18eVG9t08c.png\"}},UIY6BciBX:{background:{alt:\"haystack\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:76,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qMEKXYueHmK62s6Sq1BvneKmYWE.png\"}},xdS39TEid:{background:{alt:\"haystack\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:76,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1M6ctT7t9XxmurweG18eVG9t08c.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g1n8df\",\"data-border\":true,\"data-framer-name\":\"6\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CHvop1Jkx\",onTap:onTap1g8q0z1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},HGSV2oe6X:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgb(120, 87, 252)\"},IYCi5PmRF:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},LBj0GQwXU:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},S2QXPxzRQ:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},sy6IOJb7c:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},tzAtOP2h_:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},UIY6BciBX:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},xdS39TEid:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"bedrock\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IX9kfvyVh1ST7dLP2jBKPNSr2A.svg\"},className:\"framer-1stcr2i\",layoutDependency:layoutDependency,layoutId:\"dGx5XpYrW\",...addPropertyOverrides({HGSV2oe6X:{background:{alt:\"bedrock\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YkgHelCkacVh02QaEye8nmAOsY.svg\"}},IYCi5PmRF:{background:{alt:\"bedrock\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IX9kfvyVh1ST7dLP2jBKPNSr2A.svg\"}},LBj0GQwXU:{background:{alt:\"bedrock\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IX9kfvyVh1ST7dLP2jBKPNSr2A.svg\"}},Lv8U9qyaR:{background:{alt:\"bedrock\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IX9kfvyVh1ST7dLP2jBKPNSr2A.svg\"}},xdS39TEid:{background:{alt:\"bedrock\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IX9kfvyVh1ST7dLP2jBKPNSr2A.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-msir8e\",\"data-border\":true,\"data-framer-name\":\"7\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dw8bfx_b9\",onTap:onTap1m8jnql,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{\"--border-left-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},HGSV2oe6X:{\"--border-left-width\":\"1px\"},IYCi5PmRF:{\"--border-left-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},LBj0GQwXU:{\"--border-left-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},S2QXPxzRQ:{\"--border-left-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},sy6IOJb7c:{\"--border-left-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},tzAtOP2h_:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(120, 87, 252)\"},UIY6BciBX:{\"--border-left-width\":\"1px\"},xdS39TEid:{\"--border-left-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"mistralai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/kwRsKZHWFqcQGcqrzeFa20eEl0.svg\"},className:\"framer-1uveamu\",layoutDependency:layoutDependency,layoutId:\"tHmp_vyNR\",...addPropertyOverrides({HGSV2oe6X:{background:{alt:\"mistralai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/kwRsKZHWFqcQGcqrzeFa20eEl0.svg\"}},IYCi5PmRF:{background:{alt:\"mistralai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/kwRsKZHWFqcQGcqrzeFa20eEl0.svg\"}},LBj0GQwXU:{background:{alt:\"mistralai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/kwRsKZHWFqcQGcqrzeFa20eEl0.svg\"}},Lv8U9qyaR:{background:{alt:\"mistralai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/kwRsKZHWFqcQGcqrzeFa20eEl0.svg\"}},tzAtOP2h_:{background:{alt:\"mistralai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/XTTTkdUwef9j7c1FaR9jsvOXw.svg\"}},xdS39TEid:{background:{alt:\"mistralai\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/kwRsKZHWFqcQGcqrzeFa20eEl0.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qz8iz6\",\"data-border\":true,\"data-framer-name\":\"8\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OzmhWqNUR\",onTap:onTap1gnxje6,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},HGSV2oe6X:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},IYCi5PmRF:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},LBj0GQwXU:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},S2QXPxzRQ:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgb(120, 87, 252)\"},sy6IOJb7c:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},tzAtOP2h_:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},UIY6BciBX:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},xdS39TEid:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"dspy\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/99zdrbEfz16T7MahTZk4pzq1A.svg\"},className:\"framer-1lc6yk2\",layoutDependency:layoutDependency,layoutId:\"Fq9Pim5HH\",...addPropertyOverrides({HGSV2oe6X:{background:{alt:\"dspy\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/99zdrbEfz16T7MahTZk4pzq1A.svg\"}},IYCi5PmRF:{background:{alt:\"dspy\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/99zdrbEfz16T7MahTZk4pzq1A.svg\"}},LBj0GQwXU:{background:{alt:\"dspy\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/99zdrbEfz16T7MahTZk4pzq1A.svg\"}},Lv8U9qyaR:{background:{alt:\"dspy\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/99zdrbEfz16T7MahTZk4pzq1A.svg\"}},S2QXPxzRQ:{background:{alt:\"dspy\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9jN8xjGZZKm2fLzMl78oNvuQXw.svg\"}},xdS39TEid:{background:{alt:\"dspy\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/99zdrbEfz16T7MahTZk4pzq1A.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u6e8iq\",\"data-border\":true,\"data-framer-name\":\"9\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FIGIbVyhK\",onTap:onTapt2p0wr,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},HGSV2oe6X:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},IYCi5PmRF:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},LBj0GQwXU:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},S2QXPxzRQ:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},sy6IOJb7c:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgb(120, 87, 252)\"},tzAtOP2h_:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},UIY6BciBX:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},xdS39TEid:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"groq\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:16,pixelWidth:32,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cu1wLsy49lcCfMWOCUY4HJmQB8.svg\"},className:\"framer-h336lf\",layoutDependency:layoutDependency,layoutId:\"IWe1hep16\",...addPropertyOverrides({HGSV2oe6X:{background:{alt:\"groq\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:16,pixelWidth:32,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cu1wLsy49lcCfMWOCUY4HJmQB8.svg\"}},IYCi5PmRF:{background:{alt:\"groq\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:16,pixelWidth:32,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cu1wLsy49lcCfMWOCUY4HJmQB8.svg\"}},LBj0GQwXU:{background:{alt:\"groq\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:16,pixelWidth:32,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cu1wLsy49lcCfMWOCUY4HJmQB8.svg\"}},Lv8U9qyaR:{background:{alt:\"groq\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:16,pixelWidth:32,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cu1wLsy49lcCfMWOCUY4HJmQB8.svg\"}},sy6IOJb7c:{background:{alt:\"groq\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:16,pixelWidth:32,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HuspptxGqqTsjenx4UaFIk5iYM.svg\"}},xdS39TEid:{background:{alt:\"groq\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:16,pixelWidth:32,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cu1wLsy49lcCfMWOCUY4HJmQB8.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-icidth\",\"data-border\":true,\"data-framer-name\":\"10\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ruFK7eBp7\",onTap:onTapimgpq0,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgb(120, 87, 252)\"},HGSV2oe6X:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},IYCi5PmRF:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},LBj0GQwXU:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},S2QXPxzRQ:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},sy6IOJb7c:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},tzAtOP2h_:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},UIY6BciBX:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},xdS39TEid:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"crewai\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:14,pixelWidth:46,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8I0pAOXl0ofWwnll3rvXFUfQ.svg\"},className:\"framer-1wt6y9d\",layoutDependency:layoutDependency,layoutId:\"liBppj0Cv\",...addPropertyOverrides({CSWuNTIuB:{background:{alt:\"crewai\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:14,pixelWidth:46,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zsae0KEN66w951iK2dwQ6hc0DYs.svg\"}},HGSV2oe6X:{background:{alt:\"crewai\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:14,pixelWidth:46,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8I0pAOXl0ofWwnll3rvXFUfQ.svg\"}},IYCi5PmRF:{background:{alt:\"crewai\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:14,pixelWidth:46,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zsae0KEN66w951iK2dwQ6hc0DYs.svg\"}},LBj0GQwXU:{background:{alt:\"crewai\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:14,pixelWidth:46,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zsae0KEN66w951iK2dwQ6hc0DYs.svg\"}},Lv8U9qyaR:{background:{alt:\"crewai\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:14,pixelWidth:46,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8I0pAOXl0ofWwnll3rvXFUfQ.svg\"}},xdS39TEid:{background:{alt:\"crewai\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:14,pixelWidth:46,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zsae0KEN66w951iK2dwQ6hc0DYs.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5j6ime\",\"data-border\":true,\"data-framer-name\":\"11\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xORPCIYPJ\",onTap:onTape5t7qz,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},HGSV2oe6X:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},IYCi5PmRF:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},LBj0GQwXU:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},S2QXPxzRQ:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},sy6IOJb7c:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},tzAtOP2h_:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},UIY6BciBX:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},xdS39TEid:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgb(120, 87, 252)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"litellm\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yNrVt8awf6LF8EPOs2g32sHwfmY.svg\"},className:\"framer-z8qdhu\",layoutDependency:layoutDependency,layoutId:\"w6DboV7zU\",...addPropertyOverrides({HGSV2oe6X:{background:{alt:\"litellm\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yNrVt8awf6LF8EPOs2g32sHwfmY.svg\"}},IYCi5PmRF:{background:{alt:\"litellm\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yNrVt8awf6LF8EPOs2g32sHwfmY.svg\"}},LBj0GQwXU:{background:{alt:\"litellm\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yNrVt8awf6LF8EPOs2g32sHwfmY.svg\"}},Lv8U9qyaR:{background:{alt:\"litellm\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:30,pixelWidth:30,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yNrVt8awf6LF8EPOs2g32sHwfmY.svg\"}},xdS39TEid:{background:{alt:\"litellm\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:120,pixelWidth:120,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/e4ybVhW3GaVqLBK9dnBL6JYRI.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s52eql\",\"data-border\":true,\"data-framer-name\":\"12\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"X4C6Gi01s\",onTap:onTapx22g28,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\"},HGSV2oe6X:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},IYCi5PmRF:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},LBj0GQwXU:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgb(120, 87, 252)\"},S2QXPxzRQ:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},sy6IOJb7c:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},tzAtOP2h_:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},UIY6BciBX:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},xdS39TEid:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"instructor\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:18,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z9ihvmaUp67zlv4bQFgt2eYZSjA.svg\"},className:\"framer-1mn1tcc\",layoutDependency:layoutDependency,layoutId:\"XDeu225_b\",...addPropertyOverrides({HGSV2oe6X:{background:{alt:\"instructor\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:18,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z9ihvmaUp67zlv4bQFgt2eYZSjA.svg\"}},IYCi5PmRF:{background:{alt:\"instructor\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:18,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z9ihvmaUp67zlv4bQFgt2eYZSjA.svg\"}},LBj0GQwXU:{background:{alt:\"instructor\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:18,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/LOJD1NqrGIGReqipjBkVkhSDISU.svg\"}},Lv8U9qyaR:{background:{alt:\"instructor\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:18,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z9ihvmaUp67zlv4bQFgt2eYZSjA.svg\"}},xdS39TEid:{background:{alt:\"instructor\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:18,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z9ihvmaUp67zlv4bQFgt2eYZSjA.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m8c0py\",\"data-border\":true,\"data-framer-name\":\"13\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JPAYw8c6d\",onTap:onTap1197pu5,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{CSWuNTIuB:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\"},HGSV2oe6X:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},IYCi5PmRF:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"rgb(120, 87, 252)\"},LBj0GQwXU:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\"},S2QXPxzRQ:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},sy6IOJb7c:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},tzAtOP2h_:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},UIY6BciBX:{\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\"},xdS39TEid:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"vertexai google\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZAvsETr8vUn5Ch2S4Xnjlr7ssp8.png\"},className:\"framer-1ixnlfi\",layoutDependency:layoutDependency,layoutId:\"lZC8O4i56\",...addPropertyOverrides({CSWuNTIuB:{background:{alt:\"vertexai google\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZFsz6HThZonGLlpeozUeiBupIjo.svg\"}},HGSV2oe6X:{background:{alt:\"vertexai google\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZAvsETr8vUn5Ch2S4Xnjlr7ssp8.png\"}},IYCi5PmRF:{background:{alt:\"vertexai google\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QtmK9LiiA1m3RS2eMrBxte6bdiU.png\"}},LBj0GQwXU:{background:{alt:\"vertexai google\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:24,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZFsz6HThZonGLlpeozUeiBupIjo.svg\"}},Lv8U9qyaR:{background:{alt:\"vertexai google\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZAvsETr8vUn5Ch2S4Xnjlr7ssp8.png\"}},xdS39TEid:{background:{alt:\"vertexai google\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+0+0+22+0),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZFsz6HThZonGLlpeozUeiBupIjo.svg\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18p08o8\",\"data-framer-name\":\"code\",layoutDependency:layoutDependency,layoutId:\"paAN7zdjC\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tpwgff\",layoutDependency:layoutDependency,layoutId:\"LDfi3WrrH\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qech00\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"MrqHRXC6M\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dg4v89-container\",layoutDependency:layoutDependency,layoutId:\"I2_bXgOsU-container\",children:/*#__PURE__*/_jsx(CodeBlock,{background:\"rgba(0, 0, 0, 0)\",borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,code:'from fi.integrations.otel import OpenAIInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom openai import OpenAI\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com//tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"ANTHROPIC_TEST\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Anthropic instrumentation\\nOpenAIInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nclient = OpenAI()\\n\\ncompletion = client.chat.completions.create(\\n    model=\"gpt-4o\",\\n    messages=[\\n        {\"role\": \"developer\", \"content\": \"You are a helpful assistant.\"},\\n        {\"role\": \"user\", \"content\": \"Write a haiku about recursion in programming.\"},\\n    ],\\n)\\n\\nprint(completion.choices[0].message)',darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",id:\"I2_bXgOsU\",isMixedBorderRadius:false,language:\"JSX\",layoutId:\"I2_bXgOsU\",lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,style:{width:\"100%\"},theme:\"aquaBlue\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15,width:\"100%\",...addPropertyOverrides({CSWuNTIuB:{code:'from crewai import LLM, Agent, Crew, Process, Task\\nfrom fi.integrations.otel import CrewAIInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.AGENT,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Crew AI instrumentor\\nCrewAIInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nllm = LLM(\\n    model=\"gpt-4\",\\n    max_tokens=150,\\n    top_p=0.9,\\n)\\n\\nwriter = Agent(\\n    role=\"Writer\",\\n    goal=\"Write creative stories\",\\n    backstory=\"You are a creative writer with a passion for storytelling\",\\n    allow_delegation=False,\\n    llm=llm,\\n)\\n\\nwriting_task = Task(\\n    description=\"Write a short story about a magical forest\",\\n    agent=writer,\\n    expected_output=\"A short story about a magical forest\",\\n)\\n\\ncrew = Crew(\\n    agents=[writer],\\n    tasks=[writing_task],\\n    process=Process.sequential,\\n    verbose=True,\\n)\\n\\n# Execute the crew\\nresult = crew.kickoff()\\nprint(result)'},HGSV2oe6X:{code:'import json\\n\\nimport boto3\\nfrom fi.integrations.otel import BedrockInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Instrument Bedrock client\\nBedrockInstrumentor().instrument(tracer_provider=trace_provider)\\n\\n# Initialize Bedrock client with AWS credentials\\nclient = boto3.client(\\n    service_name=\"SERVICE_NAME\",\\n    region_name=\"REGION_NAME\",\\n    aws_access_key_id=\"ACCESS_KEY\",\\n    aws_secret_access_key=\"SECRET_KEY\",\\n)\\n\\nbody = {\\n    \"anthropic_version\": \"bedrock-2023-05-31\",\\n    \"max_tokens\": 2000,\\n    \"messages\": [{\"role\": \"user\", \"content\": \"Hello there, how are you?\"}],\\n}\\n\\nresponse = client.invoke_model(\\n    modelId=\"model_id\",\\n    body=json.dumps(body),\\n)\\n\\nresponse_body = json.loads(response.get(\"body\").read())\\nprint(response_body[\"content\"][0][\"text\"])'},IYCi5PmRF:{code:'import vertexai\\nfrom fi.integrations.otel import VertexAIInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    ProjectType\\n)\\nfrom vertexai.generative_models import GenerativeModel\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    project_type=ProjectType.EXPERIMENT,\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n    eval_tags=eval_tags,\\n)\\n \\n# Initialize the VertexAI instrumentor\\nVertexAIInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nvertexai.init(\\n    project=\"futureagiprimary\",\\n)\\nmodel = GenerativeModel(\\n    \"gemini-1.5-flash\",\\n    system_instruction=[\"Talk like a pirate.\", \"Don\\'t use rude words.\"],\\n)\\n\\nresponse = model.generate_content(\"Why is metal shiny?\")\\nprint(response)'},LBj0GQwXU:{code:'import instructor\\nfrom fi.integrations.otel import InstructorInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom openai import OpenAI\\nfrom pydantic import BaseModel\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.TOOL,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n\\n# Define the output structure\\nclass UserInfo(BaseModel):\\n    name: str\\n    age: int\\n\\n\\n# Patch the OpenAI clientos\\nclient = instructor.patch(client=OpenAI())\\n\\nInstructorInstrumentor().instrument(tracer_provider=trace_provider)\\n\\n# Extract structured data from natural language\\nuser_info = client.chat.completions.create(\\n    model=\"gpt-3.5-turbo\",\\n    response_model=UserInfo,\\n    messages=[\\n        {\\n            \"role\": \"system\",\\n            \"content\": \"Extract the name and age from the text and return them in a structured format.\",\\n        },\\n        {\"role\": \"user\", \"content\": \"John Doe is nine years old.\"},\\n    ],\\n)\\n\\nprint(user_info, type(user_info))'},Lv8U9qyaR:{code:'from fi.integrations.otel import LlamaIndexInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom llama_index.core.llms import ChatMessage\\nfrom llama_index.llms.anthropic import Anthropic\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com//tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future-AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Anthropic instrumentation\\nLlamaIndexInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nmessages = [\\n    ChatMessage(role=\"system\", content=\"You are a pirate with a colorful personality\"),\\n    ChatMessage(role=\"user\", content=\"Tell me a story\"),\\n]\\nresp = Anthropic(model=\"claude-3-opus-20240229\").chat(messages)'},S2QXPxzRQ:{code:'import dspy\\nfrom fi.integrations.otel import DSPyInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Instrument DSPy with the trace provider\\nDSPyInstrumentor().instrument(tracer_provider=trace_provider)\\n\\n\\nclass BasicQA(dspy.Signature):\\n    \"\"\"Answer questions with short factoid answers.\"\"\"\\n\\n    question = dspy.InputField()\\n    answer = dspy.OutputField(desc=\"often between 1 and 5 words\")\\n\\n\\nturbo = dspy.LM(model=\"openai/gpt-4\")\\n\\ndspy.settings.configure(lm=turbo)\\n\\n# Define the predictor.\\ngenerate_answer = dspy.Predict(BasicQA)\\n\\n# Call the predictor on a particular input.\\npred = generate_answer(question=\"What is the capital of the united states?\")\\nprint(f\"Predicted Answer: {pred.answer}\")'},S5p5EeBf8:{code:'import anthropic\\nfrom fi.integrations.otel import AnthropicInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com//tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"ANTHROPIC_TEST\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Anthropic instrumentation\\nAnthropicInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nclient = anthropic.Anthropic(\\n    # defaults to os.environ.get(\"ANTHROPIC_API_KEY\")\\n    api_key=\"my_api_key\",\\n)\\nmessage = client.messages.create(\\n    model=\"claude-3-5-sonnet-20241022\",\\n    max_tokens=1024,\\n    messages=[{\"role\": \"user\", \"content\": \"Hello, Claude\"}],\\n)\\nprint(message.content)'},sy6IOJb7c:{code:'from fi.integrations.otel import GroqInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom groq import Groq\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Groq instrumentor\\nGroqInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nclient = Groq()\\n\\nchat_completion = client.chat.completions.create(\\n    messages=[\\n        {\"role\": \"system\", \"content\": \"you are a helpful assistant.\"},\\n        {\\n            \"role\": \"user\",\\n            \"content\": \"Explain the importance of low latency LLMs\",\\n        },\\n    ],\\n    model=\"mixtral-8x7b-32768\",\\n)\\n\\nprint(chat_completion.choices[0].message.content)'},tzAtOP2h_:{code:'import os\\n\\nfrom fi.integrations.otel import MistralAIInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom mistralai import Mistral\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Mistral AI instrumentor\\nMistralAIInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nclient = Mistral(api_key=os.environ[\"MISTRAL_API_KEY\"])\\nresponse = client.agents.complete(\\n    agent_id=\"ag:9f130fcd:20250118:untitled-agent:cd6499b7\",\\n    messages=[\\n        {\"role\": \"user\", \"content\": \"plan a vacation for me in Tbilisi\"},\\n    ],\\n)\\nprint(response)'},UIY6BciBX:{code:'from fi.integrations.otel import HaystackInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom haystack import Pipeline\\nfrom haystack_integrations.components.generators.anthropic import AnthropicGenerator\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Haystack instrumentation\\nHaystackInstrumentor().instrument(tracer_provider=trace_provider)\\n\\n# Create components\\ngenerator = AnthropicGenerator(model=\"claude-3-sonnet-20240229\")\\n\\n# Create and run pipeline\\npipeline = Pipeline()\\npipeline.add_component(\"llm\", generator)\\n\\n# Run the pipeline\\nquestion = \"What\\'s Natural Language Processing?\"\\nprompt = f\"Answer the following question briefly and concisely: {question}\"\\nresult = pipeline.run({\"llm\": {\"prompt\": prompt}})\\n\\n# Print the result\\nprint(f\"Question: {question}\")\\nprint(f\"Answer: {result[\\'llm\\'][\\'replies\\'][0]}\")'},xdS39TEid:{code:'import litellm\\nfrom fi.integrations.otel import LiteLLMInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Lite LLM instrumentor\\nLiteLLMInstrumentor().instrument(tracer_provider=trace_provider)\\n\\n# Simple single message completion call\\nresponse = litellm.completion(\\n    model=\"gpt-3.5-turbo\",\\n    messages=[{\"content\": \"What\\'s the capital of India?\", \"role\": \"user\"}],\\n)\\n\\nprint(response)'},YkMaAGmbF:{code:'from fi.integrations.otel import LangChainInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom langchain_core.messages import HumanMessage, SystemMessage\\nfrom langchain_openai import ChatOpenAI\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Anthropic instrumentation\\nLangChainInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nmodel = ChatOpenAI(model=\"gpt-4o-mini\")\\n\\nmessages = [\\n    SystemMessage(\"Translate the following from English into Italian\"),\\n    HumanMessage(\"hi!\"),\\n]\\n\\nmodel.invoke(messages)'}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10orwxw\",\"data-framer-name\":\"Button / Clipboard Copy\",layoutDependency:layoutDependency,layoutId:\"NYVxZb3fe\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qjkg2a-container\",layoutDependency:layoutDependency,layoutId:\"SvdgmmiM6-container\",style:{opacity:0},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:50,bottomLeftRadius:50,bottomRightRadius:50,color:\"rgb(255, 255, 255)\",content:'from fi.integrations.otel import OpenAIInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom openai import OpenAI\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com//tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"ANTHROPIC_TEST\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Anthropic instrumentation\\nOpenAIInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nclient = OpenAI()\\n\\ncompletion = client.chat.completions.create(\\n    model=\"gpt-4o\",\\n    messages=[\\n        {\"role\": \"developer\", \"content\": \"You are a helpful assistant.\"},\\n        {\"role\": \"user\", \"content\": \"Write a haiku about recursion in programming.\"},\\n    ],\\n)\\n\\nprint(completion.choices[0].message)',fill:\"rgb(0, 102, 255)\",font:{},height:\"100%\",id:\"SvdgmmiM6\",isMixedBorderRadius:false,label:\"\",layoutId:\"SvdgmmiM6\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,style:{height:\"100%\"},topLeftRadius:50,topRightRadius:50,width:\"100%\",...addPropertyOverrides({CSWuNTIuB:{content:'from crewai import LLM, Agent, Crew, Process, Task\\nfrom fi.integrations.otel import CrewAIInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.AGENT,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Crew AI instrumentor\\nCrewAIInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nllm = LLM(\\n    model=\"gpt-4\",\\n    max_tokens=150,\\n    top_p=0.9,\\n)\\n\\nwriter = Agent(\\n    role=\"Writer\",\\n    goal=\"Write creative stories\",\\n    backstory=\"You are a creative writer with a passion for storytelling\",\\n    allow_delegation=False,\\n    llm=llm,\\n)\\n\\nwriting_task = Task(\\n    description=\"Write a short story about a magical forest\",\\n    agent=writer,\\n    expected_output=\"A short story about a magical forest\",\\n)\\n\\ncrew = Crew(\\n    agents=[writer],\\n    tasks=[writing_task],\\n    process=Process.sequential,\\n    verbose=True,\\n)\\n\\n# Execute the crew\\nresult = crew.kickoff()\\nprint(result)'},HGSV2oe6X:{content:'import json\\n\\nimport boto3\\nfrom fi.integrations.otel import BedrockInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Instrument Bedrock client\\nBedrockInstrumentor().instrument(tracer_provider=trace_provider)\\n\\n# Initialize Bedrock client with AWS credentials\\nclient = boto3.client(\\n    service_name=\"SERVICE_NAME\",\\n    region_name=\"REGION_NAME\",\\n    aws_access_key_id=\"ACCESS_KEY\",\\n    aws_secret_access_key=\"SECRET_KEY\",\\n)\\n\\nbody = {\\n    \"anthropic_version\": \"bedrock-2023-05-31\",\\n    \"max_tokens\": 2000,\\n    \"messages\": [{\"role\": \"user\", \"content\": \"Hello there, how are you?\"}],\\n}\\n\\nresponse = client.invoke_model(\\n    modelId=\"model_id\",\\n    body=json.dumps(body),\\n)\\n\\nresponse_body = json.loads(response.get(\"body\").read())\\nprint(response_body[\"content\"][0][\"text\"])'},IYCi5PmRF:{content:'import instructor\\nfrom fi.integrations.otel import InstructorInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom openai import OpenAI\\nfrom pydantic import BaseModel\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.TOOL,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n\\n# Define the output structure\\nclass UserInfo(BaseModel):\\n    name: str\\n    age: int\\n\\n\\n# Patch the OpenAI clientos\\nclient = instructor.patch(client=OpenAI())\\n\\nInstructorInstrumentor().instrument(tracer_provider=trace_provider)\\n\\n# Extract structured data from natural language\\nuser_info = client.chat.completions.create(\\n    model=\"gpt-3.5-turbo\",\\n    response_model=UserInfo,\\n    messages=[\\n        {\\n            \"role\": \"system\",\\n            \"content\": \"Extract the name and age from the text and return them in a structured format.\",\\n        },\\n        {\"role\": \"user\", \"content\": \"John Doe is nine years old.\"},\\n    ],\\n)\\n\\nprint(user_info, type(user_info))'},LBj0GQwXU:{content:'import instructor\\nfrom fi.integrations.otel import InstructorInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom openai import OpenAI\\nfrom pydantic import BaseModel\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.TOOL,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n\\n# Define the output structure\\nclass UserInfo(BaseModel):\\n    name: str\\n    age: int\\n\\n\\n# Patch the OpenAI clientos\\nclient = instructor.patch(client=OpenAI())\\n\\nInstructorInstrumentor().instrument(tracer_provider=trace_provider)\\n\\n# Extract structured data from natural language\\nuser_info = client.chat.completions.create(\\n    model=\"gpt-3.5-turbo\",\\n    response_model=UserInfo,\\n    messages=[\\n        {\\n            \"role\": \"system\",\\n            \"content\": \"Extract the name and age from the text and return them in a structured format.\",\\n        },\\n        {\"role\": \"user\", \"content\": \"John Doe is nine years old.\"},\\n    ],\\n)\\n\\nprint(user_info, type(user_info))'},Lv8U9qyaR:{content:'from fi.integrations.otel import LlamaIndexInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom llama_index.core.llms import ChatMessage\\nfrom llama_index.llms.anthropic import Anthropic\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com//tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future-AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Anthropic instrumentation\\nLlamaIndexInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nmessages = [\\n    ChatMessage(role=\"system\", content=\"You are a pirate with a colorful personality\"),\\n    ChatMessage(role=\"user\", content=\"Tell me a story\"),\\n]\\nresp = Anthropic(model=\"claude-3-opus-20240229\").chat(messages)'},S2QXPxzRQ:{content:'import dspy\\nfrom fi.integrations.otel import DSPyInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Instrument DSPy with the trace provider\\nDSPyInstrumentor().instrument(tracer_provider=trace_provider)\\n\\n\\nclass BasicQA(dspy.Signature):\\n    \"\"\"Answer questions with short factoid answers.\"\"\"\\n\\n    question = dspy.InputField()\\n    answer = dspy.OutputField(desc=\"often between 1 and 5 words\")\\n\\n\\nturbo = dspy.LM(model=\"openai/gpt-4\")\\n\\ndspy.settings.configure(lm=turbo)\\n\\n# Define the predictor.\\ngenerate_answer = dspy.Predict(BasicQA)\\n\\n# Call the predictor on a particular input.\\npred = generate_answer(question=\"What is the capital of the united states?\")\\nprint(f\"Predicted Answer: {pred.answer}\")'},S5p5EeBf8:{content:'import anthropic\\nfrom fi.integrations.otel import AnthropicInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com//tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"ANTHROPIC_TEST\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Anthropic instrumentation\\nAnthropicInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nclient = anthropic.Anthropic(\\n    # defaults to os.environ.get(\"ANTHROPIC_API_KEY\")\\n    api_key=\"my_api_key\",\\n)\\nmessage = client.messages.create(\\n    model=\"claude-3-5-sonnet-20241022\",\\n    max_tokens=1024,\\n    messages=[{\"role\": \"user\", \"content\": \"Hello, Claude\"}],\\n)\\nprint(message.content)'},sy6IOJb7c:{content:'from fi.integrations.otel import GroqInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom groq import Groq\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Groq instrumentor\\nGroqInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nclient = Groq()\\n\\nchat_completion = client.chat.completions.create(\\n    messages=[\\n        {\"role\": \"system\", \"content\": \"you are a helpful assistant.\"},\\n        {\\n            \"role\": \"user\",\\n            \"content\": \"Explain the importance of low latency LLMs\",\\n        },\\n    ],\\n    model=\"mixtral-8x7b-32768\",\\n)\\n\\nprint(chat_completion.choices[0].message.content)'},tzAtOP2h_:{content:'import os\\n\\nfrom fi.integrations.otel import MistralAIInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom mistralai import Mistral\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Mistral AI instrumentor\\nMistralAIInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nclient = Mistral(api_key=os.environ[\"MISTRAL_API_KEY\"])\\nresponse = client.agents.complete(\\n    agent_id=\"ag:9f130fcd:20250118:untitled-agent:cd6499b7\",\\n    messages=[\\n        {\"role\": \"user\", \"content\": \"plan a vacation for me in Tbilisi\"},\\n    ],\\n)\\nprint(response)'},UIY6BciBX:{content:'from fi.integrations.otel import HaystackInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom haystack import Pipeline\\nfrom haystack_integrations.components.generators.anthropic import AnthropicGenerator\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Haystack instrumentation\\nHaystackInstrumentor().instrument(tracer_provider=trace_provider)\\n\\n# Create components\\ngenerator = AnthropicGenerator(model=\"claude-3-sonnet-20240229\")\\n\\n# Create and run pipeline\\npipeline = Pipeline()\\npipeline.add_component(\"llm\", generator)\\n\\n# Run the pipeline\\nquestion = \"What\\'s Natural Language Processing?\"\\nprompt = f\"Answer the following question briefly and concisely: {question}\"\\nresult = pipeline.run({\"llm\": {\"prompt\": prompt}})\\n\\n# Print the result\\nprint(f\"Question: {question}\")\\nprint(f\"Answer: {result[\\'llm\\'][\\'replies\\'][0]}\")'},xdS39TEid:{content:'import litellm\\nfrom fi.integrations.otel import LiteLLMInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Lite LLM instrumentor\\nLiteLLMInstrumentor().instrument(tracer_provider=trace_provider)\\n\\n# Simple single message completion call\\nresponse = litellm.completion(\\n    model=\"gpt-3.5-turbo\",\\n    messages=[{\"content\": \"What\\'s the capital of India?\", \"role\": \"user\"}],\\n)\\n\\nprint(response)'},YkMaAGmbF:{content:'from fi.integrations.otel import LangChainInstrumentor, register\\nfrom fi.integrations.otel.types import (\\n    EvalName,\\n    EvalSpanKind,\\n    EvalTag,\\n    EvalTagType,\\n    prepare_eval_tags,\\n)\\nfrom langchain_core.messages import HumanMessage, SystemMessage\\nfrom langchain_openai import ChatOpenAI\\n\\n# Configure trace provider with custom evaluation tags\\neval_tags = [\\n    EvalTag(\\n        eval_name=EvalName.DETERMINISTIC_EVALS,\\n        value=EvalSpanKind.LLM,\\n        type=EvalTagType.OBSERVATION_SPAN,\\n        config={\\n            \"multi_choice\": False,\\n            \"choices\": [\"Yes\", \"No\"],\\n            \"rule_prompt\": \"Evaluate if the response is correct\",\\n        },\\n    )\\n]\\n\\n# Configure trace provider with custom evaluation tags\\ntrace_provider = register(\\n    endpoint=\"https://app.futureagi.com/tracer/observation-span/create_otel_span/\",\\n    eval_tags=prepare_eval_tags(eval_tags),\\n    project_name=\"Future_AGI\",\\n    project_version_name=\"v1\",\\n)\\n\\n# Initialize the Anthropic instrumentation\\nLangChainInstrumentor().instrument(tracer_provider=trace_provider)\\n\\nmodel = ChatOpenAI(model=\"gpt-4o-mini\")\\n\\nmessages = [\\n    SystemMessage(\"Translate the following from English into Italian\"),\\n    HumanMessage(\"hi!\"),\\n]\\n\\nmodel.invoke(messages)'}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+(2+((componentViewport?.height||595)-4-591)/2)+0+84+0+0+0+0,...addPropertyOverrides({HGSV2oe6X:{y:(componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+84+0+0+0+0},IYCi5PmRF:{y:(componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+84+0+0+0+0},LBj0GQwXU:{y:(componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+84+0+0+0+0},Lv8U9qyaR:{y:(componentViewport?.y||0)+(2+((componentViewport?.height||593)-2-591)/2)+0+84+0+0+0+0},xdS39TEid:{y:(componentViewport?.y||0)+(2+((componentViewport?.height||200)-4-591)/2)+0+84+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e15j3h-container\",layoutDependency:layoutDependency,layoutId:\"KWHe6lF9q-container\",children:/*#__PURE__*/_jsx(Copy_button,{height:\"100%\",id:\"KWHe6lF9q\",layoutId:\"KWHe6lF9q\",variant:\"U7k1CIO3C\",width:\"100%\"})})})]})]})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-l9me1.framer-1a2ubtt, .framer-l9me1 .framer-1a2ubtt { display: block; }\",\".framer-l9me1.framer-1ys44no { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: var(--ndo37g); padding: 2px; position: relative; width: min-content; }\",\".framer-l9me1 .framer-1qs7gl5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: var(--ndo37g); padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-l9me1 .framer-1issh8q, .framer-l9me1 .framer-qech00 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: auto; padding: 0px; position: relative; width: min-content; }\",\".framer-l9me1 .framer-1yifvdz, .framer-l9me1 .framer-12jk948, .framer-l9me1 .framer-1bd1kov, .framer-l9me1 .framer-bkayad, .framer-l9me1 .framer-bjkg90, .framer-l9me1 .framer-1g1n8df, .framer-l9me1 .framer-msir8e, .framer-l9me1 .framer-1qz8iz6, .framer-l9me1 .framer-u6e8iq, .framer-l9me1 .framer-icidth, .framer-l9me1 .framer-5j6ime, .framer-l9me1 .framer-1s52eql, .framer-l9me1 .framer-1m8c0py { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 22px; position: relative; width: 77px; }\",\".framer-l9me1 .framer-xystx9, .framer-l9me1 .framer-3gs687, .framer-l9me1 .framer-aco6j2, .framer-l9me1 .framer-tmkm17, .framer-l9me1 .framer-1stcr2i, .framer-l9me1 .framer-1uveamu, .framer-l9me1 .framer-1lc6yk2, .framer-l9me1 .framer-h336lf, .framer-l9me1 .framer-1wt6y9d, .framer-l9me1 .framer-z8qdhu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 30px; }\",\".framer-l9me1 .framer-1t071h, .framer-l9me1 .framer-10orwxw { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-l9me1 .framer-1ez8vi7 { flex: none; height: 30px; overflow: hidden; position: relative; width: 30px; }\",\".framer-l9me1 .framer-1mn1tcc, .framer-l9me1 .framer-1ixnlfi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 45px; }\",\".framer-l9me1 .framer-18p08o8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 507px; justify-content: flex-start; overflow: auto; padding: 0px 20px 0px 12px; position: relative; width: min-content; }\",\".framer-l9me1 .framer-tpwgff { 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: auto; padding: 0px; position: relative; width: min-content; }\",\".framer-l9me1 .framer-1dg4v89-container { flex: none; height: auto; position: relative; width: 863px; }\",\".framer-l9me1 .framer-qjkg2a-container { flex: none; height: 100%; left: 50%; position: absolute; top: 49%; width: auto; z-index: 4; }\",\".framer-l9me1 .framer-e15j3h-container { flex: none; height: auto; position: sticky; top: 10px; width: auto; will-change: transform; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l9me1.framer-1ys44no, .framer-l9me1 .framer-1qs7gl5, .framer-l9me1 .framer-1issh8q, .framer-l9me1 .framer-1yifvdz, .framer-l9me1 .framer-xystx9, .framer-l9me1 .framer-12jk948, .framer-l9me1 .framer-3gs687, .framer-l9me1 .framer-1bd1kov, .framer-l9me1 .framer-aco6j2, .framer-l9me1 .framer-bkayad, .framer-l9me1 .framer-1t071h, .framer-l9me1 .framer-bjkg90, .framer-l9me1 .framer-tmkm17, .framer-l9me1 .framer-1g1n8df, .framer-l9me1 .framer-1stcr2i, .framer-l9me1 .framer-msir8e, .framer-l9me1 .framer-1uveamu, .framer-l9me1 .framer-1qz8iz6, .framer-l9me1 .framer-1lc6yk2, .framer-l9me1 .framer-u6e8iq, .framer-l9me1 .framer-h336lf, .framer-l9me1 .framer-icidth, .framer-l9me1 .framer-1wt6y9d, .framer-l9me1 .framer-5j6ime, .framer-l9me1 .framer-z8qdhu, .framer-l9me1 .framer-1s52eql, .framer-l9me1 .framer-1mn1tcc, .framer-l9me1 .framer-1m8c0py, .framer-l9me1 .framer-1ixnlfi, .framer-l9me1 .framer-18p08o8, .framer-l9me1 .framer-tpwgff, .framer-l9me1 .framer-qech00, .framer-l9me1 .framer-10orwxw { gap: 0px; } .framer-l9me1.framer-1ys44no > *, .framer-l9me1 .framer-xystx9 > *, .framer-l9me1 .framer-3gs687 > *, .framer-l9me1 .framer-aco6j2 > *, .framer-l9me1 .framer-1t071h > *, .framer-l9me1 .framer-tmkm17 > *, .framer-l9me1 .framer-1stcr2i > *, .framer-l9me1 .framer-1uveamu > *, .framer-l9me1 .framer-1lc6yk2 > *, .framer-l9me1 .framer-h336lf > *, .framer-l9me1 .framer-1wt6y9d > *, .framer-l9me1 .framer-z8qdhu > *, .framer-l9me1 .framer-1mn1tcc > *, .framer-l9me1 .framer-1ixnlfi > *, .framer-l9me1 .framer-tpwgff > *, .framer-l9me1 .framer-10orwxw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-l9me1.framer-1ys44no > :first-child, .framer-l9me1 .framer-1issh8q > :first-child, .framer-l9me1 .framer-xystx9 > :first-child, .framer-l9me1 .framer-3gs687 > :first-child, .framer-l9me1 .framer-aco6j2 > :first-child, .framer-l9me1 .framer-1t071h > :first-child, .framer-l9me1 .framer-tmkm17 > :first-child, .framer-l9me1 .framer-1stcr2i > :first-child, .framer-l9me1 .framer-1uveamu > :first-child, .framer-l9me1 .framer-1lc6yk2 > :first-child, .framer-l9me1 .framer-h336lf > :first-child, .framer-l9me1 .framer-1wt6y9d > :first-child, .framer-l9me1 .framer-z8qdhu > :first-child, .framer-l9me1 .framer-1mn1tcc > :first-child, .framer-l9me1 .framer-1ixnlfi > :first-child, .framer-l9me1 .framer-18p08o8 > :first-child, .framer-l9me1 .framer-tpwgff > :first-child, .framer-l9me1 .framer-qech00 > :first-child, .framer-l9me1 .framer-10orwxw > :first-child { margin-left: 0px; } .framer-l9me1.framer-1ys44no > :last-child, .framer-l9me1 .framer-1issh8q > :last-child, .framer-l9me1 .framer-xystx9 > :last-child, .framer-l9me1 .framer-3gs687 > :last-child, .framer-l9me1 .framer-aco6j2 > :last-child, .framer-l9me1 .framer-1t071h > :last-child, .framer-l9me1 .framer-tmkm17 > :last-child, .framer-l9me1 .framer-1stcr2i > :last-child, .framer-l9me1 .framer-1uveamu > :last-child, .framer-l9me1 .framer-1lc6yk2 > :last-child, .framer-l9me1 .framer-h336lf > :last-child, .framer-l9me1 .framer-1wt6y9d > :last-child, .framer-l9me1 .framer-z8qdhu > :last-child, .framer-l9me1 .framer-1mn1tcc > :last-child, .framer-l9me1 .framer-1ixnlfi > :last-child, .framer-l9me1 .framer-18p08o8 > :last-child, .framer-l9me1 .framer-tpwgff > :last-child, .framer-l9me1 .framer-qech00 > :last-child, .framer-l9me1 .framer-10orwxw > :last-child { margin-right: 0px; } .framer-l9me1 .framer-1qs7gl5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-l9me1 .framer-1qs7gl5 > :first-child, .framer-l9me1 .framer-1yifvdz > :first-child, .framer-l9me1 .framer-12jk948 > :first-child, .framer-l9me1 .framer-1bd1kov > :first-child, .framer-l9me1 .framer-bkayad > :first-child, .framer-l9me1 .framer-bjkg90 > :first-child, .framer-l9me1 .framer-1g1n8df > :first-child, .framer-l9me1 .framer-msir8e > :first-child, .framer-l9me1 .framer-1qz8iz6 > :first-child, .framer-l9me1 .framer-u6e8iq > :first-child, .framer-l9me1 .framer-icidth > :first-child, .framer-l9me1 .framer-5j6ime > :first-child, .framer-l9me1 .framer-1s52eql > :first-child, .framer-l9me1 .framer-1m8c0py > :first-child { margin-top: 0px; } .framer-l9me1 .framer-1qs7gl5 > :last-child, .framer-l9me1 .framer-1yifvdz > :last-child, .framer-l9me1 .framer-12jk948 > :last-child, .framer-l9me1 .framer-1bd1kov > :last-child, .framer-l9me1 .framer-bkayad > :last-child, .framer-l9me1 .framer-bjkg90 > :last-child, .framer-l9me1 .framer-1g1n8df > :last-child, .framer-l9me1 .framer-msir8e > :last-child, .framer-l9me1 .framer-1qz8iz6 > :last-child, .framer-l9me1 .framer-u6e8iq > :last-child, .framer-l9me1 .framer-icidth > :last-child, .framer-l9me1 .framer-5j6ime > :last-child, .framer-l9me1 .framer-1s52eql > :last-child, .framer-l9me1 .framer-1m8c0py > :last-child { margin-bottom: 0px; } .framer-l9me1 .framer-1issh8q > *, .framer-l9me1 .framer-qech00 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-l9me1 .framer-1yifvdz > *, .framer-l9me1 .framer-12jk948 > *, .framer-l9me1 .framer-1bd1kov > *, .framer-l9me1 .framer-bkayad > *, .framer-l9me1 .framer-bjkg90 > *, .framer-l9me1 .framer-1g1n8df > *, .framer-l9me1 .framer-msir8e > *, .framer-l9me1 .framer-1qz8iz6 > *, .framer-l9me1 .framer-u6e8iq > *, .framer-l9me1 .framer-icidth > *, .framer-l9me1 .framer-5j6ime > *, .framer-l9me1 .framer-1s52eql > *, .framer-l9me1 .framer-1m8c0py > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-l9me1 .framer-18p08o8 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",\".framer-l9me1.framer-v-k6577w .framer-1dg4v89-container, .framer-l9me1.framer-v-swb1g0 .framer-1dg4v89-container, .framer-l9me1.framer-v-vhfguj .framer-1dg4v89-container, .framer-l9me1.framer-v-v7m3kz .framer-1dg4v89-container, .framer-l9me1.framer-v-1cyxhy2 .framer-1dg4v89-container, .framer-l9me1.framer-v-waifd6 .framer-1dg4v89-container, .framer-l9me1.framer-v-15meypg .framer-1dg4v89-container, .framer-l9me1.framer-v-8lqb71 .framer-1dg4v89-container, .framer-l9me1.framer-v-1f8pjw5 .framer-1dg4v89-container, .framer-l9me1.framer-v-x23uk7 .framer-1dg4v89-container, .framer-l9me1.framer-v-qi0e49 .framer-1dg4v89-container, .framer-l9me1.framer-v-4zu2j0 .framer-1dg4v89-container { order: 0; }\",\".framer-l9me1.framer-v-k6577w .framer-10orwxw, .framer-l9me1.framer-v-swb1g0 .framer-10orwxw, .framer-l9me1.framer-v-vhfguj .framer-10orwxw, .framer-l9me1.framer-v-v7m3kz .framer-10orwxw, .framer-l9me1.framer-v-1cyxhy2 .framer-10orwxw, .framer-l9me1.framer-v-waifd6 .framer-10orwxw, .framer-l9me1.framer-v-15meypg .framer-10orwxw, .framer-l9me1.framer-v-8lqb71 .framer-10orwxw, .framer-l9me1.framer-v-1f8pjw5 .framer-10orwxw, .framer-l9me1.framer-v-x23uk7 .framer-10orwxw, .framer-l9me1.framer-v-qi0e49 .framer-10orwxw, .framer-l9me1.framer-v-4zu2j0 .framer-10orwxw { order: 1; }\",\".framer-l9me1.framer-v-swb1g0.framer-1ys44no { padding: 2px 2px 0px 2px; }\",'.framer-l9me1[data-border=\"true\"]::after, .framer-l9me1 [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 595\n * @framerIntrinsicWidth 1005\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"S5p5EeBf8\":{\"layout\":[\"auto\",\"auto\"]},\"Lv8U9qyaR\":{\"layout\":[\"auto\",\"auto\"]},\"YkMaAGmbF\":{\"layout\":[\"auto\",\"auto\"]},\"UIY6BciBX\":{\"layout\":[\"auto\",\"auto\"]},\"HGSV2oe6X\":{\"layout\":[\"auto\",\"auto\"]},\"tzAtOP2h_\":{\"layout\":[\"auto\",\"auto\"]},\"S2QXPxzRQ\":{\"layout\":[\"auto\",\"auto\"]},\"sy6IOJb7c\":{\"layout\":[\"auto\",\"auto\"]},\"CSWuNTIuB\":{\"layout\":[\"auto\",\"auto\"]},\"xdS39TEid\":{\"layout\":[\"auto\",\"auto\"]},\"LBj0GQwXU\":{\"layout\":[\"auto\",\"auto\"]},\"IYCi5PmRF\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"emE111WLT\":\"overflow\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwX791DHMJ=withCSS(Component,css,\"framer-l9me1\");export default FramerwX791DHMJ;FramerwX791DHMJ.displayName=\"Code\";FramerwX791DHMJ.defaultProps={height:595,width:1005};addPropertyControls(FramerwX791DHMJ,{variant:{options:[\"MLY4BV6LW\",\"S5p5EeBf8\",\"Lv8U9qyaR\",\"YkMaAGmbF\",\"UIY6BciBX\",\"HGSV2oe6X\",\"tzAtOP2h_\",\"S2QXPxzRQ\",\"sy6IOJb7c\",\"CSWuNTIuB\",\"xdS39TEid\",\"LBj0GQwXU\",\"IYCi5PmRF\"],optionTitles:[\"OpenAI\",\"ANTHROP\\\\C\",\"LlamaIndex\",\"LangChain\",\"Haystack\",\"Bedrock\",\"Mistral AI_\",\"Dspy\",\"Groq\",\"CrewAI\",\"lite LLM\",\"Instructor\",\"Vertex AI\"],title:\"Variant\",type:ControlType.Enum},emE111WLT:{defaultValue:\"auto\",options:[\"hidden\",\"visible\",\"auto\"],optionTitles:[\"Hidden\",\"Visible\",\"Scroll\"],title:\"Overflow\",type:ControlType.Enum}});addFonts(FramerwX791DHMJ,[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]},...CodeBlockFonts,...ClipboardFonts,...Copy_buttonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwX791DHMJ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1005\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"S5p5EeBf8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Lv8U9qyaR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YkMaAGmbF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UIY6BciBX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HGSV2oe6X\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tzAtOP2h_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"S2QXPxzRQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sy6IOJb7c\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CSWuNTIuB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xdS39TEid\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LBj0GQwXU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IYCi5PmRF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"emE111WLT\\\":\\\"overflow\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"595\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wX791DHMJ.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js\";import ButtonsButton2 from\"#framer/local/canvasComponent/IDCJc1Ytb/IDCJc1Ytb.js\";import TextCycle from\"#framer/local/canvasComponent/oTqJqpEDV/oTqJqpEDV.js\";import Navbar from\"#framer/local/canvasComponent/QHyJ0r5oU/QHyJ0r5oU.js\";import ButtonsButton from\"#framer/local/canvasComponent/S1EGgC3zF/S1EGgC3zF.js\";import Card from\"#framer/local/canvasComponent/SStgQbYgI/SStgQbYgI.js\";import NewFooter from\"#framer/local/canvasComponent/tclowrheu/tclowrheu.js\";import Code from\"#framer/local/canvasComponent/wX791DHMJ/wX791DHMJ.js\";import{Counter}from\"#framer/local/codeFile/eQJTBhk/Counter1.js\";import{withwithAppendUTMOnClick}from\"#framer/local/codeFile/Ueg9vAh/PreserveUTMParameters.js\";import TextClip from\"#framer/local/codeFile/tdgX9KJ/Test.js\";import default1 from\"#framer/local/codeFile/UafYauB/Text.js\";import{withVideoPreloadNone}from\"#framer/local/codeFile/gSs7Dfo/WithPreloadVideo.js\";import CaseStudy from\"#framer/local/collection/zZ_HNoJDO/zZ_HNoJDO.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const TextCycleFonts=getFonts(TextCycle);const ButtonsButtonFonts=getFonts(ButtonsButton);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ButtonsButton2Fonts=getFonts(ButtonsButton2);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const VideoWithVideoPreloadNone1itsqzz=withCodeBoundaryForOverrides(Video,{nodeId:\"mS9Zon9rt\",override:withVideoPreloadNone,scopeId:\"augiA20Il\"});const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const CounterFonts=getFonts(Counter);const CardFonts=getFonts(Card);const CardWithVariantAppearEffect=withVariantAppearEffect(Card);const ContainerWithFX=withFX(Container);const CodeFonts=getFonts(Code);const RichTextDefault11bkxz3p=withCodeBoundaryForOverrides(RichText,{nodeId:\"U54nHOcNV\",override:default1,scopeId:\"augiA20Il\"});const MotionAWithFX=withFX(motion.a);const TextClipFonts=getFonts(TextClip);const MotionAWithwithAppendUTMOnClickg5zedn=withCodeBoundaryForOverrides(motion.a,{inComponentSlot:true,nodeId:\"i8YAxYhSl\",override:withwithAppendUTMOnClick,scopeId:\"augiA20Il\"});const MotionAWithwithAppendUTMOnClickbgr8sy=withCodeBoundaryForOverrides(motion.a,{inComponentSlot:true,nodeId:\"t2wmp8rZi\",override:withwithAppendUTMOnClick,scopeId:\"augiA20Il\"});const MotionAWithwithAppendUTMOnClick7eqluu=withCodeBoundaryForOverrides(motion.a,{inComponentSlot:true,nodeId:\"WgNu7DEN_\",override:withwithAppendUTMOnClick,scopeId:\"augiA20Il\"});const MotionAWithwithAppendUTMOnClick3f66x0=withCodeBoundaryForOverrides(motion.a,{inComponentSlot:true,nodeId:\"rHOyTDIsf\",override:withwithAppendUTMOnClick,scopeId:\"augiA20Il\"});const MotionAWithwithAppendUTMOnClick1r9cld7=withCodeBoundaryForOverrides(motion.a,{inComponentSlot:true,nodeId:\"kFY1hC4It\",override:withwithAppendUTMOnClick,scopeId:\"augiA20Il\"});const MotionAWithwithAppendUTMOnClickhravag=withCodeBoundaryForOverrides(motion.a,{inComponentSlot:true,nodeId:\"TMkQl9Qrs\",override:withwithAppendUTMOnClick,scopeId:\"augiA20Il\"});const MotionAWithwithAppendUTMOnClick1f94x2w=withCodeBoundaryForOverrides(motion.a,{inComponentSlot:true,nodeId:\"pf0LAdKsj\",override:withwithAppendUTMOnClick,scopeId:\"augiA20Il\"});const MotionAWithwithAppendUTMOnClickfnp95l=withCodeBoundaryForOverrides(motion.a,{inComponentSlot:true,nodeId:\"i1tX7TQ6F\",override:withwithAppendUTMOnClick,scopeId:\"augiA20Il\"});const MotionAWithwithAppendUTMOnClick3gkfzk=withCodeBoundaryForOverrides(motion.a,{inComponentSlot:true,nodeId:\"ET79vGhQY\",override:withwithAppendUTMOnClick,scopeId:\"augiA20Il\"});const MotionAWithwithAppendUTMOnClickotulc=withCodeBoundaryForOverrides(motion.a,{inComponentSlot:true,nodeId:\"uVq5NDsc3\",override:withwithAppendUTMOnClick,scopeId:\"augiA20Il\"});const CarouselFonts=getFonts(Carousel);const NewFooterFonts=getFonts(NewFooter);const breakpoints={JmC7a0So0:\"(min-width: 992px) and (max-width: 1439px)\",kQnI8vfaN:\"(max-width: 767px)\",sSkIUmLBU:\"(min-width: 1440px)\",WpFxoWR_W:\"(min-width: 810px) and (max-width: 991px)\",XGqg_W9lu:\"(min-width: 768px) and (max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8iwRs\";const variantClassNames={JmC7a0So0:\"framer-v-1wwd1io\",kQnI8vfaN:\"framer-v-1je9cn6\",sSkIUmLBU:\"framer-v-15s9fwd\",WpFxoWR_W:\"framer-v-kolgk7\",XGqg_W9lu:\"framer-v-1vp6wyn\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={bounce:0,delay:0,duration:.7,type:\"spring\"};const textEffect={effect:animation,repeat:false,startDelay:0,threshold:0,tokenization:\"word\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const transition2={bounce:0,delay:.03,duration:.6,type:\"spring\"};const textEffect1={effect:animation,repeat:false,startDelay:.5,threshold:0,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:15};const transition3={bounce:0,delay:1,duration:.6,type:\"spring\"};const transition4={damping:40,delay:1.1,mass:1,stiffness:200,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-12,y:0};const transition5={bounce:.2,delay:2,duration:.4,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition6={bounce:.2,delay:2.5,duration:.4,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={damping:30,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:0};const transition9={delay:.2,duration:.8,ease:[.44,0,0,1.03],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition10={damping:60,delay:1,mass:1,stiffness:400,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const animation13={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition11={delay:0,duration:.8,ease:[.44,0,0,1.03],type:\"tween\"};const transition12={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation14={backgroundColor:\"rgb(246, 244, 250)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"JmC7a0So0\",\"Tablet 2\":\"XGqg_W9lu\",Desktop:\"sSkIUmLBU\",Phone:\"kQnI8vfaN\",Tablet:\"WpFxoWR_W\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"sSkIUmLBU\"};};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,hDRt7bB2_VhisAdonV,w3nLshw2GVhisAdonV,YFpbNqNN2VhisAdonV,YGIt5VnecVhisAdonV,DN981qGw2VhisAdonV,hG1gaZYOqVhisAdonV,a5NDAhZPOVhisAdonV,idVhisAdonV,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"VKyx3Xb7Q\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"CCGmIRZna\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"Ho4M5Oq24\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"jUWNcwkxm\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"bHQujZxfu\");const ref5=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"kQnI8vfaN\")return false;return true;};const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const ref11=React.useRef(null);const elementId5=useRouteElementId(\"DCqZHftoX\");const ref12=React.useRef(null);const elementId6=useRouteElementId(\"P0itrj1P1\");const ref13=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"WpFxoWR_W\",\"XGqg_W9lu\",\"kQnI8vfaN\"].includes(baseVariant))return false;return true;};const elementId7=useRouteElementId(\"IGZTx164H\");const elementId8=useRouteElementId(\"bDS2gsGcN\");const elementId9=useRouteElementId(\"hOg9g1O3r\");const elementId10=useRouteElementId(\"EeZp33OfT\");const elementId11=useRouteElementId(\"Jc0ayIgSD\");const elementId12=useRouteElementId(\"Ee1IGeBCW\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"sSkIUmLBU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-15s9fwd\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wkDGS1MeD\"},implicitPathVariables:undefined},{href:{webPageId:\"wkDGS1MeD\"},implicitPathVariables:undefined},{href:{webPageId:\"wkDGS1MeD\"},implicitPathVariables:undefined},{href:{webPageId:\"wkDGS1MeD\"},implicitPathVariables:undefined},{href:{webPageId:\"wkDGS1MeD\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sfgdsl-container\",layoutScroll:true,nodeId:\"Z8j2cEg4c\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{m4WieFKNi:resolvedLinks[4]},kQnI8vfaN:{m4WieFKNi:resolvedLinks[3],rYw_eriJj:\"0px 14px 0px 14px\",variant:\"VNAzQbUyB\"},WpFxoWR_W:{__framer__variantAppearEffectEnabled:undefined,m4WieFKNi:resolvedLinks[1],rYw_eriJj:\"0px 40px 0px 35px\",variant:\"VNAzQbUyB\"},XGqg_W9lu:{__framer__variantAppearEffectEnabled:undefined,m4WieFKNi:resolvedLinks[2],rYw_eriJj:\"0px 30px 0px 35px\",variant:\"VNAzQbUyB\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,Bdiz4Hjek:true,dL3iIhK1E:true,height:\"100%\",id:\"Z8j2cEg4c\",layoutId:\"Z8j2cEg4c\",m4WieFKNi:resolvedLinks[0],nt4Jmp2bI:\"var(--token-b604e936-4937-4a96-8e54-3bc1d7fa305c, rgb(12, 12, 12))\",O4bCYtTAc:true,rYw_eriJj:\"0px\",style:{width:\"100%\"},variant:\"uhd9v65HP\",VSUOkeomj:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{background:{alt:\"Future agi\",fit:\"fill\",pixelHeight:1224,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HZHCW42O8RWZxVfqMhp83FfqQaw.png\",srcSet:\"https://framerusercontent.com/images/HZHCW42O8RWZxVfqMhp83FfqQaw.png?scale-down-to=512 512w,https://framerusercontent.com/images/HZHCW42O8RWZxVfqMhp83FfqQaw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HZHCW42O8RWZxVfqMhp83FfqQaw.png 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Future agi\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1224,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HZHCW42O8RWZxVfqMhp83FfqQaw.png\",srcSet:\"https://framerusercontent.com/images/HZHCW42O8RWZxVfqMhp83FfqQaw.png?scale-down-to=512 512w,https://framerusercontent.com/images/HZHCW42O8RWZxVfqMhp83FfqQaw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HZHCW42O8RWZxVfqMhp83FfqQaw.png 1440w\"},className:\"framer-1sv6lfn\",\"data-framer-name\":\"Hero-Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w680bw\",\"data-framer-name\":\"Container\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9m3sui\",\"data-framer-name\":\"Title-Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6vqo8b\",\"data-framer-name\":\"Title H!\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-64000c\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Create\"})}),effect:undefined},WpFxoWR_W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Create\"})})},XGqg_W9lu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Create\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Create\"})}),className:\"framer-gjw82r\",effect:textEffect,fonts:[\"GF;Mulish-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{y:undefined},kQnI8vfaN:{height:62,y:(componentViewport?.y||0)+0+0+0+0+160+0+0+0+0+0+0+60},WpFxoWR_W:{y:(componentViewport?.y||0)+0+0+40+0+100+0+0+0+0+0+0},XGqg_W9lu:{y:(componentViewport?.y||0)+0+0+40+0+100+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,y:(componentViewport?.y||0)+0+0+0+0+150+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nigj26-container\",nodeId:\"KddCXHB86\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{Jdc7uHPvt:47},XGqg_W9lu:{Jdc7uHPvt:60}},children:/*#__PURE__*/_jsx(TextCycle,{CjEp5VjhY:\"Responsible AI\",gEGKSTDO9:\"Trustworthy AI\",height:\"100%\",id:\"KddCXHB86\",Jdc7uHPvt:68,layoutId:\"KddCXHB86\",R1wtBsjHx:\"Accurate AI\",style:{height:\"100%\"},variant:\"jSLODUN4y\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"10x Faster\"})}),effect:undefined},WpFxoWR_W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"10x Faster\"})})},XGqg_W9lu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"10x Faster\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"10x Faster\"})}),className:\"framer-1ukkt4w\",effect:textEffect,fonts:[\"GF;Mulish-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTUwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(195, 209, 229)\"},children:\"World\u2019s first comprehensive evaluation and optimization platform to help enterprises achieve 99% accuracy in AI applications across software and hardware.\"})}),effect:undefined},XGqg_W9lu:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTUwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(195, 209, 229)\"},children:\"World\u2019s first comprehensive evaluation and optimization platform to help enterprises achieve 99% accuracy in AI applications across software and hardware.\"})}),className:\"framer-fl5d71\",effect:textEffect1,fonts:[\"GF;Mulish-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10gpkha\",\"data-framer-name\":\"Actions\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{y:undefined},kQnI8vfaN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+0+160+0+0+562+0+0},WpFxoWR_W:{y:(componentViewport?.y||0)+0+0+40+0+100+0+0+370+12},XGqg_W9lu:{y:(componentViewport?.y||0)+0+0+40+0+100+0+0+370+12}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+0+0+0+150+0+0+380+12,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{animate:undefined,initial:undefined,optimized:undefined},XGqg_W9lu:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-8o3aqm-container\",\"data-framer-appear-id\":\"8o3aqm\",initial:animation3,nodeId:\"Fb9ddkL3a\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsButton,{cRoeZpcrs:\"Get Started\",FsefAOOPs:\"var(--token-d49ce14e-f5dc-463a-9b8d-4f0e772df7f1, rgb(255, 255, 255))\",G7ATSoElB:\"15px 24px 15px 24px\",GrpQ8zFBL:\"https://app.futureagi.com/auth/jwt/register\",GUUzqr3t0:\"rgb(255, 255, 255)\",height:\"100%\",id:\"Fb9ddkL3a\",layoutId:\"Fb9ddkL3a\",MRUSzrhuu:20,SM93ZbT4W:true,variant:\"iu0zXnEii\",width:\"100%\",yVG0g5uWF:\"14px\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wkDGS1MeD\"},implicitPathVariables:undefined},{href:{webPageId:\"wkDGS1MeD\"},implicitPathVariables:undefined},{href:{webPageId:\"wkDGS1MeD\"},implicitPathVariables:undefined},{href:{webPageId:\"wkDGS1MeD\"},implicitPathVariables:undefined},{href:{webPageId:\"wkDGS1MeD\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{y:undefined},kQnI8vfaN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+0+160+0+0+562+0+65},WpFxoWR_W:{y:(componentViewport?.y||0)+0+0+40+0+100+0+0+370+13.5},XGqg_W9lu:{y:(componentViewport?.y||0)+0+0+40+0+100+0+0+370+13.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+0+0+0+150+0+0+380+13.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u8i46z-container\",nodeId:\"uuwOsrWGi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{GrpQ8zFBL:resolvedLinks1[4]},kQnI8vfaN:{GrpQ8zFBL:resolvedLinks1[3],style:{width:\"100%\"}},WpFxoWR_W:{GrpQ8zFBL:resolvedLinks1[1]},XGqg_W9lu:{GrpQ8zFBL:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonsButton2,{CbqVKrfIw:\"14px\",cRoeZpcrs:\"Book a Demo\",FsefAOOPs:\"rgb(255, 255, 255)\",Ftmhs83NY:\"rgb(43, 37, 53)\",GrpQ8zFBL:resolvedLinks1[0],height:\"100%\",id:\"uuwOsrWGi\",layoutId:\"uuwOsrWGi\",oXzUBvlXy:20,pnSbqlsuz:\"15px 24px 15px 24px\",RCPR2dydG:\"Question\",SM93ZbT4W:true,variant:\"W59ApwHFk\",width:\"100%\",Y0hFOu99i:{borderColor:\"rgb(74, 75, 84)\",borderStyle:\"solid\",borderWidth:1}})})})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WpFxoWR_W:{animate:animation6}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-zswefa\",\"data-framer-appear-id\":\"zswefa\",initial:animation5,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mjsdi5\",\"data-border\":true,\"data-framer-name\":\"Toolbar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nyixk6\",\"data-framer-name\":\"Frame 2147225213\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3hkpva\",\"data-framer-name\":\"close\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lsvnv4\",\"data-framer-name\":\"minimize\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14cefm0\",\"data-framer-name\":\"maximize\"})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1itsqzz-container\",\"data-framer-appear-id\":\"1itsqzz\",initial:animation5,isModuleExternal:true,nodeId:\"mS9Zon9rt\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoWithVideoPreloadNone1itsqzz,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"mS9Zon9rt\",isMixedBorderRadius:false,layoutId:\"mS9Zon9rt\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/5pnv3hAbwECWqc84FDcbN485O80.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})})]})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{background:{alt:\"Future agi\",fit:\"fit\",pixelHeight:776,pixelWidth:1440,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png\",srcSet:\"https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png?scale-down-to=512 512w,https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png 1440w\"}},kQnI8vfaN:{background:{alt:\"Future agi\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1084),pixelHeight:776,pixelWidth:1440,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png\",srcSet:\"https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png?scale-down-to=512 512w,https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png 1440w\"}},WpFxoWR_W:{background:{alt:\"Future agi\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1034),pixelHeight:776,pixelWidth:1440,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png\",srcSet:\"https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png?scale-down-to=512 512w,https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png 1440w\"}},XGqg_W9lu:{background:{alt:\"Future agi\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1032),pixelHeight:776,pixelWidth:1440,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png\",srcSet:\"https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png?scale-down-to=512 512w,https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png 1440w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"Future agi\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1329),pixelHeight:776,pixelWidth:1440,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png\",srcSet:\"https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png?scale-down-to=512 512w,https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IziX5GorJyuAsd72K5aAIw34U.png 1440w\"},className:\"framer-o5mwei\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-18szz3e\",\"data-framer-appear-id\":\"18szz3e\",\"data-framer-name\":\"Logo cloud\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lrl6cn\",\"data-framer-name\":\"Container\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xvytzo\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTYwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(71, 85, 105)\"},children:\"Integrated with\"})}),className:\"framer-s6ehj1\",fonts:[\"GF;Mulish-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hrd47c-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"M7kFwlm8z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:1,fadeWidth:25,overflow:false},gap:50,height:\"100%\",hoverFactor:1,id:\"M7kFwlm8z\",layoutId:\"M7kFwlm8z\",padding:9,paddingBottom:9,paddingLeft:9,paddingPerSide:false,paddingRight:9,paddingTop:9,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Open AI\",fit:\"fit\",pixelHeight:70,pixelWidth:282,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6Agg4JmmRDRwr7euXVIteJ7410E.svg\"},className:\"framer-pv5yg5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Anthropic\",fit:\"fit\",pixelHeight:70,pixelWidth:625,positionX:\"center\",positionY:\"center\",sizes:\"130px\",src:\"https://framerusercontent.com/images/QjACNi5oBGRrBxgmztdOsXEJLg.svg\",srcSet:\"https://framerusercontent.com/images/QjACNi5oBGRrBxgmztdOsXEJLg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/QjACNi5oBGRrBxgmztdOsXEJLg.svg 625w\"},className:\"framer-12looqu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Claude\",fit:\"fit\",pixelHeight:30,pixelWidth:114,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0FThxCm1UBBDhc8KSQfHxAARo.svg\"},className:\"framer-1d90ej0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Hugging Face\",fit:\"fit\",pixelHeight:70,pixelWidth:315,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GThxhjP4vpjHhpsXEdrX1sxtxOo.svg\"},className:\"framer-nekie6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Together AI\",fit:\"fit\",pixelHeight:70,pixelWidth:382,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pNYvjg02F21pHLMdkImOzPNNSA.svg\"},className:\"framer-12wpvgx\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Deepseek\",fit:\"fit\",pixelHeight:456,pixelWidth:1560,positionX:\"center\",positionY:\"center\",sizes:\"130px\",src:\"https://framerusercontent.com/images/4vIapkHpEDkkwTfTsHVK0YrKdI.png\",srcSet:\"https://framerusercontent.com/images/4vIapkHpEDkkwTfTsHVK0YrKdI.png?scale-down-to=512 512w,https://framerusercontent.com/images/4vIapkHpEDkkwTfTsHVK0YrKdI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4vIapkHpEDkkwTfTsHVK0YrKdI.png 1560w\"},className:\"framer-5b0lfe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Perplexity\",fit:\"fit\",pixelHeight:456,pixelWidth:1564,positionX:\"center\",positionY:\"center\",sizes:\"130px\",src:\"https://framerusercontent.com/images/wvG4oOQFc0A2FHcxjlLDkwUYo1A.png\",srcSet:\"https://framerusercontent.com/images/wvG4oOQFc0A2FHcxjlLDkwUYo1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/wvG4oOQFc0A2FHcxjlLDkwUYo1A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wvG4oOQFc0A2FHcxjlLDkwUYo1A.png 1564w\"},className:\"framer-2h01nd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Cohere\",fit:\"fit\",pixelHeight:17,pixelWidth:103,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Zgpif1fsSagCSEa04hDwc1WcPU.svg\"},className:\"framer-tukmyk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"sagemaker\",fit:\"fit\",pixelHeight:31,pixelWidth:31,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bpe3XhhvFl6WvvSAnYlM7wg0IM.svg\"},className:\"framer-dsdurn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Palm model\",fit:\"fit\",pixelHeight:436,pixelWidth:860,positionX:\"center\",positionY:\"center\",sizes:\"40px\",src:\"https://framerusercontent.com/images/k3mpOiMlljXszJR3gA0Os7fn8.png\",srcSet:\"https://framerusercontent.com/images/k3mpOiMlljXszJR3gA0Os7fn8.png?scale-down-to=512 512w,https://framerusercontent.com/images/k3mpOiMlljXszJR3gA0Os7fn8.png 860w\"},className:\"framer-9smfwg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Grok\",fit:\"fit\",pixelHeight:31,pixelWidth:91,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qVLFCSZwiECBsgusjieDHH4spIU.svg\"},className:\"framer-c20ly3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Azure\",fit:\"fit\",pixelHeight:30,pixelWidth:103,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0xFdYfNDkntXazt3MqP6vp84azE.svg\"},className:\"framer-1x2c1iv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Gemini\",fit:\"fit\",pixelHeight:456,pixelWidth:1236,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/VBwGt9zurK0EJ6B1AEhWTL6v4.png\",srcSet:\"https://framerusercontent.com/images/VBwGt9zurK0EJ6B1AEhWTL6v4.png?scale-down-to=512 512w,https://framerusercontent.com/images/VBwGt9zurK0EJ6B1AEhWTL6v4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VBwGt9zurK0EJ6B1AEhWTL6v4.png 1236w\"},className:\"framer-17bvdma\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Mistral AI\",fit:\"fit\",pixelHeight:30,pixelWidth:114,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vozddlpIgUMyCoInzJPMKv2lX0.svg\"},className:\"framer-1e8cd0j\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Bedrock\",fit:\"fill\",pixelHeight:436,pixelWidth:1404,sizes:\"100px\",src:\"https://framerusercontent.com/images/47Yc3QNO9QNbiHfweBkQqP55FTc.png\",srcSet:\"https://framerusercontent.com/images/47Yc3QNO9QNbiHfweBkQqP55FTc.png?scale-down-to=512 512w,https://framerusercontent.com/images/47Yc3QNO9QNbiHfweBkQqP55FTc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/47Yc3QNO9QNbiHfweBkQqP55FTc.png 1404w\"},className:\"framer-1xj8uet\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Llama\",fit:\"fit\",pixelHeight:30,pixelWidth:74,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CKYgw0m0PXP94RrgrrAlgmJNnxE.svg\"},className:\"framer-18jd5sf\"})],speed:55,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-sg292b\",\"data-framer-name\":\"Features Content Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kjhgsb\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-1bm616f\",\"data-framer-name\":\"Dashboard Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t9yspp\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1hg2zz8\",\"data-framer-appear-id\":\"1hg2zz8\",\"data-framer-name\":\"Dashboard Image\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-a6qfn3\",\"data-framer-name\":\"Features Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p4t3ov\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k9sxvx\",\"data-border\":true,\"data-framer-name\":\"Animated_Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7x73cs-container\",isAuthoredByUser:true,nodeId:\"CKH7I8m8d\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:20,gapSize:0,height:\"100%\",id:\"CKH7I8m8d\",incrementType:\"integer\",layoutId:\"CKH7I8m8d\",loop:false,prefixColor:\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\",prefixFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Mulish\", \"Mulish Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:800},speed:120,start:0,startOnViewport:true,style:{width:\"100%\"},suffixColor:\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\",suffixFont:{},suffixText:\"x\",textColor:\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\",textSize:60,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vznosq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc833bc8-5889-4c5d-8b98-862b6e5a7d3d, rgb(27, 21, 43))\"},children:\"Faster AI Evaluation\"})}),className:\"framer-15s4oxi\",\"data-framer-name\":\"Text\",fonts:[\"GF;Mulish-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1enyo3\",\"data-border\":true,\"data-framer-name\":\"Animated_Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dnbhod-container\",isAuthoredByUser:true,nodeId:\"WBSNg6k3s\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:10,gapSize:0,height:\"100%\",id:\"WBSNg6k3s\",incrementType:\"integer\",layoutId:\"WBSNg6k3s\",loop:false,prefixColor:\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\",prefixFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Mulish\", \"Mulish Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:800},speed:115,start:0,startOnViewport:true,style:{width:\"100%\"},suffixColor:\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\",suffixFont:{},suffixText:\"x\",textColor:\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\",textSize:60,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12xoie6\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc833bc8-5889-4c5d-8b98-862b6e5a7d3d, rgb(27, 21, 43))\"},children:\"Faster Agent Optimization\"})}),className:\"framer-erdz1n\",\"data-framer-name\":\"Text\",fonts:[\"GF;Mulish-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-116e0ci\",\"data-border\":true,\"data-framer-name\":\"Animated_Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2xmd2y-container\",isAuthoredByUser:true,nodeId:\"Tttg05oeh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:99,gapSize:0,height:\"100%\",id:\"Tttg05oeh\",incrementType:\"integer\",layoutId:\"Tttg05oeh\",loop:false,prefixColor:\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\",prefixFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Mulish\", \"Mulish Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:800},speed:10,start:0,startOnViewport:true,style:{width:\"100%\"},suffixColor:\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\",suffixFont:{},suffixText:\"%\",textColor:\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\",textSize:60,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qo4nfj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc833bc8-5889-4c5d-8b98-862b6e5a7d3d, rgb(27, 21, 43))\"},children:\"Model and Agent Accuracy in Production\"})}),className:\"framer-1nknh2b\",\"data-framer-name\":\"Text\",fonts:[\"GF;Mulish-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HfEKj3H6L\"},implicitPathVariables:undefined},{href:{webPageId:\"HfEKj3H6L\"},implicitPathVariables:undefined},{href:{webPageId:\"HfEKj3H6L\"},implicitPathVariables:undefined},{href:{webPageId:\"HfEKj3H6L\"},implicitPathVariables:undefined},{href:{webPageId:\"HfEKj3H6L\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{y:undefined},kQnI8vfaN:{y:(componentViewport?.y||0)+0+1084+0+266+0+0+0+1005},WpFxoWR_W:{y:(componentViewport?.y||0)+0+1034+0+216+40+0+0+990},XGqg_W9lu:{y:(componentViewport?.y||0)+0+1032+0+216+0+0+40+1005}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+1329+0+266+0+0+0+341,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-9z6lca-container\",\"data-framer-appear-id\":\"9z6lca\",initial:animation3,nodeId:\"o5bclurXf\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{GrpQ8zFBL:resolvedLinks2[4]},kQnI8vfaN:{GrpQ8zFBL:resolvedLinks2[3]},WpFxoWR_W:{GrpQ8zFBL:resolvedLinks2[1]},XGqg_W9lu:{GrpQ8zFBL:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ButtonsButton,{cRoeZpcrs:\"Explore stories of our patrons\",FsefAOOPs:\"var(--token-d49ce14e-f5dc-463a-9b8d-4f0e772df7f1, rgb(255, 255, 255))\",G7ATSoElB:\"15px 24px 15px 24px\",GrpQ8zFBL:resolvedLinks2[0],GUUzqr3t0:\"rgb(255, 255, 255)\",height:\"100%\",id:\"o5bclurXf\",layoutId:\"o5bclurXf\",MRUSzrhuu:20,SM93ZbT4W:true,variant:\"iu0zXnEii\",width:\"100%\",yVG0g5uWF:\"14px\"})})})})})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vgkt9d\",\"data-framer-name\":\"Process\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-b1mqg4\",\"data-framer-name\":\"Scroll Speed\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mnthz0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{background:{alt:\"Future AGI\",fit:\"fill\",pixelHeight:424,pixelWidth:1440,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) + 73px)`,src:\"https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png\",srcSet:\"https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png 1440w\"}},kQnI8vfaN:{background:{alt:\"Future AGI\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2495+0+0+0+-189),pixelHeight:424,pixelWidth:1440,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) + 1px)`,src:\"https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png\",srcSet:\"https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png 1440w\"}},WpFxoWR_W:{background:{alt:\"Future AGI\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2415+0+0+0+-189),pixelHeight:424,pixelWidth:1440,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) + 4px)`,src:\"https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png\",srcSet:\"https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png 1440w\"}},XGqg_W9lu:{background:{alt:\"Future AGI\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2428+0+0+0+-189),pixelHeight:424,pixelWidth:1440,sizes:\"771px\",src:\"https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png\",srcSet:\"https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Future AGI\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2064+0+0+0+-189),pixelHeight:424,pixelWidth:1440,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) + 73px)`,src:\"https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png\",srcSet:\"https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zyO3ej06CnwfTyzK96gODlaR6Q.png 1440w\"},className:\"framer-p4rr9n\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l67d8o\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15jj9b6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gbpoex\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTMwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"var(--token-89961450-d03b-40c8-92ee-94aff41682bd, rgb(249, 244, 244))\"},children:\"LLMs are probabilistic. \"})}),className:\"framer-1ebsw6b\",\"data-framer-name\":\"Projects\",fonts:[\"GF;Mulish-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-89961450-d03b-40c8-92ee-94aff41682bd, rgb(249, 244, 244))\"},children:\"Build, Evaluate and Improve AI reliably with Future AGI.\"})})},XGqg_W9lu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--token-89961450-d03b-40c8-92ee-94aff41682bd, rgb(249, 244, 244))\"},children:\"Build, Evaluate and Improve AI reliably with Future AGI.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-89961450-d03b-40c8-92ee-94aff41682bd, rgb(249, 244, 244))\"},children:\"Build, Evaluate and Improve AI reliably with Future AGI.\"})}),className:\"framer-66xbcz\",\"data-framer-name\":\"Projects\",fonts:[\"GF;Mulish-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16wyvud hidden-1je9cn6\",\"data-framer-name\":\"Slider\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{bounce:.1,damping:60,delay:0,duration:.6,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1100,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1e3,y:0}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-900,y:0}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-800,y:0}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-500,y:0}},{ref:ref10,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-300,y:0}},{ref:ref11,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hhuh16\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{__framer__styleTransformEffectEnabled:undefined},WpFxoWR_W:{__framer__styleTransformEffectEnabled:undefined},XGqg_W9lu:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:0,ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-5200,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ya694n\",\"data-framer-name\":\"Cards\",id:elementId5,ref:ref12,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{height:357,width:\"797px\",y:undefined},kQnI8vfaN:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px)`,y:(componentViewport?.y||0)+0+2495+0+0+0+100+0+0+125+0+0},WpFxoWR_W:{height:600,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2415+0+0+0+100+0+0+179+0+0},XGqg_W9lu:{height:600,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2428+0+0+0+100+0+0+175+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:442,width:\"870px\",y:(componentViewport?.y||0)+0+2064+0+0+0+100+94.5+0+139+30,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{__framer__styleTransformEffectEnabled:undefined},WpFxoWR_W:{__framer__styleTransformEffectEnabled:undefined},XGqg_W9lu:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref7,target:{opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jvw4w8-container\",\"data-framer-name\":\"Card 1\",id:elementId6,name:\"Card 1\",nodeId:\"P0itrj1P1\",ref:ref13,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{style:{height:\"100%\",width:\"100%\"},variant:\"ck5ipbFAn\"},kQnI8vfaN:{__framer__variantAppearEffectEnabled:undefined,variant:\"UWLfpasWP\"},WpFxoWR_W:{__framer__variantAppearEffectEnabled:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\"},XGqg_W9lu:{__framer__variantAppearEffectEnabled:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\"}},children:/*#__PURE__*/_jsx(CardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref6,target:\"EzF33cWIh\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,GOKbNSLB3:\"Datasets\",height:\"100%\",id:\"P0itrj1P1\",layoutId:\"P0itrj1P1\",name:\"Card 1\",PvFCHLJ2L:\"Generate and manage diverse synthetic datasets to effectively train and test AI models, including edge cases. \",SH26uqw46:\"rgb(108, 43, 160)\",style:{width:\"100%\"},variant:\"EzF33cWIh\",voR6WU_0f:\"rgb(255, 255, 255)\",width:\"100%\",WNXF2KHYl:{borderColor:\"rgb(241, 241, 241)\",borderStyle:\"solid\",borderWidth:1},xnB7MF0CK:\"rgb(244, 214, 255)\",XPMJb2T7e:\"rgb(255, 255, 255)\",ylPJhbgKV:\"rgba(46, 0, 87, 0)\",z_p1aWZ_4:addImageAlt({src:\"https://framerusercontent.com/images/ogCaRuKRFtwjKQndefR2J4JVs.png\",srcSet:\"https://framerusercontent.com/images/ogCaRuKRFtwjKQndefR2J4JVs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ogCaRuKRFtwjKQndefR2J4JVs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ogCaRuKRFtwjKQndefR2J4JVs.png 1960w\"},\"Dataset\")})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{height:357,width:\"797px\",y:undefined},kQnI8vfaN:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px)`,y:(componentViewport?.y||0)+0+2495+0+0+0+100+0+0+125+0+462},WpFxoWR_W:{height:600,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2415+0+0+0+100+0+0+179+0+0},XGqg_W9lu:{height:600,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2428+0+0+0+100+0+0+175+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:442,width:\"870px\",y:(componentViewport?.y||0)+0+2064+0+0+0+100+94.5+0+139+30,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{__framer__styleTransformEffectEnabled:undefined},WpFxoWR_W:{__framer__styleTransformEffectEnabled:undefined},XGqg_W9lu:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref8,target:{opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mkrg00-container\",\"data-framer-name\":\"Card 1\",name:\"Card 1\",nodeId:\"coF4xh8oc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{style:{height:\"100%\",width:\"100%\"},variant:\"ck5ipbFAn\"},kQnI8vfaN:{__framer__variantAppearEffectEnabled:undefined,variant:\"UWLfpasWP\"},WpFxoWR_W:{__framer__variantAppearEffectEnabled:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\"},XGqg_W9lu:{__framer__variantAppearEffectEnabled:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\"}},children:/*#__PURE__*/_jsx(CardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref7,target:\"ck5ipbFAn\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,GOKbNSLB3:\"Experiment\",height:\"100%\",id:\"coF4xh8oc\",layoutId:\"coF4xh8oc\",name:\"Card 1\",PvFCHLJ2L:\"Test, compare and analyse multiple agentic workflow configurations to identify the \u2018Winner\u2019 based on built-in or custom evaluation metrics- literally no code!\",SH26uqw46:\"rgb(255, 145, 137)\",style:{width:\"100%\"},variant:\"EzF33cWIh\",voR6WU_0f:\"rgb(31, 41, 55)\",width:\"100%\",WNXF2KHYl:{borderColor:\"rgb(65, 65, 65)\",borderStyle:\"solid\",borderWidth:1},xnB7MF0CK:\"rgb(65, 65, 65)\",XPMJb2T7e:\"rgb(31, 41, 55)\",ylPJhbgKV:\"rgba(179, 74, 66, 0)\",z_p1aWZ_4:addImageAlt({src:\"https://framerusercontent.com/images/70X5Z5ELFN1JynblSnvRy26GkQ.png\",srcSet:\"https://framerusercontent.com/images/70X5Z5ELFN1JynblSnvRy26GkQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/70X5Z5ELFN1JynblSnvRy26GkQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/70X5Z5ELFN1JynblSnvRy26GkQ.png 1960w\"},\"Experiment\")})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{height:357,width:\"797px\",y:undefined},kQnI8vfaN:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px)`,y:(componentViewport?.y||0)+0+2495+0+0+0+100+0+0+125+0+924},WpFxoWR_W:{height:600,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2415+0+0+0+100+0+0+179+0+640},XGqg_W9lu:{height:600,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2428+0+0+0+100+0+0+175+0+640}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:442,width:\"870px\",y:(componentViewport?.y||0)+0+2064+0+0+0+100+94.5+0+139+30,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{__framer__styleTransformEffectEnabled:undefined},WpFxoWR_W:{__framer__styleTransformEffectEnabled:undefined},XGqg_W9lu:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-109ut1s-container\",\"data-framer-name\":\"Card 1\",name:\"Card 1\",nodeId:\"qtfHMIDuu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{style:{height:\"100%\",width:\"100%\"},variant:\"ck5ipbFAn\"},kQnI8vfaN:{__framer__variantAppearEffectEnabled:undefined,variant:\"UWLfpasWP\"},WpFxoWR_W:{__framer__variantAppearEffectEnabled:undefined,PvFCHLJ2L:\"Assess and measure agent performance, pin-point root cause and close the loop with actionable feedback using our proprietary eval metrics. \",style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\"},XGqg_W9lu:{__framer__variantAppearEffectEnabled:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\"}},children:/*#__PURE__*/_jsx(CardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref8,target:\"ck5ipbFAn\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,GOKbNSLB3:\"Evaluate\",height:\"100%\",id:\"qtfHMIDuu\",layoutId:\"qtfHMIDuu\",name:\"Card 1\",PvFCHLJ2L:\"Assess and measure agent performance, pin-point root cause and close loop with actionable feedback using our proprietary eval metrics. \",SH26uqw46:\"rgb(251, 229, 255)\",style:{width:\"100%\"},variant:\"EzF33cWIh\",voR6WU_0f:\"rgb(31, 41, 55)\",width:\"100%\",WNXF2KHYl:{borderColor:\"rgb(65, 65, 65)\",borderStyle:\"solid\",borderWidth:1},xnB7MF0CK:\"rgb(65, 65, 65)\",XPMJb2T7e:\"rgb(31, 41, 55)\",ylPJhbgKV:\"rgba(238, 172, 250, 0)\",z_p1aWZ_4:addImageAlt({src:\"https://framerusercontent.com/images/ZF21ZzGiJe0IGdp9WqBZscp7gIo.png\",srcSet:\"https://framerusercontent.com/images/ZF21ZzGiJe0IGdp9WqBZscp7gIo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZF21ZzGiJe0IGdp9WqBZscp7gIo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZF21ZzGiJe0IGdp9WqBZscp7gIo.png 1960w\"},\"Evaluate\")})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{height:357,width:\"797px\",y:undefined},kQnI8vfaN:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px)`,y:(componentViewport?.y||0)+0+2495+0+0+0+100+0+0+125+0+1386},WpFxoWR_W:{height:600,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2415+0+0+0+100+0+0+179+0+640},XGqg_W9lu:{height:600,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2428+0+0+0+100+0+0+175+0+640}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:442,width:\"870px\",y:(componentViewport?.y||0)+0+2064+0+0+0+100+94.5+0+139+30,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{__framer__styleTransformEffectEnabled:undefined},WpFxoWR_W:{__framer__styleTransformEffectEnabled:undefined},XGqg_W9lu:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref10,target:{opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hutano-container\",\"data-framer-name\":\"Card 1\",name:\"Card 1\",nodeId:\"X03mCbUq1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{style:{height:\"100%\",width:\"100%\"},variant:\"ck5ipbFAn\"},kQnI8vfaN:{__framer__variantAppearEffectEnabled:undefined,variant:\"UWLfpasWP\"},WpFxoWR_W:{__framer__variantAppearEffectEnabled:undefined,PvFCHLJ2L:\"Enhance your LLM application's performance by incorporating feedback from evaluations or custom input, and let our system automatically refine your prompt.\",style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\"},XGqg_W9lu:{__framer__variantAppearEffectEnabled:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\"}},children:/*#__PURE__*/_jsx(CardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref9,target:\"ck5ipbFAn\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,GOKbNSLB3:\"Improve\",height:\"100%\",id:\"X03mCbUq1\",layoutId:\"X03mCbUq1\",name:\"Card 1\",PvFCHLJ2L:\"Enhance your LLM application's performance by incorporating feedback from evaluations or custom input, and let system automatically refine your prompt based.\",SH26uqw46:\"rgb(120, 87, 252)\",style:{width:\"100%\"},variant:\"EzF33cWIh\",voR6WU_0f:\"rgb(255, 255, 255)\",width:\"100%\",WNXF2KHYl:{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:1},xnB7MF0CK:\"rgb(255, 255, 255)\",XPMJb2T7e:\"rgb(255, 255, 255)\",ylPJhbgKV:\"rgba(90, 65, 191, 0)\",z_p1aWZ_4:addImageAlt({src:\"https://framerusercontent.com/images/qr7mED0SWtW4QaEBrmQi3AsYYZo.png\",srcSet:\"https://framerusercontent.com/images/qr7mED0SWtW4QaEBrmQi3AsYYZo.png?scale-down-to=512 512w,https://framerusercontent.com/images/qr7mED0SWtW4QaEBrmQi3AsYYZo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qr7mED0SWtW4QaEBrmQi3AsYYZo.png 1960w\"},\"Improve\")})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{height:357,width:\"797px\",y:undefined},kQnI8vfaN:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px)`,y:(componentViewport?.y||0)+0+2495+0+0+0+100+0+0+125+0+1848},WpFxoWR_W:{height:620,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2415+0+0+0+100+0+0+179+0+1280},XGqg_W9lu:{height:620,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2428+0+0+0+100+0+0+175+0+1280}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:442,width:\"870px\",y:(componentViewport?.y||0)+0+2064+0+0+0+100+94.5+0+139+30,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{__framer__styleTransformEffectEnabled:undefined},WpFxoWR_W:{__framer__styleTransformEffectEnabled:undefined},XGqg_W9lu:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref11,target:{opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ruk39z-container\",\"data-framer-name\":\"Card 1\",name:\"Card 1\",nodeId:\"BW__CkkBx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{style:{height:\"100%\",width:\"100%\"},variant:\"ck5ipbFAn\",z_p1aWZ_4:addImageAlt({src:\"https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png\",srcSet:\"https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png?scale-down-to=512 512w,https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png 1960w\"},\"Monitor & Protect\")},kQnI8vfaN:{__framer__variantAppearEffectEnabled:undefined,variant:\"UWLfpasWP\"},WpFxoWR_W:{__framer__variantAppearEffectEnabled:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\",z_p1aWZ_4:addImageAlt({src:\"https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png\",srcSet:\"https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png?scale-down-to=512 512w,https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png 1960w\"},\"Monitor & Protect\")},XGqg_W9lu:{__framer__variantAppearEffectEnabled:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\"}},children:/*#__PURE__*/_jsx(CardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref10,target:\"ck5ipbFAn\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,GOKbNSLB3:\"Monitor & Protect\",height:\"100%\",id:\"BW__CkkBx\",layoutId:\"BW__CkkBx\",name:\"Card 1\",PvFCHLJ2L:\"Track applications in production with real-time insights, diagnose issues, and improve robustness, while gaining priority access to Future AGI's safety metrics to block unsafe content with minimal latency.\",SH26uqw46:\"rgb(77, 219, 230)\",style:{width:\"100%\"},variant:\"EzF33cWIh\",voR6WU_0f:\"rgb(31, 41, 55)\",width:\"100%\",WNXF2KHYl:{borderColor:\"rgb(65, 65, 65)\",borderStyle:\"solid\",borderWidth:1},xnB7MF0CK:\"rgb(65, 65, 65)\",XPMJb2T7e:\"rgb(31, 41, 55)\",ylPJhbgKV:\"rgba(48, 144, 150, 0)\",z_p1aWZ_4:addImageAlt({src:\"https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png\",srcSet:\"https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png?scale-down-to=512 512w,https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iMoaM8JcZWwfB2BiGaDBtOvk4vM.png 1960w\"},\"Monitor & protect\")})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{height:357,width:\"797px\",y:undefined},kQnI8vfaN:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px)`,y:(componentViewport?.y||0)+0+2495+0+0+0+100+0+0+125+0+2310},WpFxoWR_W:{height:620,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2415+0+0+0+100+0+0+179+0+1280},XGqg_W9lu:{height:620,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1264px) - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2428+0+0+0+100+0+0+175+0+1280}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:442,width:\"870px\",y:(componentViewport?.y||0)+0+2064+0+0+0+100+94.5+0+139+30,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{__framer__styleTransformEffectEnabled:undefined},WpFxoWR_W:{__framer__styleTransformEffectEnabled:undefined},XGqg_W9lu:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80}},{ref:ref10,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ed2ve1-container\",\"data-framer-name\":\"Card 1\",name:\"Card 1\",nodeId:\"CQtzklthZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{style:{height:\"100%\",width:\"100%\"},variant:\"ck5ipbFAn\"},kQnI8vfaN:{__framer__variantAppearEffectEnabled:undefined,variant:\"UWLfpasWP\"},WpFxoWR_W:{__framer__variantAppearEffectEnabled:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\"},XGqg_W9lu:{__framer__variantAppearEffectEnabled:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UWLfpasWP\"}},children:/*#__PURE__*/_jsx(CardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref11,target:\"ck5ipbFAn\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,GOKbNSLB3:\"Custom and Multimodal for your horizontal use-case\",height:\"100%\",id:\"CQtzklthZ\",layoutId:\"CQtzklthZ\",name:\"Card 1\",PvFCHLJ2L:\"Evaluate your AI across different modalities- text, image,\\xa0 audio, and video. Pinpoint errors and automatically get the feedback to improve it.\",SH26uqw46:\"rgb(206, 216, 27)\",style:{width:\"100%\"},variant:\"EzF33cWIh\",voR6WU_0f:\"rgb(31, 41, 55)\",width:\"100%\",WNXF2KHYl:{borderColor:\"rgb(65, 65, 65)\",borderStyle:\"solid\",borderWidth:1},xnB7MF0CK:\"rgb(65, 65, 65)\",XPMJb2T7e:\"rgb(31, 41, 55)\",ylPJhbgKV:\"rgba(140, 145, 38, 0)\",z_p1aWZ_4:addImageAlt({src:\"https://framerusercontent.com/images/eDblqVTB9prZ84s2AOh819OXQY.png\",srcSet:\"https://framerusercontent.com/images/eDblqVTB9prZ84s2AOh819OXQY.png?scale-down-to=512 512w,https://framerusercontent.com/images/eDblqVTB9prZ84s2AOh819OXQY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eDblqVTB9prZ84s2AOh819OXQY.png 1960w\"},\"Custom and Multimodal for your horizontal use-case\")})})})})})})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:0,ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-957,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-xs3s5h hidden-kolgk7 hidden-1vp6wyn hidden-1je9cn6\",\"data-framer-name\":\"$123444\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gh78jo hidden-kolgk7 hidden-1vp6wyn hidden-1je9cn6\",\"data-framer-name\":\"Scroll Triggers\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16ofoc\",\"data-framer-name\":\"Scroll Triggger 1\",id:elementId7,ref:ref6}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16158j2\",\"data-framer-name\":\"Scroll Triggger 2\",id:elementId8,ref:ref7}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gaf0th\",\"data-framer-name\":\"Scroll Triggger 3\",id:elementId9,ref:ref8}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ahebl8\",\"data-framer-name\":\"Scroll Triggger 4\",id:elementId10,ref:ref9}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x8ttai\",\"data-framer-name\":\"Scroll Triggger 4\",id:elementId11,ref:ref10}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8tbxdo\",\"data-framer-name\":\"Scroll Triggger 4\",id:elementId12,ref:ref11})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rb63wp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hfhhfm\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{background:{alt:\"Logo Icon\",fit:\"fill\",pixelHeight:70,pixelWidth:70,src:\"https://framerusercontent.com/images/ZzrW3KK5whkDCUsLYXLGbjiL8ks.svg\"}},kQnI8vfaN:{background:{alt:\"Logo Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5572+-70+0+32.5),pixelHeight:70,pixelWidth:70,src:\"https://framerusercontent.com/images/ZzrW3KK5whkDCUsLYXLGbjiL8ks.svg\"}},WpFxoWR_W:{background:{alt:\"Logo Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4694+-70+0+32.5),pixelHeight:70,pixelWidth:70,src:\"https://framerusercontent.com/images/ZzrW3KK5whkDCUsLYXLGbjiL8ks.svg\"}},XGqg_W9lu:{background:{alt:\"Logo Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4703+-70+0+32.5),pixelHeight:70,pixelWidth:70,src:\"https://framerusercontent.com/images/ZzrW3KK5whkDCUsLYXLGbjiL8ks.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9472+-70+0+32.5),pixelHeight:70,pixelWidth:70,src:\"https://framerusercontent.com/images/ZzrW3KK5whkDCUsLYXLGbjiL8ks.svg\"},className:\"framer-1matj5m\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sfwzg8\",\"data-framer-name\":\"Title-Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g0fku\",\"data-framer-name\":\"Titles\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Integrate into your Existing Workflow\"})})},WpFxoWR_W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Integrate into your Existing Workflow\"})})},XGqg_W9lu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Integrate into your Existing Workflow\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Integrate into your Existing Workflow\"})}),className:\"framer-1dvtt04\",fonts:[\"GF;Mulish-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(65, 65, 65)\"},children:\"Future AGI is developer-first and integrates seamlessly with industry-standard tools, so your team can keep their workflow unchanged.\"})}),className:\"framer-1o00gbb\",effect:textEffect1,fonts:[\"GF;Mulish-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lkh9a0\",\"data-framer-name\":\"Card Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 160px)`,y:undefined},kQnI8vfaN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+5572+50+248+0+0},WpFxoWR_W:{width:\"695px\",y:(componentViewport?.y||0)+0+4694+50+260+20+0},XGqg_W9lu:{width:\"695px\",y:(componentViewport?.y||0)+0+4703+50+260+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:595,y:(componentViewport?.y||0)+0+9472+80+260+20+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation12,className:\"framer-1rcrghe-container\",\"data-framer-appear-id\":\"1rcrghe\",initial:animation13,nodeId:\"ULomdMluZ\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{style:{width:\"100%\"}},kQnI8vfaN:{style:{width:\"100%\"}},WpFxoWR_W:{style:{width:\"100%\"}},XGqg_W9lu:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Code,{emE111WLT:\"auto\",height:\"100%\",id:\"ULomdMluZ\",layoutId:\"ULomdMluZ\",variant:\"MLY4BV6LW\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3iq5jh\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rxw6wl\",\"data-framer-name\":\"Title-Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17oen54\",\"data-framer-name\":\"Other articles\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Case Study, Blogs and more\"})})},WpFxoWR_W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"29px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Case Study, Blogs and More\"})})},XGqg_W9lu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"29px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Case Study, Blogs and More\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Case Study, Blogs and more\"})}),className:\"framer-1kbzk7f\",fonts:[\"GF;Mulish-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-twsn0j\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{query:{from:{alias:\"VhisAdonV\",data:CaseStudy,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"VhisAdonV\",name:\"hDRt7bB2_\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"w3nLshw2G\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"YFpbNqNN2\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"YGIt5Vnec\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"DN981qGw2\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"hG1gaZYOq\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"a5NDAhZPO\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"id\",type:\"Identifier\"}]}},WpFxoWR_W:{query:{from:{alias:\"VhisAdonV\",data:CaseStudy,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"VhisAdonV\",name:\"hDRt7bB2_\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"w3nLshw2G\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"YFpbNqNN2\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"YGIt5Vnec\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"DN981qGw2\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"hG1gaZYOq\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"a5NDAhZPO\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"id\",type:\"Identifier\"}]}},XGqg_W9lu:{query:{from:{alias:\"VhisAdonV\",data:CaseStudy,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"VhisAdonV\",name:\"hDRt7bB2_\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"w3nLshw2G\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"YFpbNqNN2\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"YGIt5Vnec\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"DN981qGw2\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"hG1gaZYOq\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"a5NDAhZPO\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"VhisAdonV\",data:CaseStudy,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"VhisAdonV\",name:\"hDRt7bB2_\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"w3nLshw2G\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"YFpbNqNN2\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"YGIt5Vnec\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"DN981qGw2\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"hG1gaZYOq\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"a5NDAhZPO\",type:\"Identifier\"},{collection:\"VhisAdonV\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({a5NDAhZPO:a5NDAhZPOVhisAdonV,DN981qGw2:DN981qGw2VhisAdonV,hDRt7bB2_:hDRt7bB2_VhisAdonV,hG1gaZYOq:hG1gaZYOqVhisAdonV,id:idVhisAdonV,w3nLshw2G:w3nLshw2GVhisAdonV,YFpbNqNN2:YFpbNqNN2VhisAdonV,YGIt5Vnec:YGIt5VnecVhisAdonV},index)=>{hDRt7bB2_VhisAdonV??=\"\";YFpbNqNN2VhisAdonV??=\"\";YGIt5VnecVhisAdonV??=\"\";DN981qGw2VhisAdonV??=\"\";hG1gaZYOqVhisAdonV??=\"\";a5NDAhZPOVhisAdonV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`VhisAdonV-${idVhisAdonV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{hDRt7bB2_:hDRt7bB2_VhisAdonV},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{hDRt7bB2_:hDRt7bB2_VhisAdonV},webPageId:\"RtXeeS4LK\"},motionChild:true,nodeId:\"CvjP2KmQJ\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vvhkoe framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Blog-list-card\",whileHover:animation14,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1izhns5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 110px)`,...toResponsiveImage(w3nLshw2GVhisAdonV)}},kQnI8vfaN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5572+50+883+0+0+0+0+0+68+0+768+15+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 70px)`,...toResponsiveImage(w3nLshw2GVhisAdonV)}},WpFxoWR_W:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px)`,...toResponsiveImage(w3nLshw2GVhisAdonV)}},XGqg_W9lu:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 110px)`,...toResponsiveImage(w3nLshw2GVhisAdonV)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 30px)`,...toResponsiveImage(w3nLshw2GVhisAdonV)},className:\"framer-1ft7iqv\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pl6g6h\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ffxuld\",children:/*#__PURE__*/_jsx(RichTextDefault11bkxz3p,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Enhancing Meeting Summarization Through Future AGI\u2019s Intelligent Evaluation Framework\"})}),className:\"framer-1bkxz3p\",fonts:[\"GF;Mulish-700\"],text:YFpbNqNN2VhisAdonV,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2z96zw\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h7qhhw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTgwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\"},children:\"X% Accuracy\"})}),className:\"framer-76bxaa\",fonts:[\"GF;Mulish-800\"],text:YGIt5VnecVhisAdonV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTYwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(65, 65, 65)\"},children:\"Summarization quality\"})}),className:\"framer-18siju8\",\"data-framer-name\":\"Text reponsive\",fonts:[\"GF;Mulish-600\"],text:DN981qGw2VhisAdonV,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oefhst\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m2uwtc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yaesgi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTgwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\"},children:\"90% faster\"})}),className:\"framer-1swml15\",fonts:[\"GF;Mulish-800\"],text:hG1gaZYOqVhisAdonV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTUwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(65, 65, 65)\"},children:\"Summary assessment\"})}),className:\"framer-1b5tyzw\",fonts:[\"GF;Mulish-500\"],text:a5NDAhZPOVhisAdonV,verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]})})})})},idVhisAdonV);})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HfEKj3H6L\"},implicitPathVariables:undefined},{href:{webPageId:\"HfEKj3H6L\"},implicitPathVariables:undefined},{href:{webPageId:\"HfEKj3H6L\"},implicitPathVariables:undefined},{href:{webPageId:\"HfEKj3H6L\"},implicitPathVariables:undefined},{href:{webPageId:\"HfEKj3H6L\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{y:undefined},kQnI8vfaN:{y:(componentViewport?.y||0)+0+5572+50+883+0+0+0+0+0+1234},WpFxoWR_W:{y:(componentViewport?.y||0)+0+4694+50+955+0+0+0+0+0+542.5},XGqg_W9lu:{y:(componentViewport?.y||0)+0+4703+50+955+0+0+0+0+0+542.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+9472+80+955+0+0+0+0+0+563.5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1pnno3y-container\",\"data-framer-appear-id\":\"1pnno3y\",initial:animation3,nodeId:\"a6zQB6CaW\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{GrpQ8zFBL:resolvedLinks3[4]},kQnI8vfaN:{GrpQ8zFBL:resolvedLinks3[3]},WpFxoWR_W:{GrpQ8zFBL:resolvedLinks3[1]},XGqg_W9lu:{GrpQ8zFBL:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ButtonsButton,{cRoeZpcrs:\"Explore all case studies\",FsefAOOPs:\"var(--token-d49ce14e-f5dc-463a-9b8d-4f0e772df7f1, rgb(255, 255, 255))\",G7ATSoElB:\"15px 24px 15px 24px\",GrpQ8zFBL:resolvedLinks3[0],GUUzqr3t0:\"rgb(255, 255, 255)\",height:\"100%\",id:\"a6zQB6CaW\",layoutId:\"a6zQB6CaW\",MRUSzrhuu:20,SM93ZbT4W:true,variant:\"iu0zXnEii\",width:\"100%\",yVG0g5uWF:\"14px\"})})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ky84au\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1la112c\",\"data-framer-name\":\"Title-Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uiy6pa\",\"data-framer-name\":\"Other articles\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Media Coverage\"})})},WpFxoWR_W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"29px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Media Coverage\"})})},XGqg_W9lu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"29px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Media Coverage\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 41, 55)\"},children:\"Media Coverage\"})}),className:\"framer-1ddxonh\",fonts:[\"GF;Mulish-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r17v3w-container\",isModuleExternal:true,nodeId:\"O5yA1xrg1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-fb3e2333-13e1-4ff2-b65c-5357fb4c36e4, rgb(151, 71, 255))\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"O5yA1xrg1\",layoutId:\"O5yA1xrg1\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.forbes.com/sites/davidprosser/2025/02/11/holding-ai-applications-to-account-with-future-agi/\",motionChild:true,nodeId:\"i8YAxYhSl\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithwithAppendUTMOnClickg5zedn,{className:\"framer-g5zedn framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3rg5ox\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"The wall street journal\",fit:\"fit\",intrinsicHeight:204,intrinsicWidth:588.5,pixelHeight:692,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"180px\",src:\"https://framerusercontent.com/images/0IUBQLHXvZur8fKB7U5DIUJCmU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0IUBQLHXvZur8fKB7U5DIUJCmU.png?scale-down-to=512 512w,https://framerusercontent.com/images/0IUBQLHXvZur8fKB7U5DIUJCmU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0IUBQLHXvZur8fKB7U5DIUJCmU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0IUBQLHXvZur8fKB7U5DIUJCmU.png 2560w\"},className:\"framer-18x90pz\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10x8405\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Mukta\", \"Mukta Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(182, 182, 182)\"},children:[\"Feb 11, 2025 |\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b604e936-4937-4a96-8e54-3bc1d7fa305c, rgb(12, 12, 12))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtNjAw\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b604e936-4937-4a96-8e54-3bc1d7fa305c, rgb(12, 12, 12))\"},children:\"by Forbes\"})]})}),className:\"framer-2ie2hr\",fonts:[\"GF;Mukta-regular\",\"GF;Mukta-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mrnqpj-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"b0HqmX_E4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"b0HqmX_E4\",layoutId:\"b0HqmX_E4\",letterMode:false,lineCount:2,maxCharacters:20,style:{width:\"100%\"},text:\"How Future AGI Is Holding AI Applications To Account\",textStyle:{color:\"rgb(0, 0, 0)\",font:\"mulish\",fontSize:16,fontWeight:700,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://createsend.com/t/d-221E4F7B4F1ECC062540EF23F30FEDED\",motionChild:true,nodeId:\"t2wmp8rZi\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithwithAppendUTMOnClickbgr8sy,{className:\"framer-bgr8sy framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4qrlu0\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"The wall street journal\",fit:\"fill\",intrinsicHeight:204,intrinsicWidth:588.5,pixelHeight:408,pixelWidth:1177,sizes:\"181px\",src:\"https://framerusercontent.com/images/Lmt0Ax7ZH6AlhogQxfNBgg4uQO4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Lmt0Ax7ZH6AlhogQxfNBgg4uQO4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lmt0Ax7ZH6AlhogQxfNBgg4uQO4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lmt0Ax7ZH6AlhogQxfNBgg4uQO4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Lmt0Ax7ZH6AlhogQxfNBgg4uQO4.png 3840w\"},className:\"framer-6oznnu\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-123u136\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtNjAw\",\"--framer-font-family\":'\"Mukta\", \"Mukta Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b604e936-4937-4a96-8e54-3bc1d7fa305c, rgb(12, 12, 12))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtcmVndWxhcg==\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(182, 182, 182)\"},children:\"10.06.2022 | \"}),\"by The Wall Street Journal\"]})}),className:\"framer-wwe53a\",fonts:[\"GF;Mukta-600\",\"GF;Mukta-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k78btq-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"bU0Y16CiU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"bU0Y16CiU\",layoutId:\"bU0Y16CiU\",letterMode:false,lineCount:2,maxCharacters:20,style:{width:\"100%\"},text:\"San Francisco based AI application evaluation & optimization platform, raised $1.6M in pre-seed funding\",textStyle:{color:\"rgb(0, 0, 0)\",font:\"mulish\",fontSize:16,fontWeight:700,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://fortune.com/2025/02/11/only-about-8-of-dealmakers-are-confident-in-the-international-economy-survey-says/\",motionChild:true,nodeId:\"WgNu7DEN_\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithwithAppendUTMOnClick7eqluu,{className:\"framer-7eqluu framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mmieb9\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Fortune\",fit:\"fit\",intrinsicHeight:204,intrinsicWidth:588.5,pixelHeight:408,pixelWidth:1177,positionX:\"center\",positionY:\"center\",sizes:\"176px\",src:\"https://framerusercontent.com/images/l0Ca9HCKaKIwDqB0xv2rnEX70BQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/l0Ca9HCKaKIwDqB0xv2rnEX70BQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/l0Ca9HCKaKIwDqB0xv2rnEX70BQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l0Ca9HCKaKIwDqB0xv2rnEX70BQ.png 1200w\"},className:\"framer-cpln9q\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3pv40a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Mukta\", \"Mukta Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(182, 182, 182)\"},children:[\"10.06.2022 | \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtNjAw\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b604e936-4937-4a96-8e54-3bc1d7fa305c, rgb(12, 12, 12))\"},children:\"by Fortune\"})]})}),className:\"framer-1x2wqmy\",fonts:[\"GF;Mukta-regular\",\"GF;Mukta-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ydxf25-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"Hvhn2SpAq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"Hvhn2SpAq\",layoutId:\"Hvhn2SpAq\",letterMode:false,lineCount:2,maxCharacters:20,style:{width:\"100%\"},text:\"A San Francisco based AI evaluation & optimization platform raises $1.6 million in pre-seed funding\",textStyle:{color:\"rgb(0, 0, 0)\",font:\"mulish\",fontSize:16,fontWeight:700,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.morningstar.com/news/globe-newswire/1001047861/future-agi-launches-worlds-[\u2026]curate-multimodal-ai-evaluation-tool?utm_source=chatgpt.com\",motionChild:true,nodeId:\"rHOyTDIsf\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithwithAppendUTMOnClick3f66x0,{className:\"framer-3f66x0 framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ed687s\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Morningstar\",fit:\"fit\",intrinsicHeight:204,intrinsicWidth:588.5,pixelHeight:171,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"171px\",src:\"https://framerusercontent.com/images/Brw4OAj4KsJKuXEqWdB9Ft0SDQ.png\",srcSet:\"https://framerusercontent.com/images/Brw4OAj4KsJKuXEqWdB9Ft0SDQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Brw4OAj4KsJKuXEqWdB9Ft0SDQ.png 600w\"},className:\"framer-100gyz8\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yxw43g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtNjAw\",\"--framer-font-family\":'\"Mukta\", \"Mukta Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b604e936-4937-4a96-8e54-3bc1d7fa305c, rgb(12, 12, 12))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtcmVndWxhcg==\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(182, 182, 182)\"},children:\"10.06.2022 | \"}),\"by Morningstar\"]})}),className:\"framer-mdc8a8\",fonts:[\"GF;Mukta-600\",\"GF;Mukta-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c5hnzh-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"MeXGX5FjB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"MeXGX5FjB\",layoutId:\"MeXGX5FjB\",letterMode:false,lineCount:2,maxCharacters:20,style:{width:\"100%\"},text:\"Future AGI launches world\u2019s most accurate multimodal AI evaluation tool\",textStyle:{color:\"rgb(0, 0, 0)\",font:\"mulish\",fontSize:16,fontWeight:700,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://yourstory.com/2025/02/ai-infrastructure-future-agi-secures-pre-seed-funding\",motionChild:true,nodeId:\"kFY1hC4It\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithwithAppendUTMOnClick1r9cld7,{className:\"framer-1r9cld7 framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1syyp6y\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Yourstory\",fit:\"fit\",intrinsicHeight:204,intrinsicWidth:588.5,pixelHeight:408,pixelWidth:1177,positionX:\"center\",positionY:\"center\",sizes:\"175px\",src:\"https://framerusercontent.com/images/ahTAIaBQxE9eVD7icYQmfgkPq0Y.png\",srcSet:\"https://framerusercontent.com/images/ahTAIaBQxE9eVD7icYQmfgkPq0Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/ahTAIaBQxE9eVD7icYQmfgkPq0Y.png 1024w\"},className:\"framer-m7oej5\",\"data-framer-name\":\"Image\",id:\"m7oej5\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fzxng1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Mukta\", \"Mukta Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(182, 182, 182)\"},children:[\"11.06.2022 | \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtNjAw\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b604e936-4937-4a96-8e54-3bc1d7fa305c, rgb(12, 12, 12))\"},children:\"by Yourstory\"})]})}),className:\"framer-1s96q1r\",fonts:[\"GF;Mukta-regular\",\"GF;Mukta-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6xwrz7-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"sj8t5ebdc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"sj8t5ebdc\",layoutId:\"sj8t5ebdc\",letterMode:false,lineCount:2,maxCharacters:20,style:{width:\"100%\"},text:\"AI infrastructure company Future AGI secures $1.6M in pre-seed funding\",textStyle:{color:\"rgb(0, 0, 0)\",font:\"mulish\",fontSize:16,fontWeight:700,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.axios.com/newsletters/axios-pro-rata-09e6fe8a-ca81-4c39-90fd-1bca6d9364c5.html\",motionChild:true,nodeId:\"TMkQl9Qrs\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithwithAppendUTMOnClickhravag,{className:\"framer-hravag framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-116ynke\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Axios\",fit:\"fit\",intrinsicHeight:204,intrinsicWidth:588.5,pixelHeight:408,pixelWidth:1177,positionX:\"center\",positionY:\"center\",sizes:\"156px\",src:\"https://framerusercontent.com/images/2fYuaaVC9colbocrN3CvzfACCQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2fYuaaVC9colbocrN3CvzfACCQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2fYuaaVC9colbocrN3CvzfACCQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2fYuaaVC9colbocrN3CvzfACCQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2fYuaaVC9colbocrN3CvzfACCQ.png 2560w\"},className:\"framer-1gm50fy\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lnzn51\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Mukta\", \"Mukta Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(182, 182, 182)\"},children:[\"10.06.2022 | \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtNjAw\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b604e936-4937-4a96-8e54-3bc1d7fa305c, rgb(12, 12, 12))\"},children:\"by Axios\"})]})}),className:\"framer-1px1dnp\",fonts:[\"GF;Mukta-regular\",\"GF;Mukta-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-255k5b-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"bRpzcehH7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"bRpzcehH7\",layoutId:\"bRpzcehH7\",letterMode:false,lineCount:2,maxCharacters:20,style:{width:\"100%\"},text:\"An SF based AI infrastructure startup, raises $1.6m in pre-seed co-led by Powerhouse Ventures and Snow leopard ventures\",textStyle:{color:\"rgb(0, 0, 0)\",font:\"mulish\",fontSize:16,fontWeight:700,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.citybiz.co/article/659670/future-agi-announces-1-6m-pre-seed-funding-round-and-launches-worlds-most-accurate-multimodal-ai-evaluation-tool/\",motionChild:true,nodeId:\"pf0LAdKsj\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithwithAppendUTMOnClick1f94x2w,{className:\"framer-1f94x2w framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vk4n14\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Strictly vc\",fit:\"fit\",intrinsicHeight:204,intrinsicWidth:588.5,pixelHeight:408,pixelWidth:1177,positionX:\"center\",positionY:\"center\",sizes:\"181px\",src:\"https://framerusercontent.com/images/K6UvzjiYvkALoWozKteGoqa2GA.png\",srcSet:\"https://framerusercontent.com/images/K6UvzjiYvkALoWozKteGoqa2GA.png?scale-down-to=512 512w,https://framerusercontent.com/images/K6UvzjiYvkALoWozKteGoqa2GA.png 1000w\"},className:\"framer-78l7dd\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z1cmwt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtNjAw\",\"--framer-font-family\":'\"Mukta\", \"Mukta Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b604e936-4937-4a96-8e54-3bc1d7fa305c, rgb(12, 12, 12))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtcmVndWxhcg==\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(182, 182, 182)\"},children:\"10.06.2022 | \"}),\"by Strictly VC\"]})}),className:\"framer-1ms15bv\",fonts:[\"GF;Mukta-600\",\"GF;Mukta-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h4ok2a-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"qBvANlWhM\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"qBvANlWhM\",layoutId:\"qBvANlWhM\",letterMode:false,lineCount:2,maxCharacters:20,style:{width:\"100%\"},text:\"Future AGI announces $1.6M pre-seed round and launches world's most accurate multimodal AI evaluation tool\",textStyle:{color:\"rgb(0, 0, 0)\",font:\"mulish\",fontSize:16,fontWeight:700,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://theaiinsider.tech/2025/02/11/future-agi-announces-1-6-million-pre-seed-round/\",motionChild:true,nodeId:\"i1tX7TQ6F\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithwithAppendUTMOnClickfnp95l,{className:\"framer-fnp95l framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-tfkisf\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"AI Insider\",fit:\"fit\",intrinsicHeight:204,intrinsicWidth:588.5,pixelHeight:408,pixelWidth:1177,positionX:\"center\",positionY:\"center\",sizes:\"181px\",src:\"https://framerusercontent.com/images/TiVXh0eFch7AhEevUjlXKXz9jo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/TiVXh0eFch7AhEevUjlXKXz9jo.png?scale-down-to=512 512w,https://framerusercontent.com/images/TiVXh0eFch7AhEevUjlXKXz9jo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TiVXh0eFch7AhEevUjlXKXz9jo.png 1177w\"},className:\"framer-1dm52pk\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14r9xgm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Mukta\", \"Mukta Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(182, 182, 182)\"},children:[\"10.06.2022 | \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtNjAw\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b604e936-4937-4a96-8e54-3bc1d7fa305c, rgb(12, 12, 12))\"},children:\"by AI Insider\"})]})}),className:\"framer-2eh2ea\",fonts:[\"GF;Mukta-regular\",\"GF;Mukta-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n7fkxy-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"J9UHTX547\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"J9UHTX547\",layoutId:\"J9UHTX547\",letterMode:false,lineCount:2,maxCharacters:20,style:{width:\"100%\"},text:\"Future AGI announces $1.6 million pre-seed round\",textStyle:{color:\"rgb(0, 0, 0)\",font:\"mulish\",fontSize:16,fontWeight:700,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.intelligentcio.com/north-america/2025/02/12/future-agi-launches-worlds-most-accurate-multimodal-ai-evaluation-tool/\",motionChild:true,nodeId:\"ET79vGhQY\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithwithAppendUTMOnClick3gkfzk,{className:\"framer-3gkfzk framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1as8i09\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Intelligent CIO\",fit:\"fit\",intrinsicHeight:204,intrinsicWidth:588.5,pixelHeight:689,pixelWidth:1778,positionX:\"center\",positionY:\"center\",sizes:\"181px\",src:\"https://framerusercontent.com/images/jhA8APQSI9bSQVQJwV2wBo8j0JA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jhA8APQSI9bSQVQJwV2wBo8j0JA.png?scale-down-to=512 512w,https://framerusercontent.com/images/jhA8APQSI9bSQVQJwV2wBo8j0JA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jhA8APQSI9bSQVQJwV2wBo8j0JA.png 1778w\"},className:\"framer-n4z4fc\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lp0td5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtNjAw\",\"--framer-font-family\":'\"Mukta\", \"Mukta Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b604e936-4937-4a96-8e54-3bc1d7fa305c, rgb(12, 12, 12))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtcmVndWxhcg==\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(182, 182, 182)\"},children:\"10.06.2022 | \"}),\"by Intelligent CIO\"]})}),className:\"framer-1nqw5zp\",fonts:[\"GF;Mukta-600\",\"GF;Mukta-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xpbhyr-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"iNIMIlv7T\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"iNIMIlv7T\",layoutId:\"iNIMIlv7T\",letterMode:false,lineCount:2,maxCharacters:20,style:{width:\"100%\"},text:\"Future AGI launches world's most accurate multimodal AI evaluation tool\",textStyle:{color:\"rgb(0, 0, 0)\",font:\"mulish\",fontSize:16,fontWeight:700,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/posts/analytics-india-magazine_ai-infrastructure-startup-future-agi-has-activity-7295391478770454528-Rpok?utm_source=share&utm_medium=member_desktop&rcm=ACoAABDG9MQBUl5X92JexD53R7vdvkVF_hbubq4\",motionChild:true,nodeId:\"uVq5NDsc3\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithwithAppendUTMOnClickotulc,{className:\"framer-otulc framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ey7xle\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Aim\",fit:\"fit\",intrinsicHeight:204,intrinsicWidth:588.5,pixelHeight:884,pixelWidth:2033,positionX:\"center\",positionY:\"center\",sizes:\"156px\",src:\"https://framerusercontent.com/images/GIlcGYGhZrqjsgA6siDSJUS4R0M.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GIlcGYGhZrqjsgA6siDSJUS4R0M.png?scale-down-to=512 512w,https://framerusercontent.com/images/GIlcGYGhZrqjsgA6siDSJUS4R0M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GIlcGYGhZrqjsgA6siDSJUS4R0M.png 2033w\"},className:\"framer-mjoj6f\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m9f6cu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Mukta\", \"Mukta Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(182, 182, 182)\"},children:[\"Feb 13, 2025 |\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TXVrdGEtNjAw\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-cc833bc8-5889-4c5d-8b98-862b6e5a7d3d, rgb(27, 21, 43))\"},children:\" by AIM\"})]})}),className:\"framer-15qhgoo\",fonts:[\"GF;Mukta-regular\",\"GF;Mukta-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jxlimb-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"rABDxVlCf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"rABDxVlCf\",layoutId:\"rABDxVlCf\",letterMode:false,lineCount:2,maxCharacters:20,style:{width:\"100%\"},text:\"AI infrastructure startup Future AGI has raised $1.6 million in a pre-seed funding round co-led by Powerhouse Ventures and Snow Leopard Ventures\",textStyle:{color:\"rgb(0, 0, 0)\",font:\"mulish\",fontSize:16,fontWeight:700,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})]})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{background:{alt:\"Future agi\",fit:\"fill\",pixelHeight:1119,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png\",srcSet:\"https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png?scale-down-to=512 512w,https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png 1440w\"}},kQnI8vfaN:{background:{alt:\"Future agi\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8182),pixelHeight:1119,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png\",srcSet:\"https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png?scale-down-to=512 512w,https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png 1440w\"}},WpFxoWR_W:{background:{alt:\"Future agi\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6675.5),pixelHeight:1119,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png\",srcSet:\"https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png?scale-down-to=512 512w,https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png 1440w\"}},XGqg_W9lu:{background:{alt:\"Future agi\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6684.5),pixelHeight:1119,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png\",srcSet:\"https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png?scale-down-to=512 512w,https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png 1440w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"section\",background:{alt:\"Future agi\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11525.5),pixelHeight:1119,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png\",srcSet:\"https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png?scale-down-to=512 512w,https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/doxppL087MsNqEvfKnGXvSBHseU.png 1440w\"},className:\"framer-1pduyla\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{background:{alt:\"Future agi\",fit:\"fill\",pixelHeight:495,pixelWidth:1220,sizes:`min(${componentViewport?.width||\"100vw\"} - 120px, (${componentViewport?.width||\"100vw\"} - 120px) * 0.9)`,src:\"https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png\",srcSet:\"https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png 1220w\"}},kQnI8vfaN:{background:{alt:\"Future agi\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8182+40+0),pixelHeight:495,pixelWidth:1220,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png\",srcSet:\"https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png 1220w\"}},WpFxoWR_W:{background:{alt:\"Future agi\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6675.5+80+0),pixelHeight:495,pixelWidth:1220,sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png\",srcSet:\"https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png 1220w\"}},XGqg_W9lu:{background:{alt:\"Future agi\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6684.5+80+0),pixelHeight:495,pixelWidth:1220,sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png\",srcSet:\"https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png 1220w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Future agi\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11525.5+80+0),pixelHeight:495,pixelWidth:1220,sizes:`min(${componentViewport?.width||\"100vw\"} - 120px, (${componentViewport?.width||\"100vw\"} - 120px) * 0.9)`,src:\"https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png\",srcSet:\"https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxou24F0xL0EH09r8b8ctbKbikc.png 1220w\"},className:\"framer-1hcaxgd\",\"data-border\":true,\"data-framer-name\":\"Features Card\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-51ed2m\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sz1yln\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-64htxa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to deploy Accurate AI?\"})})},kQnI8vfaN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to deploy Accurate AI?\"})})},WpFxoWR_W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"45px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to deploy Accurate AI?\"})})},XGqg_W9lu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"45px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to deploy Accurate AI?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to deploy Accurate AI?\"})}),className:\"framer-1z0l6fv\",fonts:[\"GF;Mulish-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{openInNewTab:false},WpFxoWR_W:{openInNewTab:false},XGqg_W9lu:{openInNewTab:false}},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wkDGS1MeD\"},motionChild:true,nodeId:\"SdUKi_ze4\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zi3aw0 framer-lux5qc\",\"data-framer-name\":\"Primary-Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTcwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Book a Demo\"})}),className:\"framer-p1p2bn\",fonts:[\"GF;Mulish-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JmC7a0So0:{y:undefined},kQnI8vfaN:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+8182+40+248},WpFxoWR_W:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+6675.5+80+380},XGqg_W9lu:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+6684.5+80+380}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:603,width:`calc((${componentViewport?.width||\"100vw\"} - 120px) * 0.9)`,y:(componentViewport?.y||0)+0+11525.5+80+380,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kl9n5q-container\",nodeId:\"dxE7GWShd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQnI8vfaN:{variant:\"RzEuk8koI\"},WpFxoWR_W:{variant:\"kAvwQ75Am\"},XGqg_W9lu:{variant:\"kAvwQ75Am\"}},children:/*#__PURE__*/_jsx(NewFooter,{height:\"100%\",id:\"dxE7GWShd\",layoutId:\"dxE7GWShd\",style:{width:\"100%\"},variant:\"v_bgH27eV\",width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8iwRs.framer-lux5qc, .framer-8iwRs .framer-lux5qc { display: block; }\",\".framer-8iwRs.framer-15s9fwd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-8iwRs .framer-sfgdsl-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-8iwRs .framer-1sv6lfn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-8iwRs .framer-w680bw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 150px 0px 0px 0px; position: relative; width: 100%; z-index: 8; }\",\".framer-8iwRs .framer-9m3sui { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-8iwRs .framer-6vqo8b, .framer-8iwRs .framer-ffxuld { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-64000c { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-gjw82r, .framer-8iwRs .framer-1ukkt4w, .framer-8iwRs .framer-s6ehj1, .framer-8iwRs .framer-76bxaa, .framer-8iwRs .framer-18siju8, .framer-8iwRs .framer-1swml15, .framer-8iwRs .framer-1b5tyzw, .framer-8iwRs .framer-p1p2bn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8iwRs .framer-nigj26-container { flex: none; height: 90px; position: relative; width: auto; }\",\".framer-8iwRs .framer-fl5d71, .framer-8iwRs .framer-15s4oxi, .framer-8iwRs .framer-erdz1n, .framer-8iwRs .framer-1nknh2b, .framer-8iwRs .framer-1kbzk7f, .framer-8iwRs .framer-1bkxz3p, .framer-8iwRs .framer-1ddxonh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8iwRs .framer-10gpkha { 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: visible; padding: 12px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-8iwRs .framer-8o3aqm-container, .framer-8iwRs .framer-9z6lca-container, .framer-8iwRs .framer-1pnno3y-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-8iwRs .framer-u8i46z-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; z-index: 3; }\",\".framer-8iwRs .framer-zswefa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8iwRs .framer-mjsdi5 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(50px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(50px); background-color: rgba(255, 255, 255, 0.5); border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 9px 13px 9px 13px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iwRs .framer-nyixk6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8iwRs .framer-3hkpva { background-color: #f3605c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 9px; position: relative; width: 9px; }\",\".framer-8iwRs .framer-1lsvnv4 { background-color: #f8be39; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 9px; position: relative; width: 9px; }\",\".framer-8iwRs .framer-14cefm0 { background-color: #50c845; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 9px; position: relative; width: 9px; }\",\".framer-8iwRs .framer-1itsqzz-container { aspect-ratio: 1.8213820078226859 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 665px); position: relative; width: 101%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8iwRs .framer-o5mwei { 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-8iwRs .framer-18szz3e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 70px 0px 50px 0px; position: relative; width: 1300px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8iwRs .framer-lrl6cn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8iwRs .framer-1xvytzo { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 22px 8px 22px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iwRs .framer-hrd47c-container { flex: none; height: 80px; opacity: 0.7; position: relative; width: 100%; }\",\".framer-8iwRs .framer-pv5yg5, .framer-8iwRs .framer-12looqu, .framer-8iwRs .framer-nekie6, .framer-8iwRs .framer-12wpvgx, .framer-8iwRs .framer-5b0lfe, .framer-8iwRs .framer-2h01nd, .framer-8iwRs .framer-tukmyk, .framer-8iwRs .framer-1x2c1iv { height: 30px; position: relative; width: 130px; }\",\".framer-8iwRs .framer-1d90ej0 { height: 30px; position: relative; width: 127px; }\",\".framer-8iwRs .framer-dsdurn, .framer-8iwRs .framer-9smfwg { height: 30px; position: relative; width: 40px; }\",\".framer-8iwRs .framer-c20ly3 { height: 30px; position: relative; width: 100px; }\",\".framer-8iwRs .framer-17bvdma, .framer-8iwRs .framer-1xj8uet, .framer-8iwRs .framer-18jd5sf { height: 30px; overflow: hidden; position: relative; width: 100px; }\",\".framer-8iwRs .framer-1e8cd0j { height: 30px; overflow: hidden; position: relative; width: 130px; }\",\".framer-8iwRs .framer-sg292b { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1kjhgsb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 73px 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1bm616f, .framer-8iwRs .framer-51ed2m { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1t9yspp { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iwRs .framer-1hg2zz8 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 2px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-8iwRs .framer-a6qfn3 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-8iwRs .framer-1p4t3ov { align-content: center; align-items: center; 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-8iwRs .framer-k9sxvx, .framer-8iwRs .framer-1enyo3, .framer-8iwRs .framer-116e0ci { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.5); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 2px 2px 4px 0px rgba(109, 109, 156, 0.2), -2px -2px 4px 0px rgba(109, 109, 156, 0.2); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 302px; justify-content: center; overflow: visible; padding: 30px 20px 30px 20px; position: relative; width: 1px; }\",\".framer-8iwRs .framer-7x73cs-container, .framer-8iwRs .framer-dnbhod-container, .framer-8iwRs .framer-2xmd2y-container, .framer-8iwRs .framer-r17v3w-container, .framer-8iwRs .framer-1mrnqpj-container, .framer-8iwRs .framer-1k78btq-container, .framer-8iwRs .framer-ydxf25-container, .framer-8iwRs .framer-1c5hnzh-container, .framer-8iwRs .framer-6xwrz7-container, .framer-8iwRs .framer-255k5b-container, .framer-8iwRs .framer-1h4ok2a-container, .framer-8iwRs .framer-1n7fkxy-container, .framer-8iwRs .framer-1xpbhyr-container, .framer-8iwRs .framer-1jxlimb-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1vznosq, .framer-8iwRs .framer-12xoie6, .framer-8iwRs .framer-1qo4nfj { 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: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1vgkt9d { 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: visible; padding: 0px; position: sticky; width: 100%; }\",\".framer-8iwRs .framer-b1mqg4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 7408px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 0; }\",\".framer-8iwRs .framer-mnthz0 { align-content: center; align-items: center; background-color: #2e0056; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 100px 0px 100px 64px; position: sticky; top: 11px; width: 100%; z-index: 1; }\",\".framer-8iwRs .framer-p4rr9n { flex: none; height: 504px; left: -38px; position: absolute; right: -34px; top: -189px; z-index: 1; }\",\".framer-8iwRs .framer-1l67d8o { 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; max-width: 1264px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-8iwRs .framer-15jj9b6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-8iwRs .framer-1gbpoex { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1ebsw6b { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8iwRs .framer-66xbcz { --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-8iwRs .framer-16wyvud { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.4); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-8iwRs .framer-hhuh16 { background-color: #ffe733; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: 1 0 0px; height: 4px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iwRs .framer-ya694n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 91px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 6000px; z-index: 1; }\",\".framer-8iwRs .framer-jvw4w8-container, .framer-8iwRs .framer-1mkrg00-container, .framer-8iwRs .framer-109ut1s-container, .framer-8iwRs .framer-1hutano-container, .framer-8iwRs .framer-1ruk39z-container, .framer-8iwRs .framer-1ed2ve1-container { flex: none; height: auto; position: relative; width: 870px; }\",\".framer-8iwRs .framer-xs3s5h { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 26.57657657657658%, rgba(0, 0, 0, 1) 72.52252252252252%, rgba(0, 0, 0, 0) 100%) add; background-color: #2e0056; bottom: -142px; flex: none; left: 0px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 26.57657657657658%, rgba(0, 0, 0, 1) 72.52252252252252%, rgba(0, 0, 0, 0) 100%) add; opacity: 0.6; overflow: visible; position: absolute; right: -4560px; top: 0px; z-index: -1; }\",\".framer-8iwRs .framer-gh78jo { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 968px; }\",\".framer-8iwRs .framer-16ofoc, .framer-8iwRs .framer-16158j2, .framer-8iwRs .framer-gaf0th, .framer-8iwRs .framer-1ahebl8, .framer-8iwRs .framer-1x8ttai, .framer-8iwRs .framer-8tbxdo { background-color: #ffffff; flex: 1 0 0px; height: 1px; opacity: 0; overflow: hidden; position: relative; width: 100%; }\",\".framer-8iwRs .framer-rb63wp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1hfhhfm { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; -webkit-backdrop-filter: blur(40px); align-content: center; align-items: center; backdrop-filter: blur(40px); background-color: rgba(255, 255, 255, 0.8); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: -2px -2px 4px 0px rgba(109, 109, 156, 0.1), 2px 2px 20px 0px rgba(109, 109, 156, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 134px; justify-content: center; left: calc(50.00000000000002% - 134px / 2); overflow: hidden; padding: 0px; position: absolute; top: -70px; width: 134px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-8iwRs .framer-1matj5m { flex: none; height: 69px; position: relative; width: 69px; }\",\".framer-8iwRs .framer-sfwzg8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 960px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-g0fku { 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: visible; padding: 30px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-8iwRs .framer-1dvtt04 { flex: none; height: auto; max-width: 800px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8iwRs .framer-1o00gbb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8iwRs .framer-lkh9a0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 40px 40px 40px; position: relative; width: 1200px; }\",\".framer-8iwRs .framer-1rcrghe-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8iwRs .framer-3iq5jh, .framer-8iwRs .framer-1ky84au { 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: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-rxw6wl, .framer-8iwRs .framer-1la112c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-17oen54, .framer-8iwRs .framer-uiy6pa { align-content: center; align-items: center; 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%; z-index: 1; }\",\".framer-8iwRs .framer-twsn0j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: 454px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1vvhkoe { --border-bottom-width: 1px; --border-color: #f1f1f1; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8iwRs .framer-1izhns5 { align-content: center; align-items: center; aspect-ratio: 1.8763157894736842 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 187px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1ft7iqv { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iwRs .framer-1pl6g6h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-2z96zw { --border-bottom-width: 0px; --border-color: #f1f1f1; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1h7qhhw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8iwRs .framer-oefhst { --border-bottom-width: 0px; --border-color: #a0a0a0; --border-left-width: 1px; --border-right-width: 0px; --border-style: dashed; --border-top-width: 0px; flex: none; height: 50px; overflow: hidden; position: relative; width: 1px; }\",\".framer-8iwRs .framer-1m2uwtc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8iwRs .framer-yaesgi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-g5zedn, .framer-8iwRs .framer-bgr8sy, .framer-8iwRs .framer-7eqluu, .framer-8iwRs .framer-3f66x0, .framer-8iwRs .framer-1r9cld7, .framer-8iwRs .framer-hravag, .framer-8iwRs .framer-1f94x2w, .framer-8iwRs .framer-fnp95l, .framer-8iwRs .framer-3gkfzk, .framer-8iwRs .framer-otulc { --border-bottom-width: 1px; --border-color: rgba(27, 21, 43, 0.09); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: 406px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iwRs .framer-3rg5ox { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.917857142857143 / 1; background-color: #f7f7f7; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 104px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iwRs .framer-18x90pz { aspect-ratio: 2.8848039215686274 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); left: 46%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 180px; }\",\".framer-8iwRs .framer-10x8405, .framer-8iwRs .framer-123u136, .framer-8iwRs .framer-3pv40a, .framer-8iwRs .framer-1yxw43g, .framer-8iwRs .framer-fzxng1, .framer-8iwRs .framer-lnzn51, .framer-8iwRs .framer-z1cmwt, .framer-8iwRs .framer-14r9xgm, .framer-8iwRs .framer-lp0td5, .framer-8iwRs .framer-1m9f6cu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-2ie2hr, .framer-8iwRs .framer-wwe53a, .framer-8iwRs .framer-1x2wqmy, .framer-8iwRs .framer-mdc8a8, .framer-8iwRs .framer-1s96q1r, .framer-8iwRs .framer-1px1dnp, .framer-8iwRs .framer-1ms15bv, .framer-8iwRs .framer-2eh2ea, .framer-8iwRs .framer-1nqw5zp, .framer-8iwRs .framer-15qhgoo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 278px; word-break: break-word; word-wrap: break-word; }\",\".framer-8iwRs .framer-4qrlu0, .framer-8iwRs .framer-1ed687s, .framer-8iwRs .framer-1syyp6y, .framer-8iwRs .framer-116ynke, .framer-8iwRs .framer-vk4n14, .framer-8iwRs .framer-tfkisf, .framer-8iwRs .framer-1as8i09 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.917857142857143 / 1; background-color: #f7f7f7; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 195px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iwRs .framer-6oznnu, .framer-8iwRs .framer-78l7dd, .framer-8iwRs .framer-1dm52pk, .framer-8iwRs .framer-n4z4fc { aspect-ratio: 2.8848039215686274 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); left: 47%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 181px; }\",\".framer-8iwRs .framer-1mmieb9 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1.917857142857143 / 1; background-color: #f7f7f7; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 195px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iwRs .framer-cpln9q { aspect-ratio: 2.8848039215686274 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; width: 176px; }\",\".framer-8iwRs .framer-100gyz8 { aspect-ratio: 2.8848039215686274 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 46%; overflow: visible; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 171px; }\",\".framer-8iwRs .framer-m7oej5 { aspect-ratio: 2.8848039215686274 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); left: 46%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 175px; }\",\".framer-8iwRs .framer-1gm50fy, .framer-8iwRs .framer-mjoj6f { aspect-ratio: 2.8848039215686274 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 156px; }\",\".framer-8iwRs .framer-1ey7xle { aspect-ratio: 1.917857142857143 / 1; background-color: #f7f7f7; flex: none; height: var(--framer-aspect-ratio-supported, 195px); overflow: hidden; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1pduyla { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 60px 0px 60px; position: relative; width: 100%; z-index: 0; }\",\".framer-8iwRs .framer-1hcaxgd { --border-bottom-width: 2px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 90%; min-height: 300px; overflow: visible; padding: 50px 60px 50px 60px; position: relative; width: 100%; }\",\".framer-8iwRs .framer-1sz1yln { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8iwRs .framer-64htxa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8iwRs .framer-1z0l6fv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8iwRs .framer-zi3aw0 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.2), 0px 2px 8px 0px rgba(0, 0, 0, 0.16), 0.5px 0.5px 0px 0px rgb(87, 0, 194); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 55px; justify-content: center; overflow: hidden; padding: 12px 38px 12px 38px; position: relative; text-decoration: none; width: 416px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iwRs .framer-kl9n5q-container { flex: none; height: auto; position: relative; width: 90%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8iwRs.framer-15s9fwd, .framer-8iwRs .framer-1sv6lfn, .framer-8iwRs .framer-w680bw, .framer-8iwRs .framer-9m3sui, .framer-8iwRs .framer-6vqo8b, .framer-8iwRs .framer-64000c, .framer-8iwRs .framer-10gpkha, .framer-8iwRs .framer-zswefa, .framer-8iwRs .framer-mjsdi5, .framer-8iwRs .framer-nyixk6, .framer-8iwRs .framer-o5mwei, .framer-8iwRs .framer-18szz3e, .framer-8iwRs .framer-lrl6cn, .framer-8iwRs .framer-1xvytzo, .framer-8iwRs .framer-sg292b, .framer-8iwRs .framer-1kjhgsb, .framer-8iwRs .framer-1bm616f, .framer-8iwRs .framer-1t9yspp, .framer-8iwRs .framer-1hg2zz8, .framer-8iwRs .framer-a6qfn3, .framer-8iwRs .framer-1p4t3ov, .framer-8iwRs .framer-k9sxvx, .framer-8iwRs .framer-1vznosq, .framer-8iwRs .framer-1enyo3, .framer-8iwRs .framer-12xoie6, .framer-8iwRs .framer-116e0ci, .framer-8iwRs .framer-1qo4nfj, .framer-8iwRs .framer-1vgkt9d, .framer-8iwRs .framer-b1mqg4, .framer-8iwRs .framer-mnthz0, .framer-8iwRs .framer-1l67d8o, .framer-8iwRs .framer-15jj9b6, .framer-8iwRs .framer-1gbpoex, .framer-8iwRs .framer-16wyvud, .framer-8iwRs .framer-ya694n, .framer-8iwRs .framer-gh78jo, .framer-8iwRs .framer-rb63wp, .framer-8iwRs .framer-1hfhhfm, .framer-8iwRs .framer-sfwzg8, .framer-8iwRs .framer-g0fku, .framer-8iwRs .framer-lkh9a0, .framer-8iwRs .framer-3iq5jh, .framer-8iwRs .framer-rxw6wl, .framer-8iwRs .framer-17oen54, .framer-8iwRs .framer-twsn0j, .framer-8iwRs .framer-1vvhkoe, .framer-8iwRs .framer-1izhns5, .framer-8iwRs .framer-1pl6g6h, .framer-8iwRs .framer-ffxuld, .framer-8iwRs .framer-2z96zw, .framer-8iwRs .framer-1h7qhhw, .framer-8iwRs .framer-1m2uwtc, .framer-8iwRs .framer-yaesgi, .framer-8iwRs .framer-1ky84au, .framer-8iwRs .framer-1la112c, .framer-8iwRs .framer-uiy6pa, .framer-8iwRs .framer-g5zedn, .framer-8iwRs .framer-10x8405, .framer-8iwRs .framer-bgr8sy, .framer-8iwRs .framer-123u136, .framer-8iwRs .framer-7eqluu, .framer-8iwRs .framer-1mmieb9, .framer-8iwRs .framer-3pv40a, .framer-8iwRs .framer-3f66x0, .framer-8iwRs .framer-1yxw43g, .framer-8iwRs .framer-1r9cld7, .framer-8iwRs .framer-fzxng1, .framer-8iwRs .framer-hravag, .framer-8iwRs .framer-lnzn51, .framer-8iwRs .framer-1f94x2w, .framer-8iwRs .framer-z1cmwt, .framer-8iwRs .framer-fnp95l, .framer-8iwRs .framer-14r9xgm, .framer-8iwRs .framer-3gkfzk, .framer-8iwRs .framer-lp0td5, .framer-8iwRs .framer-otulc, .framer-8iwRs .framer-1m9f6cu, .framer-8iwRs .framer-1pduyla, .framer-8iwRs .framer-1hcaxgd, .framer-8iwRs .framer-51ed2m, .framer-8iwRs .framer-1sz1yln, .framer-8iwRs .framer-64htxa, .framer-8iwRs .framer-zi3aw0 { gap: 0px; } .framer-8iwRs.framer-15s9fwd > *, .framer-8iwRs .framer-1sv6lfn > *, .framer-8iwRs .framer-zswefa > *, .framer-8iwRs .framer-mnthz0 > *, .framer-8iwRs .framer-gh78jo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8iwRs.framer-15s9fwd > :first-child, .framer-8iwRs .framer-1sv6lfn > :first-child, .framer-8iwRs .framer-w680bw > :first-child, .framer-8iwRs .framer-9m3sui > :first-child, .framer-8iwRs .framer-6vqo8b > :first-child, .framer-8iwRs .framer-zswefa > :first-child, .framer-8iwRs .framer-mjsdi5 > :first-child, .framer-8iwRs .framer-o5mwei > :first-child, .framer-8iwRs .framer-lrl6cn > :first-child, .framer-8iwRs .framer-1xvytzo > :first-child, .framer-8iwRs .framer-sg292b > :first-child, .framer-8iwRs .framer-1kjhgsb > :first-child, .framer-8iwRs .framer-1t9yspp > :first-child, .framer-8iwRs .framer-a6qfn3 > :first-child, .framer-8iwRs .framer-k9sxvx > :first-child, .framer-8iwRs .framer-1vznosq > :first-child, .framer-8iwRs .framer-1enyo3 > :first-child, .framer-8iwRs .framer-12xoie6 > :first-child, .framer-8iwRs .framer-116e0ci > :first-child, .framer-8iwRs .framer-1qo4nfj > :first-child, .framer-8iwRs .framer-b1mqg4 > :first-child, .framer-8iwRs .framer-mnthz0 > :first-child, .framer-8iwRs .framer-1l67d8o > :first-child, .framer-8iwRs .framer-15jj9b6 > :first-child, .framer-8iwRs .framer-1gbpoex > :first-child, .framer-8iwRs .framer-gh78jo > :first-child, .framer-8iwRs .framer-rb63wp > :first-child, .framer-8iwRs .framer-1hfhhfm > :first-child, .framer-8iwRs .framer-sfwzg8 > :first-child, .framer-8iwRs .framer-g0fku > :first-child, .framer-8iwRs .framer-lkh9a0 > :first-child, .framer-8iwRs .framer-3iq5jh > :first-child, .framer-8iwRs .framer-rxw6wl > :first-child, .framer-8iwRs .framer-17oen54 > :first-child, .framer-8iwRs .framer-1vvhkoe > :first-child, .framer-8iwRs .framer-1pl6g6h > :first-child, .framer-8iwRs .framer-ffxuld > :first-child, .framer-8iwRs .framer-1h7qhhw > :first-child, .framer-8iwRs .framer-1m2uwtc > :first-child, .framer-8iwRs .framer-yaesgi > :first-child, .framer-8iwRs .framer-1ky84au > :first-child, .framer-8iwRs .framer-1la112c > :first-child, .framer-8iwRs .framer-uiy6pa > :first-child, .framer-8iwRs .framer-g5zedn > :first-child, .framer-8iwRs .framer-10x8405 > :first-child, .framer-8iwRs .framer-bgr8sy > :first-child, .framer-8iwRs .framer-123u136 > :first-child, .framer-8iwRs .framer-7eqluu > :first-child, .framer-8iwRs .framer-1mmieb9 > :first-child, .framer-8iwRs .framer-3pv40a > :first-child, .framer-8iwRs .framer-3f66x0 > :first-child, .framer-8iwRs .framer-1yxw43g > :first-child, .framer-8iwRs .framer-1r9cld7 > :first-child, .framer-8iwRs .framer-fzxng1 > :first-child, .framer-8iwRs .framer-hravag > :first-child, .framer-8iwRs .framer-lnzn51 > :first-child, .framer-8iwRs .framer-1f94x2w > :first-child, .framer-8iwRs .framer-z1cmwt > :first-child, .framer-8iwRs .framer-fnp95l > :first-child, .framer-8iwRs .framer-14r9xgm > :first-child, .framer-8iwRs .framer-3gkfzk > :first-child, .framer-8iwRs .framer-lp0td5 > :first-child, .framer-8iwRs .framer-otulc > :first-child, .framer-8iwRs .framer-1m9f6cu > :first-child, .framer-8iwRs .framer-1pduyla > :first-child, .framer-8iwRs .framer-1hcaxgd > :first-child, .framer-8iwRs .framer-64htxa > :first-child { margin-top: 0px; } .framer-8iwRs.framer-15s9fwd > :last-child, .framer-8iwRs .framer-1sv6lfn > :last-child, .framer-8iwRs .framer-w680bw > :last-child, .framer-8iwRs .framer-9m3sui > :last-child, .framer-8iwRs .framer-6vqo8b > :last-child, .framer-8iwRs .framer-zswefa > :last-child, .framer-8iwRs .framer-mjsdi5 > :last-child, .framer-8iwRs .framer-o5mwei > :last-child, .framer-8iwRs .framer-lrl6cn > :last-child, .framer-8iwRs .framer-1xvytzo > :last-child, .framer-8iwRs .framer-sg292b > :last-child, .framer-8iwRs .framer-1kjhgsb > :last-child, .framer-8iwRs .framer-1t9yspp > :last-child, .framer-8iwRs .framer-a6qfn3 > :last-child, .framer-8iwRs .framer-k9sxvx > :last-child, .framer-8iwRs .framer-1vznosq > :last-child, .framer-8iwRs .framer-1enyo3 > :last-child, .framer-8iwRs .framer-12xoie6 > :last-child, .framer-8iwRs .framer-116e0ci > :last-child, .framer-8iwRs .framer-1qo4nfj > :last-child, .framer-8iwRs .framer-b1mqg4 > :last-child, .framer-8iwRs .framer-mnthz0 > :last-child, .framer-8iwRs .framer-1l67d8o > :last-child, .framer-8iwRs .framer-15jj9b6 > :last-child, .framer-8iwRs .framer-1gbpoex > :last-child, .framer-8iwRs .framer-gh78jo > :last-child, .framer-8iwRs .framer-rb63wp > :last-child, .framer-8iwRs .framer-1hfhhfm > :last-child, .framer-8iwRs .framer-sfwzg8 > :last-child, .framer-8iwRs .framer-g0fku > :last-child, .framer-8iwRs .framer-lkh9a0 > :last-child, .framer-8iwRs .framer-3iq5jh > :last-child, .framer-8iwRs .framer-rxw6wl > :last-child, .framer-8iwRs .framer-17oen54 > :last-child, .framer-8iwRs .framer-1vvhkoe > :last-child, .framer-8iwRs .framer-1pl6g6h > :last-child, .framer-8iwRs .framer-ffxuld > :last-child, .framer-8iwRs .framer-1h7qhhw > :last-child, .framer-8iwRs .framer-1m2uwtc > :last-child, .framer-8iwRs .framer-yaesgi > :last-child, .framer-8iwRs .framer-1ky84au > :last-child, .framer-8iwRs .framer-1la112c > :last-child, .framer-8iwRs .framer-uiy6pa > :last-child, .framer-8iwRs .framer-g5zedn > :last-child, .framer-8iwRs .framer-10x8405 > :last-child, .framer-8iwRs .framer-bgr8sy > :last-child, .framer-8iwRs .framer-123u136 > :last-child, .framer-8iwRs .framer-7eqluu > :last-child, .framer-8iwRs .framer-1mmieb9 > :last-child, .framer-8iwRs .framer-3pv40a > :last-child, .framer-8iwRs .framer-3f66x0 > :last-child, .framer-8iwRs .framer-1yxw43g > :last-child, .framer-8iwRs .framer-1r9cld7 > :last-child, .framer-8iwRs .framer-fzxng1 > :last-child, .framer-8iwRs .framer-hravag > :last-child, .framer-8iwRs .framer-lnzn51 > :last-child, .framer-8iwRs .framer-1f94x2w > :last-child, .framer-8iwRs .framer-z1cmwt > :last-child, .framer-8iwRs .framer-fnp95l > :last-child, .framer-8iwRs .framer-14r9xgm > :last-child, .framer-8iwRs .framer-3gkfzk > :last-child, .framer-8iwRs .framer-lp0td5 > :last-child, .framer-8iwRs .framer-otulc > :last-child, .framer-8iwRs .framer-1m9f6cu > :last-child, .framer-8iwRs .framer-1pduyla > :last-child, .framer-8iwRs .framer-1hcaxgd > :last-child, .framer-8iwRs .framer-64htxa > :last-child { margin-bottom: 0px; } .framer-8iwRs .framer-w680bw > *, .framer-8iwRs .framer-rb63wp > *, .framer-8iwRs .framer-rxw6wl > *, .framer-8iwRs .framer-1la112c > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-8iwRs .framer-9m3sui > *, .framer-8iwRs .framer-6vqo8b > *, .framer-8iwRs .framer-mjsdi5 > *, .framer-8iwRs .framer-o5mwei > *, .framer-8iwRs .framer-lrl6cn > *, .framer-8iwRs .framer-sg292b > *, .framer-8iwRs .framer-1t9yspp > *, .framer-8iwRs .framer-a6qfn3 > *, .framer-8iwRs .framer-1vznosq > *, .framer-8iwRs .framer-12xoie6 > *, .framer-8iwRs .framer-1qo4nfj > *, .framer-8iwRs .framer-b1mqg4 > *, .framer-8iwRs .framer-15jj9b6 > *, .framer-8iwRs .framer-1gbpoex > *, .framer-8iwRs .framer-1hfhhfm > *, .framer-8iwRs .framer-g0fku > *, .framer-8iwRs .framer-lkh9a0 > *, .framer-8iwRs .framer-3iq5jh > *, .framer-8iwRs .framer-1pl6g6h > *, .framer-8iwRs .framer-ffxuld > *, .framer-8iwRs .framer-1m2uwtc > *, .framer-8iwRs .framer-1ky84au > *, .framer-8iwRs .framer-1mmieb9 > *, .framer-8iwRs .framer-1hcaxgd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8iwRs .framer-64000c > *, .framer-8iwRs .framer-10gpkha > *, .framer-8iwRs .framer-1bm616f > *, .framer-8iwRs .framer-1hg2zz8 > *, .framer-8iwRs .framer-1vgkt9d > *, .framer-8iwRs .framer-1izhns5 > *, .framer-8iwRs .framer-51ed2m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8iwRs .framer-64000c > :first-child, .framer-8iwRs .framer-10gpkha > :first-child, .framer-8iwRs .framer-nyixk6 > :first-child, .framer-8iwRs .framer-18szz3e > :first-child, .framer-8iwRs .framer-1bm616f > :first-child, .framer-8iwRs .framer-1hg2zz8 > :first-child, .framer-8iwRs .framer-1p4t3ov > :first-child, .framer-8iwRs .framer-1vgkt9d > :first-child, .framer-8iwRs .framer-16wyvud > :first-child, .framer-8iwRs .framer-ya694n > :first-child, .framer-8iwRs .framer-twsn0j > :first-child, .framer-8iwRs .framer-1izhns5 > :first-child, .framer-8iwRs .framer-2z96zw > :first-child, .framer-8iwRs .framer-51ed2m > :first-child, .framer-8iwRs .framer-1sz1yln > :first-child, .framer-8iwRs .framer-zi3aw0 > :first-child { margin-left: 0px; } .framer-8iwRs .framer-64000c > :last-child, .framer-8iwRs .framer-10gpkha > :last-child, .framer-8iwRs .framer-nyixk6 > :last-child, .framer-8iwRs .framer-18szz3e > :last-child, .framer-8iwRs .framer-1bm616f > :last-child, .framer-8iwRs .framer-1hg2zz8 > :last-child, .framer-8iwRs .framer-1p4t3ov > :last-child, .framer-8iwRs .framer-1vgkt9d > :last-child, .framer-8iwRs .framer-16wyvud > :last-child, .framer-8iwRs .framer-ya694n > :last-child, .framer-8iwRs .framer-twsn0j > :last-child, .framer-8iwRs .framer-1izhns5 > :last-child, .framer-8iwRs .framer-2z96zw > :last-child, .framer-8iwRs .framer-51ed2m > :last-child, .framer-8iwRs .framer-1sz1yln > :last-child, .framer-8iwRs .framer-zi3aw0 > :last-child { margin-right: 0px; } .framer-8iwRs .framer-nyixk6 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-8iwRs .framer-18szz3e > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8iwRs .framer-1xvytzo > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-8iwRs .framer-1kjhgsb > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-8iwRs .framer-1p4t3ov > *, .framer-8iwRs .framer-twsn0j > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-8iwRs .framer-k9sxvx > *, .framer-8iwRs .framer-1enyo3 > *, .framer-8iwRs .framer-116e0ci > *, .framer-8iwRs .framer-sfwzg8 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-8iwRs .framer-1l67d8o > *, .framer-8iwRs .framer-1vvhkoe > *, .framer-8iwRs .framer-64htxa > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-8iwRs .framer-16wyvud > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-8iwRs .framer-ya694n > * { margin: 0px; margin-left: calc(91px / 2); margin-right: calc(91px / 2); } .framer-8iwRs .framer-17oen54 > *, .framer-8iwRs .framer-uiy6pa > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-8iwRs .framer-2z96zw > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-8iwRs .framer-1h7qhhw > *, .framer-8iwRs .framer-yaesgi > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-8iwRs .framer-g5zedn > *, .framer-8iwRs .framer-bgr8sy > *, .framer-8iwRs .framer-7eqluu > *, .framer-8iwRs .framer-3f66x0 > *, .framer-8iwRs .framer-1r9cld7 > *, .framer-8iwRs .framer-hravag > *, .framer-8iwRs .framer-1f94x2w > *, .framer-8iwRs .framer-fnp95l > *, .framer-8iwRs .framer-3gkfzk > *, .framer-8iwRs .framer-otulc > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8iwRs .framer-10x8405 > *, .framer-8iwRs .framer-123u136 > *, .framer-8iwRs .framer-3pv40a > *, .framer-8iwRs .framer-1yxw43g > *, .framer-8iwRs .framer-fzxng1 > *, .framer-8iwRs .framer-lnzn51 > *, .framer-8iwRs .framer-z1cmwt > *, .framer-8iwRs .framer-14r9xgm > *, .framer-8iwRs .framer-lp0td5 > *, .framer-8iwRs .framer-1m9f6cu > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-8iwRs .framer-1pduyla > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-8iwRs .framer-1sz1yln > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-8iwRs .framer-zi3aw0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",'.framer-8iwRs[data-border=\"true\"]::after, .framer-8iwRs [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: 810px) and (max-width: 991px) { .framer-8iwRs.framer-15s9fwd { width: 810px; } .framer-8iwRs .framer-1sv6lfn { padding: 40px 40px 0px 40px; } .framer-8iwRs .framer-w680bw { max-width: unset; padding: 100px 0px 0px 0px; } .framer-8iwRs .framer-9m3sui, .framer-8iwRs .framer-lkh9a0, .framer-8iwRs .framer-kl9n5q-container { width: 100%; } .framer-8iwRs .framer-6vqo8b { gap: 0px; width: min-content; } .framer-8iwRs .framer-64000c { width: min-content; } .framer-8iwRs .framer-mjsdi5 { border-top-left-radius: 8px; border-top-right-radius: 8px; padding: 4px 13px 4px 13px; } .framer-8iwRs .framer-3hkpva, .framer-8iwRs .framer-1lsvnv4, .framer-8iwRs .framer-14cefm0 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 6px); width: 6px; } .framer-8iwRs .framer-1itsqzz-container { aspect-ratio: 1.825 / 1; height: var(--framer-aspect-ratio-supported, 401px); width: 100%; } .framer-8iwRs .framer-18szz3e { max-width: unset; padding: 70px 0px 0px 0px; width: 100%; } .framer-8iwRs .framer-sg292b { padding: 40px; } .framer-8iwRs .framer-1kjhgsb { gap: 20px; max-width: unset; padding: 0px 20px 40px 20px; } .framer-8iwRs .framer-1p4t3ov { flex-direction: column; } .framer-8iwRs .framer-k9sxvx, .framer-8iwRs .framer-1enyo3, .framer-8iwRs .framer-116e0ci, .framer-8iwRs .framer-64htxa { flex: none; width: 100%; } .framer-8iwRs .framer-b1mqg4 { height: min-content; } .framer-8iwRs .framer-mnthz0 { height: min-content; padding: 100px 0px 100px 0px; } .framer-8iwRs .framer-p4rr9n { left: -2px; right: -1px; } .framer-8iwRs .framer-1l67d8o { gap: 40px; padding: 0px 32px 0px 32px; } .framer-8iwRs .framer-ya694n { align-content: unset; align-items: unset; display: grid; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; padding: 0px; width: 100%; } .framer-8iwRs .framer-jvw4w8-container, .framer-8iwRs .framer-1mkrg00-container, .framer-8iwRs .framer-109ut1s-container, .framer-8iwRs .framer-1hutano-container { align-self: start; height: 600px; justify-self: start; width: 100%; } .framer-8iwRs .framer-1ruk39z-container, .framer-8iwRs .framer-1ed2ve1-container { align-self: start; height: 620px; justify-self: start; width: 100%; } .framer-8iwRs .framer-rb63wp { padding: 50px 0px 80px 0px; } .framer-8iwRs .framer-1dvtt04 { max-width: 600px; } .framer-8iwRs .framer-1rcrghe-container { width: 695px; } .framer-8iwRs .framer-twsn0j { padding: 0px 30px 0px 30px; } .framer-8iwRs .framer-1izhns5 { height: var(--framer-aspect-ratio-supported, 176px); } .framer-8iwRs .framer-uiy6pa { padding: 0px 25px 0px 25px; } .framer-8iwRs .framer-1pduyla { padding: 80px 40px 0px 40px; } .framer-8iwRs .framer-1hcaxgd { max-width: 100%; padding: 50px 40px 50px 40px; } .framer-8iwRs .framer-1sz1yln { flex-direction: column; gap: 30px; } .framer-8iwRs .framer-1z0l6fv { max-width: unset; } .framer-8iwRs .framer-zi3aw0 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 50px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8iwRs .framer-6vqo8b, .framer-8iwRs .framer-1kjhgsb, .framer-8iwRs .framer-1p4t3ov, .framer-8iwRs .framer-1l67d8o, .framer-8iwRs .framer-ya694n, .framer-8iwRs .framer-1sz1yln { gap: 0px; } .framer-8iwRs .framer-6vqo8b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8iwRs .framer-6vqo8b > :first-child, .framer-8iwRs .framer-1kjhgsb > :first-child, .framer-8iwRs .framer-1p4t3ov > :first-child, .framer-8iwRs .framer-1l67d8o > :first-child, .framer-8iwRs .framer-1sz1yln > :first-child { margin-top: 0px; } .framer-8iwRs .framer-6vqo8b > :last-child, .framer-8iwRs .framer-1kjhgsb > :last-child, .framer-8iwRs .framer-1p4t3ov > :last-child, .framer-8iwRs .framer-1l67d8o > :last-child, .framer-8iwRs .framer-1sz1yln > :last-child { margin-bottom: 0px; } .framer-8iwRs .framer-1kjhgsb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-8iwRs .framer-1p4t3ov > *, .framer-8iwRs .framer-1sz1yln > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-8iwRs .framer-1l67d8o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-8iwRs .framer-ya694n > *, .framer-8iwRs .framer-ya694n > :first-child, .framer-8iwRs .framer-ya694n > :last-child { margin: 0px; } }}\",\"@media (min-width: 768px) and (max-width: 809px) { .framer-8iwRs.framer-15s9fwd { width: 768px; } .framer-8iwRs .framer-1sv6lfn { padding: 40px 40px 0px 40px; } .framer-8iwRs .framer-w680bw { max-width: unset; padding: 100px 0px 0px 0px; width: min-content; } .framer-8iwRs .framer-9m3sui { align-self: stretch; width: auto; } .framer-8iwRs .framer-6vqo8b { gap: 0px; width: min-content; } .framer-8iwRs .framer-64000c { width: min-content; } .framer-8iwRs .framer-8o3aqm-container { will-change: unset; } .framer-8iwRs .framer-zswefa { width: 688px; } .framer-8iwRs .framer-1itsqzz-container { height: var(--framer-aspect-ratio-supported, 378px); width: 100%; } .framer-8iwRs .framer-o5mwei, .framer-8iwRs .framer-twsn0j { padding: 0px 40px 0px 40px; } .framer-8iwRs .framer-18szz3e { max-width: unset; padding: 70px 0px 0px 0px; width: 100%; } .framer-8iwRs .framer-1kjhgsb { max-width: unset; padding: 40px 20px 80px 20px; } .framer-8iwRs .framer-1hg2zz8 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; } .framer-8iwRs .framer-1p4t3ov { flex-direction: column; } .framer-8iwRs .framer-k9sxvx, .framer-8iwRs .framer-1enyo3, .framer-8iwRs .framer-116e0ci { flex: none; width: 100%; } .framer-8iwRs .framer-1vgkt9d { position: relative; } .framer-8iwRs .framer-b1mqg4 { height: min-content; } .framer-8iwRs .framer-mnthz0 { height: min-content; padding: 100px 0px 100px 0px; } .framer-8iwRs .framer-p4rr9n { left: unset; right: -6px; width: 771px; } .framer-8iwRs .framer-1l67d8o { gap: 40px; padding: 0px 32px 0px 32px; } .framer-8iwRs .framer-ya694n { align-content: unset; align-items: unset; display: grid; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; padding: 0px; width: 100%; } .framer-8iwRs .framer-jvw4w8-container, .framer-8iwRs .framer-1mkrg00-container, .framer-8iwRs .framer-109ut1s-container, .framer-8iwRs .framer-1hutano-container { align-self: start; height: 600px; justify-self: start; width: 100%; } .framer-8iwRs .framer-1ruk39z-container, .framer-8iwRs .framer-1ed2ve1-container { align-self: start; height: 620px; justify-self: start; width: 100%; } .framer-8iwRs .framer-rb63wp { padding: 50px 0px 80px 0px; } .framer-8iwRs .framer-1dvtt04 { max-width: 600px; } .framer-8iwRs .framer-lkh9a0, .framer-8iwRs .framer-kl9n5q-container { width: 100%; } .framer-8iwRs .framer-1rcrghe-container { width: 695px; } .framer-8iwRs .framer-1izhns5 { height: var(--framer-aspect-ratio-supported, 160px); } .framer-8iwRs .framer-1pduyla { padding: 80px 40px 0px 40px; } .framer-8iwRs .framer-1hcaxgd { max-width: 100%; } .framer-8iwRs .framer-1sz1yln { flex-direction: column; gap: 30px; } .framer-8iwRs .framer-64htxa { align-content: center; align-items: center; flex: none; width: 100%; } .framer-8iwRs .framer-1z0l6fv { max-width: unset; } .framer-8iwRs .framer-zi3aw0 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 50px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8iwRs .framer-6vqo8b, .framer-8iwRs .framer-1p4t3ov, .framer-8iwRs .framer-1l67d8o, .framer-8iwRs .framer-ya694n, .framer-8iwRs .framer-1sz1yln { gap: 0px; } .framer-8iwRs .framer-6vqo8b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8iwRs .framer-6vqo8b > :first-child, .framer-8iwRs .framer-1p4t3ov > :first-child, .framer-8iwRs .framer-1l67d8o > :first-child, .framer-8iwRs .framer-1sz1yln > :first-child { margin-top: 0px; } .framer-8iwRs .framer-6vqo8b > :last-child, .framer-8iwRs .framer-1p4t3ov > :last-child, .framer-8iwRs .framer-1l67d8o > :last-child, .framer-8iwRs .framer-1sz1yln > :last-child { margin-bottom: 0px; } .framer-8iwRs .framer-1p4t3ov > *, .framer-8iwRs .framer-1sz1yln > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-8iwRs .framer-1l67d8o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-8iwRs .framer-ya694n > *, .framer-8iwRs .framer-ya694n > :first-child, .framer-8iwRs .framer-ya694n > :last-child { margin: 0px; } }}\",\"@media (max-width: 767px) { .framer-8iwRs.framer-15s9fwd { width: 390px; } .framer-8iwRs .framer-w680bw { align-content: center; align-items: center; padding: 160px 20px 0px 20px; z-index: 5; } .framer-8iwRs .framer-9m3sui { gap: 30px; justify-content: flex-start; max-width: unset; width: 100%; } .framer-8iwRs .framer-64000c { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-8iwRs .framer-gjw82r, .framer-8iwRs .framer-1ukkt4w { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-8iwRs .framer-nigj26-container { height: 62px; } .framer-8iwRs .framer-10gpkha { flex-direction: column; justify-content: flex-start; padding: 0px; width: 100%; } .framer-8iwRs .framer-8o3aqm-container, .framer-8iwRs .framer-1rcrghe-container { width: 100%; will-change: unset; } .framer-8iwRs .framer-u8i46z-container, .framer-8iwRs .framer-jvw4w8-container, .framer-8iwRs .framer-1mkrg00-container, .framer-8iwRs .framer-109ut1s-container, .framer-8iwRs .framer-1hutano-container, .framer-8iwRs .framer-1ruk39z-container, .framer-8iwRs .framer-1ed2ve1-container, .framer-8iwRs .framer-kl9n5q-container { width: 100%; } .framer-8iwRs .framer-mjsdi5 { border-top-left-radius: 8px; border-top-right-radius: 8px; order: 0; padding: 4px 8px 4px 8px; } .framer-8iwRs .framer-nyixk6 { gap: 4px; } .framer-8iwRs .framer-3hkpva, .framer-8iwRs .framer-1lsvnv4, .framer-8iwRs .framer-14cefm0 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 6px); width: 6px; } .framer-8iwRs .framer-1itsqzz-container { height: var(--framer-aspect-ratio-supported, 192px); order: 1; width: 100%; } .framer-8iwRs .framer-18szz3e { max-width: unset; width: 100%; will-change: unset; } .framer-8iwRs .framer-1kjhgsb { max-width: unset; padding: 0px 20px 85px 20px; } .framer-8iwRs .framer-1hg2zz8 { flex-direction: column; will-change: unset; } .framer-8iwRs .framer-a6qfn3, .framer-8iwRs .framer-k9sxvx, .framer-8iwRs .framer-1enyo3, .framer-8iwRs .framer-116e0ci, .framer-8iwRs .framer-1vvhkoe, .framer-8iwRs .framer-64htxa { flex: none; width: 100%; } .framer-8iwRs .framer-1p4t3ov { flex-direction: column; } .framer-8iwRs .framer-9z6lca-container, .framer-8iwRs .framer-1pnno3y-container { will-change: unset; } .framer-8iwRs .framer-1vgkt9d { position: relative; } .framer-8iwRs .framer-b1mqg4 { height: min-content; overflow: hidden; } .framer-8iwRs .framer-mnthz0 { height: min-content; padding: 100px 0px 100px 0px; } .framer-8iwRs .framer-p4rr9n { left: 0px; right: 0px; } .framer-8iwRs .framer-1l67d8o { gap: 40px; max-width: unset; padding: 0px 24px 0px 24px; } .framer-8iwRs .framer-ya694n { flex-direction: column; gap: 20px; padding: 0px; width: 100%; } .framer-8iwRs .framer-rb63wp { padding: 50px 20px 80px 20px; } .framer-8iwRs .framer-lkh9a0 { padding: 0px; width: 100%; } .framer-8iwRs .framer-twsn0j { flex-direction: column; gap: 16px; height: min-content; } .framer-8iwRs .framer-1izhns5 { height: var(--framer-aspect-ratio-supported, 171px); } .framer-8iwRs .framer-1pduyla { padding: 40px 20px 0px 20px; } .framer-8iwRs .framer-1hcaxgd { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; max-width: 100%; min-height: unset; padding: 20px; } .framer-8iwRs .framer-1sz1yln { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; } .framer-8iwRs .framer-1z0l6fv { max-width: unset; } .framer-8iwRs .framer-zi3aw0 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 50px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8iwRs .framer-9m3sui, .framer-8iwRs .framer-64000c, .framer-8iwRs .framer-10gpkha, .framer-8iwRs .framer-nyixk6, .framer-8iwRs .framer-1hg2zz8, .framer-8iwRs .framer-1p4t3ov, .framer-8iwRs .framer-1l67d8o, .framer-8iwRs .framer-ya694n, .framer-8iwRs .framer-twsn0j, .framer-8iwRs .framer-1sz1yln { gap: 0px; } .framer-8iwRs .framer-9m3sui > *, .framer-8iwRs .framer-1p4t3ov > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-8iwRs .framer-9m3sui > :first-child, .framer-8iwRs .framer-64000c > :first-child, .framer-8iwRs .framer-10gpkha > :first-child, .framer-8iwRs .framer-1hg2zz8 > :first-child, .framer-8iwRs .framer-1p4t3ov > :first-child, .framer-8iwRs .framer-1l67d8o > :first-child, .framer-8iwRs .framer-ya694n > :first-child, .framer-8iwRs .framer-twsn0j > :first-child, .framer-8iwRs .framer-1sz1yln > :first-child { margin-top: 0px; } .framer-8iwRs .framer-9m3sui > :last-child, .framer-8iwRs .framer-64000c > :last-child, .framer-8iwRs .framer-10gpkha > :last-child, .framer-8iwRs .framer-1hg2zz8 > :last-child, .framer-8iwRs .framer-1p4t3ov > :last-child, .framer-8iwRs .framer-1l67d8o > :last-child, .framer-8iwRs .framer-ya694n > :last-child, .framer-8iwRs .framer-twsn0j > :last-child, .framer-8iwRs .framer-1sz1yln > :last-child { margin-bottom: 0px; } .framer-8iwRs .framer-64000c > *, .framer-8iwRs .framer-10gpkha > *, .framer-8iwRs .framer-1hg2zz8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8iwRs .framer-nyixk6 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-8iwRs .framer-nyixk6 > :first-child { margin-left: 0px; } .framer-8iwRs .framer-nyixk6 > :last-child { margin-right: 0px; } .framer-8iwRs .framer-1l67d8o > *, .framer-8iwRs .framer-1sz1yln > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-8iwRs .framer-ya694n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-8iwRs .framer-twsn0j > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (min-width: 992px) and (max-width: 1439px) { .framer-8iwRs.framer-15s9fwd { width: 992px; } .framer-8iwRs .framer-w680bw { padding: 150px 40px 0px 40px; } .framer-8iwRs .framer-9m3sui, .framer-8iwRs .framer-18szz3e { width: 100%; } .framer-8iwRs .framer-mjsdi5 { --border-bottom-width: 0px; height: 27px; } .framer-8iwRs .framer-1itsqzz-container { height: var(--framer-aspect-ratio-supported, 506px); } .framer-8iwRs .framer-a6qfn3 { padding: 0px 40px 0px 40px; } .framer-8iwRs .framer-1vgkt9d { position: relative; } .framer-8iwRs .framer-mnthz0 { height: 91vh; padding: 80px; top: 35px; } .framer-8iwRs .framer-p4rr9n { height: 578px; left: -38px; right: -35px; } .framer-8iwRs .framer-ya694n { gap: 43px; } .framer-8iwRs .framer-jvw4w8-container { height: 357px; order: 0; width: 797px; } .framer-8iwRs .framer-1mkrg00-container { height: 357px; order: 1; width: 797px; } .framer-8iwRs .framer-109ut1s-container { height: 357px; order: 2; width: 797px; } .framer-8iwRs .framer-1hutano-container { height: 357px; order: 3; width: 797px; } .framer-8iwRs .framer-1ruk39z-container { height: 357px; order: 4; width: 797px; } .framer-8iwRs .framer-1ed2ve1-container { height: 357px; order: 5; width: 797px; } .framer-8iwRs .framer-rb63wp { padding: 80px 40px 80px 40px; } .framer-8iwRs .framer-lkh9a0 { background-color: unset; width: 100%; } .framer-8iwRs .framer-1rcrghe-container { order: 0; width: 100%; } .framer-8iwRs .framer-twsn0j { gap: 20px; height: min-content; } .framer-8iwRs .framer-1izhns5 { height: var(--framer-aspect-ratio-supported, 222px); } .framer-8iwRs .framer-1sz1yln { flex-direction: column; } .framer-8iwRs .framer-64htxa { align-content: center; align-items: center; flex: none; width: 100%; } .framer-8iwRs .framer-1z0l6fv { max-width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8iwRs .framer-ya694n, .framer-8iwRs .framer-twsn0j, .framer-8iwRs .framer-1sz1yln { gap: 0px; } .framer-8iwRs .framer-ya694n > * { margin: 0px; margin-left: calc(43px / 2); margin-right: calc(43px / 2); } .framer-8iwRs .framer-ya694n > :first-child, .framer-8iwRs .framer-twsn0j > :first-child { margin-left: 0px; } .framer-8iwRs .framer-ya694n > :last-child, .framer-8iwRs .framer-twsn0j > :last-child { margin-right: 0px; } .framer-8iwRs .framer-twsn0j > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-8iwRs .framer-1sz1yln > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-8iwRs .framer-1sz1yln > :first-child { margin-top: 0px; } .framer-8iwRs .framer-1sz1yln > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12574.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WpFxoWR_W\":{\"layout\":[\"fixed\",\"auto\"]},\"XGqg_W9lu\":{\"layout\":[\"fixed\",\"auto\"]},\"kQnI8vfaN\":{\"layout\":[\"fixed\",\"auto\"]},\"JmC7a0So0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"VKyx3Xb7Q\":{\"pattern\":\":VKyx3Xb7Q\",\"name\":\"work-1\"},\"CCGmIRZna\":{\"pattern\":\":CCGmIRZna\",\"name\":\"hero-actions\"},\"Ho4M5Oq24\":{\"pattern\":\":Ho4M5Oq24\",\"name\":\"hero\"},\"jUWNcwkxm\":{\"pattern\":\":jUWNcwkxm\",\"name\":\"logo-cloud\"},\"bHQujZxfu\":{\"pattern\":\":bHQujZxfu\",\"name\":\"scroll-horizontal\"},\"DCqZHftoX\":{\"pattern\":\":DCqZHftoX\",\"name\":\"\"},\"P0itrj1P1\":{\"pattern\":\":P0itrj1P1\",\"name\":\"\"},\"IGZTx164H\":{\"pattern\":\":IGZTx164H\",\"name\":\"scroll-triggger-1\"},\"bDS2gsGcN\":{\"pattern\":\":bDS2gsGcN\",\"name\":\"scroll-triggger-2\"},\"hOg9g1O3r\":{\"pattern\":\":hOg9g1O3r\",\"name\":\"scroll-triggger-3\"},\"EeZp33OfT\":{\"pattern\":\":EeZp33OfT\",\"name\":\"scroll-triggger-4\"},\"Jc0ayIgSD\":{\"pattern\":\":Jc0ayIgSD\",\"name\":\"scroll-triggger5\"},\"Ee1IGeBCW\":{\"pattern\":\":Ee1IGeBCW\",\"name\":\"scroll-triggger6\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-8iwRs\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:12574.5,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaWlGrw-PTY.woff2\",weight:\"700\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaWlGrw-PTY.woff2\",weight:\"500\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaWlGrw-PTY.woff2\",weight:\"600\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaWlGrw-PTY.woff2\",weight:\"800\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaWlGrw-PTY.woff2\",weight:\"300\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaWlGrw-PTY.woff2\",weight:\"400\"},{family:\"Mukta\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mukta/v16/iJWKBXyXfDDVXYnDp32S0H3f.woff2\",weight:\"400\"},{family:\"Mukta\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mukta/v16/iJWHBXyXfDDVXbEeiVmf-2HW7ZB_.woff2\",weight:\"600\"}]},...NavbarFonts,...TextCycleFonts,...ButtonsButtonFonts,...ButtonsButton2Fonts,...VideoFonts,...TickerFonts,...CounterFonts,...CardFonts,...CodeFonts,...TextClipFonts,...CarouselFonts,...NewFooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"VKyx3Xb7Q\\\":{\\\"pattern\\\":\\\":VKyx3Xb7Q\\\",\\\"name\\\":\\\"work-1\\\"},\\\"CCGmIRZna\\\":{\\\"pattern\\\":\\\":CCGmIRZna\\\",\\\"name\\\":\\\"hero-actions\\\"},\\\"Ho4M5Oq24\\\":{\\\"pattern\\\":\\\":Ho4M5Oq24\\\",\\\"name\\\":\\\"hero\\\"},\\\"jUWNcwkxm\\\":{\\\"pattern\\\":\\\":jUWNcwkxm\\\",\\\"name\\\":\\\"logo-cloud\\\"},\\\"bHQujZxfu\\\":{\\\"pattern\\\":\\\":bHQujZxfu\\\",\\\"name\\\":\\\"scroll-horizontal\\\"},\\\"DCqZHftoX\\\":{\\\"pattern\\\":\\\":DCqZHftoX\\\",\\\"name\\\":\\\"\\\"},\\\"P0itrj1P1\\\":{\\\"pattern\\\":\\\":P0itrj1P1\\\",\\\"name\\\":\\\"\\\"},\\\"IGZTx164H\\\":{\\\"pattern\\\":\\\":IGZTx164H\\\",\\\"name\\\":\\\"scroll-triggger-1\\\"},\\\"bDS2gsGcN\\\":{\\\"pattern\\\":\\\":bDS2gsGcN\\\",\\\"name\\\":\\\"scroll-triggger-2\\\"},\\\"hOg9g1O3r\\\":{\\\"pattern\\\":\\\":hOg9g1O3r\\\",\\\"name\\\":\\\"scroll-triggger-3\\\"},\\\"EeZp33OfT\\\":{\\\"pattern\\\":\\\":EeZp33OfT\\\",\\\"name\\\":\\\"scroll-triggger-4\\\"},\\\"Jc0ayIgSD\\\":{\\\"pattern\\\":\\\":Jc0ayIgSD\\\",\\\"name\\\":\\\"scroll-triggger5\\\"},\\\"Ee1IGeBCW\\\":{\\\"pattern\\\":\\\":Ee1IGeBCW\\\",\\\"name\\\":\\\"scroll-triggger6\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"12574.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WpFxoWR_W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XGqg_W9lu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kQnI8vfaN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JmC7a0So0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,cAA2nD,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,2CAAijD,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,gBAAouC,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kCAA8mD,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,gEAA4yC,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,0CAAk+C,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,uBAAyyC,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kDAAi2C,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,gBAA+xC,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,gDAA+jD,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,gBAAorC,EAAE,UAAU,CAAC,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,uBAAswC,CAAC,EAAE0C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAM1D,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,0BAA0B,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK+D,EAA0B,CAAC,SAAsB/D,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,MAAM,CAAC,QAAQ,CAAC,EAAE,kBAAkB7C,GAAmB,SAAsBY,EAAKxB,GAAU,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,MAAM,qBAAqB,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sCAA2zC,KAAK,mBAAmB,KAAK,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAG,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,MAAM,CAAC,OAAO,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,MAAM,OAAO,GAAGM,EAAqB,CAAC,UAAU,CAAC,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,cAA2nD,EAAE,UAAU,CAAC,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,2CAAijD,EAAE,UAAU,CAAC,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kCAA8mD,EAAE,UAAU,CAAC,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kCAA8mD,EAAE,UAAU,CAAC,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,gEAA4yC,EAAE,UAAU,CAAC,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,0CAAk+C,EAAE,UAAU,CAAC,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,uBAAyyC,EAAE,UAAU,CAAC,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "PhosphorFonts", "getFonts", "Icon", "Phosphor1Controls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "radiusForCorner", "cornerIndex", "segments", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "border", "fontSize", "height", "id", "link", "newTab", "padding", "phospherIcon", "radius", "textColor", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "cRoeZpcrs", "GrpQ8zFBL", "FsefAOOPs", "RCPR2dydG", "SM93ZbT4W", "pnSbqlsuz", "oXzUBvlXy", "CbqVKrfIw", "Ftmhs83NY", "Y0hFOu99i", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "RichText2", "css", "FramerIDCJc1Ytb", "withCSS", "IDCJc1Ytb_default", "addPropertyControls", "ControlType", "addFonts", "MotionAWithwithAppendUTMOnClickr96luf", "withCodeBoundaryForOverrides", "motion", "withwithAppendUTMOnClick", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "background", "background2", "border", "color", "color2", "color3", "height", "id", "image", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "GOKbNSLB3", "PvFCHLJ2L", "z_p1aWZ_4", "SH26uqw46", "ylPJhbgKV", "voR6WU_0f", "xnB7MF0CK", "WNXF2KHYl", "XPMJb2T7e", "bWBOxWnGBDylMXiqkZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "Link", "css", "FramerSStgQbYgI", "withCSS", "SStgQbYgI_default", "addPropertyControls", "ControlType", "addFonts", "Clipboard", "props", "label", "content", "fill", "color", "style", "onClick", "font", "hoverOptions", "rest", "deprecatedFont", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "defaultEvents", "MaterialFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapvylaf9", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "css", "FramereGGC8IYk0", "withCSS", "eGGC8IYk0_default", "addPropertyControls", "ControlType", "addFonts", "CodeBlockFonts", "getFonts", "CodeBlock_default", "ClipboardFonts", "Clipboard", "Copy_buttonFonts", "eGGC8IYk0_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "overflow", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "emE111WLT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1487t2t", "args", "onTap143uuyr", "onTap11kvus", "onTap13icn34", "onTapy5fr20", "onTap1g8q0z1", "onTap1m8jnql", "onTap1gnxje6", "onTapt2p0wr", "onTapimgpq0", "onTape5t7qz", "onTapx22g28", "onTap1197pu5", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "FramerwX791DHMJ", "withCSS", "wX791DHMJ_default", "addPropertyControls", "ControlType", "addFonts", "NavbarFonts", "getFonts", "QHyJ0r5oU_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "TextCycleFonts", "oTqJqpEDV_default", "ButtonsButtonFonts", "S1EGgC3zF_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ButtonsButton2Fonts", "IDCJc1Ytb_default", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "Video", "VideoWithVideoPreloadNone1itsqzz", "withCodeBoundaryForOverrides", "withVideoPreloadNone", "MotionDivWithOptimizedAppearEffect", "TickerFonts", "Ticker", "CounterFonts", "Counter", "CardFonts", "SStgQbYgI_default", "CardWithVariantAppearEffect", "ContainerWithFX", "CodeFonts", "wX791DHMJ_default", "RichTextDefault11bkxz3p", "RichText2", "withLineTruncate", "MotionAWithFX", "TextClipFonts", "Test_default", "MotionAWithwithAppendUTMOnClickg5zedn", "withwithAppendUTMOnClick", "MotionAWithwithAppendUTMOnClickbgr8sy", "MotionAWithwithAppendUTMOnClick7eqluu", "MotionAWithwithAppendUTMOnClick3f66x0", "MotionAWithwithAppendUTMOnClick1r9cld7", "MotionAWithwithAppendUTMOnClickhravag", "MotionAWithwithAppendUTMOnClick1f94x2w", "MotionAWithwithAppendUTMOnClickfnp95l", "MotionAWithwithAppendUTMOnClick3gkfzk", "MotionAWithwithAppendUTMOnClickotulc", "CarouselFonts", "Carousel", "NewFooterFonts", "tclowrheu_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "transition2", "textEffect1", "animation1", "transition3", "transition4", "animation2", "animation3", "transition5", "animation4", "animation5", "transition6", "animation6", "transition7", "animation7", "transition8", "animation8", "animation9", "animation10", "animation11", "transition9", "addImageAlt", "image", "alt", "transition10", "animation12", "animation13", "transition11", "transition12", "animation14", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transformTemplate1", "_", "t", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "hDRt7bB2_VhisAdonV", "w3nLshw2GVhisAdonV", "YFpbNqNN2VhisAdonV", "YGIt5VnecVhisAdonV", "DN981qGw2VhisAdonV", "hG1gaZYOqVhisAdonV", "a5NDAhZPOVhisAdonV", "idVhisAdonV", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed", "ref6", "ref7", "ref8", "ref9", "ref10", "ref11", "elementId5", "ref12", "elementId6", "ref13", "isDisplayed1", "elementId7", "elementId8", "elementId9", "elementId10", "elementId11", "elementId12", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "x", "resolvedLinks1", "resolvedLinks2", "ChildrenCanSuspend", "zZ_HNoJDO_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "resolvedLinks3", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
