{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js", "ssg:https://framerusercontent.com/modules/sF9RoZtLXaXy7zpj7SEW/IGGt3Yh2bb8rV6fKvBZr/frX8WzMHS.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/6mBBMwmByZwWhD8MDH7H/cogeC1llfxRAcKmENmre/CarouselOverride.js", "ssg:https://framerusercontent.com/modules/cku9zVshElGh2zb5g76e/ZeUGyQuawHgPMilypdWM/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{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=0)=>{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:[isMouseDevice&&/*#__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\"})}),isMouseDevice&&/*#__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\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__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\";// 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;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);}).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;}/**\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}=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     */const 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();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0: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===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0: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===null||size===void 0?void 0: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){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-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){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{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);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* 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.push(...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===null||filteredSlots===void 0?void 0: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===null||filteredSlots===void 0?void 0: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=dotsBlurStyle.MozBackdropFilter=`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,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0: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();setIsMouseDown(true);},onMouseUp:()=>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),\"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),\"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},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}}},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){var _child_props,_child_props1;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===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0: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=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_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=child.props)===null||_child_props===void 0?void 0:_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_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.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\":{\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/kkMGeHaY0aZzJOryfSu0/0r5BSBcwVFO8puBRuRf2/BkipWreRM.js\";const serializationHash=\"framer-flZso\";const variantClassNames={mIUhjIEkG:\"framer-v-k7s706\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,link,title,width,...props})=>{return{...props,pOpwklBF_:link??props.pOpwklBF_,PYdRLwjCJ:image??props.PYdRLwjCJ??{alt:\"\",pixelHeight:712,pixelWidth:1068,src:\"https://framerusercontent.com/images/3PIvtMTzWUTky4jKlv7Jra9bew.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3PIvtMTzWUTky4jKlv7Jra9bew.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3PIvtMTzWUTky4jKlv7Jra9bew.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3PIvtMTzWUTky4jKlv7Jra9bew.jpg 1068w\"},uGvtv7phT:title??props.uGvtv7phT??\"Open Campus Accelerator (OC-X)\"};};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,PYdRLwjCJ,uGvtv7phT,pOpwklBF_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"mIUhjIEkG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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__*/_jsx(Link,{href:pOpwklBF_,motionChild:true,nodeId:\"mIUhjIEkG\",openInNewTab:true,scopeId:\"frX8WzMHS\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-k7s706\",className,classNames)} framer-fqa2zx`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mIUhjIEkG\",ref:refBinding,style:{backgroundColor:\"var(--token-4b465d4b-ef64-4cda-bd46-ca91a6552b2e, rgb(27, 28, 30))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(PYdRLwjCJ)},className:\"framer-1n0uww3\",\"data-framer-name\":\"Frame 133\",layoutDependency:layoutDependency,layoutId:\"wusgoFSe1\",style:{borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q6o6ok\",\"data-framer-name\":\"Frame 136\",layoutDependency:layoutDependency,layoutId:\"U5yylC_1H\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:20,borderBottomRightRadius:20},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1qeuvao\",\"data-styles-preset\":\"BkipWreRM\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-1a98f461-cdf3-4fea-8f1b-d12a8b768432, rgb(255, 255, 255)))\"},children:\"Open Campus Accelerator (OC-X)\"})}),className:\"framer-1dz2t4i\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vb2LE4J4C\",style:{\"--extracted-1w1cjl5\":\"var(--token-1a98f461-cdf3-4fea-8f1b-d12a8b768432, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:uGvtv7phT,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-flZso.framer-fqa2zx, .framer-flZso .framer-fqa2zx { display: block; }\",\".framer-flZso.framer-k7s706 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 534px; }\",\".framer-flZso .framer-1n0uww3 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 330px; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-flZso .framer-q6o6ok { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-flZso .framer-1dz2t4i { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 402\n * @framerIntrinsicWidth 534\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"PYdRLwjCJ\":\"image\",\"uGvtv7phT\":\"title\",\"pOpwklBF_\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfrX8WzMHS=withCSS(Component,css,\"framer-flZso\");export default FramerfrX8WzMHS;FramerfrX8WzMHS.displayName=\"Community Card\";FramerfrX8WzMHS.defaultProps={height:402,width:534};addPropertyControls(FramerfrX8WzMHS,{PYdRLwjCJ:{__defaultAssetReference:\"data:framer/asset-reference,3PIvtMTzWUTky4jKlv7Jra9bew.jpg?originalFilename=Frame+133.jpg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,3PIvtMTzWUTky4jKlv7Jra9bew.jpg?originalFilename=Frame+133.jpg&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},uGvtv7phT:{defaultValue:\"Open Campus Accelerator (OC-X)\",displayTextArea:false,title:\"Title\",type:ControlType.String},pOpwklBF_:{title:\"Link\",type:ControlType.Link}});addFonts(FramerfrX8WzMHS,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfrX8WzMHS\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"534\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"PYdRLwjCJ\\\":\\\"image\\\",\\\"uGvtv7phT\\\":\\\"title\\\",\\\"pOpwklBF_\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"402\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./frX8WzMHS.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{forwardRef}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/developers/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{ref:ref,...props,animate:{rotate:90},transition:{duration:2}});});}export function withHover(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{ref:ref,...props,whileHover:{scale:1.05}});});}export function withRandomColor(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{ref:ref,...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});});}export function AlwaysShowArrows(){return{showArrows:true};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withAlwaysShowArrows(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...AlwaysShowArrows(props)});};}withAlwaysShowArrows.displayName=\"AlwaysShowArrows\";\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAlwaysShowArrows\":{\"type\":\"reactHoc\",\"name\":\"withAlwaysShowArrows\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"AlwaysShowArrows\":{\"type\":\"override\",\"name\":\"AlwaysShowArrows\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CarouselOverride.map", "// Generated by Framer (9cd6ca5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/KlXfwqVLqJFgyoG8dy7M/YouTube.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js\";import Line from\"#framer/local/canvasComponent/DCwpQ8E66/DCwpQ8E66.js\";import CommunityCard from\"#framer/local/canvasComponent/frX8WzMHS/frX8WzMHS.js\";import Footer from\"#framer/local/canvasComponent/G2LTrLSmQ/G2LTrLSmQ.js\";import ColorChange from\"#framer/local/canvasComponent/mV4By_wa2/mV4By_wa2.js\";import Nav from\"#framer/local/canvasComponent/nWLNI2VU7/nWLNI2VU7.js\";import Button from\"#framer/local/canvasComponent/xA1JemV4f/xA1JemV4f.js\";import{withAlwaysShowArrows}from\"#framer/local/codeFile/uZ54_PN/CarouselOverride.js\";import BlogArticles,{enumToDisplayNameFunctions}from\"#framer/local/collection/A4YklyQEq/A4YklyQEq.js\";import*as sharedStyle5 from\"#framer/local/css/BkipWreRM/BkipWreRM.js\";import*as sharedStyle3 from\"#framer/local/css/dy22Rq8uY/dy22Rq8uY.js\";import*as sharedStyle from\"#framer/local/css/l9nD3UIIZ/l9nD3UIIZ.js\";import*as sharedStyle2 from\"#framer/local/css/O0STkwMAO/O0STkwMAO.js\";import*as sharedStyle1 from\"#framer/local/css/q_8lYVhNN/q_8lYVhNN.js\";import*as sharedStyle4 from\"#framer/local/css/UCX_zWspv/UCX_zWspv.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavFonts=getFonts(Nav);const NavWithVariantAppearEffect=withVariantAppearEffect(Nav);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const TickerFonts=getFonts(Ticker);const LineFonts=getFonts(Line);const LineWithVariantAppearEffect=withVariantAppearEffect(Line);const ButtonFonts=getFonts(Button);const CommunityCardFonts=getFonts(CommunityCard);const CarouselFonts=getFonts(Carousel);const CarouselWithAlwaysShowArrowsd3xdon=withCodeBoundaryForOverrides(Carousel,{nodeId:\"UvGJVqGl1\",override:withAlwaysShowArrows,scopeId:\"augiA20Il\"});const SlideshowFonts=getFonts(Slideshow);const FooterFonts=getFonts(Footer);const ColorChangeFonts=getFonts(ColorChange);const ColorChangeWithVariantAppearEffect=withVariantAppearEffect(ColorChange);const breakpoints={AxKd5Q6tO:\"(max-width: 767px)\",Kmj1Ibl2T:\"(min-width: 768px) and (max-width: 1023px)\",ScGOo9OuP:\"(min-width: 1024px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gQMNf\";const variantClassNames={AxKd5Q6tO:\"framer-v-8zlqdj\",Kmj1Ibl2T:\"framer-v-1e916c0\",ScGOo9OuP:\"framer-v-1wa1mt2\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={filter:\"blur(2px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:5};const transition1={damping:100,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation,repeat:false,startDelay:.5,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const transition2={bounce:.2,delay:1,duration:1.1,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const transition3={delay:0,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition4={bounce:.2,delay:0,duration:.6,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:60};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition5={bounce:.2,delay:.2,duration:.6,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:60};const transition6={bounce:.2,delay:.1,duration:.6,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:60};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation8={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:5};const textEffect1={effect:animation8,repeat:false,startDelay:.2,threshold:0,tokenization:\"word\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const transition7={damping:100,delay:.01,mass:1,stiffness:400,type:\"spring\"};const textEffect2={effect:animation8,repeat:false,startDelay:.3,threshold:0,tokenization:\"word\",transition:transition7,trigger:\"onInView\",type:\"appear\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Laptop:\"ScGOo9OuP\",Phone:\"AxKd5Q6tO\",Tablet:\"Kmj1Ibl2T\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,VuCbZCKYvecQuy80s1,J7LgCrRiZecQuy80s1,o5BRFzarlecQuy80s1,HCqMCYAHxecQuy80s1,idecQuy80s1,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"ti0Q2kYYj\");const isDisplayed=()=>{if(!isBrowser())return true;if([\"Kmj1Ibl2T\",\"AxKd5Q6tO\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"AxKd5Q6tO\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"AxKd5Q6tO\")return true;return false;};const elementId1=useRouteElementId(\"qIOLa63hP\");const ref2=React.useRef(null);const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-64cd8b7d-34b0-4da2-8889-7b834cbd9c59, rgb(227, 226, 225)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aoew87-container\",nodeId:\"IllDhxG0R\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"JvS9q75X8\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,variant:\"uUTOhIoC5\"},Kmj1Ibl2T:{variant:\"J75ukuPlU\"},ScGOo9OuP:{variant:\"sOM4Yp8Yl\"}},children:/*#__PURE__*/_jsx(NavWithVariantAppearEffect,{gsWMg607v:\"EP5afbrdR\",height:\"100%\",id:\"IllDhxG0R\",layoutId:\"IllDhxG0R\",m_XauqZfl:\"ApJ1VF4Iv\",style:{width:\"100%\"},variant:\"YwxhrtN6Y\",width:\"100%\",x0hpjtjAl:\"EP5afbrdR\",Y71epiooI:\"EP5afbrdR\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y027wx\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-drnhvt\",\"data-framer-name\":\"Header\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14rwr2m\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-138a5ld\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7ohuk6\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xow5lz\",\"data-styles-preset\":\"l9nD3UIIZ\",children:\"We nurture the systems, people, and practices that scale the best work from zero to one, and from one to many.\"})}),className:\"framer-15mi5u9\",\"data-framer-name\":\"Long heading is what you see here in this header section\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10+112+0+0+67.2),pixelHeight:4500,pixelWidth:4500,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1212px)`,src:\"https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png\",srcSet:\"https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png 4500w\"}},Kmj1Ibl2T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+0+84+0+0+0),pixelHeight:4500,pixelWidth:4500,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png\",srcSet:\"https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png 4500w\"}},ScGOo9OuP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+0+132+197+0+0),pixelHeight:4500,pixelWidth:4500,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1212px) - 70px) / 2, 1px)`,src:\"https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png\",srcSet:\"https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png 4500w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+0+132+197+0+0),pixelHeight:4500,pixelWidth:4500,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 240px, 1px), 1212px) - 70px) / 2, 1px)`,src:\"https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png\",srcSet:\"https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7zabsSp9hsRGhCC7Q3zjankQBI.png 4500w\"},className:\"framer-y8217v\",\"data-framer-appear-id\":\"y8217v\",\"data-framer-name\":\"image 1\",initial:animation2,optimized:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x2jl6j\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ug10uu\",id:\"ug10uu\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cgsc4r\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k5nyn9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"X0FWDxeqE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-d87dc5f7-2638-4b77-9368-a8568c56fcca, rgb(38, 38, 38))\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"X0FWDxeqE\",isMixedBorderRadius:false,layoutId:\"X0FWDxeqE\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/gvjKJV0hgTp2T98hzLXOWBqE2Io.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/UtVWEon2iaqKHr7YxHy4HVTGiic.webm\",srcType:\"Upload\",srcUrl:\"https://videos.pexels.com/video-files/8244207/8244207-uhd_2560_1440_25fps.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u5q9fe\",\"data-border\":true,\"data-framer-name\":\"Tag\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p2jfz\",\"data-styles-preset\":\"q_8lYVhNN\",children:\"Fuel The Right Ideas\"})}),className:\"framer-143ib44\",\"data-framer-name\":\"Build a Thriving Culture\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5gr3d3\",\"data-border\":true,\"data-framer-name\":\"Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p2jfz\",\"data-styles-preset\":\"q_8lYVhNN\",children:\"scale with intention\"})}),className:\"framer-1n9lxek\",\"data-framer-name\":\"Turn Growth into Impact\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8lurae\",\"data-border\":true,\"data-framer-name\":\"Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p2jfz\",\"data-styles-preset\":\"q_8lYVhNN\",children:\"Launch better\"})}),className:\"framer-ugds0f\",\"data-framer-name\":\"Curated Learning for Teams\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-jruy0k\"),\"data-framer-portal-id\":\"ug10uu\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"CwaXas6pg\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-zsztr8-container\"),\"data-framer-portal-id\":\"ug10uu\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JnitIqBXz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"JnitIqBXz\",isMixedBorderRadius:false,isRed:true,layoutId:\"JnitIqBXz\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/R2DyAVz8oVM?si=1wrXeOk2DCosivHn\",width:\"100%\"})})})]}),getContainer())})})]})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11p8295 hidden-72rtr7 hidden-1wa1mt2\",\"data-framer-name\":\"Separator\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2kjr8s\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p2jfz\",\"data-styles-preset\":\"q_8lYVhNN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Who we work with\"})}),className:\"framer-nd0rn8\",\"data-framer-name\":\"Heading\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s54gec-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JlhfLtrrg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"JlhfLtrrg\",layoutId:\"JlhfLtrrg\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tjmr2u\",\"data-framer-name\":\"Brands\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u1glc1\",\"data-framer-name\":\"Frame 171\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:59,pixelWidth:300,src:\"https://framerusercontent.com/images/WmMWjpImUeT1TAi0lKnVYGlgZQ.png\"},className:\"framer-ffl8vn\",\"data-framer-name\":\"image 3\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15fzikr\",\"data-framer-name\":\"Frame 167\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:960,pixelWidth:1498,positionX:\"center\",positionY:\"center\",sizes:\"80.5px\",src:\"https://framerusercontent.com/images/tRdfBHcp4vHAjPfrUUARUVgKv5w.svg\",srcSet:\"https://framerusercontent.com/images/tRdfBHcp4vHAjPfrUUARUVgKv5w.svg?scale-down-to=512 512w,https://framerusercontent.com/images/tRdfBHcp4vHAjPfrUUARUVgKv5w.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tRdfBHcp4vHAjPfrUUARUVgKv5w.svg 1498w\"},className:\"framer-1uywzpk\",\"data-framer-name\":\"image 5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gbjpss\",\"data-framer-name\":\"Frame 166\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:89,pixelWidth:300,src:\"https://framerusercontent.com/images/fSjbLRDh7LSwTPjiX5xw2eqWX4.png\"},className:\"framer-62gnsr\",\"data-framer-name\":\"image 5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uhmtpc\",\"data-framer-name\":\"Frame 169\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:71,pixelWidth:300,src:\"https://framerusercontent.com/images/m8leMluLkVH3uAEqYKlO66O0U.png\"},className:\"framer-1ftyott\",\"data-framer-name\":\"image 2\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1disl9d\",\"data-framer-name\":\"Frame 170\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:140,pixelWidth:580,positionX:\"center\",positionY:\"center\",sizes:\"145px\",src:\"https://framerusercontent.com/images/XlgYhBR068KW3ilBASy6zz5RFs.png\",srcSet:\"https://framerusercontent.com/images/XlgYhBR068KW3ilBASy6zz5RFs.png?scale-down-to=512 512w,https://framerusercontent.com/images/XlgYhBR068KW3ilBASy6zz5RFs.png 580w\"},className:\"framer-1t0aiut\",\"data-framer-name\":\"image 8\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1icod3x\",\"data-framer-name\":\"Frame 172\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:263,pixelWidth:500,src:\"https://framerusercontent.com/images/dPmoz1twahYX7b7bCixVEoYzEow.png\"},className:\"framer-1uw36z9\",\"data-framer-name\":\"image 10\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7rd6ek\",\"data-framer-name\":\"Frame 173\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:196,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VE7KSjjx2wQz2zlnEiw9ccFKG6A.png\"},className:\"framer-jeyl7e\",\"data-framer-name\":\"image 12\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fmwwsb\",\"data-framer-name\":\"Frame 174\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:100,pixelWidth:636,positionX:\"center\",positionY:\"center\",sizes:\"190.8px\",src:\"https://framerusercontent.com/images/5yrTMk8GMz0nxuppE7H7KJZAac.png\",srcSet:\"https://framerusercontent.com/images/5yrTMk8GMz0nxuppE7H7KJZAac.png?scale-down-to=512 512w,https://framerusercontent.com/images/5yrTMk8GMz0nxuppE7H7KJZAac.png 636w\"},className:\"framer-athjxe\",\"data-framer-name\":\"image 11\"})})]})],speed:100,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16igcqr\",\"data-framer-name\":\"Value Proposition\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x2koce\",\"data-framer-name\":\"Title Div\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-42hpow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1k9evzc\",\"data-styles-preset\":\"O0STkwMAO\",children:\"What we do\"})}),className:\"framer-7sgby4\",\"data-framer-name\":\"Heading 2 \u2192 Work\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1212px)`,y:(componentViewport?.y||0)+0+0+0+1307.7+64+0+0+52.8},Kmj1Ibl2T:{width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1212px)`,y:(componentViewport?.y||0)+0+118+0+1313.5+64+0+0+52.8},ScGOo9OuP:{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1212px)`,y:(componentViewport?.y||0)+0+118+0+1586.5+72+0+0+52.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`min(${componentViewport?.width||\"100vw\"} - 240px, 1212px)`,y:(componentViewport?.y||0)+0+118+0+1718+72+0+0+52.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ewafxe-container\",nodeId:\"TWrkwoTbA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LineWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"tueqJpfBG\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"AVZbu4DhR\",height:\"100%\",id:\"TWrkwoTbA\",IpK4cWZ6S:\"var(--token-4b465d4b-ef64-4cda-bd46-ca91a6552b2e, rgb(27, 28, 30))\",layoutId:\"TWrkwoTbA\",style:{width:\"100%\"},variant:\"AVZbu4DhR\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ogk2bi\",\"data-framer-name\":\"Div Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qn9ezc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1307.7+64+97.8+0+0+0+0),pixelHeight:4500,pixelWidth:4500,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png\",srcSet:\"https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png 4500w\"}},Kmj1Ibl2T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+1313.5+64+97.8+0+0+14.15),pixelHeight:4500,pixelWidth:4500,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png\",srcSet:\"https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png 4500w\"}},ScGOo9OuP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+1586.5+72+97.8+0+0+14.15),pixelHeight:4500,pixelWidth:4500,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png\",srcSet:\"https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png 4500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+1718+72+97.8+0+0+14.15),pixelHeight:4500,pixelWidth:4500,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png\",srcSet:\"https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/8Z2J0Vk0KsttkMG5ZGDP04sGGM.png 4500w\"},className:\"framer-143mx2p\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ljiqok\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t4lb8q\",\"data-border\":true,\"data-framer-name\":\"Frame 170\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p2jfz\",\"data-styles-preset\":\"q_8lYVhNN\",style:{\"--framer-text-color\":\"var(--token-0aa261ae-783c-4124-8ec2-29d77feed7cc, rgb(0, 0, 0))\"},children:\"Launch better\"})}),className:\"framer-cm537y\",\"data-framer-name\":\"Heading 3 \u2192 Fast\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xow5lz\",\"data-styles-preset\":\"l9nD3UIIZ\",children:\"Incubation & Acceleration\"})}),className:\"framer-njqv29\",\"data-framer-name\":\"Heading\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1difx6z\",\"data-styles-preset\":\"dy22Rq8uY\",children:\"We design and run programs that help early-stage teams validate ideas, build momentum, and grow within the ecosystems they serve. From founder support to curriculum and ops, we provide the backbone for impactful acceleration.\"})}),className:\"framer-e5380l\",\"data-framer-name\":\"Text\",effect:textEffect2,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14pzh5m\",\"data-framer-name\":\"Actions\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"p7LI2eRKk\"},implicitPathVariables:undefined},{href:{webPageId:\"p7LI2eRKk\"},implicitPathVariables:undefined},{href:{webPageId:\"p7LI2eRKk\"},implicitPathVariables:undefined},{href:{webPageId:\"p7LI2eRKk\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{y:(componentViewport?.y||0)+0+0+0+1307.7+64+97.8+0+0+0+347.5+0+272.8+16},Kmj1Ibl2T:{y:(componentViewport?.y||0)+0+118+0+1313.5+64+97.8+0+0+0+0+272.8+16},ScGOo9OuP:{y:(componentViewport?.y||0)+0+118+0+1586.5+72+97.8+0+0+0+0+272.8+16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+118+0+1718+72+97.8+0+0+0+0+272.8+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xxu1cp-container\",nodeId:\"XwX4KnhHU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{DhTDBSbjx:resolvedLinks[2]},Kmj1Ibl2T:{DhTDBSbjx:resolvedLinks[1]},ScGOo9OuP:{DhTDBSbjx:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{DhTDBSbjx:resolvedLinks[0],height:\"100%\",id:\"XwX4KnhHU\",Ii0Hg8vpW:\"var(--token-0aa261ae-783c-4124-8ec2-29d77feed7cc, rgb(0, 0, 0))\",layoutId:\"XwX4KnhHU\",q5a8HjWzY:\"Learn more\",variant:\"maIGQLxDv\",width:\"100%\"})})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1212px)`,y:(componentViewport?.y||0)+0+0+0+1307.7+64+97.8+0+715.3},Kmj1Ibl2T:{width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1212px)`,y:(componentViewport?.y||0)+0+118+0+1313.5+64+97.8+0+367.8},ScGOo9OuP:{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1212px)`,y:(componentViewport?.y||0)+0+118+0+1586.5+72+97.8+0+387.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`min(${componentViewport?.width||\"100vw\"} - 240px, 1212px)`,y:(componentViewport?.y||0)+0+118+0+1718+72+97.8+0+387.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nirxqd-container\",nodeId:\"z1dri8di9\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LineWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"tueqJpfBG\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"AVZbu4DhR\",height:\"100%\",id:\"z1dri8di9\",IpK4cWZ6S:\"var(--token-4b465d4b-ef64-4cda-bd46-ca91a6552b2e, rgb(27, 28, 30))\",layoutId:\"z1dri8di9\",style:{width:\"100%\"},variant:\"AVZbu4DhR\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5fmeqq\",\"data-framer-name\":\"Div Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g9dxwd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1307.7+64+858.1+0+0+0+0),pixelHeight:2250,pixelWidth:2250,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png\",srcSet:\"https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png 2250w\"}},Kmj1Ibl2T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+1313.5+64+510.6+0+0+19.4),pixelHeight:2250,pixelWidth:2250,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png\",srcSet:\"https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png 2250w\"}},ScGOo9OuP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+1586.5+72+530.6+0+0+19.4),pixelHeight:2250,pixelWidth:2250,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png\",srcSet:\"https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png 2250w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+1718+72+530.6+0+0+19.4),pixelHeight:2250,pixelWidth:2250,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png\",srcSet:\"https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Kfxq5SvZrdbhQa1eGeTRCqEU.png 2250w\"},className:\"framer-1xblk8z\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sgcafh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16q53nq\",\"data-border\":true,\"data-framer-name\":\"Frame 170\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p2jfz\",\"data-styles-preset\":\"q_8lYVhNN\",style:{\"--framer-text-color\":\"var(--token-0aa261ae-783c-4124-8ec2-29d77feed7cc, rgb(0, 0, 0))\"},children:\"Fuel the right ideas\"})}),className:\"framer-pmnk5o\",\"data-framer-name\":\"Heading 3 \u2192 Fast\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xow5lz\",\"data-styles-preset\":\"l9nD3UIIZ\",children:\"Grants & Financing Operations\"})}),className:\"framer-148r36u\",\"data-framer-name\":\"Heading\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1difx6z\",\"data-styles-preset\":\"dy22Rq8uY\",children:\"We help innovation ecosystems deploy capital intentionally\u2014through grant frameworks, deal flow support, and treasury ops. Our work enables funders to empower builders without losing clarity or control.\"})}),className:\"framer-1iqb7ga\",\"data-framer-name\":\"Text\",effect:textEffect2,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gid8hx\",\"data-framer-name\":\"Actions\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DPPNiFY_3\"},implicitPathVariables:undefined},{href:{webPageId:\"DPPNiFY_3\"},implicitPathVariables:undefined},{href:{webPageId:\"DPPNiFY_3\"},implicitPathVariables:undefined},{href:{webPageId:\"DPPNiFY_3\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{y:(componentViewport?.y||0)+0+0+0+1307.7+64+858.1+0+0+0+337+0+272.8+16},Kmj1Ibl2T:{y:(componentViewport?.y||0)+0+118+0+1313.5+64+510.6+0+0+0+0+272.8+16},ScGOo9OuP:{y:(componentViewport?.y||0)+0+118+0+1586.5+72+530.6+0+0+0+0+272.8+16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+118+0+1718+72+530.6+0+0+0+0+272.8+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w58b6l-container\",nodeId:\"NU1C5Q1Mn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{DhTDBSbjx:resolvedLinks1[2]},Kmj1Ibl2T:{DhTDBSbjx:resolvedLinks1[1]},ScGOo9OuP:{DhTDBSbjx:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Button,{DhTDBSbjx:resolvedLinks1[0],height:\"100%\",id:\"NU1C5Q1Mn\",Ii0Hg8vpW:\"var(--token-0aa261ae-783c-4124-8ec2-29d77feed7cc, rgb(0, 0, 0))\",layoutId:\"NU1C5Q1Mn\",q5a8HjWzY:\"Learn more\",variant:\"maIGQLxDv\",width:\"100%\"})})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1212px)`,y:(componentViewport?.y||0)+0+0+0+1307.7+64+858.1+0+704.8},Kmj1Ibl2T:{width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1212px)`,y:(componentViewport?.y||0)+0+118+0+1313.5+64+510.6+0+367.8},ScGOo9OuP:{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1212px)`,y:(componentViewport?.y||0)+0+118+0+1586.5+72+530.6+0+373.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`min(${componentViewport?.width||\"100vw\"} - 240px, 1212px)`,y:(componentViewport?.y||0)+0+118+0+1718+72+530.6+0+373.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a2w23w-container\",nodeId:\"jGhinqzh2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LineWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"tueqJpfBG\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"AVZbu4DhR\",height:\"100%\",id:\"jGhinqzh2\",IpK4cWZ6S:\"var(--token-4b465d4b-ef64-4cda-bd46-ca91a6552b2e, rgb(27, 28, 30))\",layoutId:\"jGhinqzh2\",style:{width:\"100%\"},variant:\"AVZbu4DhR\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12wm9pe\",\"data-framer-name\":\"Div Block\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gwn4y3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1307.7+64+1607.9+0+0+0+0),pixelHeight:2250,pixelWidth:2250,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png\",srcSet:\"https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png 2250w\"}},Kmj1Ibl2T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+1313.5+64+923.4+0+0+19.15),pixelHeight:2250,pixelWidth:2250,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png\",srcSet:\"https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png 2250w\"}},ScGOo9OuP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+1586.5+72+949.4+0+0+19.15),pixelHeight:2250,pixelWidth:2250,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png\",srcSet:\"https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png 2250w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+1718+72+949.4+0+0+19.15),pixelHeight:2250,pixelWidth:2250,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png\",srcSet:\"https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/B5moDmS0K2iW8D6UCSUwK6bP2xQ.png 2250w\"},className:\"framer-1ti904a\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tf2o0s\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i2pd88\",\"data-border\":true,\"data-framer-name\":\"Frame 170\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p2jfz\",\"data-styles-preset\":\"q_8lYVhNN\",style:{\"--framer-text-color\":\"var(--token-0aa261ae-783c-4124-8ec2-29d77feed7cc, rgb(0, 0, 0))\"},children:\"Scale with intention\"})}),className:\"framer-125ja7g\",\"data-framer-name\":\"Heading 3 \u2192 Fast\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xow5lz\",\"data-styles-preset\":\"l9nD3UIIZ\",children:\"Organizational Training & Consulting\"})}),className:\"framer-jtvtf2\",\"data-framer-name\":\"Heading\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1difx6z\",\"data-styles-preset\":\"dy22Rq8uY\",children:\"As organizations mature, we support them with leadership development, governance design, and operating models that match their mission. Our consulting helps founders become better stewards, and teams become resilient builders.\"})}),className:\"framer-1nqujwr\",\"data-framer-name\":\"Text\",effect:textEffect2,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x3m9qt\",\"data-framer-name\":\"Actions\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SwYob1tyN\"},implicitPathVariables:undefined},{href:{webPageId:\"SwYob1tyN\"},implicitPathVariables:undefined},{href:{webPageId:\"SwYob1tyN\"},implicitPathVariables:undefined},{href:{webPageId:\"SwYob1tyN\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{y:(componentViewport?.y||0)+0+0+0+1307.7+64+1607.9+0+0+0+337.5+0+272.8+16},Kmj1Ibl2T:{y:(componentViewport?.y||0)+0+118+0+1313.5+64+923.4+0+0+0+0+272.8+16},ScGOo9OuP:{y:(componentViewport?.y||0)+0+118+0+1586.5+72+949.4+0+0+0+0+272.8+16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+118+0+1718+72+949.4+0+0+0+0+272.8+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-122lfr5-container\",nodeId:\"TtGmTalyL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{DhTDBSbjx:resolvedLinks2[2]},Kmj1Ibl2T:{DhTDBSbjx:resolvedLinks2[1]},ScGOo9OuP:{DhTDBSbjx:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Button,{DhTDBSbjx:resolvedLinks2[0],height:\"100%\",id:\"TtGmTalyL\",Ii0Hg8vpW:\"var(--token-0aa261ae-783c-4124-8ec2-29d77feed7cc, rgb(0, 0, 0))\",layoutId:\"TtGmTalyL\",q5a8HjWzY:\"Learn more\",variant:\"maIGQLxDv\",width:\"100%\"})})})})})})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c3qxoa\",\"data-framer-name\":\"Communities\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1043ul7\",\"data-framer-name\":\"Title div\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xow5lz\",\"data-styles-preset\":\"l9nD3UIIZ\",style:{\"--framer-text-color\":\"var(--token-1a98f461-cdf3-4fea-8f1b-d12a8b768432, rgb(255, 255, 255))\"},children:\"We work across the innovation lifecycle\u2014helping organizations and ecosystems go from idea to impact with the right scaffolding at each stage. Whether you're launching a new initiative, deploying capital, or scaling a team, we bring structure, strategy, and support.\"})}),className:\"framer-1m85rnu\",\"data-framer-name\":\"Image Gallery\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6uaanb\",\"data-styles-preset\":\"UCX_zWspv\",style:{\"--framer-text-color\":\"var(--token-1a98f461-cdf3-4fea-8f1b-d12a8b768432, rgb(255, 255, 255))\"},children:\"Learn more about the ecosystems we foster in SEA and globally.\"})}),className:\"framer-wqmcv3\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",effect:textEffect2,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d3xdon-container hidden-8zlqdj\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UvGJVqGl1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CarouselWithAlwaysShowArrowsd3xdon,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-ac39d63c-ca78-4e62-b963-55967140641d, rgb(235, 234, 232))\",arrowPadding:20,arrowRadius:0,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/i8XSTR6gIUkXQHehvyJzM4Ke58.png\",rightArrow:\"https://framerusercontent.com/images/lGUIFmW1AOJW4dBEAf1LE3SFY.png\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:20,height:\"100%\",id:\"UvGJVqGl1\",layoutId:\"UvGJVqGl1\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:402,width:\"534px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hv7ov2-container\",\"data-framer-name\":\"Community Card 1\",inComponentSlot:true,name:\"Community Card 1\",nodeId:\"tf9PwHLrU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CommunityCard,{height:\"100%\",id:\"tf9PwHLrU\",layoutId:\"tf9PwHLrU\",name:\"Community Card 1\",pOpwklBF_:\"https://ocx.opencampus.xyz/\",PYdRLwjCJ:addImageAlt({pixelHeight:669,pixelWidth:1068,src:\"https://framerusercontent.com/images/C2oGyd0SmbbNpMs5TKd701KDS8.png\",srcSet:\"https://framerusercontent.com/images/C2oGyd0SmbbNpMs5TKd701KDS8.png?scale-down-to=512 512w,https://framerusercontent.com/images/C2oGyd0SmbbNpMs5TKd701KDS8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C2oGyd0SmbbNpMs5TKd701KDS8.png 1068w\"},\"\"),style:{width:\"100%\"},uGvtv7phT:\"Open Campus Accelerator (OC-X)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SwsqaWVuA\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:402,width:\"534px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ryypnj-container\",\"data-framer-name\":\"Community Card 2\",inComponentSlot:true,name:\"Community Card 2\",nodeId:\"Oksk9ztVg\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CommunityCard,{height:\"100%\",id:\"Oksk9ztVg\",layoutId:\"Oksk9ztVg\",name:\"Community Card 2\",pOpwklBF_:resolvedLinks3[0],PYdRLwjCJ:addImageAlt({pixelHeight:669,pixelWidth:1068,src:\"https://framerusercontent.com/images/NUgXj3fJ4e3HkrCgzaqd0vlKPg.png\",srcSet:\"https://framerusercontent.com/images/NUgXj3fJ4e3HkrCgzaqd0vlKPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/NUgXj3fJ4e3HkrCgzaqd0vlKPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NUgXj3fJ4e3HkrCgzaqd0vlKPg.png 1068w\"},\"\"),style:{width:\"100%\"},uGvtv7phT:\"seachange HR\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:402,width:\"534px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-130t590-container\",\"data-framer-name\":\"Community Card 3\",inComponentSlot:true,name:\"Community Card 3\",nodeId:\"AuZyRuyyG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CommunityCard,{height:\"100%\",id:\"AuZyRuyyG\",layoutId:\"AuZyRuyyG\",name:\"Community Card 3\",PYdRLwjCJ:addImageAlt({pixelHeight:669,pixelWidth:1068,src:\"https://framerusercontent.com/images/vrFhJvf63n7pwPW9rdeKtvi0mvQ.png\",srcSet:\"https://framerusercontent.com/images/vrFhJvf63n7pwPW9rdeKtvi0mvQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/vrFhJvf63n7pwPW9rdeKtvi0mvQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vrFhJvf63n7pwPW9rdeKtvi0mvQ.png 1068w\"},\"\"),style:{width:\"100%\"},uGvtv7phT:\"seachange Web3\",width:\"100%\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11dhqs4-container hidden-72rtr7 hidden-1e916c0 hidden-1wa1mt2\",isModuleExternal:true,nodeId:\"rP57wkSDf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{arrowOptions:{arrowFill:\"rgba(255, 255, 255, 0)\",arrowGap:8,arrowPadding:-8,arrowPaddingBottom:-60,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/EHxCbaaiyIVNtEBogyrIqhHZxis.svg\",rightArrow:\"https://framerusercontent.com/images/rcopb8qLXzFPoSRRcUVDqLhxFQE.svg\",showMouseControls:true}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(255, 255, 255, 0)\",arrowGap:8,arrowPadding:20,arrowPaddingBottom:-60,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/EHxCbaaiyIVNtEBogyrIqhHZxis.svg\",rightArrow:\"https://framerusercontent.com/images/rcopb8qLXzFPoSRRcUVDqLhxFQE.svg\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"rP57wkSDf\",intervalControl:3,itemAmount:1,layoutId:\"rP57wkSDf\",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:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:402,width:\"534px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hv7ov2-container\",\"data-framer-name\":\"Community Card 1\",inComponentSlot:true,name:\"Community Card 1\",nodeId:\"tf9PwHLrU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CommunityCard,{height:\"100%\",id:\"tf9PwHLrU\",layoutId:\"tf9PwHLrU\",name:\"Community Card 1\",pOpwklBF_:\"https://ocx.opencampus.xyz/\",PYdRLwjCJ:addImageAlt({pixelHeight:669,pixelWidth:1068,src:\"https://framerusercontent.com/images/C2oGyd0SmbbNpMs5TKd701KDS8.png\",srcSet:\"https://framerusercontent.com/images/C2oGyd0SmbbNpMs5TKd701KDS8.png?scale-down-to=512 512w,https://framerusercontent.com/images/C2oGyd0SmbbNpMs5TKd701KDS8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C2oGyd0SmbbNpMs5TKd701KDS8.png 1068w\"},\"\"),style:{width:\"100%\"},uGvtv7phT:\"Open Campus Accelerator (OC-X)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SwsqaWVuA\"},implicitPathVariables:undefined},{href:{webPageId:\"SwsqaWVuA\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:402,width:\"534px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ryypnj-container\",\"data-framer-name\":\"Community Card 2\",inComponentSlot:true,name:\"Community Card 2\",nodeId:\"Oksk9ztVg\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CommunityCard,{height:\"100%\",id:\"Oksk9ztVg\",layoutId:\"Oksk9ztVg\",name:\"Community Card 2\",pOpwklBF_:resolvedLinks3[1],PYdRLwjCJ:addImageAlt({pixelHeight:669,pixelWidth:1068,src:\"https://framerusercontent.com/images/NUgXj3fJ4e3HkrCgzaqd0vlKPg.png\",srcSet:\"https://framerusercontent.com/images/NUgXj3fJ4e3HkrCgzaqd0vlKPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/NUgXj3fJ4e3HkrCgzaqd0vlKPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NUgXj3fJ4e3HkrCgzaqd0vlKPg.png 1068w\"},\"\"),style:{width:\"100%\"},uGvtv7phT:\"seachange HR\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:402,width:\"534px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-130t590-container\",\"data-framer-name\":\"Community Card 3\",inComponentSlot:true,name:\"Community Card 3\",nodeId:\"AuZyRuyyG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CommunityCard,{height:\"100%\",id:\"AuZyRuyyG\",layoutId:\"AuZyRuyyG\",name:\"Community Card 3\",PYdRLwjCJ:addImageAlt({pixelHeight:669,pixelWidth:1068,src:\"https://framerusercontent.com/images/vrFhJvf63n7pwPW9rdeKtvi0mvQ.png\",srcSet:\"https://framerusercontent.com/images/vrFhJvf63n7pwPW9rdeKtvi0mvQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/vrFhJvf63n7pwPW9rdeKtvi0mvQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vrFhJvf63n7pwPW9rdeKtvi0mvQ.png 1068w\"},\"\"),style:{width:\"100%\"},uGvtv7phT:\"seachange Web3\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:80,delay:0,mass:1,stiffness:300,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ejigya\",\"data-framer-name\":\"Testimonial\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17bywot\",\"data-framer-name\":\"Frame 258\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4485.1+64+0+0+308.2),pixelHeight:541,pixelWidth:600,positionX:\"right\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1212px)`,src:\"https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif\",srcSet:\"https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif?scale-down-to=512 512w,https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif 600w\"}},Kmj1Ibl2T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+3327.9+64+0+0),pixelHeight:541,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"253px\",src:\"https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif\",srcSet:\"https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif?scale-down-to=512 512w,https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif 600w\"}},ScGOo9OuP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+3631.7+72+0+0),pixelHeight:541,pixelWidth:600,positionX:\"right\",positionY:\"center\",sizes:\"410px\",src:\"https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif\",srcSet:\"https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif?scale-down-to=512 512w,https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+3763.2+72+0+0),pixelHeight:541,pixelWidth:600,positionX:\"right\",positionY:\"center\",sizes:\"410px\",src:\"https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif\",srcSet:\"https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif?scale-down-to=512 512w,https://framerusercontent.com/images/0gDgR5AcPr4ANKSPKKM338FZJw.gif 600w\"},className:\"framer-5q1d4u\",\"data-framer-name\":\"Rectangle 454\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hem5ci\",\"data-framer-name\":\"Frame 257\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fxvrym\",\"data-framer-name\":\"Content-Wrapper\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1sm0hhr\",\"data-framer-name\":\"\u201C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 41\"><path d=\"M 2.374 29.962 C 2.125 28.714 2 27.362 2 25.905 C 2 23.118 2.479 20.205 3.436 17.168 C 4.393 14.13 5.911 11.342 7.992 8.804 C 10.072 6.225 12.818 4.331 16.23 3.125 C 16.563 2.958 16.938 2.875 17.354 2.875 C 17.728 2.875 18.082 3 18.415 3.249 C 18.748 3.499 18.914 4.019 18.914 4.81 L 18.914 8.243 C 16.917 9.449 15.107 11.238 13.484 13.61 C 11.903 15.982 11.112 18.541 11.112 21.287 C 11.196 21.204 11.445 21.162 11.861 21.162 C 14.566 21.162 16.75 22.015 18.415 23.721 C 20.079 25.385 20.911 27.466 20.911 29.962 C 20.911 32.334 20.079 34.352 18.415 36.017 C 16.75 37.681 14.566 38.513 11.861 38.513 C 9.115 38.513 6.951 37.681 5.37 36.017 C 3.831 34.352 2.832 32.334 2.374 29.962 Z M 28.463 29.962 C 28.214 28.714 28.089 27.362 28.089 25.905 C 28.089 23.118 28.567 20.205 29.524 17.168 C 30.481 14.13 32 11.342 34.08 8.804 C 36.161 6.225 38.886 4.331 42.257 3.125 C 42.673 2.958 43.068 2.875 43.442 2.875 C 43.817 2.875 44.15 3 44.441 3.249 C 44.774 3.499 44.94 4.019 44.94 4.81 L 44.94 8.243 C 42.985 9.449 41.196 11.238 39.573 13.61 C 37.992 15.982 37.201 18.541 37.201 21.287 C 37.284 21.204 37.534 21.162 37.95 21.162 C 40.655 21.162 42.839 22.015 44.504 23.721 C 46.168 25.385 47 27.466 47 29.962 C 47 32.334 46.168 34.352 44.504 36.017 C 42.839 37.681 40.655 38.513 37.95 38.513 C 35.204 38.513 33.04 37.681 31.459 36.017 C 29.92 34.352 28.921 32.334 28.463 29.962 Z\" fill=\"var(--token-0aa261ae-783c-4124-8ec2-29d77feed7cc, rgb(0, 0, 0))\"></path></svg>',svgContentId:12733120385,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xow5lz\",\"data-styles-preset\":\"l9nD3UIIZ\",children:\"NC created this amazing vibe where everyone felt like, \u2018Yes, we\u2019re here to collaborate, we\u2019re here to engage, and we\u2019re learning together.\u2019 The sessions were interactive, with models and takeaways that were practical and easy to implement right away.\"})}),className:\"framer-4hjtep\",\"data-framer-name\":\"NewCampus training programs have been a game-changer for me. Our managers feel more confident, and our teams are more aligned than ever.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1utyvvx\",\"data-framer-name\":\"Text-Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-6uaanb\",\"data-styles-preset\":\"UCX_zWspv\",children:[\"LIZ\",/*#__PURE__*/_jsx(\"br\",{}),\"Carousell Group\"]})}),className:\"framer-1lgpen0\",\"data-framer-name\":\"Jenny Wilson, CEO - Startup Co.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-136hiu6\",\"data-framer-name\":\"CTA Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z0vg0y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qy6jgq\",\"data-framer-name\":\"Content-Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xow5lz\",\"data-styles-preset\":\"l9nD3UIIZ\",children:\"Whether you\u2019re funding ideas, growing ecosystems, or upskilling teams\u2014we\u2019re your strategic partner.\"})}),className:\"framer-1faalwb\",\"data-framer-name\":\"The world is changing, and so are businesses, communities and education. NewCampus is your future-ready growth partner that helps you evolve, so you can thrive.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{y:(componentViewport?.y||0)+0+0+0+5301.3+64+0+0+0+0+83.2},Kmj1Ibl2T:{y:(componentViewport?.y||0)+0+118+0+3704.9+64+0+71.9+0+83.2},ScGOo9OuP:{y:(componentViewport?.y||0)+0+118+0+4269.2214+112+127.4+0+83.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+118+0+4400.7214+112+127.4+0+83.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bdq9m7-container\",nodeId:\"pGakRSkYE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{DhTDBSbjx:\"https://airtable.com/appkDXWhWWWKgh1Hu/pagI3FoHBUKCVqTJJ/form\",height:\"100%\",id:\"pGakRSkYE\",Ii0Hg8vpW:\"var(--token-0aa261ae-783c-4124-8ec2-29d77feed7cc, rgb(0, 0, 0))\",layoutId:\"pGakRSkYE\",q5a8HjWzY:\"Work with us\",variant:\"COFnSz84H\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5301.3+64+0+0+178.2),pixelHeight:2214,pixelWidth:2180,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1212px)`,src:\"https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png\",srcSet:\"https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png?scale-down-to=1024 1008w,https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png?scale-down-to=2048 2016w,https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png 2180w\"}},Kmj1Ibl2T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+3704.9+64+0+0),pixelHeight:2214,pixelWidth:2180,positionX:\"center\",positionY:\"center\",sizes:\"268px\",src:\"https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png\",srcSet:\"https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png?scale-down-to=1024 1008w,https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png?scale-down-to=2048 2016w,https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png 2180w\"}},ScGOo9OuP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+4269.2214+112+0),pixelHeight:2214,pixelWidth:2180,positionX:\"center\",positionY:\"center\",sizes:\"375px\",src:\"https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png\",srcSet:\"https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png?scale-down-to=1024 1008w,https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png?scale-down-to=2048 2016w,https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png 2180w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+118+0+4400.7214+112+0),pixelHeight:2214,pixelWidth:2180,positionX:\"center\",positionY:\"center\",sizes:\"375px\",src:\"https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png\",srcSet:\"https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png?scale-down-to=1024 1008w,https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png?scale-down-to=2048 2016w,https://framerusercontent.com/images/45DKu3TkgppM8bCXCZ5FpBD5s.png 2180w\"},className:\"framer-u7yw0e\",\"data-framer-name\":\"image 1\"})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-251v3l\",\"data-framer-name\":\"section_news\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nvfpt1\",\"data-framer-name\":\"container-mw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j81pml\",\"data-framer-name\":\"heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xow5lz\",\"data-styles-preset\":\"l9nD3UIIZ\",children:\"Latest news\"})}),className:\"framer-1k9bedy\",\"data-framer-name\":\"We design, build and run collaborative spaces where climate-science, technology and people can thrive.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{y:(componentViewport?.y||0)+0+0+0+6000.5+40+0+0+0+0+67.2},Kmj1Ibl2T:{y:(componentViewport?.y||0)+0+118+0+4114.9+64+0+0+0+0+0},ScGOo9OuP:{y:(componentViewport?.y||0)+0+118+0+4886.2214+80+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+118+0+5017.7214+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3q8h7i-container\",nodeId:\"ZoX9RYSO7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{DhTDBSbjx:\"https://www.newcampus.com/blog\",height:\"100%\",id:\"ZoX9RYSO7\",Ii0Hg8vpW:\"var(--token-0aa261ae-783c-4124-8ec2-29d77feed7cc, rgb(0, 0, 0))\",layoutId:\"ZoX9RYSO7\",q5a8HjWzY:\"See all News\",variant:\"k853NgiwV\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o2vwen\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{query:{from:{alias:\"ecQuy80s1\",data:BlogArticles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"ecQuy80s1\",direction:\"desc\",name:\"HCqMCYAHx\",type:\"Identifier\"}],select:[{collection:\"ecQuy80s1\",name:\"VuCbZCKYv\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"J7LgCrRiZ\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"o5BRFzarl\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"HCqMCYAHx\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"id\",type:\"Identifier\"}]}},Kmj1Ibl2T:{query:{from:{alias:\"ecQuy80s1\",data:BlogArticles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"ecQuy80s1\",direction:\"desc\",name:\"HCqMCYAHx\",type:\"Identifier\"}],select:[{collection:\"ecQuy80s1\",name:\"VuCbZCKYv\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"J7LgCrRiZ\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"o5BRFzarl\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"HCqMCYAHx\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ecQuy80s1\",data:BlogArticles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},orderBy:[{collection:\"ecQuy80s1\",direction:\"desc\",name:\"HCqMCYAHx\",type:\"Identifier\"}],select:[{collection:\"ecQuy80s1\",name:\"VuCbZCKYv\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"J7LgCrRiZ\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"o5BRFzarl\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"HCqMCYAHx\",type:\"Identifier\"},{collection:\"ecQuy80s1\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({HCqMCYAHx:HCqMCYAHxecQuy80s1,id:idecQuy80s1,J7LgCrRiZ:J7LgCrRiZecQuy80s1,o5BRFzarl:o5BRFzarlecQuy80s1,VuCbZCKYv:VuCbZCKYvecQuy80s1},index)=>{VuCbZCKYvecQuy80s1??=\"\";o5BRFzarlecQuy80s1??=\"\";const textContent=enumToDisplayNameFunctions[\"J7LgCrRiZ\"]?.(J7LgCrRiZecQuy80s1,activeLocale);const textContent1=toDateString(HCqMCYAHxecQuy80s1,activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`ecQuy80s1-${idecQuy80s1}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{VuCbZCKYv:VuCbZCKYvecQuy80s1},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{VuCbZCKYv:VuCbZCKYvecQuy80s1},webPageId:\"D5HLVJE54\"},motionChild:true,nodeId:\"H9nc1W67Z\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1t8mj6c framer-lux5qc\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p2jfz\",\"data-styles-preset\":\"q_8lYVhNN\",children:\"Onchain\"})}),className:\"framer-u107n0\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5hltxa\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1qeuvao\",\"data-styles-preset\":\"BkipWreRM\",children:\"A Call for Thoughtful Decentralised Collaboration\"})}),className:\"framer-y1jtog\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:o5BRFzarlecQuy80s1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p2jfz\",\"data-styles-preset\":\"q_8lYVhNN\",children:\"Apr 22, 2025\"})}),className:\"framer-z48h0m\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idecQuy80s1);})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{y:(componentViewport?.y||0)+0+0+0+6576.7},Kmj1Ibl2T:{y:(componentViewport?.y||0)+0+118+0+4711.9},ScGOo9OuP:{y:(componentViewport?.y||0)+0+118+0+5515.2214}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:665,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+118+0+5646.7214,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7oq4e3-container\",nodeId:\"m0AGAQzAe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AxKd5Q6tO:{variant:\"bBi1OQocM\"},Kmj1Ibl2T:{variant:\"l9WUFwe4F\"},ScGOo9OuP:{variant:\"bqUrYIRkG\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"m0AGAQzAe\",layoutId:\"m0AGAQzAe\",style:{width:\"100%\"},variant:\"XTeDHuTcX\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2sbd3e-container\",layoutScroll:true,nodeId:\"ykP02bZ60\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ColorChangeWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"RApjht457\"},{ref:ref2,target:\"KOIsSaRYv\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"ykP02bZ60\",KkG1VHzIa:\"var(--token-7b10a8f1-4690-4007-85f3-54ceb41860e8, rgb(227, 225, 202))\",layoutId:\"ykP02bZ60\",style:{height:\"100%\",width:\"100%\"},v2IfPGRS1:\"var(--token-64cd8b7d-34b0-4da2-8889-7b834cbd9c59, rgb(227, 226, 225))\",variant:\"i0hxpbWKw\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gQMNf.framer-lux5qc, .framer-gQMNf .framer-lux5qc { display: block; }\",\".framer-gQMNf.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-64cd8b7d-34b0-4da2-8889-7b834cbd9c59, #e3e2e1); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-gQMNf .framer-1aoew87-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-gQMNf .framer-1y027wx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-gQMNf .framer-drnhvt { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: 85vh; justify-content: center; overflow: hidden; padding: 132px 120px 72px 120px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-14rwr2m { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; max-width: 1212px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-gQMNf .framer-138a5ld, .framer-gQMNf .framer-ljiqok, .framer-gQMNf .framer-1sgcafh, .framer-gQMNf .framer-1tf2o0s { 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-gQMNf .framer-7ohuk6 { 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-gQMNf .framer-15mi5u9, .framer-gQMNf .framer-nd0rn8, .framer-gQMNf .framer-njqv29, .framer-gQMNf .framer-e5380l, .framer-gQMNf .framer-148r36u, .framer-gQMNf .framer-1iqb7ga, .framer-gQMNf .framer-jtvtf2, .framer-gQMNf .framer-1nqujwr, .framer-gQMNf .framer-4hjtep, .framer-gQMNf .framer-1faalwb { --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-gQMNf .framer-y8217v { aspect-ratio: 0.9553571428571429 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 592px); position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gQMNf .framer-x2jl6j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 72px 120px 72px 120px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-ug10uu { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1212px; overflow: visible; padding: 0px; position: relative; width: 70%; }\",\".framer-gQMNf .framer-1cgsc4r { align-content: center; align-items: center; aspect-ratio: 1.6153846153846154 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 520px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gQMNf .framer-k5nyn9-container { aspect-ratio: 1.6153846153846154 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 520px); position: relative; width: 1px; }\",\".framer-gQMNf .framer-1u5q9fe { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #91a9ed; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7.667682647705078px; height: min-content; justify-content: center; left: 52%; overflow: visible; padding: 7px 20px 7px 20px; position: absolute; top: 52px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-gQMNf .framer-143ib44, .framer-gQMNf .framer-1n9lxek, .framer-gQMNf .framer-ugds0f, .framer-gQMNf .framer-7sgby4, .framer-gQMNf .framer-cm537y, .framer-gQMNf .framer-pmnk5o, .framer-gQMNf .framer-125ja7g { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gQMNf .framer-5gr3d3 { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #91a9ed; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; bottom: 88px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7.667682647705078px; height: min-content; justify-content: center; overflow: visible; padding: 7px 20px 7px 20px; position: absolute; right: -68px; width: min-content; z-index: 1; }\",\".framer-gQMNf .framer-8lurae { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #91a9ed; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; bottom: 63px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7.667682647705078px; height: min-content; justify-content: center; left: -75px; overflow: visible; padding: 7px 20px 7px 20px; position: absolute; width: min-content; z-index: 1; }\",\".framer-gQMNf.framer-jruy0k { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 3; }\",\".framer-gQMNf.framer-zsztr8-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 70%; z-index: 3; }\",\".framer-gQMNf .framer-11p8295 { flex: none; gap: 48px; height: 10px; overflow: hidden; position: relative; width: 100%; }\",\".framer-gQMNf .framer-2kjr8s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-s54gec-container { flex: none; height: 110px; max-width: 1212px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-tjmr2u { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 106px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gQMNf .framer-1u1glc1, .framer-gQMNf .framer-15fzikr, .framer-gQMNf .framer-1gbjpss, .framer-gQMNf .framer-uhmtpc, .framer-gQMNf .framer-1disl9d, .framer-gQMNf .framer-1icod3x, .framer-gQMNf .framer-7rd6ek, .framer-gQMNf .framer-fmwwsb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 24px 44px 24px 44px; position: relative; width: min-content; }\",\".framer-gQMNf .framer-ffl8vn { aspect-ratio: 5.064516129032258 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 157px; }\",\".framer-gQMNf .framer-1uywzpk { aspect-ratio: 1.6428571428571428 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 49px); position: relative; width: 81px; }\",\".framer-gQMNf .framer-62gnsr { aspect-ratio: 3.3333333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 110px; }\",\".framer-gQMNf .framer-1ftyott { aspect-ratio: 4.1875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 134px; }\",\".framer-gQMNf .framer-1t0aiut { aspect-ratio: 4.2372879844397815 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 145px; }\",\".framer-gQMNf .framer-1uw36z9 { aspect-ratio: 1.9054054054054055 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); position: relative; width: 141px; }\",\".framer-gQMNf .framer-jeyl7e { aspect-ratio: 2.6122448979591835 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); position: relative; width: 133px; }\",\".framer-gQMNf .framer-athjxe { aspect-ratio: 6.36 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 191px; }\",\".framer-gQMNf .framer-16igcqr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; overflow: visible; padding: 72px 120px 72px 120px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-1x2koce { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1212px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-42hpow { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-ewafxe-container, .framer-gQMNf .framer-1nirxqd-container, .framer-gQMNf .framer-1a2w23w-container, .framer-gQMNf .framer-7oq4e3-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-gQMNf .framer-1ogk2bi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; max-width: 1212px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-qn9ezc, .framer-gQMNf .framer-g9dxwd, .framer-gQMNf .framer-1gwn4y3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 68px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-143mx2p, .framer-gQMNf .framer-1xblk8z, .framer-gQMNf .framer-1ti904a { aspect-ratio: 0.9502262443438914 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 316px); position: relative; width: 300px; }\",\".framer-gQMNf .framer-1t4lb8q, .framer-gQMNf .framer-16q53nq, .framer-gQMNf .framer-i2pd88 { --border-bottom-width: 1px; --border-color: #000000; --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: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 20px 8px 20px; position: relative; width: min-content; }\",\".framer-gQMNf .framer-14pzh5m, .framer-gQMNf .framer-1gid8hx, .framer-gQMNf .framer-x3m9qt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-gQMNf .framer-1xxu1cp-container, .framer-gQMNf .framer-1w58b6l-container, .framer-gQMNf .framer-122lfr5-container, .framer-gQMNf .framer-bdq9m7-container, .framer-gQMNf .framer-3q8h7i-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-gQMNf .framer-5fmeqq, .framer-gQMNf .framer-12wm9pe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1212px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-c3qxoa { align-content: center; align-items: center; background-color: var(--token-4b465d4b-ef64-4cda-bd46-ca91a6552b2e, #1b1c1e); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 112px 120px 112px 120px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-1043ul7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; max-width: 1212px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-1m85rnu, .framer-gQMNf .framer-1k9bedy { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-gQMNf .framer-wqmcv3 { --framer-paragraph-spacing: 0px; flex: 0.5 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-gQMNf .framer-d3xdon-container { flex: none; height: auto; max-width: 1212px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-1hv7ov2-container, .framer-gQMNf .framer-ryypnj-container, .framer-gQMNf .framer-130t590-container { height: auto; position: relative; width: 534px; }\",\".framer-gQMNf .framer-11dhqs4-container { flex: none; height: 425px; position: relative; width: 952px; }\",\".framer-gQMNf .framer-ejigya { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 72px 120px 64px 120px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-17bywot { 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; max-width: 1212px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-5q1d4u { align-self: stretch; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: auto; position: relative; width: 410px; }\",\".framer-gQMNf .framer-hem5ci { align-content: flex-start; align-items: flex-start; background-color: var(--token-4848b3e3-71d9-4b27-8f85-b95f6e31a2d6, #6b8de7); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-gQMNf .framer-1fxvrym { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 438px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-1sm0hhr { flex: none; height: 41px; position: relative; width: 49px; }\",\".framer-gQMNf .framer-1utyvvx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gQMNf .framer-1lgpen0 { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gQMNf .framer-136hiu6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 136px; height: min-content; justify-content: center; overflow: hidden; padding: 112px 120px 112px 120px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-z0vg0y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1212px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-gQMNf .framer-1qy6jgq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-gQMNf .framer-u7yw0e { aspect-ratio: 0.9534883720930233 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 393px); position: relative; width: 375px; }\",\".framer-gQMNf .framer-251v3l { align-content: center; align-items: center; background-color: #e3e2e1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-1nvfpt1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1212px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-1j81pml { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-o2vwen { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-1t8mj6c { 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: flex-start; padding: 16px 0px 24px 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-gQMNf .framer-u107n0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 292px; word-break: break-word; word-wrap: break-word; }\",\".framer-gQMNf .framer-5hltxa { --border-bottom-width: 1px; --border-color: var(--token-26371485-8e09-4aef-aa01-a001511e406f, rgba(0, 0, 0, 0.1)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 200px; justify-content: space-between; overflow: hidden; padding: 16px 8px 24px 0px; position: relative; width: 100%; }\",\".framer-gQMNf .framer-y1jtog, .framer-gQMNf .framer-z48h0m { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gQMNf .framer-2sbd3e-container { flex: none; height: 100vh; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-gQMNf[data-border=\"true\"]::after, .framer-gQMNf [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: 768px) and (max-width: 1023px) { .framer-gQMNf.framer-72rtr7 { width: 768px; } .framer-gQMNf .framer-drnhvt { gap: 40px; height: min-content; padding: 84px 48px 64px 48px; } .framer-gQMNf .framer-14rwr2m, .framer-gQMNf .framer-qn9ezc, .framer-gQMNf .framer-g9dxwd, .framer-gQMNf .framer-1gwn4y3 { gap: 40px; } .framer-gQMNf .framer-y8217v { flex: none; height: var(--framer-aspect-ratio-supported, 351px); width: 335px; } .framer-gQMNf .framer-x2jl6j, .framer-gQMNf .framer-16igcqr, .framer-gQMNf .framer-ejigya, .framer-gQMNf .framer-251v3l { padding: 64px 48px 64px 48px; } .framer-gQMNf .framer-ug10uu { width: 100%; } .framer-gQMNf .framer-1cgsc4r, .framer-gQMNf .framer-k5nyn9-container { height: var(--framer-aspect-ratio-supported, 416px); } .framer-gQMNf .framer-1u5q9fe { padding: 8px 20px 8px 20px; } .framer-gQMNf .framer-5gr3d3 { padding: 8px 20px 8px 20px; right: -18px; } .framer-gQMNf .framer-8lurae { left: -24px; padding: 8px 20px 8px 20px; } .framer-gQMNf.framer-zsztr8-container { width: 82%; } .framer-gQMNf .framer-2kjr8s { gap: 24px; padding: 28px 48px 20px 48px; } .framer-gQMNf .framer-1ogk2bi, .framer-gQMNf .framer-5fmeqq, .framer-gQMNf .framer-12wm9pe { gap: 24px; } .framer-gQMNf .framer-c3qxoa { padding: 64px 48px 104px 48px; } .framer-gQMNf .framer-1043ul7 { flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-gQMNf .framer-1m85rnu, .framer-gQMNf .framer-wqmcv3 { flex: none; width: 100%; } .framer-gQMNf .framer-17bywot { gap: 20px; } .framer-gQMNf .framer-5q1d4u { width: 253px; } .framer-gQMNf .framer-hem5ci { gap: 40px; justify-content: flex-start; } .framer-gQMNf .framer-1fxvrym { gap: 40px; height: min-content; justify-content: flex-start; } .framer-gQMNf .framer-136hiu6 { flex-direction: column; gap: 40px; justify-content: flex-start; padding: 64px 48px 64px 48px; } .framer-gQMNf .framer-z0vg0y { flex: none; gap: 40px; width: 100%; } .framer-gQMNf .framer-u7yw0e { height: var(--framer-aspect-ratio-supported, 281px); width: 268px; }}\",\"@media (max-width: 767px) { .framer-gQMNf.framer-72rtr7 { width: 390px; } .framer-gQMNf .framer-1aoew87-container { left: 0px; position: fixed; right: 0px; top: 0px; width: unset; z-index: 3; } .framer-gQMNf .framer-drnhvt { flex-direction: column; gap: 32px; height: min-content; justify-content: flex-start; order: 1; overflow: visible; padding: 112px 20px 64px 20px; } .framer-gQMNf .framer-14rwr2m { flex: none; flex-direction: column; gap: 24px; justify-content: flex-start; width: 100%; } .framer-gQMNf .framer-138a5ld, .framer-gQMNf .framer-ljiqok, .framer-gQMNf .framer-1sgcafh, .framer-gQMNf .framer-1tf2o0s, .framer-gQMNf .framer-1m85rnu, .framer-gQMNf .framer-wqmcv3, .framer-gQMNf .framer-1qy6jgq, .framer-gQMNf .framer-1k9bedy { flex: none; width: 100%; } .framer-gQMNf .framer-y8217v { flex: none; height: var(--framer-aspect-ratio-supported, 366px); width: 100%; } .framer-gQMNf .framer-x2jl6j { order: 2; padding: 64px 20px 64px 20px; } .framer-gQMNf .framer-ug10uu, .framer-gQMNf .framer-11dhqs4-container { width: 100%; } .framer-gQMNf .framer-1cgsc4r { aspect-ratio: 1.7241379310344827 / 1; height: var(--framer-aspect-ratio-supported, 203px); } .framer-gQMNf .framer-k5nyn9-container { height: var(--framer-aspect-ratio-supported, 217px); } .framer-gQMNf .framer-1u5q9fe { left: 50%; padding: 4px 8px 4px 8px; top: 24px; } .framer-gQMNf .framer-5gr3d3 { bottom: 32px; padding: 4px 8px 4px 8px; right: -20px; } .framer-gQMNf .framer-8lurae { bottom: 54px; left: -20px; padding: 4px 8px 4px 8px; } .framer-gQMNf .framer-ugds0f, .framer-gQMNf .framer-11p8295 { order: 0; } .framer-gQMNf.framer-jruy0k { z-index: 9; } .framer-gQMNf.framer-zsztr8-container { width: 90%; z-index: 9; } .framer-gQMNf .framer-2kjr8s { gap: 24px; order: 3; padding: 16px 20px 20px 20px; } .framer-gQMNf .framer-s54gec-container { height: 123px; } .framer-gQMNf .framer-16igcqr { order: 4; padding: 64px 20px 64px 20px; } .framer-gQMNf .framer-1ogk2bi, .framer-gQMNf .framer-5fmeqq, .framer-gQMNf .framer-12wm9pe { gap: 24px; } .framer-gQMNf .framer-qn9ezc, .framer-gQMNf .framer-g9dxwd, .framer-gQMNf .framer-1gwn4y3 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; } .framer-gQMNf .framer-c3qxoa { gap: 40px; order: 5; padding: 64px 20px 64px 20px; } .framer-gQMNf .framer-1043ul7 { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-gQMNf .framer-ejigya { order: 7; padding: 64px 20px 64px 20px; } .framer-gQMNf .framer-17bywot { flex-direction: column; } .framer-gQMNf .framer-5q1d4u { align-self: unset; height: 380px; order: 1; width: 100%; } .framer-gQMNf .framer-hem5ci { flex: none; order: 0; padding: 24px; width: 100%; } .framer-gQMNf .framer-1fxvrym { gap: 24px; height: min-content; justify-content: center; } .framer-gQMNf .framer-1utyvvx { width: 298px; } .framer-gQMNf .framer-1lgpen0 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-gQMNf .framer-136hiu6 { flex-direction: column; gap: 40px; justify-content: flex-start; order: 8; padding: 64px 20px 64px 20px; } .framer-gQMNf .framer-z0vg0y { flex: none; flex-direction: column; gap: 40px; justify-content: flex-start; width: 100%; } .framer-gQMNf .framer-u7yw0e { height: var(--framer-aspect-ratio-supported, 367px); width: 100%; } .framer-gQMNf .framer-251v3l { order: 9; padding: 40px 20px 40px 20px; } .framer-gQMNf .framer-1nvfpt1 { gap: 40px; } .framer-gQMNf .framer-1j81pml { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-gQMNf .framer-7oq4e3-container { order: 10; }}\",\"@media (min-width: 1024px) and (max-width: 1439px) { .framer-gQMNf.framer-72rtr7 { width: 1024px; } .framer-gQMNf .framer-drnhvt { padding: 132px 64px 72px 64px; } .framer-gQMNf .framer-y8217v { height: var(--framer-aspect-ratio-supported, 432px); } .framer-gQMNf .framer-x2jl6j, .framer-gQMNf .framer-16igcqr { padding: 72px 64px 72px 64px; } .framer-gQMNf .framer-1cgsc4r, .framer-gQMNf .framer-k5nyn9-container { height: var(--framer-aspect-ratio-supported, 389px); } .framer-gQMNf .framer-2kjr8s { padding: 0px 64px 0px 64px; } .framer-gQMNf .framer-c3qxoa, .framer-gQMNf .framer-136hiu6 { padding: 112px 64px 112px 64px; } .framer-gQMNf .framer-ejigya { padding: 72px 64px 64px 64px; } .framer-gQMNf .framer-251v3l { padding: 80px 64px 80px 64px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6440.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Kmj1Ibl2T\":{\"layout\":[\"fixed\",\"auto\"]},\"AxKd5Q6tO\":{\"layout\":[\"fixed\",\"auto\"]},\"ScGOo9OuP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ti0Q2kYYj\":{\"pattern\":\":ti0Q2kYYj\",\"name\":\"tgr-1\"},\"qIOLa63hP\":{\"pattern\":\":qIOLa63hP\",\"name\":\"tgr-2\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-gQMNf\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6440.5,width:1440};addFonts(FrameraugiA20Il,[{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\"}]},...NavFonts,...VideoFonts,...YouTubeFonts,...TickerFonts,...LineFonts,...ButtonFonts,...CommunityCardFonts,...CarouselFonts,...SlideshowFonts,...FooterFonts,...ColorChangeFonts,...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\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"{\\\"ti0Q2kYYj\\\":{\\\"pattern\\\":\\\":ti0Q2kYYj\\\",\\\"name\\\":\\\"tgr-1\\\"},\\\"qIOLa63hP\\\":{\\\"pattern\\\":\\\":qIOLa63hP\\\",\\\"name\\\":\\\"tgr-2\\\"}}\",\"framerIntrinsicHeight\":\"6440.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kmj1Ibl2T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AxKd5Q6tO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ScGOo9OuP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "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", "Z", "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", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "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", "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", "setDelta", "delta", "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", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "PYdRLwjCJ", "uGvtv7phT", "pOpwklBF_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerfrX8WzMHS", "withCSS", "frX8WzMHS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "AlwaysShowArrows", "withAlwaysShowArrows", "C", "props", "re", "DataObserverContext", "p", "NavFonts", "getFonts", "nWLNI2VU7_default", "NavWithVariantAppearEffect", "withVariantAppearEffect", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "motion", "YouTubeFonts", "Youtube", "TickerFonts", "Ticker", "LineFonts", "DCwpQ8E66_default", "LineWithVariantAppearEffect", "ButtonFonts", "xA1JemV4f_default", "CommunityCardFonts", "frX8WzMHS_default", "CarouselFonts", "Carousel", "CarouselWithAlwaysShowArrowsd3xdon", "withCodeBoundaryForOverrides", "withAlwaysShowArrows", "SlideshowFonts", "Slideshow", "FooterFonts", "G2LTrLSmQ_default", "ColorChangeFonts", "mV4By_wa2_default", "ColorChangeWithVariantAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "transition2", "animation1", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "transformTemplate1", "_", "t", "transition5", "animation6", "transition6", "animation7", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation8", "textEffect1", "transition7", "textEffect2", "addImageAlt", "image", "alt", "sharedDateFormatter", "value", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "VuCbZCKYvecQuy80s1", "J7LgCrRiZecQuy80s1", "o5BRFzarlecQuy80s1", "HCqMCYAHxecQuy80s1", "idecQuy80s1", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "elementId1", "ref2", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText", "x", "getLoadingLazyAtYPosition", "l", "AnimatePresence", "Ga", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "SVG", "ChildrenCanSuspend", "A4YklyQEq_default", "collection", "paginationInfo", "index", "textContent", "enumToDisplayNameFunctions", "textContent1", "PathVariablesContext", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
