{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js", "ssg:https://framerusercontent.com/modules/8jxg8PsO48hTnyPA52AD/VZCz1VJzTbFeFBc8rGkU/gZ51Otvy0.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "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,progress}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,MozMaskImage: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,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};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=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};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));/*if (snap && (snapEdge === \"start\" || snapEdge === \"end\") && delta >= 1)\n            delta = delta + 0.4 // this ensures it doesn't snap back to previous page*/gotoPage(currentPage+delta);};/**\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:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`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)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_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=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.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\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (c126521)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withFX,withMappedReactProps}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import SingleToggle from\"https://framerusercontent.com/modules/3Zp8Qmb0tN9gknrT8etf/otLzBhq5O1vRqI5Cyo18/Vuw93iw32.js\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js\";import UIAvatar from\"#framer/local/canvasComponent/AEg0_Ryu6/AEg0_Ryu6.js\";import SectionsFooter from\"#framer/local/canvasComponent/emhU4NndL/emhU4NndL.js\";import ButtonButton from\"#framer/local/canvasComponent/f7LgJ_ycc/f7LgJ_ycc.js\";import SidebarSidebar,*as SidebarSidebarInfo from\"#framer/local/canvasComponent/G7TWeqUar/G7TWeqUar.js\";import SectionsMobileMenu from\"#framer/local/canvasComponent/LaxJoFRay/LaxJoFRay.js\";import UIBadge from\"#framer/local/canvasComponent/OIVKjt2z1/OIVKjt2z1.js\";import AIAgentCard from\"#framer/local/canvasComponent/pVPJqv6nb/pVPJqv6nb.js\";import SectionsCTA from\"#framer/local/canvasComponent/zA40H0JTC/zA40H0JTC.js\";import ButtonMenuButton from\"#framer/local/canvasComponent/zpLd0VXjJ/zpLd0VXjJ.js\";import{withCookie}from\"#framer/local/codeFile/KbZ2vc7/Cookie.js\";import AIAgents from\"#framer/local/collection/qS4ONL8wn/qS4ONL8wn.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle5 from\"#framer/local/css/haYteqmcY/haYteqmcY.js\";import*as sharedStyle4 from\"#framer/local/css/J3Q9PWt2T/J3Q9PWt2T.js\";import*as sharedStyle7 from\"#framer/local/css/qkXd669ZD/qkXd669ZD.js\";import*as sharedStyle2 from\"#framer/local/css/rjhkyeInL/rjhkyeInL.js\";import*as sharedStyle1 from\"#framer/local/css/soqPN_ehK/soqPN_ehK.js\";import*as sharedStyle6 from\"#framer/local/css/ts0q7Bu2v/ts0q7Bu2v.js\";import*as sharedStyle from\"#framer/local/css/V_smkmUkl/V_smkmUkl.js\";import*as sharedStyle8 from\"#framer/local/css/XxQwxLUtI/XxQwxLUtI.js\";import*as sharedStyle3 from\"#framer/local/css/YzCHf9oLi/YzCHf9oLi.js\";import metadataProvider from\"#framer/local/webPageMetadata/gZ51Otvy0/gZ51Otvy0.js\";const UIAvatarFonts=getFonts(UIAvatar);const SearchFonts=getFonts(Search);const SingleToggleFonts=getFonts(SingleToggle);const ButtonMenuButtonFonts=getFonts(ButtonMenuButton);const SectionsMobileMenuFonts=getFonts(SectionsMobileMenu);const SidebarSidebarFonts=getFonts(SidebarSidebar);const SidebarSidebarWithCookieWithMappedReactProps7nupis=withMappedReactProps(withCookie(SidebarSidebar),SidebarSidebarInfo);const ButtonButtonFonts=getFonts(ButtonButton);const MotionDivWithFX=withFX(motion.div);const CarouselFonts=getFonts(Carousel);const MotionAWithFX=withFX(motion.a);const UIBadgeFonts=getFonts(UIBadge);const RichTextWithFX=withFX(RichText);const AIAgentCardFonts=getFonts(AIAgentCard);const SectionsCTAFonts=getFonts(SectionsCTA);const SectionsFooterFonts=getFonts(SectionsFooter);const breakpoints={Ou4p1Yzm4:\"(max-width: 809px)\",sFf32WEtk:\"(min-width: 810px) and (max-width: 1319px)\",YuRbAY6XG:\"(min-width: 1320px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-s8mMH\";const variantClassNames={Ou4p1Yzm4:\"framer-v-11hwh48\",sFf32WEtk:\"framer-v-cf9da6\",YuRbAY6XG:\"framer-v-1xav68h\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.07,skewX:0,skewY:0,transition:transition1};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:70};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:70};const transition3={damping:60,delay:0,mass:1,stiffness:250,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.04,skewX:0,skewY:0,transition:transition3};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 HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"YuRbAY6XG\",Phone:\"Ou4p1Yzm4\",Tablet:\"sFf32WEtk\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YuRbAY6XG\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"gZ51Otvy0\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"gZ51Otvy0\",data:AIAgents,type:\"Collection\"},right:{alias:\"nextItemId\",data:AIAgents,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"gZ51Otvy0\",name:\"XfhOtTusJ\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"KedRrSZI9\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"FxjAD_Ej_\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"JdKevO2CQ\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"lexRPD4fs\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"Y5xoPuMhB\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"RpqcYNAUV\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"wUmc52xsb\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"CEynZK837\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"TeNLrenJ2\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"DtZcM7LjA\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"Fp1dMzNU0\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"YO7Ux_s4E\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"Ju4W_d2_E\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"F7yIA0rnp\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"ZnozbAUBQ\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"tDSNVl6la\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"Qj9ShY9PH\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"Y1v95zW_q\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"MIoVN7rFf\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"Q5vBUkZbx\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"Jc0Uuh3A3\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"w7qJhNyhx\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"n2Rdg823A\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"nK7NgXo68\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"UdzEN4le8\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"TBgtBMI6q\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"CpUnO2rZt\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"QRO6o9BP5\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"cFdyfNylz\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"kYqt7eu7z\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"fwFeVMzNq\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"mj3hcsQDV\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"ZyBL_DZF_\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"H6I4ID0Zk\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"TNLuhfAtk\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"Smt6wTwr9\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"zHzSSLyIJ\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"oe_SReJvb\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"v5WdSXIDv\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"fCH2axVmx\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"FySMkqt7L\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"YZQqG3Lb2\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"whGyw0qMH\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"gOUFlPPQt\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"Rt91jYY8Y\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"EGeL8wgff\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"VK0odLOIc\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"Hpf2pxO9O\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"UDNi4k4Ng\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"m1IYABtg3\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"K17LW3dAZ\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"Xl_w5FvKB\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"p9VQtUcXL\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"BegOvtP2T\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"KEvwbVHEQ\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"IJOdX0_Vp\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"SxNQoovKA\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"cjjq6NqQG\",type:\"Identifier\"},{collection:\"gZ51Otvy0\",name:\"p3BqPJ7UM\",type:\"Identifier\"},{alias:\"nextItemId.TdskYT5It\",collection:\"nextItemId\",name:\"TdskYT5It\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"gZ51Otvy0\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,tOb_o5YeK,IN8F1F9FT,XfhOtTusJ=getFromCurrentRouteData(\"XfhOtTusJ\")??\"\",FxjAD_Ej_=getFromCurrentRouteData(\"FxjAD_Ej_\")??\"\",p3BqPJ7UM=getFromCurrentRouteData(\"p3BqPJ7UM\")??\"\",lexRPD4fs=getFromCurrentRouteData(\"lexRPD4fs\"),JdKevO2CQ=getFromCurrentRouteData(\"JdKevO2CQ\")??\"\",nextItemId_TdskYT5It=getFromCurrentRouteData(\"nextItemId.TdskYT5It\")??true,Y5xoPuMhB=getFromCurrentRouteData(\"Y5xoPuMhB\")??true,RpqcYNAUV=getFromCurrentRouteData(\"RpqcYNAUV\")??true,wUmc52xsb=getFromCurrentRouteData(\"wUmc52xsb\")??true,CEynZK837=getFromCurrentRouteData(\"CEynZK837\")??true,TeNLrenJ2=getFromCurrentRouteData(\"TeNLrenJ2\")??true,DtZcM7LjA=getFromCurrentRouteData(\"DtZcM7LjA\")??true,Fp1dMzNU0=getFromCurrentRouteData(\"Fp1dMzNU0\")??true,YO7Ux_s4E=getFromCurrentRouteData(\"YO7Ux_s4E\")??true,Ju4W_d2_E=getFromCurrentRouteData(\"Ju4W_d2_E\")??true,F7yIA0rnp=getFromCurrentRouteData(\"F7yIA0rnp\")??true,ZnozbAUBQ=getFromCurrentRouteData(\"ZnozbAUBQ\")??true,tDSNVl6la=getFromCurrentRouteData(\"tDSNVl6la\")??true,Qj9ShY9PH=getFromCurrentRouteData(\"Qj9ShY9PH\")??true,Y1v95zW_q=getFromCurrentRouteData(\"Y1v95zW_q\")??true,MIoVN7rFf=getFromCurrentRouteData(\"MIoVN7rFf\")??true,Q5vBUkZbx=getFromCurrentRouteData(\"Q5vBUkZbx\")??true,Jc0Uuh3A3=getFromCurrentRouteData(\"Jc0Uuh3A3\")??true,n2Rdg823A=getFromCurrentRouteData(\"n2Rdg823A\")??true,w7qJhNyhx=getFromCurrentRouteData(\"w7qJhNyhx\")??true,nK7NgXo68=getFromCurrentRouteData(\"nK7NgXo68\")??true,UdzEN4le8=getFromCurrentRouteData(\"UdzEN4le8\")??true,TBgtBMI6q=getFromCurrentRouteData(\"TBgtBMI6q\")??true,CpUnO2rZt=getFromCurrentRouteData(\"CpUnO2rZt\")??true,QRO6o9BP5=getFromCurrentRouteData(\"QRO6o9BP5\")??true,cFdyfNylz=getFromCurrentRouteData(\"cFdyfNylz\")??true,kYqt7eu7z=getFromCurrentRouteData(\"kYqt7eu7z\")??true,mj3hcsQDV=getFromCurrentRouteData(\"mj3hcsQDV\")??true,fwFeVMzNq=getFromCurrentRouteData(\"fwFeVMzNq\")??true,ZyBL_DZF_=getFromCurrentRouteData(\"ZyBL_DZF_\")??true,H6I4ID0Zk=getFromCurrentRouteData(\"H6I4ID0Zk\")??true,TNLuhfAtk=getFromCurrentRouteData(\"TNLuhfAtk\")??true,Smt6wTwr9=getFromCurrentRouteData(\"Smt6wTwr9\")??true,zHzSSLyIJ=getFromCurrentRouteData(\"zHzSSLyIJ\")??true,oe_SReJvb=getFromCurrentRouteData(\"oe_SReJvb\")??true,v5WdSXIDv=getFromCurrentRouteData(\"v5WdSXIDv\")??true,fCH2axVmx=getFromCurrentRouteData(\"fCH2axVmx\")??true,FySMkqt7L=getFromCurrentRouteData(\"FySMkqt7L\")??true,YZQqG3Lb2=getFromCurrentRouteData(\"YZQqG3Lb2\")??true,whGyw0qMH=getFromCurrentRouteData(\"whGyw0qMH\")??true,gOUFlPPQt=getFromCurrentRouteData(\"gOUFlPPQt\")??true,Rt91jYY8Y=getFromCurrentRouteData(\"Rt91jYY8Y\")??true,VK0odLOIc=getFromCurrentRouteData(\"VK0odLOIc\")??true,EGeL8wgff=getFromCurrentRouteData(\"EGeL8wgff\")??true,Hpf2pxO9O=getFromCurrentRouteData(\"Hpf2pxO9O\")??true,UDNi4k4Ng=getFromCurrentRouteData(\"UDNi4k4Ng\")??true,m1IYABtg3=getFromCurrentRouteData(\"m1IYABtg3\")??true,K17LW3dAZ=getFromCurrentRouteData(\"K17LW3dAZ\")??true,Xl_w5FvKB=getFromCurrentRouteData(\"Xl_w5FvKB\")??true,p9VQtUcXL=getFromCurrentRouteData(\"p9VQtUcXL\")??true,BegOvtP2T=getFromCurrentRouteData(\"BegOvtP2T\")??true,KEvwbVHEQ=getFromCurrentRouteData(\"KEvwbVHEQ\")??true,IJOdX0_Vp=getFromCurrentRouteData(\"IJOdX0_Vp\")??true,SxNQoovKA=getFromCurrentRouteData(\"SxNQoovKA\")??true,cjjq6NqQG=getFromCurrentRouteData(\"cjjq6NqQG\")??true,rufml6V20OIEf49gB6,XfhOtTusJOIEf49gB6,KedRrSZI9OIEf49gB6,idOIEf49gB6,KedRrSZI9=getFromCurrentRouteData(\"KedRrSZI9\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const A15OMJO8X1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"sFf32WEtk\",\"Ou4p1Yzm4\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if([\"sFf32WEtk\",\"Ou4p1Yzm4\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"YuRbAY6XG\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1xav68h\",className),ref:ref??ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.nav,{className:\"framer-xa5s25 hidden-1xav68h\",\"data-framer-name\":\"Mobile Menu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3i7dkf\",\"data-framer-name\":\"Menu\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13v9h09-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ou4p1Yzm4:{variant:\"NKaO9pBv_\",xyOZb0FM6:resolvedLinks[1]},sFf32WEtk:{variant:\"NKaO9pBv_\",xyOZb0FM6:resolvedLinks[0]}},children:/*#__PURE__*/_jsx(UIAvatar,{height:\"100%\",id:\"oMhP2II5r\",layoutId:\"oMhP2II5r\",style:{height:\"100%\",width:\"100%\"},variant:\"erXEouzw9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9kpamn\",\"data-framer-name\":\"Icons\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q9udoo-container hidden-cf9da6 hidden-11hwh48\",whileHover:animation,children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"rgba(0, 0, 0, 0.8)\",transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:\"var(--token-d8f45a16-4ab8-4f21-a042-bfd7dcaf9c1d, rgb(104, 110, 124))\",iconSize:24,iconType:\"default\",id:\"OIiaH8ddk\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"icon\",dividerType:\"fullWidth\",iconOptions:{iconColor:\"rgba(0, 0, 0, 0.45)\",iconSize:18,iconType:\"default\"},inputFont:{},placeholderOptions:{placeholderColor:\"rgba(0, 0, 0, 0.4)\",placeholderText:\"Search...\"},textColor:\"rgb(51, 51, 51)\"},layoutId:\"OIiaH8ddk\",modalOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:16,heightIsStatic:true,heightTransition:{damping:60,delay:0,mass:1,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:500},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"rgba(0, 0, 0, 0.4)\",subtitleFont:{},subtitleType:\"path\"},titleColor:\"rgb(51, 51, 51)\",titleFont:{},titleType:\"h1\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iermyj-container hidden-cf9da6 hidden-11hwh48\",children:/*#__PURE__*/_jsx(SingleToggle,{aoJpqCstc:\"Sun\",height:\"100%\",id:\"ooMAq6s9w\",izVnO3mC9:\"Moon\",layoutId:\"ooMAq6s9w\",ogBQvzNNC:10,q3VxHPdzp:\"bold\",Tib6Q7ZnQ:\"var(--token-d8f45a16-4ab8-4f21-a042-bfd7dcaf9c1d, rgb(104, 110, 124))\",width:\"100%\",Xu4nOYGGe:\"fTmWKR9rn\"})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x4rfjc\",\"data-framer-name\":\"Hamburger\",id:\"1x4rfjc\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-k6xdeg\"),\"data-framer-portal-id\":\"1x4rfjc\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"RZKrnBuQv\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-u3112c-container\"),\"data-framer-portal-id\":\"1x4rfjc\",children:/*#__PURE__*/_jsx(ButtonMenuButton,{A15OMJO8X:A15OMJO8X1wnntms({overlay}),height:\"100%\",id:\"j9bomOdh1\",layoutId:\"j9bomOdh1\",variant:\"jZUj857Bj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-127vbgf-container\"),\"data-framer-portal-id\":\"1x4rfjc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ou4p1Yzm4:{variant:\"hup6YulCx\"}},children:/*#__PURE__*/_jsx(SectionsMobileMenu,{height:\"100%\",hg4pt6gjo:\"CWoaZSeML\",id:\"vrSmdU3cj\",layoutId:\"vrSmdU3cj\",style:{width:\"100%\"},variant:\"F46EU1odh\",width:\"100%\"})})})})]}),getContainer())})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tsxrna-container\",children:/*#__PURE__*/_jsx(ButtonMenuButton,{height:\"100%\",id:\"HX9gD4epW\",layoutId:\"HX9gD4epW\",variant:\"I177:10603;173:7138\",width:\"100%\"})})})]})})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2vnbxk hidden-cf9da6 hidden-11hwh48\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:952,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gloiv4-container\",children:/*#__PURE__*/_jsx(SidebarSidebarWithCookieWithMappedReactProps7nupis,{F5CRmqY7c:\"ax9qb8loA\",height:\"100%\",id:\"BfXA_BfWU\",layoutId:\"BfXA_BfWU\",mNhvEGQQS:\"ZAlAMQdYW\",style:{height:\"100%\"},variant:\"I182:14703;182:13044\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uapve9\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12nu31y\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"article\",{className:\"framer-15b707y\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14f1agr\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1fv2gbv\",\"data-styles-preset\":\"V_smkmUkl\",children:\"Kliq\"})}),className:\"framer-ar9b7c\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:XfhOtTusJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jvi1zm\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:p3BqPJ7UM,implicitPathVariables:undefined},{href:p3BqPJ7UM,implicitPathVariables:undefined},{href:p3BqPJ7UM,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ou4p1Yzm4:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9log7-container\",whileHover:animation3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ou4p1Yzm4:{style:{height:\"100%\",width:\"100%\"},v5JcieRdw:resolvedLinks1[2]},sFf32WEtk:{v5JcieRdw:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{dqirWZH4G:\"GraduationCap\",EWmLdusmU:\"GraduationCap\",height:\"100%\",ICS10T40R:\"regular\",id:\"igK7cavpA\",layoutId:\"igK7cavpA\",MUxLc5MAA:false,NPN38RAdS:FxjAD_Ej_,o0QwVpQkz:true,style:{height:\"100%\"},v5JcieRdw:resolvedLinks1[0],variant:\"VaHNX3Wvs\",width:\"100%\",wUnopu7mR:\"regular\",yE0tJ4kSM:false})})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ou4p1Yzm4:{href:p3BqPJ7UM}},children:/*#__PURE__*/_jsx(Link,{nodeId:\"wFm6CNyMz\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w70gpb framer-9ypk4c\",\"data-border\":true,\"data-framer-name\":\"Carousel\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11w46w3-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",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:0,height:\"100%\",id:\"XtKvivg1h\",layoutId:\"XtKvivg1h\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:1,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"900px\",...toResponsiveImage(lexRPD4fs)},className:\"framer-l1l7kf\",\"data-framer-name\":\"Image 01\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hzweas\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ax1z9f\",\"data-framer-name\":\"About\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vttggb\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1opsyl2\",\"data-styles-preset\":\"soqPN_ehK\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"What This AI Can Do\"})})}),className:\"framer-7lq8w9\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"UbrKB6vmg\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:JdKevO2CQ,className:\"framer-1ajdew7\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1hoqmk4\",h1:\"framer-styles-preset-3glxup\",h2:\"framer-styles-preset-2iimnq\",h3:\"framer-styles-preset-1fv2gbv\",h4:\"framer-styles-preset-13kx0nb\",h5:\"framer-styles-preset-1opsyl2\",img:\"framer-styles-preset-149ejsz\",p:\"framer-styles-preset-rk7xoq\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ah35qp\",\"data-border\":true,\"data-framer-name\":\"Sidebar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cvnmoz\",\"data-framer-name\":\"Pages\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1iktg3k\",\"data-styles-preset\":\"XxQwxLUtI\",style:{\"--framer-text-color\":\"var(--token-1b462761-44a1-49d3-bc31-5cfc1d960484, rgb(60, 60, 71))\"},children:\"Field\"})}),className:\"framer-17l816m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hb84qg\",\"data-framer-name\":\"Field\",children:[nextItemId_TdskYT5It&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vjg5wq-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"AI Assistant\",height:\"100%\",id:\"qQpbp7lky\",layoutId:\"qQpbp7lky\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Y5xoPuMhB&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wisr7o-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"AI Chatbot\",height:\"100%\",id:\"ta7XqfAsz\",layoutId:\"ta7XqfAsz\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),RpqcYNAUV&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15hbp1u-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"AI Development\",height:\"100%\",id:\"lf0NdApM_\",layoutId:\"lf0NdApM_\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),wUmc52xsb&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pdxong-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"AI-Powered Analytics\",height:\"100%\",id:\"lXFYbscNp\",layoutId:\"lXFYbscNp\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),CEynZK837&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dw62n8-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"AI Research\",height:\"100%\",id:\"EHaqsVTd4\",layoutId:\"EHaqsVTd4\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),TeNLrenJ2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bx6b6e-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"AI Search\",height:\"100%\",id:\"AZha6sgyv\",layoutId:\"AZha6sgyv\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),DtZcM7LjA&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10tb2xo-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"AI Workflows\",height:\"100%\",id:\"ueA_VBGW3\",layoutId:\"ueA_VBGW3\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Fp1dMzNU0&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tzfqwp-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"API Integration\",height:\"100%\",id:\"vRiprzQwe\",layoutId:\"vRiprzQwe\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),YO7Ux_s4E&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8h5dj6-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Automation\",height:\"100%\",id:\"BLSbspAiG\",layoutId:\"BLSbspAiG\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Ju4W_d2_E&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1np2ik9-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Autonomous Agents\",height:\"100%\",id:\"wTKMII1Xh\",layoutId:\"wTKMII1Xh\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),F7yIA0rnp&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-efkjou-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Business Automation\",height:\"100%\",id:\"s2L52_tW6\",layoutId:\"s2L52_tW6\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),ZnozbAUBQ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3c82h7-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Business Intelligence\",height:\"100%\",id:\"kZRq_rXOI\",layoutId:\"kZRq_rXOI\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),tDSNVl6la&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ewg7te-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Cloud AI\",height:\"100%\",id:\"Q7M9cWFTy\",layoutId:\"Q7M9cWFTy\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Qj9ShY9PH&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5vlnvg-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Competitor Analysis\",height:\"100%\",id:\"DLZ6SAekx\",layoutId:\"DLZ6SAekx\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Y1v95zW_q&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r6ebkg-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Content Creation\",height:\"100%\",id:\"KxtHkKg7Y\",layoutId:\"KxtHkKg7Y\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Y1v95zW_q&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1midw8h-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Content Generation\",height:\"100%\",id:\"Fqc3CkAea\",layoutId:\"Fqc3CkAea\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),MIoVN7rFf&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4bmk5q-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Conversational AI\",height:\"100%\",id:\"jwT_M7zfP\",layoutId:\"jwT_M7zfP\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Q5vBUkZbx&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h3hwgf-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Creative Design\",height:\"100%\",id:\"PDkwFznwD\",layoutId:\"PDkwFznwD\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Jc0Uuh3A3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d6r3zl-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"CRM\",height:\"100%\",id:\"Ie6jkoDbY\",layoutId:\"Ie6jkoDbY\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),n2Rdg823A&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m93ssv-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Customer Insights\",height:\"100%\",id:\"DHJUXt2r4\",layoutId:\"DHJUXt2r4\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),w7qJhNyhx&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i1tabk-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Customer Service AI\",height:\"100%\",id:\"uganUjZ_0\",layoutId:\"uganUjZ_0\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),nK7NgXo68&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o813di-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Developer Tools\",height:\"100%\",id:\"aQQyaaKOo\",layoutId:\"aQQyaaKOo\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),UdzEN4le8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pgurw4-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"E-Commerce AI\",height:\"100%\",id:\"JiuRT3B56\",layoutId:\"JiuRT3B56\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),TBgtBMI6q&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s23gwi-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Enterprise AI\",height:\"100%\",id:\"cN4Qw2Vq2\",layoutId:\"cN4Qw2Vq2\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),CpUnO2rZt&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2sdx2k-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Enterprise Search\",height:\"100%\",id:\"OTqTud7vR\",layoutId:\"OTqTud7vR\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),QRO6o9BP5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a0k8rx-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Ethical AI\",height:\"100%\",id:\"PFRTeyt37\",layoutId:\"PFRTeyt37\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),cFdyfNylz&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w5jbbk-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Fleet Management\",height:\"100%\",id:\"uqTpKnFgU\",layoutId:\"uqTpKnFgU\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),kYqt7eu7z&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vsrpa7-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"General AI\",height:\"100%\",id:\"XdhwcDefr\",layoutId:\"XdhwcDefr\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),mj3hcsQDV&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s87e3q-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Healthcare AI\",height:\"100%\",id:\"OEOgq7oIU\",layoutId:\"OEOgq7oIU\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),fwFeVMzNq&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1miayy9-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Healthcare\",height:\"100%\",id:\"IlDvO0fYC\",layoutId:\"IlDvO0fYC\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),ZyBL_DZF_&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ow7tcl-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Health Monitoring\",height:\"100%\",id:\"O5Et14V2H\",layoutId:\"O5Et14V2H\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),H6I4ID0Zk&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hg4xrv-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Image Generation\",height:\"100%\",id:\"yimvFRqGZ\",layoutId:\"yimvFRqGZ\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),TNLuhfAtk&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e2r8bs-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Knowledge Automation\",height:\"100%\",id:\"jv8WfLMNv\",layoutId:\"jv8WfLMNv\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Smt6wTwr9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xwt0xk-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Knowledge Management\",height:\"100%\",id:\"sIUbd27qr\",layoutId:\"sIUbd27qr\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),zHzSSLyIJ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lu7gf8-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Last-Mile Delivery\",height:\"100%\",id:\"P4flijFNL\",layoutId:\"P4flijFNL\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),oe_SReJvb&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n1xid0-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Language Models\",height:\"100%\",id:\"lHQ1FqZIx\",layoutId:\"lHQ1FqZIx\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),v5WdSXIDv&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ez2ptw-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Logistics\",height:\"100%\",id:\"fKtdosd9e\",layoutId:\"fKtdosd9e\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),fCH2axVmx&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b7x1uk-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Marketing\",height:\"100%\",id:\"laIKsiHa_\",layoutId:\"laIKsiHa_\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),FySMkqt7L&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-em2e6-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Marketing AI\",height:\"100%\",id:\"OrBl0zlr6\",layoutId:\"OrBl0zlr6\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),YZQqG3Lb2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18r7a0b-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Marketing Automation\",height:\"100%\",id:\"WPTlEQPYP\",layoutId:\"WPTlEQPYP\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),whGyw0qMH&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oe28l1-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Multilingual AI\",height:\"100%\",id:\"NWWr4ROj0\",layoutId:\"NWWr4ROj0\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),gOUFlPPQt&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qjo6i-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Multimodal AI\",height:\"100%\",id:\"o8fJBfZim\",layoutId:\"o8fJBfZim\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Rt91jYY8Y&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-io0q2r-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"NLP\",height:\"100%\",id:\"lGENeFVi3\",layoutId:\"lGENeFVi3\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),VK0odLOIc&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nu23fu-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Natural Language Processing\",height:\"100%\",id:\"aE3eLe73o\",layoutId:\"aE3eLe73o\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),EGeL8wgff&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-znnlou-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"No-Code Development\",height:\"100%\",id:\"izO9aGn1m\",layoutId:\"izO9aGn1m\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Hpf2pxO9O&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tuv9wp-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Open-Source AI\",height:\"100%\",id:\"cwT4bgrLd\",layoutId:\"cwT4bgrLd\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),UDNi4k4Ng&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pi8lo4-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Personalization\",height:\"100%\",id:\"fXrUsBtEv\",layoutId:\"fXrUsBtEv\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),m1IYABtg3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mz5bca-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Predictive Analytics\",height:\"100%\",id:\"MbOSnqTHB\",layoutId:\"MbOSnqTHB\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),K17LW3dAZ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ftgjz1-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Route Optimization\",height:\"100%\",id:\"bM2fgrEkf\",layoutId:\"bM2fgrEkf\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),Xl_w5FvKB&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17m3i49-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Sustainable Logistics\",height:\"100%\",id:\"GYgTqBXKO\",layoutId:\"GYgTqBXKO\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),p9VQtUcXL&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jctjt3-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Symptom Checker\",height:\"100%\",id:\"WkoWoM7EV\",layoutId:\"WkoWoM7EV\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),BegOvtP2T&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8pnzpf-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Task Management\",height:\"100%\",id:\"O6xkgzcyD\",layoutId:\"O6xkgzcyD\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),KEvwbVHEQ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k9i8zp-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Templates\",height:\"100%\",id:\"Gc9tXQnrZ\",layoutId:\"Gc9tXQnrZ\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),IJOdX0_Vp&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g6fpqk-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Text Generation\",height:\"100%\",id:\"mrVvkLc6O\",layoutId:\"mrVvkLc6O\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),SxNQoovKA&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h5olch-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Text-to-Image\",height:\"100%\",id:\"wtorCtdH9\",layoutId:\"wtorCtdH9\",variant:\"I182:14140;182:14458\",width:\"100%\"})})}),cjjq6NqQG&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f5ohmh-container\",children:/*#__PURE__*/_jsx(UIBadge,{Abz9LAnKE:\"Writing Assistance\",height:\"100%\",id:\"Cg54dMAZp\",layoutId:\"Cg54dMAZp\",variant:\"I182:14140;182:14458\",width:\"100%\"})})})]})]})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-f2tozu\",\"data-framer-name\":\"Related\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1opsyl2\",\"data-styles-preset\":\"soqPN_ehK\",style:{\"--framer-text-alignment\":\"left\"},children:\"Best AI Agents & Models\"})}),className:\"framer-19smavf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mh87oa\",\"data-framer-name\":\"Related\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"OIEf49gB6\",data:AIAgents,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"OIEf49gB6\",name:\"rufml6V20\",type:\"Identifier\"},{collection:\"OIEf49gB6\",name:\"XfhOtTusJ\",type:\"Identifier\"},{collection:\"OIEf49gB6\",name:\"KedRrSZI9\",type:\"Identifier\"},{collection:\"OIEf49gB6\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"OIEf49gB6\",name:\"KedRrSZI9\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:KedRrSZI9},type:\"BinaryOperation\"}},operator:\"and\",right:{collection:\"OIEf49gB6\",name:\"GkSM3Z6zA\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idOIEf49gB6,KedRrSZI9:KedRrSZI9OIEf49gB6,rufml6V20:rufml6V20OIEf49gB6,XfhOtTusJ:XfhOtTusJOIEf49gB6},index)=>{XfhOtTusJOIEf49gB6??=\"\";KedRrSZI9OIEf49gB6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`OIEf49gB6-${idOIEf49gB6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KedRrSZI9:KedRrSZI9OIEf49gB6},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{KedRrSZI9:KedRrSZI9OIEf49gB6},webPageId:\"gZ51Otvy0\"},implicitPathVariables:undefined},{href:{pathVariables:{KedRrSZI9:KedRrSZI9OIEf49gB6},webPageId:\"gZ51Otvy0\"},implicitPathVariables:undefined},{href:{pathVariables:{KedRrSZI9:KedRrSZI9OIEf49gB6},webPageId:\"gZ51Otvy0\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ou4p1Yzm4:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 50px)`},sFf32WEtk:{width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 160px) / 3, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:307,width:\"273.3333px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-k2sylt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ou4p1Yzm4:{geR6yS97v:resolvedLinks2[2],variant:\"s3s55USMv\"},sFf32WEtk:{geR6yS97v:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(AIAgentCard,{geR6yS97v:resolvedLinks2[0],height:\"100%\",id:\"bBEdVKAlo\",layoutId:\"bBEdVKAlo\",oaUH2IpqB:XfhOtTusJOIEf49gB6,style:{width:\"100%\"},variant:\"Tmw3nxr22\",VwxoFwlqB:toResponsiveImage(rufml6V20OIEf49gB6),width:\"100%\"})})})})})})})},idOIEf49gB6);})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yroddt\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ou4p1Yzm4:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},sFf32WEtk:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:265,width:\"900px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-x5yebh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ou4p1Yzm4:{variant:\"CRPcAHNU9\"}},children:/*#__PURE__*/_jsx(SectionsCTA,{height:\"100%\",id:\"yfZz7JcO8\",layoutId:\"yfZz7JcO8\",style:{width:\"100%\"},variant:\"W2ivl7heW\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ou4p1Yzm4:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},sFf32WEtk:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:398,width:\"900px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mavzu2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ou4p1Yzm4:{variant:\"cOUBdDrRD\"}},children:/*#__PURE__*/_jsx(SectionsFooter,{height:\"100%\",id:\"iSyS47P02\",layoutId:\"iSyS47P02\",style:{width:\"100%\"},variant:\"DVnztR0p9\",width:\"100%\"})})})})})]})]})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-5aa14f86-0daa-4c64-a52c-1c75611d5ae4, rgb(234, 236, 248)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s8mMH.framer-9ypk4c, .framer-s8mMH .framer-9ypk4c { display: block; }\",\".framer-s8mMH.framer-1xav68h { align-content: flex-start; align-items: flex-start; background-color: var(--token-5aa14f86-0daa-4c64-a52c-1c75611d5ae4, #eaecf8); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1320px; }\",\".framer-s8mMH .framer-xa5s25 { align-content: flex-start; align-items: flex-start; background-color: var(--token-5aa14f86-0daa-4c64-a52c-1c75611d5ae4, #eaecf8); cursor: default; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 40px 20px 40px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-s8mMH .framer-3i7dkf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 40px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s8mMH .framer-13v9h09-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-s8mMH .framer-9kpamn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-s8mMH .framer-q9udoo-container { aspect-ratio: 0.6 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 20px; }\",\".framer-s8mMH .framer-1iermyj-container, .framer-s8mMH .framer-vjg5wq-container, .framer-s8mMH .framer-1wisr7o-container, .framer-s8mMH .framer-15hbp1u-container, .framer-s8mMH .framer-pdxong-container, .framer-s8mMH .framer-1dw62n8-container, .framer-s8mMH .framer-1bx6b6e-container, .framer-s8mMH .framer-10tb2xo-container, .framer-s8mMH .framer-1tzfqwp-container, .framer-s8mMH .framer-8h5dj6-container, .framer-s8mMH .framer-1np2ik9-container, .framer-s8mMH .framer-efkjou-container, .framer-s8mMH .framer-3c82h7-container, .framer-s8mMH .framer-ewg7te-container, .framer-s8mMH .framer-5vlnvg-container, .framer-s8mMH .framer-1r6ebkg-container, .framer-s8mMH .framer-1midw8h-container, .framer-s8mMH .framer-4bmk5q-container, .framer-s8mMH .framer-h3hwgf-container, .framer-s8mMH .framer-1d6r3zl-container, .framer-s8mMH .framer-m93ssv-container, .framer-s8mMH .framer-i1tabk-container, .framer-s8mMH .framer-o813di-container, .framer-s8mMH .framer-pgurw4-container, .framer-s8mMH .framer-1s23gwi-container, .framer-s8mMH .framer-2sdx2k-container, .framer-s8mMH .framer-1a0k8rx-container, .framer-s8mMH .framer-1w5jbbk-container, .framer-s8mMH .framer-1vsrpa7-container, .framer-s8mMH .framer-s87e3q-container, .framer-s8mMH .framer-1miayy9-container, .framer-s8mMH .framer-ow7tcl-container, .framer-s8mMH .framer-hg4xrv-container, .framer-s8mMH .framer-1e2r8bs-container, .framer-s8mMH .framer-xwt0xk-container, .framer-s8mMH .framer-1lu7gf8-container, .framer-s8mMH .framer-1n1xid0-container, .framer-s8mMH .framer-1ez2ptw-container, .framer-s8mMH .framer-b7x1uk-container, .framer-s8mMH .framer-em2e6-container, .framer-s8mMH .framer-18r7a0b-container, .framer-s8mMH .framer-1oe28l1-container, .framer-s8mMH .framer-qjo6i-container, .framer-s8mMH .framer-io0q2r-container, .framer-s8mMH .framer-1nu23fu-container, .framer-s8mMH .framer-znnlou-container, .framer-s8mMH .framer-tuv9wp-container, .framer-s8mMH .framer-1pi8lo4-container, .framer-s8mMH .framer-1mz5bca-container, .framer-s8mMH .framer-1ftgjz1-container, .framer-s8mMH .framer-17m3i49-container, .framer-s8mMH .framer-jctjt3-container, .framer-s8mMH .framer-8pnzpf-container, .framer-s8mMH .framer-k9i8zp-container, .framer-s8mMH .framer-g6fpqk-container, .framer-s8mMH .framer-h5olch-container, .framer-s8mMH .framer-1f5ohmh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-s8mMH .framer-1x4rfjc { cursor: pointer; flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",'.framer-s8mMH.framer-k6xdeg { background-color: var(--token-e0016455-a31e-4daa-b2a1-d262a79e6bf6, #f6f6ff) /* {\"name\":\"Background\"} */; inset: 0px; position: fixed; user-select: none; }',\".framer-s8mMH.framer-u3112c-container { flex: none; height: auto; position: fixed; right: 40px; top: 20px; width: auto; z-index: 3; }\",\".framer-s8mMH.framer-127vbgf-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-s8mMH .framer-1tsxrna-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; }\",\".framer-s8mMH .framer-2vnbxk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 24px 0px 24px 24px; position: sticky; top: 0px; width: min-content; will-change: transform; z-index: 2; }\",\".framer-s8mMH .framer-1gloiv4-container { flex: none; height: 100%; position: relative; width: auto; }\",\".framer-s8mMH .framer-1uapve9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 96px 0px 24px 0px; position: relative; width: 1px; }\",\".framer-s8mMH .framer-12nu31y { 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: visible; padding: 0px; position: relative; width: 900px; }\",\".framer-s8mMH .framer-15b707y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s8mMH .framer-14f1agr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 50px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s8mMH .framer-ar9b7c { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-s8mMH .framer-jvi1zm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-s8mMH .framer-9log7-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-s8mMH .framer-1w70gpb { --border-bottom-width: 1px; --border-color: var(--token-1fb7ec29-3e29-48b6-bfa7-821f5fff504a, #e1e2f2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-s8mMH .framer-11w46w3-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-s8mMH .framer-l1l7kf { aspect-ratio: 1.4333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 628px); position: relative; width: 900px; }\",\".framer-s8mMH .framer-1hzweas { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s8mMH .framer-ax1z9f { 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: center; overflow: hidden; padding: 0px; position: relative; width: 533px; }\",\".framer-s8mMH .framer-1vttggb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s8mMH .framer-7lq8w9, .framer-s8mMH .framer-17l816m, .framer-s8mMH .framer-19smavf { --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-s8mMH .framer-1ajdew7 { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s8mMH .framer-ah35qp { --border-bottom-width: 1px; --border-color: var(--token-1fb7ec29-3e29-48b6-bfa7-821f5fff504a, #e1e2f2); --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: var(--token-e0016455-a31e-4daa-b2a1-d262a79e6bf6, #f6f6ff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: sticky; top: 24px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-s8mMH .framer-cvnmoz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s8mMH .framer-hb84qg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s8mMH .framer-f2tozu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-s8mMH .framer-mh87oa { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-s8mMH .framer-k2sylt-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-s8mMH .framer-1yroddt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s8mMH .framer-x5yebh-container, .framer-s8mMH .framer-1mavzu2-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s8mMH.framer-1xav68h, .framer-s8mMH .framer-xa5s25, .framer-s8mMH .framer-9kpamn, .framer-s8mMH .framer-2vnbxk, .framer-s8mMH .framer-1uapve9, .framer-s8mMH .framer-12nu31y, .framer-s8mMH .framer-15b707y, .framer-s8mMH .framer-jvi1zm, .framer-s8mMH .framer-1w70gpb, .framer-s8mMH .framer-1hzweas, .framer-s8mMH .framer-ax1z9f, .framer-s8mMH .framer-1vttggb, .framer-s8mMH .framer-ah35qp, .framer-s8mMH .framer-cvnmoz, .framer-s8mMH .framer-hb84qg, .framer-s8mMH .framer-f2tozu, .framer-s8mMH .framer-1yroddt { gap: 0px; } .framer-s8mMH.framer-1xav68h > *, .framer-s8mMH .framer-2vnbxk > *, .framer-s8mMH .framer-1uapve9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-s8mMH.framer-1xav68h > :first-child, .framer-s8mMH .framer-9kpamn > :first-child, .framer-s8mMH .framer-2vnbxk > :first-child, .framer-s8mMH .framer-1uapve9 > :first-child, .framer-s8mMH .framer-jvi1zm > :first-child, .framer-s8mMH .framer-1w70gpb > :first-child, .framer-s8mMH .framer-hb84qg > :first-child { margin-left: 0px; } .framer-s8mMH.framer-1xav68h > :last-child, .framer-s8mMH .framer-9kpamn > :last-child, .framer-s8mMH .framer-2vnbxk > :last-child, .framer-s8mMH .framer-1uapve9 > :last-child, .framer-s8mMH .framer-jvi1zm > :last-child, .framer-s8mMH .framer-1w70gpb > :last-child, .framer-s8mMH .framer-hb84qg > :last-child { margin-right: 0px; } .framer-s8mMH .framer-xa5s25 > *, .framer-s8mMH .framer-1vttggb > *, .framer-s8mMH .framer-f2tozu > *, .framer-s8mMH .framer-1yroddt > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-s8mMH .framer-xa5s25 > :first-child, .framer-s8mMH .framer-12nu31y > :first-child, .framer-s8mMH .framer-15b707y > :first-child, .framer-s8mMH .framer-1hzweas > :first-child, .framer-s8mMH .framer-ax1z9f > :first-child, .framer-s8mMH .framer-1vttggb > :first-child, .framer-s8mMH .framer-ah35qp > :first-child, .framer-s8mMH .framer-cvnmoz > :first-child, .framer-s8mMH .framer-f2tozu > :first-child, .framer-s8mMH .framer-1yroddt > :first-child { margin-top: 0px; } .framer-s8mMH .framer-xa5s25 > :last-child, .framer-s8mMH .framer-12nu31y > :last-child, .framer-s8mMH .framer-15b707y > :last-child, .framer-s8mMH .framer-1hzweas > :last-child, .framer-s8mMH .framer-ax1z9f > :last-child, .framer-s8mMH .framer-1vttggb > :last-child, .framer-s8mMH .framer-ah35qp > :last-child, .framer-s8mMH .framer-cvnmoz > :last-child, .framer-s8mMH .framer-f2tozu > :last-child, .framer-s8mMH .framer-1yroddt > :last-child { margin-bottom: 0px; } .framer-s8mMH .framer-9kpamn > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-s8mMH .framer-12nu31y > *, .framer-s8mMH .framer-15b707y > *, .framer-s8mMH .framer-1hzweas > *, .framer-s8mMH .framer-ax1z9f > *, .framer-s8mMH .framer-ah35qp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-s8mMH .framer-jvi1zm > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-s8mMH .framer-1w70gpb > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-s8mMH .framer-cvnmoz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-s8mMH .framer-hb84qg > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-s8mMH[data-border=\"true\"]::after, .framer-s8mMH [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: 1319px) { .framer-s8mMH.framer-1xav68h { flex-direction: column; width: 810px; } .framer-s8mMH .framer-xa5s25 { order: 0; } .framer-s8mMH .framer-1uapve9 { flex: none; order: 2; padding: 0px; width: 100%; } .framer-s8mMH .framer-12nu31y { flex: 1 0 0px; padding: 40px; width: 1px; } .framer-s8mMH .framer-ax1z9f { width: 100%; } .framer-s8mMH .framer-ah35qp { position: relative; top: unset; z-index: 0; } .framer-s8mMH .framer-f2tozu { padding: 24px 0px 0px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s8mMH.framer-1xav68h { gap: 0px; } .framer-s8mMH.framer-1xav68h > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s8mMH.framer-1xav68h > :first-child { margin-top: 0px; } .framer-s8mMH.framer-1xav68h > :last-child { margin-bottom: 0px; } }}\",'@media (max-width: 809px) { .framer-s8mMH.framer-1xav68h { flex-direction: column; width: 390px; } .framer-s8mMH .framer-xa5s25 { order: 0; padding: 24px; } .framer-s8mMH.framer-k6xdeg { background-color: var(--token-5aa14f86-0daa-4c64-a52c-1c75611d5ae4, #eaecf8) /* {\"name\":\"Base\"} */; } .framer-s8mMH.framer-u3112c-container { right: 24px; } .framer-s8mMH .framer-1uapve9 { flex: none; flex-direction: column; order: 2; padding: 0px; width: 100%; } .framer-s8mMH .framer-12nu31y { padding: 24px; width: 100%; } .framer-s8mMH .framer-14f1agr { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-s8mMH .framer-ar9b7c { flex: none; width: 100%; } .framer-s8mMH .framer-jvi1zm { flex-direction: column; width: 100%; } .framer-s8mMH .framer-9log7-container, .framer-s8mMH .framer-ax1z9f { width: 100%; } .framer-s8mMH .framer-1w70gpb { text-decoration: none; } .framer-s8mMH .framer-ah35qp { position: relative; top: unset; z-index: 0; } .framer-s8mMH .framer-f2tozu { padding: 0px; } .framer-s8mMH .framer-mh87oa { grid-template-columns: repeat(1, minmax(50px, 1fr)); padding: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s8mMH.framer-1xav68h, .framer-s8mMH .framer-1uapve9, .framer-s8mMH .framer-14f1agr, .framer-s8mMH .framer-jvi1zm { gap: 0px; } .framer-s8mMH.framer-1xav68h > *, .framer-s8mMH .framer-1uapve9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s8mMH.framer-1xav68h > :first-child, .framer-s8mMH .framer-1uapve9 > :first-child, .framer-s8mMH .framer-14f1agr > :first-child, .framer-s8mMH .framer-jvi1zm > :first-child { margin-top: 0px; } .framer-s8mMH.framer-1xav68h > :last-child, .framer-s8mMH .framer-1uapve9 > :last-child, .framer-s8mMH .framer-14f1agr > :last-child, .framer-s8mMH .framer-jvi1zm > :last-child { margin-bottom: 0px; } .framer-s8mMH .framer-14f1agr > *, .framer-s8mMH .framer-jvi1zm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2538\n * @framerIntrinsicWidth 1320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sFf32WEtk\":{\"layout\":[\"fixed\",\"auto\"]},\"Ou4p1Yzm4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate false\n * @framerResponsiveScreen\n */const FramergZ51Otvy0=withCSS(Component,css,\"framer-s8mMH\");export default FramergZ51Otvy0;FramergZ51Otvy0.displayName=\"Templates\";FramergZ51Otvy0.defaultProps={height:2538,width:1320};addFonts(FramergZ51Otvy0,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...UIAvatarFonts,...SearchFonts,...SingleToggleFonts,...ButtonMenuButtonFonts,...SectionsMobileMenuFonts,...SidebarSidebarFonts,...ButtonButtonFonts,...CarouselFonts,...UIBadgeFonts,...AIAgentCardFonts,...SectionsCTAFonts,...SectionsFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...componentPresets.fonts?.[\"UbrKB6vmg\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"UbrKB6vmg\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergZ51Otvy0\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"false\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sFf32WEtk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ou4p1Yzm4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1320\",\"framerIntrinsicHeight\":\"2538\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EA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",
  "names": ["clamp", "e", "n", "progress", "e", "n", "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", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "UIAvatarFonts", "getFonts", "AEg0_Ryu6_default", "SearchFonts", "Search_default", "SingleToggleFonts", "Vuw93iw32_default", "ButtonMenuButtonFonts", "zpLd0VXjJ_default", "SectionsMobileMenuFonts", "LaxJoFRay_default", "SidebarSidebarFonts", "G7TWeqUar_default", "SidebarSidebarWithCookieWithMappedReactProps7nupis", "withMappedReactProps", "withCookie", "G7TWeqUar_exports", "ButtonButtonFonts", "f7LgJ_ycc_default", "MotionDivWithFX", "withFX", "motion", "CarouselFonts", "Carousel", "MotionAWithFX", "UIBadgeFonts", "OIVKjt2z1_default", "RichTextWithFX", "RichText2", "AIAgentCardFonts", "pVPJqv6nb_default", "SectionsCTAFonts", "zA40H0JTC_default", "SectionsFooterFonts", "emhU4NndL_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation1", "transition2", "animation2", "transition3", "animation3", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "qS4ONL8wn_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "tOb_o5YeK", "IN8F1F9FT", "XfhOtTusJ", "FxjAD_Ej_", "p3BqPJ7UM", "lexRPD4fs", "JdKevO2CQ", "nextItemId_TdskYT5It", "Y5xoPuMhB", "RpqcYNAUV", "wUmc52xsb", "CEynZK837", "TeNLrenJ2", "DtZcM7LjA", "Fp1dMzNU0", "YO7Ux_s4E", "Ju4W_d2_E", "F7yIA0rnp", "ZnozbAUBQ", "tDSNVl6la", "Qj9ShY9PH", "Y1v95zW_q", "MIoVN7rFf", "Q5vBUkZbx", "Jc0Uuh3A3", "n2Rdg823A", "w7qJhNyhx", "nK7NgXo68", "UdzEN4le8", "TBgtBMI6q", "CpUnO2rZt", "QRO6o9BP5", "cFdyfNylz", "kYqt7eu7z", "mj3hcsQDV", "fwFeVMzNq", "ZyBL_DZF_", "H6I4ID0Zk", "TNLuhfAtk", "Smt6wTwr9", "zHzSSLyIJ", "oe_SReJvb", "v5WdSXIDv", "fCH2axVmx", "FySMkqt7L", "YZQqG3Lb2", "whGyw0qMH", "gOUFlPPQt", "Rt91jYY8Y", "VK0odLOIc", "EGeL8wgff", "Hpf2pxO9O", "UDNi4k4Ng", "m1IYABtg3", "K17LW3dAZ", "Xl_w5FvKB", "p9VQtUcXL", "BegOvtP2T", "KEvwbVHEQ", "IJOdX0_Vp", "SxNQoovKA", "cjjq6NqQG", "rufml6V20OIEf49gB6", "XfhOtTusJOIEf49gB6", "KedRrSZI9OIEf49gB6", "idOIEf49gB6", "KedRrSZI9", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "A15OMJO8X1wnntms", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "l", "AnimatePresence", "Ga", "x", "resolvedLinks1", "Link", "Image2", "ComponentPresetsProvider", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "resolvedLinks2", "css", "FramergZ51Otvy0", "withCSS", "gZ51Otvy0_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
