{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js", "ssg:https://framerusercontent.com/modules/PaCCJMY1XYUpPYOMSI0W/k4BnjVSDNmmSUoAoFddt/hAvra40vy.js", "ssg:https://framerusercontent.com/modules/Ira8wpRzQH6k3O2SErze/X5U3Vv6ftBTKsWtoN0zs/ksgC9fJct.js", "ssg:https://framerusercontent.com/modules/KXzFz5tJua4kYa28dCl2/dOC7rUTa3Lp3k11vK4Zl/Wc38I5zM8.js", "ssg:https://framerusercontent.com/modules/Wj39KCtRLE0yDDtk6MbE/3mNRIGf6GnA8dNvYfBty/wtaiPtisF.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}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},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:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},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:-100,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:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */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\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&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},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */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\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";const SlideshowFonts=getFonts(Slideshow);const serializationHash=\"framer-ANmnb\";const variantClassNames={VeXEwWebF:\"framer-v-1w05t6f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"VeXEwWebF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1w05t6f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"VeXEwWebF\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d5pg1s-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ym4nIYTXs-container\",nodeId:\"Ym4nIYTXs\",rendersWithMotion:true,scopeId:\"hAvra40vy\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-17,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:250,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:12,height:\"100%\",id:\"Ym4nIYTXs\",intervalControl:3,itemAmount:1,layoutId:\"Ym4nIYTXs\",padding:0,paddingBottom:20,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jkv1u9\",\"data-border\":true,\"data-framer-name\":\"abi\",layoutDependency:layoutDependency,layoutId:\"yQmzifUIH\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-66349018-6d57-46f9-af62-46d6e8beb0ab, rgb(214, 211, 209))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533.3333333333334,intrinsicWidth:533.3333333333334,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/MEy4Y4ae0ccPqZYaWxK4pR0dquY.png\"},className:\"framer-1bzrqvx\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yQmzifUIHz6jwr5Rym\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15m86y1\",layoutDependency:layoutDependency,layoutId:\"yQmzifUIHFROSr8bJ_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d5a0dd3-41b4-49ed-b086-5cf3ad200483, rgb(85, 102, 109)))\"},children:[\"\u201CAn international, remote team. Flexible working & supportive culture. Growing company so opportunities for development and promotion.\u201D  - \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Abi, HR\"})]})}),className:\"framer-pskg0k\",\"data-framer-name\":\"Make enterprise search more intelligent. Use natural language to query vast amounts of structured and unstructured data with precision.\",fonts:[\"GF;Noto Sans-regular\",\"GF;Noto Sans-700\"],layoutDependency:layoutDependency,layoutId:\"yQmzifUIHBYKVzsy3N\",style:{\"--extracted-r6o4lv\":\"var(--token-7d5a0dd3-41b4-49ed-b086-5cf3ad200483, rgb(85, 102, 109))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cgbnhk\",\"data-border\":true,\"data-framer-name\":\"zoran\",layoutDependency:layoutDependency,layoutId:\"By9ehk6OU\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-66349018-6d57-46f9-af62-46d6e8beb0ab, rgb(214, 211, 209))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533.3333333333334,intrinsicWidth:533.3333333333334,pixelHeight:248,pixelWidth:245,src:\"https://framerusercontent.com/images/zOkfAdteR0Uk6u5qBvSUhuEs.jpg\"},className:\"framer-p7365\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"By9ehk6OUz6jwr5Rym\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ye5u3\",layoutDependency:layoutDependency,layoutId:\"By9ehk6OUFROSr8bJ_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d5a0dd3-41b4-49ed-b086-5cf3ad200483, rgb(85, 102, 109)))\"},children:[\"\u201CGreat team, great open-source product.\u201D  - \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Zoran, Engineering\"})]})}),className:\"framer-bineqx\",\"data-framer-name\":\"Make enterprise search more intelligent. Use natural language to query vast amounts of structured and unstructured data with precision.\",fonts:[\"GF;Noto Sans-regular\",\"GF;Noto Sans-700\"],layoutDependency:layoutDependency,layoutId:\"n1WCnVgEK\",style:{\"--extracted-r6o4lv\":\"var(--token-7d5a0dd3-41b4-49ed-b086-5cf3ad200483, rgb(85, 102, 109))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-118ba14\",\"data-border\":true,\"data-framer-name\":\"costa\",layoutDependency:layoutDependency,layoutId:\"w68RDImDy\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-66349018-6d57-46f9-af62-46d6e8beb0ab, rgb(214, 211, 209))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533.3333333333334,intrinsicWidth:533.3333333333334,pixelHeight:207,pixelWidth:210,src:\"https://framerusercontent.com/images/A9R8qc6KbS672wld0hePwznv7E.jpg\"},className:\"framer-1it8ehy\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"w68RDImDyz6jwr5Rym\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fd72cb\",layoutDependency:layoutDependency,layoutId:\"w68RDImDyFROSr8bJ_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d5a0dd3-41b4-49ed-b086-5cf3ad200483, rgb(85, 102, 109)))\"},children:[\"\u201CI joined MindsDB at the beginning of their journey and the main reason for me was a belief in the company mission and vision that their founders have.\u201D  - \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Costa, Marketing\"})]})}),className:\"framer-14pr5fr\",\"data-framer-name\":\"Make enterprise search more intelligent. Use natural language to query vast amounts of structured and unstructured data with precision.\",fonts:[\"GF;Noto Sans-regular\",\"GF;Noto Sans-700\"],layoutDependency:layoutDependency,layoutId:\"EMnBYMIw8\",style:{\"--extracted-r6o4lv\":\"var(--token-7d5a0dd3-41b4-49ed-b086-5cf3ad200483, rgb(85, 102, 109))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ANmnb.framer-7zcb89, .framer-ANmnb .framer-7zcb89 { display: block; }\",\".framer-ANmnb.framer-1w05t6f { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1268px; }\",\".framer-ANmnb .framer-1d5pg1s-container { flex: 1 0 0px; height: 276px; position: relative; width: 1px; }\",\".framer-ANmnb .framer-1jkv1u9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 32px; position: relative; width: 1216px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ANmnb .framer-1bzrqvx, .framer-ANmnb .framer-p7365, .framer-ANmnb .framer-1it8ehy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 200px; }\",\".framer-ANmnb .framer-15m86y1, .framer-ANmnb .framer-1ye5u3, .framer-ANmnb .framer-1fd72cb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ANmnb .framer-pskg0k, .framer-ANmnb .framer-bineqx, .framer-ANmnb .framer-14pr5fr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ANmnb .framer-cgbnhk, .framer-ANmnb .framer-118ba14 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 264px; justify-content: flex-end; overflow: hidden; padding: 32px; position: relative; width: 1216px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ANmnb.framer-1w05t6f, .framer-ANmnb .framer-1jkv1u9, .framer-ANmnb .framer-15m86y1, .framer-ANmnb .framer-cgbnhk, .framer-ANmnb .framer-1ye5u3, .framer-ANmnb .framer-118ba14, .framer-ANmnb .framer-1fd72cb { gap: 0px; } .framer-ANmnb.framer-1w05t6f > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ANmnb.framer-1w05t6f > :first-child, .framer-ANmnb .framer-1jkv1u9 > :first-child, .framer-ANmnb .framer-cgbnhk > :first-child, .framer-ANmnb .framer-118ba14 > :first-child { margin-left: 0px; } .framer-ANmnb.framer-1w05t6f > :last-child, .framer-ANmnb .framer-1jkv1u9 > :last-child, .framer-ANmnb .framer-cgbnhk > :last-child, .framer-ANmnb .framer-118ba14 > :last-child { margin-right: 0px; } .framer-ANmnb .framer-1jkv1u9 > *, .framer-ANmnb .framer-cgbnhk > *, .framer-ANmnb .framer-118ba14 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-ANmnb .framer-15m86y1 > *, .framer-ANmnb .framer-1ye5u3 > *, .framer-ANmnb .framer-1fd72cb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ANmnb .framer-15m86y1 > :first-child, .framer-ANmnb .framer-1ye5u3 > :first-child, .framer-ANmnb .framer-1fd72cb > :first-child { margin-top: 0px; } .framer-ANmnb .framer-15m86y1 > :last-child, .framer-ANmnb .framer-1ye5u3 > :last-child, .framer-ANmnb .framer-1fd72cb > :last-child { margin-bottom: 0px; } }\",'.framer-ANmnb[data-border=\"true\"]::after, .framer-ANmnb [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 276\n * @framerIntrinsicWidth 1268\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhAvra40vy=withCSS(Component,css,\"framer-ANmnb\");export default FramerhAvra40vy;FramerhAvra40vy.displayName=\"company-test carousel\";FramerhAvra40vy.defaultProps={height:276,width:1268};addFonts(FramerhAvra40vy,[{explicitInter:true,fonts:[{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99Y41P6zHtY.woff2\",weight:\"400\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAaBN9Y41P6zHtY.woff2\",weight:\"700\"}]},...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhAvra40vy\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1268\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"276\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hAvra40vy.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-uoNjA\";const variantClassNames={WXtsYyBxT:\"framer-v-1kqklkg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"WXtsYyBxT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1kqklkg\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WXtsYyBxT\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5526or-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HcXNHDu1A-container\",nodeId:\"HcXNHDu1A\",rendersWithMotion:true,scopeId:\"ksgC9fJct\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:0,id:\"HcXNHDu1A\",layoutId:\"HcXNHDu1A\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:553.3333333333334,intrinsicWidth:414.6666666666667,pixelHeight:415,pixelWidth:311,src:\"https://framerusercontent.com/images/Y4bSbyDxR3kD7iKvM9UzSv1kdU.jpg\"},className:\"framer-6j66ld\",\"data-framer-name\":\"6 418\",layoutDependency:layoutDependency,layoutId:\"TB_GPG0pC\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:553.3333333333334,intrinsicWidth:828,pixelHeight:415,pixelWidth:621,sizes:\"827.5012px\",src:\"https://framerusercontent.com/images/p5Bg2113HrMstZS9jE6Lupkhc.jpg\",srcSet:\"https://framerusercontent.com/images/p5Bg2113HrMstZS9jE6Lupkhc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p5Bg2113HrMstZS9jE6Lupkhc.jpg 621w\"},className:\"framer-s1vivw\",\"data-framer-name\":\"1 70677840\",layoutDependency:layoutDependency,layoutId:\"d1oBN6rB5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:554.6666666666666,intrinsicWidth:829.3333333333334,pixelHeight:416,pixelWidth:622,sizes:\"829.8317px\",src:\"https://framerusercontent.com/images/Kn4y6gtmEkGrpSbudny18Czbo.jpg\",srcSet:\"https://framerusercontent.com/images/Kn4y6gtmEkGrpSbudny18Czbo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Kn4y6gtmEkGrpSbudny18Czbo.jpg 622w\"},className:\"framer-40t377\",\"data-framer-name\":\"7 1\",layoutDependency:layoutDependency,layoutId:\"Q8OUsogjM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:652,intrinsicWidth:832,pixelHeight:489,pixelWidth:624,sizes:\"832px\",src:\"https://framerusercontent.com/images/QeKx7AdX1oZd3ioViTxpuYuDteg.jpg\",srcSet:\"https://framerusercontent.com/images/QeKx7AdX1oZd3ioViTxpuYuDteg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QeKx7AdX1oZd3ioViTxpuYuDteg.jpg 624w\"},className:\"framer-633b5l\",\"data-framer-name\":\"2 1\",layoutDependency:layoutDependency,layoutId:\"qanOF4AxB\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:629.3333333333334,intrinsicWidth:834.6666666666666,pixelHeight:472,pixelWidth:626,sizes:\"834.2246px\",src:\"https://framerusercontent.com/images/rbLSZgGXLR7Y2M0Fpt4URUsU.jpg\",srcSet:\"https://framerusercontent.com/images/rbLSZgGXLR7Y2M0Fpt4URUsU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rbLSZgGXLR7Y2M0Fpt4URUsU.jpg 626w\"},className:\"framer-1jycmyg\",\"data-framer-name\":\"10 1\",layoutDependency:layoutDependency,layoutId:\"V23pKqgiW\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:709.3333333333334,intrinsicWidth:945.3333333333334,pixelHeight:532,pixelWidth:709,sizes:\"944.8891px\",src:\"https://framerusercontent.com/images/GKHl7OpQnXYbFykn2U24Y8bpyYk.jpg\",srcSet:\"https://framerusercontent.com/images/GKHl7OpQnXYbFykn2U24Y8bpyYk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GKHl7OpQnXYbFykn2U24Y8bpyYk.jpg 709w\"},className:\"framer-1y3lx3h\",\"data-framer-name\":\"4 1\",layoutDependency:layoutDependency,layoutId:\"s4GOPmy0j\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uoNjA.framer-19wd3oe, .framer-uoNjA .framer-19wd3oe { display: block; }\",\".framer-uoNjA.framer-1kqklkg { height: 284px; overflow: hidden; position: relative; width: 1088px; }\",\".framer-uoNjA .framer-5526or-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 1088px / 2); position: absolute; top: 0px; width: 1088px; }\",\".framer-uoNjA .framer-6j66ld { aspect-ratio: 0.7493975903614458 / 1; height: var(--framer-aspect-ratio-supported, 554px); overflow: visible; position: relative; width: 415px; }\",\".framer-uoNjA .framer-s1vivw { aspect-ratio: 1.4963855421686747 / 1; height: var(--framer-aspect-ratio-supported, 553px); overflow: visible; position: relative; width: 828px; }\",\".framer-uoNjA .framer-40t377 { aspect-ratio: 1.495192307692308 / 1; height: var(--framer-aspect-ratio-supported, 555px); overflow: visible; position: relative; width: 829px; }\",\".framer-uoNjA .framer-633b5l { aspect-ratio: 1.2760736196319018 / 1; height: var(--framer-aspect-ratio-supported, 652px); overflow: visible; position: relative; width: 832px; }\",\".framer-uoNjA .framer-1jycmyg { aspect-ratio: 1.3262711864406778 / 1; height: var(--framer-aspect-ratio-supported, 629px); overflow: visible; position: relative; width: 835px; }\",\".framer-uoNjA .framer-1y3lx3h { aspect-ratio: 1.3327067669172932 / 1; height: var(--framer-aspect-ratio-supported, 709px); overflow: visible; position: relative; width: 945px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 284\n * @framerIntrinsicWidth 1088\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerksgC9fJct=withCSS(Component,css,\"framer-uoNjA\");export default FramerksgC9fJct;FramerksgC9fJct.displayName=\"Where are we going?\";FramerksgC9fJct.defaultProps={height:284,width:1088};addFonts(FramerksgC9fJct,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerksgC9fJct\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"284\",\"framerIntrinsicWidth\":\"1088\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ksgC9fJct.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/L2vojFX3SgQhC8pLyjFJ/GnmGKZuZJ6J5hzda54fD/frXYd3sLC.js\";const IconoirFonts=getFonts(Iconoir);const cycleOrder=[\"tsPT5GZyw\",\"D65SzLqXi\",\"w5tOdPVrZ\"];const serializationHash=\"framer-BTtPV\";const variantClassNames={D65SzLqXi:\"framer-v-1eqqxmv\",tsPT5GZyw:\"framer-v-1xamgxw\",w5tOdPVrZ:\"framer-v-15mdave\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"tsPT5GZyw\",\"Variant 3 - Mobile\":\"w5tOdPVrZ\",active:\"D65SzLqXi\"};const getProps=({click,height,iconName,id,title,type,width,...props})=>{return{...props,LkMdJ9kD5:title??props.LkMdJ9kD5??\"Flexible Schedule\",mmdkA7Q_q:type??props.mmdkA7Q_q,TrX0xd0Qn:click??props.TrX0xd0Qn,variant:humanReadableVariantMap[props.variant]??props.variant??\"tsPT5GZyw\",WKiG1d6hm:iconName??props.WKiG1d6hm??\"clock\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,WKiG1d6hm,LkMdJ9kD5,mmdkA7Q_q,TrX0xd0Qn,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tsPT5GZyw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1tvvsgo=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(TrX0xd0Qn){const res=await TrX0xd0Qn(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1xamgxw\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tsPT5GZyw\",onTap:onTap1tvvsgo,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-52cb7181-dba6-48a3-b600-b3c4e26ac2ea, rgba(17, 85, 98, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-b2d53f68-45c3-4696-ae4f-831d1d0ac03c, rgb(9, 47, 55))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{D65SzLqXi:{backgroundColor:\"var(--token-32149500-36ba-4bec-8284-8b2244cd7012, rgb(17, 85, 98))\"}},...addPropertyOverrides({D65SzLqXi:{\"data-framer-name\":\"active\"},w5tOdPVrZ:{\"data-framer-name\":\"Variant 3 - Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qw2lak-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v8OL9nbZf-container\",nodeId:\"v8OL9nbZf\",rendersWithMotion:true,scopeId:\"Wc38I5zM8\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-f1ac93d1-4d24-479e-8bf6-797135e30354, rgb(221, 233, 238))\",height:\"100%\",iconSearch:WKiG1d6hm,iconSelection:\"Home\",id:\"v8OL9nbZf\",layoutId:\"v8OL9nbZf\",mirrored:false,selectByList:mmdkA7Q_q,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-n1deto\",\"data-styles-preset\":\"frXYd3sLC\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f1ac93d1-4d24-479e-8bf6-797135e30354, rgb(221, 233, 238)))\"},children:\"Flexible Schedule\"})}),className:\"framer-tv6s3v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WgEJTW5QZ\",style:{\"--extracted-r6o4lv\":\"var(--token-f1ac93d1-4d24-479e-8bf6-797135e30354, rgb(221, 233, 238))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:LkMdJ9kD5,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BTtPV.framer-jqym2l, .framer-BTtPV .framer-jqym2l { display: block; }\",\".framer-BTtPV.framer-1xamgxw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 20px 16px 20px; position: relative; width: 219px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BTtPV .framer-1qw2lak-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 24px; }\",\".framer-BTtPV .framer-tv6s3v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BTtPV.framer-1xamgxw { gap: 0px; } .framer-BTtPV.framer-1xamgxw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BTtPV.framer-1xamgxw > :first-child { margin-left: 0px; } .framer-BTtPV.framer-1xamgxw > :last-child { margin-right: 0px; } }\",\".framer-BTtPV.framer-v-15mdave.framer-1xamgxw { gap: 20px; padding: 16px 24px 16px 20px; width: 232px; }\",\".framer-BTtPV.framer-v-15mdave .framer-tv6s3v { white-space: pre-wrap; width: 150px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BTtPV.framer-v-15mdave.framer-1xamgxw { gap: 0px; } .framer-BTtPV.framer-v-15mdave.framer-1xamgxw > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-BTtPV.framer-v-15mdave.framer-1xamgxw > :first-child { margin-left: 0px; } .framer-BTtPV.framer-v-15mdave.framer-1xamgxw > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-BTtPV[data-border=\"true\"]::after, .framer-BTtPV [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 219\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"D65SzLqXi\":{\"layout\":[\"fixed\",\"auto\"]},\"w5tOdPVrZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"WKiG1d6hm\":\"iconName\",\"LkMdJ9kD5\":\"title\",\"mmdkA7Q_q\":\"type\",\"TrX0xd0Qn\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWc38I5zM8=withCSS(Component,css,\"framer-BTtPV\");export default FramerWc38I5zM8;FramerWc38I5zM8.displayName=\"prek item\";FramerWc38I5zM8.defaultProps={height:60,width:219};addPropertyControls(FramerWc38I5zM8,{variant:{options:[\"tsPT5GZyw\",\"D65SzLqXi\",\"w5tOdPVrZ\"],optionTitles:[\"Variant 1\",\"active\",\"Variant 3 - Mobile\"],title:\"Variant\",type:ControlType.Enum},WKiG1d6hm:{defaultValue:\"clock\",placeholder:\"Menu, Wifi, Box\u2026\",title:\"icon name\",type:ControlType.String},LkMdJ9kD5:{defaultValue:\"Flexible Schedule\",displayTextArea:true,title:\"Title\",type:ControlType.String},mmdkA7Q_q:{defaultValue:false,title:\"type\",type:ControlType.Boolean},TrX0xd0Qn:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerWc38I5zM8,[{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\"}]},...IconoirFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWc38I5zM8\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"219\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"WKiG1d6hm\\\":\\\"iconName\\\",\\\"LkMdJ9kD5\\\":\\\"title\\\",\\\"mmdkA7Q_q\\\":\\\"type\\\",\\\"TrX0xd0Qn\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"60\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D65SzLqXi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w5tOdPVrZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Wc38I5zM8.map", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import Button_BrandDefault from\"#framer/local/canvasComponent/am7eyyOig/am7eyyOig.js\";import Topbar from\"#framer/local/canvasComponent/BHj7ubh0W/BHj7ubh0W.js\";import Footer from\"#framer/local/canvasComponent/ceYxS4LcH/ceYxS4LcH.js\";import CompanyTestCarousel from\"#framer/local/canvasComponent/hAvra40vy/hAvra40vy.js\";import WhereAreWeGoing from\"#framer/local/canvasComponent/ksgC9fJct/ksgC9fJct.js\";import PrekItem from\"#framer/local/canvasComponent/Wc38I5zM8/Wc38I5zM8.js\";import*as sharedStyle5 from\"#framer/local/css/cif1kHvbj/cif1kHvbj.js\";import*as sharedStyle1 from\"#framer/local/css/frXYd3sLC/frXYd3sLC.js\";import*as sharedStyle2 from\"#framer/local/css/l2QJIXTZS/l2QJIXTZS.js\";import*as sharedStyle3 from\"#framer/local/css/LSNTxtNfH/LSNTxtNfH.js\";import*as sharedStyle4 from\"#framer/local/css/R67DuOGx4/R67DuOGx4.js\";import*as sharedStyle from\"#framer/local/css/ZtlKjoqfA/ZtlKjoqfA.js\";import metadataProvider from\"#framer/local/webPageMetadata/wtaiPtisF/wtaiPtisF.js\";const TopbarFonts=getFonts(Topbar);const Button_BrandDefaultFonts=getFonts(Button_BrandDefault);const WhereAreWeGoingFonts=getFonts(WhereAreWeGoing);const IconoirFonts=getFonts(Iconoir);const CarouselFonts=getFonts(Carousel);const SlideshowFonts=getFonts(Slideshow);const PrekItemFonts=getFonts(PrekItem);const CompanyTestCarouselFonts=getFonts(CompanyTestCarousel);const FooterFonts=getFonts(Footer);const breakpoints={hrrjwSlu4:\"(min-width: 1900px)\",j0eDcFHaW:\"(min-width: 1440px) and (max-width: 1599px)\",OhRjVMmBZ:\"(min-width: 1000px) and (max-width: 1439px)\",Q9e5RLiS1:\"(min-width: 1600px) and (max-width: 1899px)\",vFZ6hwrN0:\"(max-width: 999px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tr8r9\";const variantClassNames={hrrjwSlu4:\"framer-v-1p2yvpl\",j0eDcFHaW:\"framer-v-1mugqk7\",OhRjVMmBZ:\"framer-v-uxezxg\",Q9e5RLiS1:\"framer-v-ajr131\",vFZ6hwrN0:\"framer-v-fmxlfc\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"768 2\":\"vFZ6hwrN0\",\"768\":\"OhRjVMmBZ\",\"Desktop md\":\"Q9e5RLiS1\",Desktop:\"j0eDcFHaW\",Wide:\"hrrjwSlu4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"j0eDcFHaW\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"vFZ6hwrN0\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"vFZ6hwrN0\")return false;return true;};const elementId=useRouteElementId(\"wLm1cIOgv\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"j0eDcFHaW\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1mugqk7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xsc4uw-container\",layoutScroll:true,nodeId:\"l49DC03Vv\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{variant:\"JxdSitGNV\"},OhRjVMmBZ:{variant:\"GUkR6RiIs\"},Q9e5RLiS1:{variant:\"JxdSitGNV\"},vFZ6hwrN0:{variant:\"eO94zrNqv\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"l49DC03Vv\",layoutId:\"l49DC03Vv\",style:{width:\"100%\"},variant:\"ZVD8URfxm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1170,pixelWidth:1874,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/4Q1Ra4AzZMcWHAR0bU03xIC8I.svg\",srcSet:\"https://framerusercontent.com/images/4Q1Ra4AzZMcWHAR0bU03xIC8I.svg?scale-down-to=512 512w,https://framerusercontent.com/images/4Q1Ra4AzZMcWHAR0bU03xIC8I.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4Q1Ra4AzZMcWHAR0bU03xIC8I.svg 1874w\"},className:\"framer-19euigg\",\"data-framer-name\":\"Hero Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n92766\",\"data-framer-name\":\"Hero grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bhvy7j\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ia925w\",\"data-styles-preset\":\"ZtlKjoqfA\",children:\"Let\u2019s build the future of AI together\"})}),className:\"framer-2qwcfb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-116d1d7d-562c-4a7a-ba32-59bd313b47a2, rgb(58, 70, 75))\"},children:\"We are a fast-growing AI startup based in the Bay Area backed by some of the world\u2019s leading VCs.\"})}),className:\"framer-1rftygt\",fonts:[\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-crx4i9\",\"data-framer-name\":\"Actions\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":wLm1cIOgv\",webPageId:\"wtaiPtisF\"},implicitPathVariables:undefined},{href:{hash:\":wLm1cIOgv\",webPageId:\"wtaiPtisF\"},implicitPathVariables:undefined},{href:{hash:\":wLm1cIOgv\",webPageId:\"wtaiPtisF\"},implicitPathVariables:undefined},{href:{hash:\":wLm1cIOgv\",webPageId:\"wtaiPtisF\"},implicitPathVariables:undefined},{href:{hash:\":wLm1cIOgv\",webPageId:\"wtaiPtisF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g2xn9q-container\",nodeId:\"Mtoa92BGG\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{gf0ib_De1:resolvedLinks[2]},OhRjVMmBZ:{gf0ib_De1:resolvedLinks[3]},Q9e5RLiS1:{gf0ib_De1:resolvedLinks[1]},vFZ6hwrN0:{gf0ib_De1:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(Button_BrandDefault,{gf0ib_De1:resolvedLinks[0],height:\"100%\",id:\"Mtoa92BGG\",layoutId:\"Mtoa92BGG\",lZKA3MqC5:false,M8USpyfwv:\"See open roles\",OSszS8E7t:false,oVVXcko9R:true,QhVt8hRXv:\"arrowright\",style:{height:\"100%\"},UUDJsGyFL:\"arrowright\",variant:\"UzETGmALc\",w_0zB_6v5:\"0px 16px 0px 16px\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3oabqn\",\"data-framer-name\":\"Right image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1077.3333333333333,intrinsicWidth:1800,pixelHeight:808,pixelWidth:1350,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 80px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png\",srcSet:\"https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png 1350w\"}},OhRjVMmBZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1077.3333333333333,intrinsicWidth:1800,pixelHeight:808,pixelWidth:1350,sizes:`max((${componentViewport?.width||\"100vw\"} - 168px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png\",srcSet:\"https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png 1350w\"}},Q9e5RLiS1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1077.3333333333333,intrinsicWidth:1800,pixelHeight:808,pixelWidth:1350,sizes:`max((${componentViewport?.width||\"100vw\"} - 424px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png\",srcSet:\"https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png 1350w\"}},vFZ6hwrN0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1077.3333333333333,intrinsicWidth:1800,pixelHeight:808,pixelWidth:1350,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png\",srcSet:\"https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png 1350w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1077.3333333333333,intrinsicWidth:1800,pixelHeight:808,pixelWidth:1350,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 352px, 1216px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png\",srcSet:\"https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Izv23pTWrcyNkPws8mQtoxfkcA.png 1350w\"},className:\"framer-1yah4sn\",\"data-framer-name\":\"Image\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w708r\",\"data-framer-name\":\"Connect, Unify, Respond\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jh081r\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xc78pu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kriu1c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h84ur8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ia925w\",\"data-styles-preset\":\"ZtlKjoqfA\",style:{\"--framer-text-color\":\"var(--token-83574518-4c8f-4146-81e9-bc82f52902e7, rgb(255, 255, 255))\"},children:\"Where are we going?\"})}),className:\"framer-cvg68m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n1deto\",\"data-styles-preset\":\"frXYd3sLC\",style:{\"--framer-text-color\":\"var(--token-83574518-4c8f-4146-81e9-bc82f52902e7, rgb(255, 255, 255))\"},children:\"MindsDB is growing! We are always looking for passionate, hard-working people with a passion for Machine Learning to join our team. If that sounds like you we would love for you to apply for a role with us!\"})}),className:\"framer-1xmdwu9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 512px, 1388px), 1px)`},OhRjVMmBZ:{height:219,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 1px)`},Q9e5RLiS1:{width:`max(${componentViewport?.width||\"100vw\"} - 384px, 1px)`},vFZ6hwrN0:{height:235,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:284,width:`max(${componentViewport?.width||\"100vw\"} - 352px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hunp35-container\",nodeId:\"qTzMLs4Vt\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(WhereAreWeGoing,{height:\"100%\",id:\"qTzMLs4Vt\",layoutId:\"qTzMLs4Vt\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5uxtpm\",\"data-framer-name\":\"Demo section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-123teij\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d86o4l\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ia925w\",\"data-styles-preset\":\"ZtlKjoqfA\",children:\"MindsDB in the News\"})}),className:\"framer-t3t263\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cqlzd9\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.forbes.com/sites/kenrickcai/2023/02/07/mindsdb-series-a-funding-ai-in-workplace/\",motionChild:true,nodeId:\"KRhXrKtkm\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1au9pyl framer-47qzx8\",\"data-border\":true,\"data-framer-name\":\"AI Search section\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ktfdqs\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:50,intrinsicWidth:96,svg:'<svg width=\"96\" height=\"50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m95.173 24.75-.878.23c-.835-2.768-2.236-3.953-4.213-3.953-1.388 0-2.372.888-2.372 2.306 0 1.35 1.142 2.076 4.247 3.295C94.815 27.649 96 28.9 96 31.086c0 3.327-2.689 5.414-7.104 5.414-2.124 0-4.53-.461-5.885-.988l-.17-4.623.835-.165c1.254 3.163 2.858 4.36 4.947 4.36 1.807 0 2.756-1.22 2.756-2.471 0-1.253-.735-1.977-3.559-2.964-2.688-.857-4.529-1.977-4.529-4.755 0-2.734 2.473-5.052 6.678-5.052 1.988 0 3.795.33 4.981.857l.223 4.05Zm-18.187 1.449c.102-2.174-.351-5.315-2.19-5.315-1.887 0-2.927 2.933-2.96 5.447l5.15-.132Zm-1.74-6.369c4.631 0 6.868 3.295 6.902 7.621H71.725c-.036 3.833 2.056 6.73 5.963 6.73 1.705 0 2.689-.46 3.727-1.185l.486.527c-1.142 1.515-3.514 2.964-6.677 2.964-5.083 0-8.607-3.393-8.607-8.181-.011-4.326 2.88-8.478 8.63-8.478m-15.022 8.017c-.102-3.417-1.389-6.138-3.864-6.138-.588 0-1.039.099-1.74.33l.203 13.166c.249.099.835.164 1.254.164 2.405 0 4.145-3.305 4.145-7.521m5.162-.257c0 5.414-3.515 8.906-9.477 8.906-2.123 0-4.326-.33-6.234-.758.17-2.174.17-15.637 0-18.174-.17-1.318-.554-1.944-1.605-2.075l-.7-.066v-.604l7.354-1.318c-.035 1.11-.102 4.063-.102 7.522 1.288-.626 2.473-.988 4.077-.988 3.829 0 6.677 3.162 6.677 7.555m-18.714-2.94c-2.27-1.45-4.71-.824-5.196 0-.214 2.536-.17 6.435.035 8.444.102 1.318.486 1.877 1.536 1.976l1.388.132v.856H34.037v-.856l.802-.132c1.005-.099 1.355-.657 1.423-1.976.249-2.142.316-6.633 0-9.104-.068-1.416-.418-1.944-1.423-2.076l-.802-.099v-.592l7.42-1.384-.102 3.69c1.74-3.822 5.196-4.283 7.071-3.261l-1.765 4.381Zm-24.352 3.536c0 4.03 1.119 7.324 3.377 7.324 2.44 0 3.14-3.229 3.14-7.324 0-4.096-1.084-7.291-3.377-7.291-2.46 0-3.14 3.13-3.14 7.29Zm11.77-.066c0 4.623-3.14 8.37-8.742 8.37-5.512 0-8.29-3.568-8.29-8.246 0-4.59 3.14-8.412 8.741-8.412 5.513 0 8.29 3.59 8.29 8.28M19.653 20.16l-1.142.33c-.972-3.24-2.688-5.084-5.647-5.084H8.999c-.214 2.152-.316 5.48-.214 9.07l2.574-.13c1.74 0 2.473-1.22 2.9-2.99h.971v7.489h-.988c-.418-1.81-1.142-3.04-2.9-3.14l-2.574-.035c0 2.668.035 4.952.215 6.336.17 1.977.734 2.877 2.225 3.064l1.4.132v.856H0v-.856l1.05-.132c1.457-.196 2.057-1.087 2.226-3.064.281-3.229.352-10.124 0-13.957-.17-2.05-.768-2.865-2.225-3.03L0 14.854v-.888h19.628l.024 6.194Z\" fill=\"#55666D\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7cw8se\",\"data-framer-name\":\"Frame 1321317729\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yanijw\",\"data-styles-preset\":\"l2QJIXTZS\",children:\"Make enterprise search more intelligent. Use natural language to query vast amounts of structured and unstructured data with precision.\"})}),className:\"framer-1ozjns0\",\"data-framer-name\":\"Make enterprise search more intelligent. Use natural language to query vast amounts of structured and unstructured data with precision.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"button\",{className:\"framer-siq7fq\",\"data-framer-name\":\"Button_Brand / default\",\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},OhRjVMmBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},Q9e5RLiS1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},vFZ6hwrN0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Read more\"})}),className:\"framer-w7zpau\",\"data-framer-name\":\"Button\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yklbnk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"H5N93v8Kx\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\",height:\"100%\",iconSearch:\"arrowright\",iconSelection:\"Home\",id:\"H5N93v8Kx\",layoutId:\"H5N93v8Kx\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.techrepublic.com/article/most-innovative-companies-ai-machine-learning/\",motionChild:true,nodeId:\"hGTUthLuu\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-y5jwcb framer-47qzx8\",\"data-border\":true,\"data-framer-name\":\"AI Search section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hb2s8b\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68,intrinsicWidth:272,pixelHeight:51,pixelWidth:204,src:\"https://framerusercontent.com/images/2qDYgOunaUcM6p2JoZm6HaFE.svg\"},className:\"framer-1thq8e5\",\"data-framer-name\":\"Graphic\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yanijw\",\"data-styles-preset\":\"l2QJIXTZS\",children:\"8 most innovative AI and machine learning companies\"})}),className:\"framer-u3d9xi\",\"data-framer-name\":\"Make enterprise search more intelligent. Use natural language to query vast amounts of structured and unstructured data with precision.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"button\",{className:\"framer-1xckcda\",\"data-framer-name\":\"Button_Brand / default\",\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},OhRjVMmBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},Q9e5RLiS1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},vFZ6hwrN0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Read more\"})}),className:\"framer-1lnzmtd\",\"data-framer-name\":\"Button\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lh6q9l-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iTUwU449g\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\",height:\"100%\",iconSearch:\"arrowright\",iconSelection:\"Home\",id:\"iTUwU449g\",layoutId:\"iTUwU449g\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://venturebeat.com/data-infrastructure/mindsdb-wants-to-give-enterprise-databases-a-brain/\",motionChild:true,nodeId:\"st_Y48743\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-emko00 framer-47qzx8\",\"data-border\":true,\"data-framer-name\":\"AI Search section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2fnoli\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l1qv6z\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:50,intrinsicWidth:146,svg:'<svg width=\"146\" height=\"50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.2 19v3.211h-.64c-.321-.107-.428.108-.428.32l-3.104 9.849-.75 2.248c0 .108-.214.214-.32.214H5.03l-.107-.32-3.747-11.99c-.107-.32-.214-.32-.535-.32H0V19h6.85v3.211H5.46l2.248 8.885h.107l2.462-8.885H8.886V19H15.2Zm10.812 4.281h4.602l.108 1.605c.32-.32.535-.64.749-.855 1.285-1.071 2.783-1.285 4.389-.75 1.178.428 1.712 1.391 1.712 2.677v5.675h.963v3.211h-5.137v-7.173c0-.64-.214-.963-.641-1.071-.536-.108-.963 0-1.285.428l-.214.32-.107.32v3.961h.749v3.212h-5.887v-3.21h.855v-5.137h-.855l-.002-3.213Zm28.044 3.104h-.752v-3.212h5.034v8.455h.963v3.212h-4.71v-1.18c-.214.214-.32.428-.535.536-1.178 1.07-3.212 1.284-4.603.64-1.07-.535-1.605-1.39-1.605-2.568l-.107-5.352v-.428h-.964v-3.21h5.137v6.85c0 .32 0 .641.108.856.107.428.535.64.963.64.428 0 .75-.213.963-.64.108-.107.108-.32.108-.535v-4.065ZM25.262 29.81H18.09c0 .64 0 1.285.32 1.82.214.427.75.64 1.178.64.43 0 .964-.214 1.179-.75.108-.213.108-.427.214-.749h3.96c-.107 1.285-.64 2.355-1.712 3.104a5.403 5.403 0 0 1-2.462.963c-1.178.214-2.462.108-3.638-.214-1.605-.535-2.677-1.605-3.104-3.103a8.422 8.422 0 0 1 0-5.138c.64-2.034 2.14-3.212 4.281-3.533.963-.108 1.927-.108 2.89.214 2.14.64 3.318 2.034 3.747 4.28.214.857.214 1.606.32 2.463v.003Zm-7.064-2.248h2.783c0-.64 0-1.178-.64-1.487-.536-.32-1.072-.32-1.488 0-.64.32-.64.856-.64 1.487h-.015Zm62.831 2.248h-7.173c0 .64 0 1.285.32 1.82.32.534.75.64 1.285.64a1.315 1.315 0 0 0 1.178-.75l.214-.64h3.96c-.214 2.354-1.926 3.96-4.28 4.176-1.18.107-2.249.107-3.319-.32-1.605-.536-2.677-1.606-3.211-3.212a8.078 8.078 0 0 1 0-5.03c.64-2.14 2.248-3.212 4.389-3.533.963-.108 2.034-.108 2.997.214 2.034.64 3.104 2.034 3.533 3.96.108.964.108 1.82.108 2.678v-.003Zm-6.955-2.248h2.783c0-1.178-.535-1.819-1.487-1.713-.856.108-1.391.75-1.285 1.713h-.011ZM39.07 23.173h1.285v-2.247c0-.428.107-.536.535-.641l3.318-.75v3.639h1.819v3.21h-1.82v4.497c.108.75.642 1.071 1.286.963.107 0 .214 0 .428-.107v2.034c0 .963 0 .963-.964 1.07-.963.108-1.926.215-2.997 0-1.391-.32-2.034-1.178-2.034-2.568v-5.887h-.964c.108-.963.108-2.035.108-3.212Zm21.086 11.668v-3.21h.964v-5.137h-.964v-3.215h4.496c0 .535.108 1.178.108 1.819.108-.108.108-.214.108-.32.32-.964 1.07-1.488 2.034-1.606h1.487a.23.23 0 0 1 .214.214v3.533c-.536 0-1.178-.107-1.713 0-1.178.214-1.713.856-1.819 2.034v2.569h1.285v3.211l-6.209.108h.01Zm30.274-15.73c.641.108 1.285.108 1.82.32 2.462.641 3.746 3.639 2.462 5.888-.32.535-.75.855-1.285 1.178-.214.108-.428.214-.75.428.108.107.214.107.32.107 1.713.536 2.463 1.82 2.57 3.426.213 2.354-1.286 4.067-3.639 4.281-.75.108-1.487.108-2.14.108h-7.385v-3.212h1.39v-9.419h-1.39v-3.211l8.027.106Zm-2.354 9.42v3.103c0 .107.108.214.214.214h1.819a1.18 1.18 0 0 0 1.07-.64c.536-.964 0-2.249-1.07-2.463-.64-.214-1.285-.214-2.034-.214h.001Zm0-2.998c.64 0 1.178 0 1.82-.108.748-.107 1.177-.75 1.177-1.487 0-.738-.427-1.391-1.07-1.487-.643-.096-1.285-.108-1.927-.108v3.19Zm39.176 1.07h-1.605c-.107 0-.214.108-.214.214v4.055c0 .856.536 1.285 1.487 1.07h.214v2.57c0 .213 0 .32-.214.32-1.178.214-2.354.32-3.638.107-1.391-.32-2.034-1.07-2.034-2.462v-5.995h-.428c-.64 0-.535.108-.535-.535V23.27h1.285v-2.14c0-.75-.108-.64.64-.75l3.212-.748v3.638h1.926c-.107 1.178-.107 2.248-.107 3.317l.011.017Zm-12.63 1.179v-1.07c0-.642-.428-1.072-.964-1.072-.535 0-1.07.428-1.07.963v.428h-3.854c-.107-1.487.641-2.783 2.035-3.425 2.034-.856 4.175-.856 6.208.108 1.285.64 1.927 1.605 1.927 2.997v4.805h.963v3.212h-4.805c0-.428-.107-.75-.107-1.285-.108.107-.214.214-.214.32-1.285 1.487-3.638 1.487-4.924.856-.964-.536-1.392-1.487-1.488-2.569-.107-2.354 1.071-3.853 3.533-4.28l2.569-.215c-.108.214 0 .214.214.214l-.023.013Zm0 2.034h-.964c-.963.108-1.391.856-1.284 1.713.107.75.749 1.178 1.487.856.428-.108.641-.428.749-.856l.012-1.713Zm-6.851.108h-7.173c0 .749 0 1.39.428 1.926.32.428.749.536 1.284.536.536 0 .856-.32 1.071-.75l.214-.64h3.961c-.108 1.284-.641 2.354-1.713 3.103-1.284.964-2.677 1.179-4.176 1.071-.64 0-1.178-.107-1.819-.32-1.605-.428-2.568-1.487-3.103-2.998-.536-1.819-.641-3.638.107-5.459.75-1.927 2.248-2.997 4.281-3.211.964-.108 2.034 0 2.998.214 2.034.64 3.104 2.139 3.533 4.175l.107 2.355v-.002Zm-4.176-2.14c0-.64-.107-1.285-.64-1.605-.534-.32-1.071-.32-1.606.108-.427.32-.535.855-.535 1.487l2.781.01Z\" fill=\"#55666D\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yanijw\",\"data-styles-preset\":\"l2QJIXTZS\",children:\"MindsDB wants to give enterprise databases a brain\"})}),className:\"framer-h06z33\",\"data-framer-name\":\"Make enterprise search more intelligent. Use natural language to query vast amounts of structured and unstructured data with precision.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"button\",{className:\"framer-172nm7u\",\"data-framer-name\":\"Button_Brand / default\",\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},OhRjVMmBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},Q9e5RLiS1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},vFZ6hwrN0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Read more\"})}),className:\"framer-gk7v6j\",\"data-framer-name\":\"Button\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cj1q7o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"spgGq8AFM\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\",height:\"100%\",iconSearch:\"arrowright\",iconSelection:\"Home\",id:\"spgGq8AFM\",layoutId:\"spgGq8AFM\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.infoworld.com/article/3607762/10-databases-supporting-in-database-machine-learning.html\",motionChild:true,nodeId:\"GnDwD6nkD\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1iq94p5 framer-47qzx8\",\"data-border\":true,\"data-framer-name\":\"AI Search section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-65pf2r\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1chc7fq\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:50,intrinsicWidth:100,svg:'<svg width=\"100\" height=\"50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.674 23.066h2.313v-2.338H0v2.338h2.27v14.558H0v2.346h7.98v-2.346h-2.3V23.066h-.006Zm10.796 2.12c-1.2 0-2.4.514-3.597 1.542l-.7.6v-1.902h-5.1v2.243h1.72v12.257h3.384v-10.28l.157-.13c.9-.714 1.783-1.077 2.66-1.077a1.469 1.469 0 0 1 1.313.642c.244.378.36.984.36 1.907v8.936h3.377v-9.307c0-3.657-1.164-5.435-3.572-5.435l-.002.004Zm11.774.126H25.05v-.9c0-1.44.5-1.932 1.254-2.236.686-.275 1.817-.22 2.785.344v-1.932A7.15 7.15 0 0 0 26.278 20c-1.4 0-2.57.475-3.27 1.303a5.07 5.07 0 0 0-1.108 3.351v.655h-1.526v2.36H21.9v12.288h3.125V27.674h3.217v-2.35l.002-.012Zm6.368-.247a6.96 6.96 0 0 0-5.029 2.004c-1.372 1.34-2.056 3.22-2.056 5.58s.694 4.24 2.056 5.58a7.315 7.315 0 0 0 10.083-.023c1.352-1.357 2.04-3.225 2.04-5.558 0-2.333-.694-4.24-2.056-5.58a6.958 6.958 0 0 0-5.04-2.004l.002.001Zm2.544 11.306a3.05 3.05 0 0 1-2.57 1.321c-1.1.042-2.1-.536-2.63-1.493-.537-.902-.807-2.056-.807-3.43 0-3.448 1.16-5.198 3.448-5.198a2.99 2.99 0 0 1 2.6 1.398c.6.866.892 2.07.892 3.574 0 1.7-.306 2.994-.923 3.824l-.01.004ZM65.93 25.064a6.939 6.939 0 0 0-5.029 2.007c-1.372 1.34-2.056 3.22-2.056 5.58s.696 4.24 2.056 5.58a7.315 7.315 0 0 0 10.083-.023c1.354-1.357 2.04-3.225 2.04-5.558 0-2.333-.694-4.24-2.056-5.58a6.941 6.941 0 0 0-5.039-2.007l.001.001Zm2.54 11.306a3.04 3.04 0 0 1-2.557 1.321 2.88 2.88 0 0 1-2.642-1.493c-.532-.902-.802-2.056-.802-3.43 0-3.448 1.16-5.198 3.446-5.198a2.984 2.984 0 0 1 2.593 1.398c.588.866.884 2.07.884 3.574-.013 1.7-.308 2.994-.923 3.824l.001.004Zm9.305-7.26v-3.686H73.07v2.243h1.364v12.257h3.4v-5.14c0-1.35.077-2.475.514-3.433.447-1 1.04-1.683 1.763-1.994a7.52 7.52 0 0 1 2.39-.421v-3.742c-1.557 0-3.908 1.593-4.726 3.92v-.004Zm4.43-6.55h1.23v17.4h3.443V20.13h-4.674l.001 2.43Zm13.013-2.43v2.43h1.33v3.9a4.294 4.294 0 0 0-3.132-1.395c-1.596 0-2.958.678-4.057 2.004-1.099 1.326-1.668 3.22-1.668 5.58s.56 4.24 1.665 5.58c1.105 1.34 2.464 2.004 4.057 2.004a4.39 4.39 0 0 0 3.132-1.388v1.08H100V20.139h-4.782v-.009Zm.987 16.238c-.568.88-1.326 1.32-2.25 1.32-1.028 0-1.817-.5-2.328-1.488-.473-.902-.7-2.056-.7-3.43 0-3.448 1.028-5.198 3.037-5.198.958 0 1.727.468 2.282 1.398.514.866.77 2.07.77 3.574.013 1.7-.262 2.994-.8 3.824h-.011ZM61.1 23.228v-2.57h-5.545v2.57h1.542l-2.492 11.296-2.647-13.884H47.45v2.57h1.768v.067l-2.394 11.277L44.1 23.228h1.66v-2.57h-6.455v2.57h1.357l4.343 16.63h2.78l2.57-11.368 2.516 11.376h3c.085-.275 3.788-16.63 3.788-16.63h1.43l.011-.008Z\" fill=\"#55666D\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yanijw\",\"data-styles-preset\":\"l2QJIXTZS\",children:\"10 databases supporting in-database machine learning\"})}),className:\"framer-137wxry\",\"data-framer-name\":\"Make enterprise search more intelligent. Use natural language to query vast amounts of structured and unstructured data with precision.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"button\",{className:\"framer-1pp5vyg\",\"data-framer-name\":\"Button_Brand / default\",\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},OhRjVMmBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},Q9e5RLiS1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})},vFZ6hwrN0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Contact sales\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yet9tn\",\"data-styles-preset\":\"LSNTxtNfH\",style:{\"--framer-text-color\":\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\"},children:\"Read more\"})}),className:\"framer-lrqecn\",\"data-framer-name\":\"Button\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qeq2dd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WJnrxhG1z\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-f6e5e437-2f32-4441-85dc-b9c1433a98bd, rgb(8, 11, 12))\",height:\"100%\",iconSearch:\"arrowright\",iconSelection:\"Home\",id:\"WJnrxhG1z\",layoutId:\"WJnrxhG1z\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yji2ch\",\"data-framer-name\":\"Powering AI\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cutpnq\",\"data-framer-name\":\"Ask\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kq71g6-container hidden-1mugqk7 hidden-ajr131 hidden-1p2yvpl hidden-uxezxg\",isModuleExternal:true,nodeId:\"HKk7Xbng2\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:12,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"HKk7Xbng2\",layoutId:\"HKk7Xbng2\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ism3zo\",\"data-framer-name\":\"Ask\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://youtu.be/LC4-SaSso3c\",motionChild:true,nodeId:\"CVJp71pjW\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xz99j4 framer-47qzx8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:370.5,intrinsicWidth:650,pixelHeight:741,pixelWidth:1300,sizes:\"265px\",src:\"https://framerusercontent.com/images/sZAlzTYhBsocJSZ7SxYKbeZC1FM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sZAlzTYhBsocJSZ7SxYKbeZC1FM.png?scale-down-to=512 512w,https://framerusercontent.com/images/sZAlzTYhBsocJSZ7SxYKbeZC1FM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sZAlzTYhBsocJSZ7SxYKbeZC1FM.png 1300w\"},className:\"framer-1uoukwo\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v6zeo2\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6weeig\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21 4.1v16.8a.6.6 0 0 1-.6.6H3.6a.6.6 0 0 1-.6-.6V4.1a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.898 9.013A.6.6 0 0 0 9 9.534v5.932a.6.6 0 0 0 .898.521l5.19-2.966a.6.6 0 0 0 0-1.042l-5.19-2.966Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-83574518-4c8f-4146-81e9-bc82f52902e7, rgb(255, 255, 255))\"},children:\"Working at MindsDB \"})}),className:\"framer-1wd312n\",fonts:[\"GF;Noto Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-25hq5w-container\",inComponentSlot:true,nodeId:\"onwQDsgu8\",rendersWithMotion:true,scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Button_BrandDefault,{gf0ib_De1:\"https://youtu.be/LC4-SaSso3c\",height:\"100%\",id:\"onwQDsgu8\",layoutId:\"onwQDsgu8\",lZKA3MqC5:false,M8USpyfwv:\"Watch Now\",OSszS8E7t:false,oVVXcko9R:true,QhVt8hRXv:\"arrowright\",style:{height:\"100%\"},UUDJsGyFL:\"arrowright\",variant:\"S9wBfGnYp\",w_0zB_6v5:\"0px 16px 0px 16px\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wrfjcy\",\"data-framer-name\":\"Ask\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://youtu.be/EpwnlM-bg54\",motionChild:true,nodeId:\"kX5z4Q6xK\",openInNewTab:true,scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-wl0oec framer-47qzx8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:370.5,intrinsicWidth:650,pixelHeight:741,pixelWidth:1300,sizes:\"265px\",src:\"https://framerusercontent.com/images/cuElUOjDHMXpGYRR6Goycl6gvU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cuElUOjDHMXpGYRR6Goycl6gvU.png?scale-down-to=512 512w,https://framerusercontent.com/images/cuElUOjDHMXpGYRR6Goycl6gvU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cuElUOjDHMXpGYRR6Goycl6gvU.png 1300w\"},className:\"framer-1y1b835\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oko6j4\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-143nvjm\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21 4.1v16.8a.6.6 0 0 1-.6.6H3.6a.6.6 0 0 1-.6-.6V4.1a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.898 9.013A.6.6 0 0 0 9 9.534v5.932a.6.6 0 0 0 .898.521l5.19-2.966a.6.6 0 0 0 0-1.042l-5.19-2.966Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-83574518-4c8f-4146-81e9-bc82f52902e7, rgb(255, 255, 255))\"},children:\"MindsDB Offsites\"})}),className:\"framer-1qthner\",fonts:[\"GF;Noto Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t2poun-container\",inComponentSlot:true,nodeId:\"jPQLWsmA1\",rendersWithMotion:true,scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Button_BrandDefault,{gf0ib_De1:\"https://youtu.be/EpwnlM-bg54\",height:\"100%\",id:\"jPQLWsmA1\",layoutId:\"jPQLWsmA1\",lZKA3MqC5:false,M8USpyfwv:\"Watch Now\",OSszS8E7t:false,oVVXcko9R:true,QhVt8hRXv:\"arrowright\",style:{height:\"100%\"},UUDJsGyFL:\"arrowright\",variant:\"S9wBfGnYp\",w_0zB_6v5:\"0px 16px 0px 16px\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kfmyue\",\"data-framer-name\":\"Ask\",children:[/*#__PURE__*/_jsx(Link,{href:\" https://youtu.be/6ugNvBCknoM\",motionChild:true,nodeId:\"rk_e5ZsjO\",openInNewTab:true,scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17hon3a framer-47qzx8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:370,intrinsicWidth:650,pixelHeight:740,pixelWidth:1300,sizes:\"265px\",src:\"https://framerusercontent.com/images/z4jukbCqgOJsz5YN4m1norGXWY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/z4jukbCqgOJsz5YN4m1norGXWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4jukbCqgOJsz5YN4m1norGXWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z4jukbCqgOJsz5YN4m1norGXWY.png 1300w\"},className:\"framer-bokm2a\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dbu4x1\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e5pbhe\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21 4.1v16.8a.6.6 0 0 1-.6.6H3.6a.6.6 0 0 1-.6-.6V4.1a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.898 9.013A.6.6 0 0 0 9 9.534v5.932a.6.6 0 0 0 .898.521l5.19-2.966a.6.6 0 0 0 0-1.042l-5.19-2.966Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-83574518-4c8f-4146-81e9-bc82f52902e7, rgb(255, 255, 255))\"},children:\"MindsDB: Meet the Founders\"})}),className:\"framer-11x6pji\",fonts:[\"GF;Noto Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5wwxkh-container\",inComponentSlot:true,nodeId:\"HQ7UsXla4\",rendersWithMotion:true,scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Button_BrandDefault,{gf0ib_De1:\" https://youtu.be/6ugNvBCknoM\",height:\"100%\",id:\"HQ7UsXla4\",layoutId:\"HQ7UsXla4\",lZKA3MqC5:false,M8USpyfwv:\"Watch Now\",OSszS8E7t:false,oVVXcko9R:true,QhVt8hRXv:\"arrowright\",style:{height:\"100%\"},UUDJsGyFL:\"arrowright\",variant:\"S9wBfGnYp\",w_0zB_6v5:\"0px 16px 0px 16px\",width:\"100%\"})})})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17xfukx-container hidden-fmxlfc\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h2q6vvM8j\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"top-left\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"h2q6vvM8j\",intervalControl:3,itemAmount:1,layoutId:\"h2q6vvM8j\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x1yopr\",\"data-framer-name\":\"Ask\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19xer4k\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1o19o1j\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21 4.1v16.8a.6.6 0 0 1-.6.6H3.6a.6.6 0 0 1-.6-.6V4.1a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.898 9.013A.6.6 0 0 0 9 9.534v5.932a.6.6 0 0 0 .898.521l5.19-2.966a.6.6 0 0 0 0-1.042l-5.19-2.966Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-83574518-4c8f-4146-81e9-bc82f52902e7, rgb(255, 255, 255))\"},children:\"Working at MindsDB \"})}),className:\"framer-fk5ot7\",fonts:[\"GF;Noto Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fbwlmr-container\",inComponentSlot:true,nodeId:\"cxfM4Bi6r\",rendersWithMotion:true,scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Button_BrandDefault,{gf0ib_De1:\"https://youtu.be/LC4-SaSso3c\",height:\"100%\",id:\"cxfM4Bi6r\",layoutId:\"cxfM4Bi6r\",lZKA3MqC5:false,M8USpyfwv:\"Watch Now\",OSszS8E7t:false,oVVXcko9R:true,QhVt8hRXv:\"arrowright\",style:{height:\"100%\"},UUDJsGyFL:\"arrowright\",variant:\"S9wBfGnYp\",w_0zB_6v5:\"0px 16px 0px 16px\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://youtu.be/LC4-SaSso3c\",motionChild:true,nodeId:\"jiOQZuGCv\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1kfhix framer-47qzx8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:370.5,intrinsicWidth:650,pixelHeight:741,pixelWidth:1300,sizes:\"568px\",src:\"https://framerusercontent.com/images/sZAlzTYhBsocJSZ7SxYKbeZC1FM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sZAlzTYhBsocJSZ7SxYKbeZC1FM.png?scale-down-to=512 512w,https://framerusercontent.com/images/sZAlzTYhBsocJSZ7SxYKbeZC1FM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sZAlzTYhBsocJSZ7SxYKbeZC1FM.png 1300w\"},className:\"framer-17e3zt4\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yz2vkc\",\"data-framer-name\":\"Ask\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q4zku7\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1a2mo6n\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21 4.1v16.8a.6.6 0 0 1-.6.6H3.6a.6.6 0 0 1-.6-.6V4.1a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.898 9.013A.6.6 0 0 0 9 9.534v5.932a.6.6 0 0 0 .898.521l5.19-2.966a.6.6 0 0 0 0-1.042l-5.19-2.966Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-83574518-4c8f-4146-81e9-bc82f52902e7, rgb(255, 255, 255))\"},children:\"MindsDB Offsites\"})}),className:\"framer-1wkzxwu\",fonts:[\"GF;Noto Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19363o2-container\",inComponentSlot:true,nodeId:\"oXFZuJ7Mf\",rendersWithMotion:true,scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Button_BrandDefault,{gf0ib_De1:\"https://youtu.be/EpwnlM-bg54\",height:\"100%\",id:\"oXFZuJ7Mf\",layoutId:\"oXFZuJ7Mf\",lZKA3MqC5:false,M8USpyfwv:\"Watch Now\",OSszS8E7t:false,oVVXcko9R:true,QhVt8hRXv:\"arrowright\",style:{height:\"100%\"},UUDJsGyFL:\"arrowright\",variant:\"S9wBfGnYp\",w_0zB_6v5:\"0px 16px 0px 16px\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://youtu.be/EpwnlM-bg54\",motionChild:true,nodeId:\"bpxZ0ZpBg\",openInNewTab:true,scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1r9caw4 framer-47qzx8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:370.5,intrinsicWidth:650,pixelHeight:741,pixelWidth:1300,sizes:\"568px\",src:\"https://framerusercontent.com/images/cuElUOjDHMXpGYRR6Goycl6gvU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cuElUOjDHMXpGYRR6Goycl6gvU.png?scale-down-to=512 512w,https://framerusercontent.com/images/cuElUOjDHMXpGYRR6Goycl6gvU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cuElUOjDHMXpGYRR6Goycl6gvU.png 1300w\"},className:\"framer-72riv8\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bprxjj\",\"data-framer-name\":\"Ask\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y7qfps\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-msvxlc\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21 4.1v16.8a.6.6 0 0 1-.6.6H3.6a.6.6 0 0 1-.6-.6V4.1a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.898 9.013A.6.6 0 0 0 9 9.534v5.932a.6.6 0 0 0 .898.521l5.19-2.966a.6.6 0 0 0 0-1.042l-5.19-2.966Z\" stroke=\"#A0BECA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-83574518-4c8f-4146-81e9-bc82f52902e7, rgb(255, 255, 255))\"},children:\"MindsDB: Meet the Founders\"})}),className:\"framer-1m9qej0\",fonts:[\"GF;Noto Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1us4ugu-container\",inComponentSlot:true,nodeId:\"EDhSfNLel\",rendersWithMotion:true,scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Button_BrandDefault,{gf0ib_De1:\" https://youtu.be/6ugNvBCknoM\",height:\"100%\",id:\"EDhSfNLel\",layoutId:\"EDhSfNLel\",lZKA3MqC5:false,M8USpyfwv:\"Watch Now\",OSszS8E7t:false,oVVXcko9R:true,QhVt8hRXv:\"arrowright\",style:{height:\"100%\"},UUDJsGyFL:\"arrowright\",variant:\"S9wBfGnYp\",w_0zB_6v5:\"0px 16px 0px 16px\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Link,{href:\" https://youtu.be/6ugNvBCknoM\",motionChild:true,nodeId:\"ftgtW34gf\",openInNewTab:true,scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9s6qv2 framer-47qzx8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:370,intrinsicWidth:650,pixelHeight:740,pixelWidth:1300,sizes:\"568px\",src:\"https://framerusercontent.com/images/z4jukbCqgOJsz5YN4m1norGXWY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/z4jukbCqgOJsz5YN4m1norGXWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/z4jukbCqgOJsz5YN4m1norGXWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z4jukbCqgOJsz5YN4m1norGXWY.png 1300w\"},className:\"framer-1s07jx5\",\"data-framer-name\":\"Image\"})})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qfb9wj\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wbaq4k\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13s2ayy\",\"data-framer-name\":\"tabs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cb571j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hl057x-container\",nodeId:\"RyYRv2BNY\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"RyYRv2BNY\",layoutId:\"RyYRv2BNY\",LkMdJ9kD5:\"Flexible Schedule\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"clock\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ra04yq-container\",nodeId:\"t_WpgYwUM\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"t_WpgYwUM\",layoutId:\"t_WpgYwUM\",LkMdJ9kD5:\"Remote & Hybrid Roles\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"wifi\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-garwix-container\",nodeId:\"Ghsl_g1_D\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"Ghsl_g1_D\",layoutId:\"Ghsl_g1_D\",LkMdJ9kD5:\"Wellbeing Budget\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"heart\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a11730-container\",nodeId:\"kWMKRz3e_\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"kWMKRz3e_\",layoutId:\"kWMKRz3e_\",LkMdJ9kD5:\"Generous Compensation\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"money-square\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jil9cj-container\",nodeId:\"jAz4h343m\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"jAz4h343m\",layoutId:\"jAz4h343m\",LkMdJ9kD5:\"Medical, Dental & Vision (US)\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"health-shield\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tm9w77-container\",nodeId:\"tbdKSVD3x\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"tbdKSVD3x\",layoutId:\"tbdKSVD3x\",LkMdJ9kD5:\"Reasonable Accommodations\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"healthcare\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1apnym6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ufb0ei-container\",nodeId:\"ivz3vydzQ\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"ivz3vydzQ\",layoutId:\"ivz3vydzQ\",LkMdJ9kD5:\"Unlimited Paid Time Off\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"calendar\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fjpayg-container\",nodeId:\"BJWnd098q\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"BJWnd098q\",layoutId:\"BJWnd098q\",LkMdJ9kD5:\"Remote Work Setup Budget\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"cursor-pointer\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-154lfj7-container\",nodeId:\"nENJyns93\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"nENJyns93\",layoutId:\"nENJyns93\",LkMdJ9kD5:\"Company Offsites\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"airplane\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-274jrf-container\",nodeId:\"ekWPRPMnQ\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"ekWPRPMnQ\",layoutId:\"ekWPRPMnQ\",LkMdJ9kD5:\"Personal Development Budget\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"coin\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8hi7rp-container\",nodeId:\"wosVXpWWF\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"wosVXpWWF\",layoutId:\"wosVXpWWF\",LkMdJ9kD5:\"Equal Opportunity Employer\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"emoji\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 512px, 1388px) - 288px) / 5, 50px) * 3 + 144px, 200px)`},OhRjVMmBZ:{height:115,width:`max(${componentViewport?.width||\"100vw\"} - 128px, 200px)`},Q9e5RLiS1:{width:`max(max((${componentViewport?.width||\"100vw\"} - 672px) / 5, 50px) * 3 + 144px, 200px)`},vFZ6hwrN0:{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((${componentViewport?.width||\"100vw\"} - 480px) / 5, 50px) * 3 + 144px, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1unmw61-container\",nodeId:\"a8We2xmNT\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"},vFZ6hwrN0:{style:{height:\"100%\",width:\"100%\"},variant:\"w5tOdPVrZ\"}},children:/*#__PURE__*/_jsx(PrekItem,{height:\"100%\",id:\"a8We2xmNT\",layoutId:\"a8We2xmNT\",LkMdJ9kD5:\"Mental Health Support\",mmdkA7Q_q:false,style:{width:\"100%\"},variant:\"tsPT5GZyw\",width:\"100%\",WKiG1d6hm:\"lifebelt\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-117denw\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jq3d0z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ia925w\",\"data-styles-preset\":\"ZtlKjoqfA\",style:{\"--framer-text-color\":\"var(--token-83574518-4c8f-4146-81e9-bc82f52902e7, rgb(255, 255, 255))\"},children:\"Perks and Benefits\"})}),className:\"framer-1w45gal\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n1deto\",\"data-styles-preset\":\"frXYd3sLC\",style:{\"--framer-text-color\":\"var(--token-83574518-4c8f-4146-81e9-bc82f52902e7, rgb(255, 255, 255))\"},children:\"MindsDB is determined to provide a highly competitive, innovative, and inclusive benefits offering that attracts the best talent from diverse backgrounds. We aim for all our programs to promote overall employee health.\"})}),className:\"framer-1wk3xnc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18zngne\",\"data-framer-name\":\"Demo section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eb2cs9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ibwqgx\",\"data-styles-preset\":\"R67DuOGx4\",children:\"Hear from the team\"})}),className:\"framer-mhfr1w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ankxa hidden-1mugqk7 hidden-ajr131 hidden-1p2yvpl hidden-uxezxg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10a380e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"i4pmah_He\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"i4pmah_He\",intervalControl:1.5,itemAmount:1,layoutId:\"i4pmah_He\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-osqmve\",\"data-border\":true,\"data-framer-name\":\"abi\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533.3333333333334,intrinsicWidth:533.3333333333334,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/MEy4Y4ae0ccPqZYaWxK4pR0dquY.png\"},className:\"framer-1yh0l8p\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12vll6d\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-7d5a0dd3-41b4-49ed-b086-5cf3ad200483, rgb(85, 102, 109))\"},children:[\"\u201CAn international, remote team. Flexible working & supportive culture. Growing company so opportunities for development and promotion.\u201D  - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Abi, HR\"})]})}),className:\"framer-fmlwlz\",\"data-framer-name\":\"Make enterprise search more intelligent. Use natural language to query vast amounts of structured and unstructured data with precision.\",fonts:[\"GF;Noto Sans-regular\",\"GF;Noto Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-153ii2h\",\"data-border\":true,\"data-framer-name\":\"zoran\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533.3333333333334,intrinsicWidth:533.3333333333334,pixelHeight:248,pixelWidth:245,src:\"https://framerusercontent.com/images/zOkfAdteR0Uk6u5qBvSUhuEs.jpg\"},className:\"framer-geejnn\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2aizxc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-7d5a0dd3-41b4-49ed-b086-5cf3ad200483, rgb(85, 102, 109))\"},children:[\"\u201CGreat team, great open-source product.\u201D  - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Zoran, Engineering\"})]})}),className:\"framer-1q213sb\",\"data-framer-name\":\"Make enterprise search more intelligent. Use natural language to query vast amounts of structured and unstructured data with precision.\",fonts:[\"GF;Noto Sans-regular\",\"GF;Noto Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vcuu1t\",\"data-border\":true,\"data-framer-name\":\"costa\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533.3333333333334,intrinsicWidth:533.3333333333334,pixelHeight:207,pixelWidth:210,src:\"https://framerusercontent.com/images/A9R8qc6KbS672wld0hePwznv7E.jpg\"},className:\"framer-1sl1ep6\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3mchre\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-7d5a0dd3-41b4-49ed-b086-5cf3ad200483, rgb(85, 102, 109))\"},children:[\"\u201CI joined MindsDB at the beginning of their journey and the main reason for me was a belief in the company mission and vision that their founders have.\u201D  - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Costa, Marketing\"})]})}),className:\"framer-o9qgmd\",\"data-framer-name\":\"Make enterprise search more intelligent. Use natural language to query vast amounts of structured and unstructured data with precision.\",fonts:[\"GF;Noto Sans-regular\",\"GF;Noto Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 512px, 1388px), 700px), 1388px), 700px)`},OhRjVMmBZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`},Q9e5RLiS1:{width:`calc(${componentViewport?.width||\"100vw\"} - 384px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:`calc(${componentViewport?.width||\"100vw\"} - 192px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kstd30-container hidden-fmxlfc\",nodeId:\"IFXLbCMQH\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hrrjwSlu4:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CompanyTestCarousel,{height:\"100%\",id:\"IFXLbCMQH\",layoutId:\"IFXLbCMQH\",style:{width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19hbuw9\",\"data-framer-name\":\"Demo section\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i78br5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dus0bw\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ia925w\",\"data-styles-preset\":\"ZtlKjoqfA\",children:\"Open Roles\"})}),className:\"framer-osef1x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ww9fjd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ibiaku\",\"data-styles-preset\":\"cif1kHvbj\",style:{\"--framer-text-color\":\"var(--token-1c24bea1-8237-40ce-9684-7f4d0b7c291e, rgb(125, 149, 161))\"},children:\"There are no current openings.\"})}),className:\"framer-1l2dg7m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:572,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xrd7nw-container\",nodeId:\"ox36vKJ1n\",scopeId:\"wtaiPtisF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OhRjVMmBZ:{variant:\"VspBIAg7A\"},vFZ6hwrN0:{variant:\"cBaFpPrue\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ox36vKJ1n\",layoutId:\"ox36vKJ1n\",style:{width:\"100%\"},variant:\"q_lMfWqyV\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tr8r9.framer-47qzx8, .framer-tr8r9 .framer-47qzx8 { display: block; }\",\".framer-tr8r9.framer-1mugqk7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-tr8r9 .framer-1xsc4uw-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 7; }\",\".framer-tr8r9 .framer-19euigg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 176px 176px 96px 176px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-1n92766 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-bhvy7j, .framer-tr8r9 .framer-3oabqn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-tr8r9 .framer-2qwcfb, .framer-tr8r9 .framer-1rftygt, .framer-tr8r9 .framer-1xmdwu9, .framer-tr8r9 .framer-1wd312n, .framer-tr8r9 .framer-1qthner, .framer-tr8r9 .framer-11x6pji, .framer-tr8r9 .framer-fk5ot7, .framer-tr8r9 .framer-1wkzxwu, .framer-tr8r9 .framer-1m9qej0, .framer-tr8r9 .framer-1w45gal, .framer-tr8r9 .framer-1wk3xnc, .framer-tr8r9 .framer-mhfr1w { --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-tr8r9 .framer-crx4i9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-tr8r9 .framer-g2xn9q-container, .framer-tr8r9 .framer-25hq5w-container, .framer-tr8r9 .framer-t2poun-container, .framer-tr8r9 .framer-5wwxkh-container, .framer-tr8r9 .framer-fbwlmr-container, .framer-tr8r9 .framer-19363o2-container, .framer-tr8r9 .framer-1us4ugu-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-tr8r9 .framer-1yah4sn { aspect-ratio: 1.670792079207921 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 314px); overflow: visible; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-1w708r { align-content: center; align-items: center; background-color: #092f37; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 176px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-jh081r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-xc78pu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tr8r9 .framer-1kriu1c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-1h84ur8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-cvg68m, .framer-tr8r9 .framer-t3t263, .framer-tr8r9 .framer-osef1x, .framer-tr8r9 .framer-1l2dg7m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tr8r9 .framer-1hunp35-container { flex: none; height: 284px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-5uxtpm { align-content: center; align-items: center; background-color: #f0f0ef; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: center; overflow: hidden; padding: 176px 96px 176px 96px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-123teij, .framer-tr8r9 .framer-1i78br5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-end; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-1d86o4l, .framer-tr8r9 .framer-1v6zeo2, .framer-tr8r9 .framer-1oko6j4, .framer-tr8r9 .framer-dbu4x1, .framer-tr8r9 .framer-1jq3d0z, .framer-tr8r9 .framer-dus0bw { 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: 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-1cqlzd9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 326px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-1au9pyl, .framer-tr8r9 .framer-y5jwcb, .framer-tr8r9 .framer-emko00, .framer-tr8r9 .framer-1iq94p5 { --border-bottom-width: 1px; --border-color: var(--token-66349018-6d57-46f9-af62-46d6e8beb0ab, #d6d3d1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tr8r9 .framer-1ktfdqs { aspect-ratio: 1.92 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 96px; }\",\".framer-tr8r9 .framer-7cw8se { 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-tr8r9 .framer-1ozjns0, .framer-tr8r9 .framer-u3d9xi, .framer-tr8r9 .framer-h06z33, .framer-tr8r9 .framer-137wxry, .framer-tr8r9 .framer-fmlwlz, .framer-tr8r9 .framer-1q213sb, .framer-tr8r9 .framer-o9qgmd { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tr8r9 .framer-siq7fq, .framer-tr8r9 .framer-1xckcda, .framer-tr8r9 .framer-172nm7u, .framer-tr8r9 .framer-1pp5vyg { align-content: center; align-items: center; background-color: rgba(245, 245, 245, 0); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: min-content; }\",\".framer-tr8r9 .framer-w7zpau, .framer-tr8r9 .framer-1lnzmtd, .framer-tr8r9 .framer-gk7v6j, .framer-tr8r9 .framer-lrqecn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tr8r9 .framer-1yklbnk-container, .framer-tr8r9 .framer-lh6q9l-container, .framer-tr8r9 .framer-1cj1q7o-container, .framer-tr8r9 .framer-qeq2dd-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-tr8r9 .framer-hb2s8b, .framer-tr8r9 .framer-2fnoli, .framer-tr8r9 .framer-65pf2r { align-content: flex-start; align-items: flex-start; 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-tr8r9 .framer-1thq8e5 { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); overflow: visible; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-1l1qv6z { aspect-ratio: 2.92 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 146px; }\",\".framer-tr8r9 .framer-1chc7fq { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 100px; }\",\".framer-tr8r9 .framer-1yji2ch { align-content: center; align-items: center; background-color: #092f37; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 96px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-1cutpnq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1216px; overflow: hidden; padding: 0px 0px 3px 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-kq71g6-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-tr8r9 .framer-1ism3zo, .framer-tr8r9 .framer-wrfjcy, .framer-tr8r9 .framer-1kfmyue { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 265px; }\",\".framer-tr8r9 .framer-1xz99j4, .framer-tr8r9 .framer-wl0oec, .framer-tr8r9 .framer-17hon3a { align-content: flex-start; align-items: flex-start; 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: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-tr8r9 .framer-1uoukwo { aspect-ratio: 1.7549668874172186 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 151px); overflow: visible; position: relative; width: 1px; }\",\".framer-tr8r9 .framer-6weeig, .framer-tr8r9 .framer-143nvjm, .framer-tr8r9 .framer-1e5pbhe, .framer-tr8r9 .framer-1o19o1j, .framer-tr8r9 .framer-1a2mo6n, .framer-tr8r9 .framer-msvxlc { aspect-ratio: 0.96 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 24px; }\",\".framer-tr8r9 .framer-1y1b835 { aspect-ratio: 1.6012084592145015 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 166px); overflow: visible; position: relative; width: 1px; }\",\".framer-tr8r9 .framer-bokm2a { aspect-ratio: 1.606060606060606 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 165px); overflow: visible; position: relative; width: 1px; }\",\".framer-tr8r9 .framer-17xfukx-container { flex: 1 0 0px; height: 504px; position: relative; width: 1px; }\",\".framer-tr8r9 .framer-x1yopr, .framer-tr8r9 .framer-1yz2vkc, .framer-tr8r9 .framer-1bprxjj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1216px; }\",\".framer-tr8r9 .framer-19xer4k, .framer-tr8r9 .framer-q4zku7, .framer-tr8r9 .framer-y7qfps { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tr8r9 .framer-1kfhix, .framer-tr8r9 .framer-1r9caw4, .framer-tr8r9 .framer-9s6qv2 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tr8r9 .framer-17e3zt4, .framer-tr8r9 .framer-72riv8 { aspect-ratio: 1.7543859649122806 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 114px); overflow: visible; position: relative; width: 1px; }\",\".framer-tr8r9 .framer-1s07jx5 { aspect-ratio: 1.7567567567567568 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 114px); overflow: visible; position: relative; width: 1px; }\",\".framer-tr8r9 .framer-1qfb9wj { display: grid; flex: none; gap: 72px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(5, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 9px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-1wbaq4k { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; grid-column: auto / span 3; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-13s2ayy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-cb571j, .framer-tr8r9 .framer-1apnym6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; min-width: 200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tr8r9 .framer-1hl057x-container, .framer-tr8r9 .framer-1ufb0ei-container, .framer-tr8r9 .framer-1fjpayg-container, .framer-tr8r9 .framer-154lfj7-container, .framer-tr8r9 .framer-274jrf-container, .framer-tr8r9 .framer-8hi7rp-container, .framer-tr8r9 .framer-1unmw61-container, .framer-tr8r9 .framer-kstd30-container, .framer-tr8r9 .framer-1xrd7nw-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-ra04yq-container, .framer-tr8r9 .framer-garwix-container, .framer-tr8r9 .framer-a11730-container, .framer-tr8r9 .framer-1jil9cj-container, .framer-tr8r9 .framer-tm9w77-container { flex: none; height: auto; min-width: 200px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-117denw { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; grid-column: auto / span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-18zngne { align-content: center; align-items: center; background-color: #f0f0ef; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 96px 64px 96px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-1eb2cs9 { align-content: center; align-items: center; 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-tr8r9 .framer-2ankxa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-10a380e-container { flex: none; height: 546px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-osqmve, .framer-tr8r9 .framer-153ii2h { --border-bottom-width: 1px; --border-color: var(--token-66349018-6d57-46f9-af62-46d6e8beb0ab, #d6d3d1); --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-direction: column; flex-wrap: nowrap; gap: 32px; height: 504px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-tr8r9 .framer-1yh0l8p, .framer-tr8r9 .framer-geejnn, .framer-tr8r9 .framer-1sl1ep6 { aspect-ratio: 1 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 200px; }\",\".framer-tr8r9 .framer-12vll6d, .framer-tr8r9 .framer-2aizxc, .framer-tr8r9 .framer-3mchre { align-content: flex-start; align-items: flex-start; align-self: stretch; 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: auto; }\",\".framer-tr8r9 .framer-vcuu1t { --border-bottom-width: 1px; --border-color: var(--token-66349018-6d57-46f9-af62-46d6e8beb0ab, #d6d3d1); --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-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-tr8r9 .framer-19hbuw9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: center; overflow: hidden; padding: 176px 96px 400px 96px; position: relative; width: 100%; }\",\".framer-tr8r9 .framer-1ww9fjd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tr8r9.framer-1mugqk7, .framer-tr8r9 .framer-19euigg, .framer-tr8r9 .framer-1n92766, .framer-tr8r9 .framer-bhvy7j, .framer-tr8r9 .framer-crx4i9, .framer-tr8r9 .framer-3oabqn, .framer-tr8r9 .framer-1w708r, .framer-tr8r9 .framer-jh081r, .framer-tr8r9 .framer-xc78pu, .framer-tr8r9 .framer-1kriu1c, .framer-tr8r9 .framer-1h84ur8, .framer-tr8r9 .framer-5uxtpm, .framer-tr8r9 .framer-123teij, .framer-tr8r9 .framer-1d86o4l, .framer-tr8r9 .framer-1cqlzd9, .framer-tr8r9 .framer-7cw8se, .framer-tr8r9 .framer-siq7fq, .framer-tr8r9 .framer-hb2s8b, .framer-tr8r9 .framer-1xckcda, .framer-tr8r9 .framer-2fnoli, .framer-tr8r9 .framer-172nm7u, .framer-tr8r9 .framer-65pf2r, .framer-tr8r9 .framer-1pp5vyg, .framer-tr8r9 .framer-1yji2ch, .framer-tr8r9 .framer-1cutpnq, .framer-tr8r9 .framer-1ism3zo, .framer-tr8r9 .framer-1xz99j4, .framer-tr8r9 .framer-1v6zeo2, .framer-tr8r9 .framer-wrfjcy, .framer-tr8r9 .framer-wl0oec, .framer-tr8r9 .framer-1oko6j4, .framer-tr8r9 .framer-1kfmyue, .framer-tr8r9 .framer-17hon3a, .framer-tr8r9 .framer-dbu4x1, .framer-tr8r9 .framer-x1yopr, .framer-tr8r9 .framer-19xer4k, .framer-tr8r9 .framer-1kfhix, .framer-tr8r9 .framer-1yz2vkc, .framer-tr8r9 .framer-q4zku7, .framer-tr8r9 .framer-1r9caw4, .framer-tr8r9 .framer-1bprxjj, .framer-tr8r9 .framer-y7qfps, .framer-tr8r9 .framer-9s6qv2, .framer-tr8r9 .framer-1wbaq4k, .framer-tr8r9 .framer-13s2ayy, .framer-tr8r9 .framer-cb571j, .framer-tr8r9 .framer-1apnym6, .framer-tr8r9 .framer-117denw, .framer-tr8r9 .framer-1jq3d0z, .framer-tr8r9 .framer-18zngne, .framer-tr8r9 .framer-1eb2cs9, .framer-tr8r9 .framer-2ankxa, .framer-tr8r9 .framer-osqmve, .framer-tr8r9 .framer-12vll6d, .framer-tr8r9 .framer-153ii2h, .framer-tr8r9 .framer-2aizxc, .framer-tr8r9 .framer-vcuu1t, .framer-tr8r9 .framer-3mchre, .framer-tr8r9 .framer-19hbuw9, .framer-tr8r9 .framer-1i78br5, .framer-tr8r9 .framer-dus0bw, .framer-tr8r9 .framer-1ww9fjd { gap: 0px; } .framer-tr8r9.framer-1mugqk7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tr8r9.framer-1mugqk7 > :first-child, .framer-tr8r9 .framer-19euigg > :first-child, .framer-tr8r9 .framer-bhvy7j > :first-child, .framer-tr8r9 .framer-3oabqn > :first-child, .framer-tr8r9 .framer-1w708r > :first-child, .framer-tr8r9 .framer-xc78pu > :first-child, .framer-tr8r9 .framer-1kriu1c > :first-child, .framer-tr8r9 .framer-1h84ur8 > :first-child, .framer-tr8r9 .framer-5uxtpm > :first-child, .framer-tr8r9 .framer-123teij > :first-child, .framer-tr8r9 .framer-1d86o4l > :first-child, .framer-tr8r9 .framer-7cw8se > :first-child, .framer-tr8r9 .framer-hb2s8b > :first-child, .framer-tr8r9 .framer-2fnoli > :first-child, .framer-tr8r9 .framer-65pf2r > :first-child, .framer-tr8r9 .framer-1yji2ch > :first-child, .framer-tr8r9 .framer-1ism3zo > :first-child, .framer-tr8r9 .framer-1v6zeo2 > :first-child, .framer-tr8r9 .framer-wrfjcy > :first-child, .framer-tr8r9 .framer-1oko6j4 > :first-child, .framer-tr8r9 .framer-1kfmyue > :first-child, .framer-tr8r9 .framer-dbu4x1 > :first-child, .framer-tr8r9 .framer-19xer4k > :first-child, .framer-tr8r9 .framer-q4zku7 > :first-child, .framer-tr8r9 .framer-y7qfps > :first-child, .framer-tr8r9 .framer-1wbaq4k > :first-child, .framer-tr8r9 .framer-cb571j > :first-child, .framer-tr8r9 .framer-1apnym6 > :first-child, .framer-tr8r9 .framer-117denw > :first-child, .framer-tr8r9 .framer-1jq3d0z > :first-child, .framer-tr8r9 .framer-18zngne > :first-child, .framer-tr8r9 .framer-1eb2cs9 > :first-child, .framer-tr8r9 .framer-2ankxa > :first-child, .framer-tr8r9 .framer-osqmve > :first-child, .framer-tr8r9 .framer-12vll6d > :first-child, .framer-tr8r9 .framer-153ii2h > :first-child, .framer-tr8r9 .framer-2aizxc > :first-child, .framer-tr8r9 .framer-vcuu1t > :first-child, .framer-tr8r9 .framer-3mchre > :first-child, .framer-tr8r9 .framer-19hbuw9 > :first-child, .framer-tr8r9 .framer-1i78br5 > :first-child, .framer-tr8r9 .framer-dus0bw > :first-child { margin-top: 0px; } .framer-tr8r9.framer-1mugqk7 > :last-child, .framer-tr8r9 .framer-19euigg > :last-child, .framer-tr8r9 .framer-bhvy7j > :last-child, .framer-tr8r9 .framer-3oabqn > :last-child, .framer-tr8r9 .framer-1w708r > :last-child, .framer-tr8r9 .framer-xc78pu > :last-child, .framer-tr8r9 .framer-1kriu1c > :last-child, .framer-tr8r9 .framer-1h84ur8 > :last-child, .framer-tr8r9 .framer-5uxtpm > :last-child, .framer-tr8r9 .framer-123teij > :last-child, .framer-tr8r9 .framer-1d86o4l > :last-child, .framer-tr8r9 .framer-7cw8se > :last-child, .framer-tr8r9 .framer-hb2s8b > :last-child, .framer-tr8r9 .framer-2fnoli > :last-child, .framer-tr8r9 .framer-65pf2r > :last-child, .framer-tr8r9 .framer-1yji2ch > :last-child, .framer-tr8r9 .framer-1ism3zo > :last-child, .framer-tr8r9 .framer-1v6zeo2 > :last-child, .framer-tr8r9 .framer-wrfjcy > :last-child, .framer-tr8r9 .framer-1oko6j4 > :last-child, .framer-tr8r9 .framer-1kfmyue > :last-child, .framer-tr8r9 .framer-dbu4x1 > :last-child, .framer-tr8r9 .framer-19xer4k > :last-child, .framer-tr8r9 .framer-q4zku7 > :last-child, .framer-tr8r9 .framer-y7qfps > :last-child, .framer-tr8r9 .framer-1wbaq4k > :last-child, .framer-tr8r9 .framer-cb571j > :last-child, .framer-tr8r9 .framer-1apnym6 > :last-child, .framer-tr8r9 .framer-117denw > :last-child, .framer-tr8r9 .framer-1jq3d0z > :last-child, .framer-tr8r9 .framer-18zngne > :last-child, .framer-tr8r9 .framer-1eb2cs9 > :last-child, .framer-tr8r9 .framer-2ankxa > :last-child, .framer-tr8r9 .framer-osqmve > :last-child, .framer-tr8r9 .framer-12vll6d > :last-child, .framer-tr8r9 .framer-153ii2h > :last-child, .framer-tr8r9 .framer-2aizxc > :last-child, .framer-tr8r9 .framer-vcuu1t > :last-child, .framer-tr8r9 .framer-3mchre > :last-child, .framer-tr8r9 .framer-19hbuw9 > :last-child, .framer-tr8r9 .framer-1i78br5 > :last-child, .framer-tr8r9 .framer-dus0bw > :last-child { margin-bottom: 0px; } .framer-tr8r9 .framer-19euigg > *, .framer-tr8r9 .framer-cb571j > *, .framer-tr8r9 .framer-1apnym6 > *, .framer-tr8r9 .framer-osqmve > *, .framer-tr8r9 .framer-153ii2h > *, .framer-tr8r9 .framer-vcuu1t > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-tr8r9 .framer-1n92766 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-tr8r9 .framer-1n92766 > :first-child, .framer-tr8r9 .framer-crx4i9 > :first-child, .framer-tr8r9 .framer-jh081r > :first-child, .framer-tr8r9 .framer-1cqlzd9 > :first-child, .framer-tr8r9 .framer-siq7fq > :first-child, .framer-tr8r9 .framer-1xckcda > :first-child, .framer-tr8r9 .framer-172nm7u > :first-child, .framer-tr8r9 .framer-1pp5vyg > :first-child, .framer-tr8r9 .framer-1cutpnq > :first-child, .framer-tr8r9 .framer-1xz99j4 > :first-child, .framer-tr8r9 .framer-wl0oec > :first-child, .framer-tr8r9 .framer-17hon3a > :first-child, .framer-tr8r9 .framer-x1yopr > :first-child, .framer-tr8r9 .framer-1kfhix > :first-child, .framer-tr8r9 .framer-1yz2vkc > :first-child, .framer-tr8r9 .framer-1r9caw4 > :first-child, .framer-tr8r9 .framer-1bprxjj > :first-child, .framer-tr8r9 .framer-9s6qv2 > :first-child, .framer-tr8r9 .framer-13s2ayy > :first-child, .framer-tr8r9 .framer-1ww9fjd > :first-child { margin-left: 0px; } .framer-tr8r9 .framer-1n92766 > :last-child, .framer-tr8r9 .framer-crx4i9 > :last-child, .framer-tr8r9 .framer-jh081r > :last-child, .framer-tr8r9 .framer-1cqlzd9 > :last-child, .framer-tr8r9 .framer-siq7fq > :last-child, .framer-tr8r9 .framer-1xckcda > :last-child, .framer-tr8r9 .framer-172nm7u > :last-child, .framer-tr8r9 .framer-1pp5vyg > :last-child, .framer-tr8r9 .framer-1cutpnq > :last-child, .framer-tr8r9 .framer-1xz99j4 > :last-child, .framer-tr8r9 .framer-wl0oec > :last-child, .framer-tr8r9 .framer-17hon3a > :last-child, .framer-tr8r9 .framer-x1yopr > :last-child, .framer-tr8r9 .framer-1kfhix > :last-child, .framer-tr8r9 .framer-1yz2vkc > :last-child, .framer-tr8r9 .framer-1r9caw4 > :last-child, .framer-tr8r9 .framer-1bprxjj > :last-child, .framer-tr8r9 .framer-9s6qv2 > :last-child, .framer-tr8r9 .framer-13s2ayy > :last-child, .framer-tr8r9 .framer-1ww9fjd > :last-child { margin-right: 0px; } .framer-tr8r9 .framer-bhvy7j > *, .framer-tr8r9 .framer-3oabqn > *, .framer-tr8r9 .framer-1d86o4l > *, .framer-tr8r9 .framer-7cw8se > *, .framer-tr8r9 .framer-1ism3zo > *, .framer-tr8r9 .framer-1v6zeo2 > *, .framer-tr8r9 .framer-wrfjcy > *, .framer-tr8r9 .framer-1oko6j4 > *, .framer-tr8r9 .framer-1kfmyue > *, .framer-tr8r9 .framer-dbu4x1 > *, .framer-tr8r9 .framer-19xer4k > *, .framer-tr8r9 .framer-q4zku7 > *, .framer-tr8r9 .framer-y7qfps > *, .framer-tr8r9 .framer-1jq3d0z > *, .framer-tr8r9 .framer-1eb2cs9 > *, .framer-tr8r9 .framer-dus0bw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-tr8r9 .framer-crx4i9 > *, .framer-tr8r9 .framer-jh081r > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-tr8r9 .framer-1w708r > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-tr8r9 .framer-xc78pu > *, .framer-tr8r9 .framer-123teij > *, .framer-tr8r9 .framer-1wbaq4k > *, .framer-tr8r9 .framer-1i78br5 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-tr8r9 .framer-1kriu1c > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-tr8r9 .framer-1h84ur8 > *, .framer-tr8r9 .framer-2ankxa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tr8r9 .framer-5uxtpm > *, .framer-tr8r9 .framer-18zngne > *, .framer-tr8r9 .framer-19hbuw9 > * { margin: 0px; margin-bottom: calc(128px / 2); margin-top: calc(128px / 2); } .framer-tr8r9 .framer-1cqlzd9 > *, .framer-tr8r9 .framer-1xz99j4 > *, .framer-tr8r9 .framer-wl0oec > *, .framer-tr8r9 .framer-17hon3a > *, .framer-tr8r9 .framer-1kfhix > *, .framer-tr8r9 .framer-1r9caw4 > *, .framer-tr8r9 .framer-9s6qv2 > *, .framer-tr8r9 .framer-13s2ayy > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-tr8r9 .framer-siq7fq > *, .framer-tr8r9 .framer-1xckcda > *, .framer-tr8r9 .framer-172nm7u > *, .framer-tr8r9 .framer-1pp5vyg > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-tr8r9 .framer-hb2s8b > *, .framer-tr8r9 .framer-2fnoli > *, .framer-tr8r9 .framer-65pf2r > *, .framer-tr8r9 .framer-117denw > *, .framer-tr8r9 .framer-12vll6d > *, .framer-tr8r9 .framer-2aizxc > *, .framer-tr8r9 .framer-3mchre > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-tr8r9 .framer-1yji2ch > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-tr8r9 .framer-1cutpnq > *, .framer-tr8r9 .framer-x1yopr > *, .framer-tr8r9 .framer-1yz2vkc > *, .framer-tr8r9 .framer-1bprxjj > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-tr8r9 .framer-1ww9fjd > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-tr8r9[data-border=\"true\"]::after, .framer-tr8r9 [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: 1600px) and (max-width: 1899px) { .framer-tr8r9.framer-1mugqk7 { width: 1600px; } .framer-tr8r9 .framer-19euigg { padding: 176px 192px 96px 192px; } .framer-tr8r9 .framer-1n92766, .framer-tr8r9 .framer-123teij, .framer-tr8r9 .framer-1cutpnq, .framer-tr8r9 .framer-1i78br5 { max-width: unset; } .framer-tr8r9 .framer-1yah4sn { height: var(--framer-aspect-ratio-supported, 352px); } .framer-tr8r9 .framer-1w708r, .framer-tr8r9 .framer-5uxtpm { padding: 176px 192px 176px 192px; } .framer-tr8r9 .framer-1yji2ch { padding: 96px 192px 96px 192px; } .framer-tr8r9 .framer-17xfukx-container { height: 481px; } .framer-tr8r9 .framer-18zngne { padding: 64px 192px 64px 192px; } .framer-tr8r9 .framer-19hbuw9 { padding: 176px 192px 400px 192px; }}\",\"@media (min-width: 1900px) { .framer-tr8r9.framer-1mugqk7 { width: 1900px; } .framer-tr8r9 .framer-19euigg { padding: 176px 256px 96px 256px; } .framer-tr8r9 .framer-1n92766 { gap: 80px; max-width: 1388px; } .framer-tr8r9 .framer-1yah4sn { height: var(--framer-aspect-ratio-supported, 392px); } .framer-tr8r9 .framer-1w708r, .framer-tr8r9 .framer-5uxtpm { padding: 176px 256px 176px 256px; } .framer-tr8r9 .framer-jh081r, .framer-tr8r9 .framer-123teij, .framer-tr8r9 .framer-1cutpnq, .framer-tr8r9 .framer-1qfb9wj, .framer-tr8r9 .framer-1i78br5 { max-width: 1388px; } .framer-tr8r9 .framer-1thq8e5 { height: var(--framer-aspect-ratio-supported, 69px); } .framer-tr8r9 .framer-1yji2ch { padding: 96px 256px 96px 256px; } .framer-tr8r9 .framer-17xfukx-container { height: 522px; } .framer-tr8r9 .framer-18zngne { padding: 64px 256px 64px 256px; } .framer-tr8r9 .framer-1eb2cs9, .framer-tr8r9 .framer-kstd30-container { max-width: 1388px; min-width: 700px; } .framer-tr8r9 .framer-19hbuw9 { padding: 176px 256px 400px 256px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tr8r9 .framer-1n92766 { gap: 0px; } .framer-tr8r9 .framer-1n92766 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-tr8r9 .framer-1n92766 > :first-child { margin-left: 0px; } .framer-tr8r9 .framer-1n92766 > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 1000px) and (max-width: 1439px) { .framer-tr8r9.framer-1mugqk7 { width: 1000px; } .framer-tr8r9 .framer-19euigg { padding: 176px 64px 96px 64px; } .framer-tr8r9 .framer-1n92766, .framer-tr8r9 .framer-123teij, .framer-tr8r9 .framer-1cutpnq, .framer-tr8r9 .framer-1i78br5 { max-width: unset; } .framer-tr8r9 .framer-1yah4sn { height: var(--framer-aspect-ratio-supported, 249px); } .framer-tr8r9 .framer-1w708r, .framer-tr8r9 .framer-5uxtpm { padding: 112px 64px 112px 64px; } .framer-tr8r9 .framer-1kriu1c { height: 513px; } .framer-tr8r9 .framer-1hunp35-container { flex: 1 0 0px; height: 1px; } .framer-tr8r9 .framer-1cqlzd9 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; } .framer-tr8r9 .framer-1au9pyl, .framer-tr8r9 .framer-y5jwcb, .framer-tr8r9 .framer-emko00, .framer-tr8r9 .framer-1iq94p5 { align-self: start; flex: none; gap: 0px; height: min-content; justify-content: center; justify-self: start; width: 100%; } .framer-tr8r9 .framer-1thq8e5 { height: var(--framer-aspect-ratio-supported, 56px); width: 223px; } .framer-tr8r9 .framer-1yji2ch { padding: 96px 64px 96px 64px; } .framer-tr8r9 .framer-17xfukx-container { height: 397px; } .framer-tr8r9 .framer-1qfb9wj { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; } .framer-tr8r9 .framer-1wbaq4k { align-self: unset; order: 1; } .framer-tr8r9 .framer-13s2ayy { justify-content: flex-start; } .framer-tr8r9 .framer-1hl057x-container, .framer-tr8r9 .framer-ra04yq-container, .framer-tr8r9 .framer-garwix-container, .framer-tr8r9 .framer-a11730-container, .framer-tr8r9 .framer-1jil9cj-container, .framer-tr8r9 .framer-tm9w77-container, .framer-tr8r9 .framer-1ufb0ei-container, .framer-tr8r9 .framer-1fjpayg-container, .framer-tr8r9 .framer-154lfj7-container, .framer-tr8r9 .framer-274jrf-container, .framer-tr8r9 .framer-8hi7rp-container, .framer-tr8r9 .framer-1unmw61-container { height: 115px; } .framer-tr8r9 .framer-117denw { align-self: unset; height: min-content; order: 0; padding: 0px; } .framer-tr8r9 .framer-18zngne { padding: 64px; } .framer-tr8r9 .framer-19hbuw9 { padding: 176px 64px 400px 64px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tr8r9 .framer-1cqlzd9, .framer-tr8r9 .framer-1au9pyl, .framer-tr8r9 .framer-y5jwcb, .framer-tr8r9 .framer-emko00, .framer-tr8r9 .framer-1iq94p5, .framer-tr8r9 .framer-1qfb9wj { gap: 0px; } .framer-tr8r9 .framer-1cqlzd9 > *, .framer-tr8r9 .framer-1cqlzd9 > :first-child, .framer-tr8r9 .framer-1cqlzd9 > :last-child { margin: 0px; } .framer-tr8r9 .framer-1au9pyl > *, .framer-tr8r9 .framer-y5jwcb > *, .framer-tr8r9 .framer-emko00 > *, .framer-tr8r9 .framer-1iq94p5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tr8r9 .framer-1au9pyl > :first-child, .framer-tr8r9 .framer-y5jwcb > :first-child, .framer-tr8r9 .framer-emko00 > :first-child, .framer-tr8r9 .framer-1iq94p5 > :first-child, .framer-tr8r9 .framer-1qfb9wj > :first-child { margin-top: 0px; } .framer-tr8r9 .framer-1au9pyl > :last-child, .framer-tr8r9 .framer-y5jwcb > :last-child, .framer-tr8r9 .framer-emko00 > :last-child, .framer-tr8r9 .framer-1iq94p5 > :last-child, .framer-tr8r9 .framer-1qfb9wj > :last-child { margin-bottom: 0px; } .framer-tr8r9 .framer-1qfb9wj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (max-width: 999px) { .framer-tr8r9.framer-1mugqk7 { width: 320px; } .framer-tr8r9 .framer-19euigg { padding: 108px 24px 48px 24px; } .framer-tr8r9 .framer-1n92766 { flex-direction: column; max-width: unset; } .framer-tr8r9 .framer-bhvy7j, .framer-tr8r9 .framer-3oabqn { flex: none; width: 100%; } .framer-tr8r9 .framer-1yah4sn { height: var(--framer-aspect-ratio-supported, 163px); } .framer-tr8r9 .framer-1w708r, .framer-tr8r9 .framer-5uxtpm, .framer-tr8r9 .framer-1yji2ch { padding: 48px 24px 48px 24px; } .framer-tr8r9 .framer-1kriu1c { gap: 48px; height: 513px; } .framer-tr8r9 .framer-cvg68m, .framer-tr8r9 .framer-t3t263 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-tr8r9 .framer-1hunp35-container { flex: 1 0 0px; height: 1px; } .framer-tr8r9 .framer-123teij, .framer-tr8r9 .framer-1i78br5 { max-width: unset; } .framer-tr8r9 .framer-1cqlzd9 { flex-direction: column; height: min-content; } .framer-tr8r9 .framer-1au9pyl, .framer-tr8r9 .framer-y5jwcb, .framer-tr8r9 .framer-emko00, .framer-tr8r9 .framer-1iq94p5 { flex: none; gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-tr8r9 .framer-1thq8e5 { height: var(--framer-aspect-ratio-supported, 53px); width: 210px; } .framer-tr8r9 .framer-1cutpnq { flex-direction: column; gap: 24px; max-width: unset; } .framer-tr8r9 .framer-kq71g6-container { flex: none; order: 0; width: 100%; } .framer-tr8r9 .framer-1qfb9wj { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; } .framer-tr8r9 .framer-1wbaq4k { align-self: unset; order: 1; padding: 0px; } .framer-tr8r9 .framer-cb571j { flex-wrap: wrap; } .framer-tr8r9 .framer-1hl057x-container, .framer-tr8r9 .framer-ra04yq-container, .framer-tr8r9 .framer-garwix-container, .framer-tr8r9 .framer-a11730-container, .framer-tr8r9 .framer-1jil9cj-container, .framer-tr8r9 .framer-tm9w77-container, .framer-tr8r9 .framer-1ufb0ei-container, .framer-tr8r9 .framer-1fjpayg-container, .framer-tr8r9 .framer-154lfj7-container, .framer-tr8r9 .framer-274jrf-container, .framer-tr8r9 .framer-8hi7rp-container, .framer-tr8r9 .framer-1unmw61-container { height: 120px; } .framer-tr8r9 .framer-117denw { align-self: unset; height: min-content; order: 0; padding: 0px; } .framer-tr8r9 .framer-18zngne { gap: 60px; padding: 48px 24px 48px 24px; } .framer-tr8r9 .framer-1eb2cs9 { order: 0; } .framer-tr8r9 .framer-19hbuw9 { padding: 48px 24px 350px 24px; } .framer-tr8r9 .framer-1ww9fjd { flex-direction: column; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tr8r9 .framer-1n92766, .framer-tr8r9 .framer-1kriu1c, .framer-tr8r9 .framer-1cqlzd9, .framer-tr8r9 .framer-1au9pyl, .framer-tr8r9 .framer-y5jwcb, .framer-tr8r9 .framer-emko00, .framer-tr8r9 .framer-1iq94p5, .framer-tr8r9 .framer-1cutpnq, .framer-tr8r9 .framer-1qfb9wj, .framer-tr8r9 .framer-18zngne, .framer-tr8r9 .framer-1ww9fjd { gap: 0px; } .framer-tr8r9 .framer-1n92766 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-tr8r9 .framer-1n92766 > :first-child, .framer-tr8r9 .framer-1kriu1c > :first-child, .framer-tr8r9 .framer-1cqlzd9 > :first-child, .framer-tr8r9 .framer-1au9pyl > :first-child, .framer-tr8r9 .framer-y5jwcb > :first-child, .framer-tr8r9 .framer-emko00 > :first-child, .framer-tr8r9 .framer-1iq94p5 > :first-child, .framer-tr8r9 .framer-1cutpnq > :first-child, .framer-tr8r9 .framer-1qfb9wj > :first-child, .framer-tr8r9 .framer-18zngne > :first-child, .framer-tr8r9 .framer-1ww9fjd > :first-child { margin-top: 0px; } .framer-tr8r9 .framer-1n92766 > :last-child, .framer-tr8r9 .framer-1kriu1c > :last-child, .framer-tr8r9 .framer-1cqlzd9 > :last-child, .framer-tr8r9 .framer-1au9pyl > :last-child, .framer-tr8r9 .framer-y5jwcb > :last-child, .framer-tr8r9 .framer-emko00 > :last-child, .framer-tr8r9 .framer-1iq94p5 > :last-child, .framer-tr8r9 .framer-1cutpnq > :last-child, .framer-tr8r9 .framer-1qfb9wj > :last-child, .framer-tr8r9 .framer-18zngne > :last-child, .framer-tr8r9 .framer-1ww9fjd > :last-child { margin-bottom: 0px; } .framer-tr8r9 .framer-1kriu1c > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-tr8r9 .framer-1cqlzd9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-tr8r9 .framer-1au9pyl > *, .framer-tr8r9 .framer-y5jwcb > *, .framer-tr8r9 .framer-emko00 > *, .framer-tr8r9 .framer-1iq94p5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tr8r9 .framer-1cutpnq > *, .framer-tr8r9 .framer-1qfb9wj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-tr8r9 .framer-18zngne > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-tr8r9 .framer-1ww9fjd > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5425\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Q9e5RLiS1\":{\"layout\":[\"fixed\",\"auto\"]},\"hrrjwSlu4\":{\"layout\":[\"fixed\",\"auto\"]},\"OhRjVMmBZ\":{\"layout\":[\"fixed\",\"auto\"]},\"vFZ6hwrN0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"wLm1cIOgv\":{\"pattern\":\":wLm1cIOgv\",\"name\":\"roles\"}}\n * @framerResponsiveScreen\n */const FramerwtaiPtisF=withCSS(Component,css,\"framer-tr8r9\");export default FramerwtaiPtisF;FramerwtaiPtisF.displayName=\"Minds\";FramerwtaiPtisF.defaultProps={height:5425,width:1440};addFonts(FramerwtaiPtisF,[{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:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99Y41P6zHtY.woff2\",weight:\"400\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAjBN9Y41P6zHtY.woff2\",weight:\"600\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAaBN9Y41P6zHtY.woff2\",weight:\"700\"}]},...TopbarFonts,...Button_BrandDefaultFonts,...WhereAreWeGoingFonts,...IconoirFonts,...CarouselFonts,...SlideshowFonts,...PrekItemFonts,...CompanyTestCarouselFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwtaiPtisF\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"5425\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Q9e5RLiS1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hrrjwSlu4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OhRjVMmBZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vFZ6hwrN0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"wLm1cIOgv\\\":{\\\"pattern\\\":\\\":wLm1cIOgv\\\",\\\"name\\\":\\\"roles\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "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", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "SlideshowFonts", "getFonts", "Slideshow", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Slideshow", "u", "Image2", "RichText2", "css", "FramerhAvra40vy", "withCSS", "hAvra40vy_default", "addFonts", "SlideshowFonts", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FramerksgC9fJct", "withCSS", "ksgC9fJct_default", "addFonts", "TickerFonts", "IconoirFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "iconName", "id", "title", "type", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "WKiG1d6hm", "LkMdJ9kD5", "mmdkA7Q_q", "TrX0xd0Qn", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1tvvsgo", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerWc38I5zM8", "withCSS", "Wc38I5zM8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TopbarFonts", "getFonts", "BHj7ubh0W_default", "Button_BrandDefaultFonts", "am7eyyOig_default", "WhereAreWeGoingFonts", "ksgC9fJct_default", "IconoirFonts", "Icon", "CarouselFonts", "Carousel", "SlideshowFonts", "Slideshow", "PrekItemFonts", "Wc38I5zM8_default", "CompanyTestCarouselFonts", "hAvra40vy_default", "FooterFonts", "ceYxS4LcH_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Image2", "RichText2", "x", "ResolveLinks", "resolvedLinks", "Link", "SVG", "css", "FramerwtaiPtisF", "withCSS", "wtaiPtisF_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
