{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/a5vrJINsjQyFHHhDueQv/ILjsktNwJeoJxHiqWAlH/x2PchSkDy.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\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;const hasChildren=Children.count(slots)>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 slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight: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(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[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     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.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 isVisible=usePageVisibility();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     * */let 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(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.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:slots===null||slots===void 0?void 0:slots.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<(slots===null||slots===void 0?void 0:slots.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: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),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?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: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\",{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\",{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.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);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},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;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let 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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (e39ee10)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Slideshow1 from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import BackToTop from\"#framer/local/canvasComponent/B_G9VWxct/B_G9VWxct.js\";import Navbar from\"#framer/local/canvasComponent/htOsDgA9E/htOsDgA9E.js\";import Footer from\"#framer/local/canvasComponent/Q7F88e4di/Q7F88e4di.js\";import metadataProvider from\"#framer/local/webPageMetadata/x2PchSkDy/x2PchSkDy.js\";const NavbarFonts=getFonts(Navbar);const BackToTopFonts=getFonts(BackToTop);const ContainerWithFX=withFX(Container);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const SlideshowFonts=getFonts(Slideshow);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const Slideshow1Fonts=getFonts(Slideshow1);const FooterFonts=getFonts(Footer);const cycleOrder=[\"IODfjdV7S\",\"ELBSwCfUc\",\"e2ywjlmzm\"];const breakpoints={e2ywjlmzm:\"(max-width: 809px)\",ELBSwCfUc:\"(min-width: 810px) and (max-width: 1199px)\",IODfjdV7S:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-trCZs\";const variantClassNames={e2ywjlmzm:\"framer-v-i14c2m\",ELBSwCfUc:\"framer-v-1d1v6h9\",IODfjdV7S:\"framer-v-1fa4li3\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:30,delay:.7,mass:1,stiffness:100,type:\"spring\"};const animation1={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition3={damping:30,delay:.5,mass:1,stiffness:100,type:\"spring\"};const animation3={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={damping:30,delay:.3,mass:1,stiffness:100,type:\"spring\"};const animation4={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition5={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition5};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"IODfjdV7S\",Phone:\"e2ywjlmzm\",Tablet:\"ELBSwCfUc\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"IODfjdV7S\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-trCZs`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-trCZs`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const id=useRouteElementId(\"tj7EvBBlS\");const ref2=React.useRef(null);const ref3=React.useRef(null);const id1=useRouteElementId(\"bmsU48o1H\");const ref4=React.useRef(null);const id2=useRouteElementId(\"Zqp8NsD8O\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IODfjdV7S\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fa4li3\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-911f2l-container\",id:id,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e2ywjlmzm:{variant:\"vj3ohHkab\"},ELBSwCfUc:{variant:\"r6rFg2sZ8\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"tj7EvBBlS\",layoutId:\"tj7EvBBlS\",style:{width:\"100%\"},variant:\"K8oZEmX95\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e2ywjlmzm:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15ozesd-container\",layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(BackToTop,{height:\"100%\",id:\"QZp_zepZA\",layoutId:\"QZp_zepZA\",style:{height:\"100%\",width:\"100%\"},variant:\"edOnxrx8A\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3375,intrinsicWidth:6e3,positionX:\"center\",positionY:\"center\"},className:\"framer-1qt6eei\",id:id1,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19mt8ny\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"}),/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1526,intrinsicWidth:1906,pixelHeight:1526,pixelWidth:1906,sizes:\"550px\",src:\"https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp\",srcSet:\"https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp 1906w\"},className:\"framer-1hw8kt4\",\"data-framer-appear-id\":\"1hw8kt4\",initial:animation2,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1061,intrinsicWidth:1325,pixelHeight:1061,pixelWidth:1325,sizes:\"368px\",src:\"https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp\",srcSet:\"https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp 1325w\"},className:\"framer-1bmpm16\",\"data-framer-appear-id\":\"1bmpm16\",initial:animation2,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation4,background:{alt:\"\",fit:\"fill\",intrinsicHeight:629,intrinsicWidth:785,pixelHeight:629,pixelWidth:785,sizes:\"202px\",src:\"https://framerusercontent.com/images/xwyjTgZRQGj9RGnASqM6fNtuAA.webp\",srcSet:\"https://framerusercontent.com/images/xwyjTgZRQGj9RGnASqM6fNtuAA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/xwyjTgZRQGj9RGnASqM6fNtuAA.webp 785w\"},className:\"framer-ogn5rg\",\"data-framer-appear-id\":\"ogn5rg\",initial:animation2,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ama3x\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-carvo6-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,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:0,height:\"100%\",id:\"Ozw6AypQF\",intervalControl:5,itemAmount:1,layoutId:\"Ozw6AypQF\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3375,intrinsicWidth:6e3,pixelHeight:3375,pixelWidth:6e3,sizes:\"1547px\",src:\"https://framerusercontent.com/images/FmcMiwXsNDzy4pXSd9jocztXJ8.jpg\",srcSet:\"https://framerusercontent.com/images/FmcMiwXsNDzy4pXSd9jocztXJ8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FmcMiwXsNDzy4pXSd9jocztXJ8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FmcMiwXsNDzy4pXSd9jocztXJ8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FmcMiwXsNDzy4pXSd9jocztXJ8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/FmcMiwXsNDzy4pXSd9jocztXJ8.jpg 6000w\"},className:\"framer-f327fk\",\"data-framer-name\":\"Singapore\",name:\"Singapore\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1367,intrinsicWidth:2048,pixelHeight:1367,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"1547px\",src:\"https://framerusercontent.com/images/giZciEcjEcQZMPYPas6rBBzEB80.jpeg\",srcSet:\"https://framerusercontent.com/images/giZciEcjEcQZMPYPas6rBBzEB80.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/giZciEcjEcQZMPYPas6rBBzEB80.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/giZciEcjEcQZMPYPas6rBBzEB80.jpeg 2048w\"},className:\"framer-1209m10\",\"data-framer-name\":\"Melbourne\",name:\"Melbourne\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fcvsbb\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"})})],startFrom:2,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:100,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rezdik\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bofwsr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e2ywjlmzm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1a8eb417-e69e-49f8-aeda-7b4c9e0a53cc, rgb(255, 255, 255))\"},children:\"HQ: Singapore\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1a8eb417-e69e-49f8-aeda-7b4c9e0a53cc, rgb(255, 255, 255))\"},children:\"HQ: Singapore \"})}),className:\"framer-7jo5p3\",\"data-framer-appear-id\":\"7jo5p3\",fonts:[\"GF;Montserrat-600\"],initial:animation6,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kkqprg\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e2ywjlmzm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1a8eb417-e69e-49f8-aeda-7b4c9e0a53cc, rgb(255, 255, 255))\"},children:\"Melbourne\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1a8eb417-e69e-49f8-aeda-7b4c9e0a53cc, rgb(255, 255, 255))\"},children:\"R&D & Manucaturing: Melbourne\"})}),className:\"framer-1amzuun\",\"data-framer-appear-id\":\"1amzuun\",fonts:[\"GF;Montserrat-600\"],initial:animation6,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sabzdd\",id:id2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-55ndd4\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(271deg, var(--token-19b11778-e05a-49ae-9e4d-297b329ba73b, rgb(2, 113, 188)) 0%, rgb(35, 197, 222) 73.20171734234235%, var(--token-4d43593b-675a-4851-af4c-e3bede5c3529, rgb(30, 161, 150)) 100%)\"},children:\"ABOUT DIVIGAS\"})})}),className:\"framer-66r4na\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1a8eb417-e69e-49f8-aeda-7b4c9e0a53cc, rgb(255, 255, 255))\"},children:\"Learn more about our team, company, and partners.\"})}),className:\"framer-wkbgv9\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e2ywjlmzm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2161,intrinsicWidth:3841,loading:\"lazy\",pixelHeight:2161,pixelWidth:3841,sizes:\"100vw\",src:\"https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp\",srcSet:\"https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp 3841w\"}},ELBSwCfUc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2161,intrinsicWidth:3841,loading:\"lazy\",pixelHeight:2161,pixelWidth:3841,sizes:\"100vw\",src:\"https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp\",srcSet:\"https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp 3841w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2161,intrinsicWidth:3841,pixelHeight:2161,pixelWidth:3841,sizes:\"100vw\",src:\"https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp\",srcSet:\"https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/K7bp0vtPIiulsreyh8ByOjpaPU.webp 3841w\"},className:\"framer-aowiub\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yntxnm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-20sfk6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e2ywjlmzm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1426,intrinsicWidth:1426,loading:\"lazy\",pixelHeight:1426,pixelWidth:1426,positionX:\"center\",positionY:\"center\",sizes:\"330px\",src:\"https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png\",srcSet:\"https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png 1426w\"}},ELBSwCfUc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1426,intrinsicWidth:1426,loading:\"lazy\",pixelHeight:1426,pixelWidth:1426,positionX:\"center\",positionY:\"center\",sizes:\"360px\",src:\"https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png\",srcSet:\"https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png 1426w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1426,intrinsicWidth:1426,pixelHeight:1426,pixelWidth:1426,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1200px) - 90px) / 2, 1px)\",src:\"https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png\",srcSet:\"https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fpZ2VQ4NFMW7tLshxx1lukm5VhY.png 1426w\"},className:\"framer-v8czqw\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Andre Lorenceau\"})})}),className:\"framer-3xhu6q\",fonts:[\"GF;Montserrat-500\",\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1a8eb417-e69e-49f8-aeda-7b4c9e0a53cc, rgb(255, 255, 255))\"},children:\"Co-founder, CEO\"})}),className:\"framer-15k1v9t\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1a8eb417-e69e-49f8-aeda-7b4c9e0a53cc, rgb(255, 255, 255))\"},children:\"Andre is a serial entrepreneur who led his previous B2B startup to post Series B, millions in revenue booked and outcompeted tech giants such as Intel. He has raised over US$15 million previously, was awarded \u2018Forbes 30 Under 30\u2019. Andre has experience across a variety of sectors and brings endless energy and versatility to DiviGas\\xa0\"})}),className:\"framer-ubm298\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sf40h6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e2ywjlmzm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1426,intrinsicWidth:1426,loading:\"lazy\",pixelHeight:1426,pixelWidth:1426,positionX:\"center\",positionY:\"center\",sizes:\"330px\",src:\"https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp\",srcSet:\"https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp 1426w\"}},ELBSwCfUc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1426,intrinsicWidth:1426,loading:\"lazy\",pixelHeight:1426,pixelWidth:1426,positionX:\"center\",positionY:\"center\",sizes:\"360px\",src:\"https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp\",srcSet:\"https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp 1426w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1426,intrinsicWidth:1426,pixelHeight:1426,pixelWidth:1426,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1200px) - 90px) / 2, 1px)\",src:\"https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp\",srcSet:\"https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/5fBWNnks2c9vkymgS9qRvbJwUE.webp 1426w\"},className:\"framer-opr0g3\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Dr. Ali Naderi\"})}),className:\"framer-15ftpw3\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1a8eb417-e69e-49f8-aeda-7b4c9e0a53cc, rgb(255, 255, 255))\"},children:\"Co-founder, CTO\"})}),className:\"framer-a7lenl\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1a8eb417-e69e-49f8-aeda-7b4c9e0a53cc, rgb(255, 255, 255))\"},children:[\"Ali has a PhD from NUS in Chemical and Biomolecular Engineering focused on membranes for gas separation and organic solvent nanofiltration. He has a background in polymers, including microstructural modification, rheology, structure-property and synthesizing. Ali has published 11 journal papers, five conference papers, and is the inventor for several patents.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://scholar.google.com.sg/citations?user=4d6PpOYAAAAJ&hl=en\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"Google Scholar Link\"})})})]})}),className:\"framer-s8dkba\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ogy8qd\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-d90erj\",\"data-framer-name\":\"Team\",name:\"Team\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r3pamq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e2ywjlmzm:{itemAmount:1},ELBSwCfUc:{itemAmount:2}},children:/*#__PURE__*/_jsx(Slideshow1,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:.15,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:true},gap:40,height:\"100%\",id:\"PRXO17hbs\",intervalControl:1.5,itemAmount:3,layoutId:\"PRXO17hbs\",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:-20,dotSize:7,dotsOpacity:.5,dotsPadding:10,dotsRadius:200,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yk7y2q\",\"data-framer-name\":\"Zach\",name:\"Zach\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1426,intrinsicWidth:1426,pixelHeight:1426,pixelWidth:1426,sizes:\"364px\",src:\"https://framerusercontent.com/images/LS4bQQapKLs8CjCnDXlrFoDQW0.webp\",srcSet:\"https://framerusercontent.com/images/LS4bQQapKLs8CjCnDXlrFoDQW0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LS4bQQapKLs8CjCnDXlrFoDQW0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/LS4bQQapKLs8CjCnDXlrFoDQW0.webp 1426w\"},className:\"framer-145822n\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s1rcwo\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Zachary Foss\"})}),className:\"framer-o3wx5l\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Director of Business Development\"})}),className:\"framer-8si2bs\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bvriaa\",\"data-framer-name\":\"Neil\",name:\"Neil\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1426,intrinsicWidth:1427,pixelHeight:1426,pixelWidth:1427,sizes:\"364px\",src:\"https://framerusercontent.com/images/tEfM7fTDs8oppAQjHr2BLm3jY.webp\",srcSet:\"https://framerusercontent.com/images/tEfM7fTDs8oppAQjHr2BLm3jY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/tEfM7fTDs8oppAQjHr2BLm3jY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/tEfM7fTDs8oppAQjHr2BLm3jY.webp 1427w\"},className:\"framer-bao1yi\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xloym\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Neil O'Keeffe\"})}),className:\"framer-mznf69\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Director of Manufacturing\"})}),className:\"framer-dwe6us\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gv0f0f\",\"data-framer-name\":\"Mohammad\",name:\"Mohammad\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1426,intrinsicWidth:1426,pixelHeight:1426,pixelWidth:1426,sizes:\"364px\",src:\"https://framerusercontent.com/images/teBZRvcvki0znT347EHLjNZkTs.webp\",srcSet:\"https://framerusercontent.com/images/teBZRvcvki0znT347EHLjNZkTs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/teBZRvcvki0znT347EHLjNZkTs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/teBZRvcvki0znT347EHLjNZkTs.webp 1426w\"},className:\"framer-gew9un\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o5xvl7\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Dr. Mohammad Askari\"})}),className:\"framer-8o0v1\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Head of Research\"})}),className:\"framer-1rsw527\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x43jvg\",\"data-framer-name\":\"Masi\",name:\"Masi\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1426,intrinsicWidth:1426,pixelHeight:1426,pixelWidth:1426,sizes:\"364px\",src:\"https://framerusercontent.com/images/wW2hJsKAVYFuoV9pXmmDiawL7E.webp\",srcSet:\"https://framerusercontent.com/images/wW2hJsKAVYFuoV9pXmmDiawL7E.webp?scale-down-to=512 512w,https://framerusercontent.com/images/wW2hJsKAVYFuoV9pXmmDiawL7E.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/wW2hJsKAVYFuoV9pXmmDiawL7E.webp 1426w\"},className:\"framer-7pytul\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2m0ydd\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Dr. Masihullah J. Khan\"})}),className:\"framer-snfld3\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Polymer Specialist\"})}),className:\"framer-1x8tk6x\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ola4e\",\"data-framer-name\":\"Nicholas\",name:\"Nicholas\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1426,intrinsicWidth:1426,pixelHeight:1426,pixelWidth:1426,sizes:\"364px\",src:\"https://framerusercontent.com/images/TtwGn45grIwZKL5CbT5XifWgU.webp\",srcSet:\"https://framerusercontent.com/images/TtwGn45grIwZKL5CbT5XifWgU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/TtwGn45grIwZKL5CbT5XifWgU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/TtwGn45grIwZKL5CbT5XifWgU.webp 1426w\"},className:\"framer-mklzdv\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ypdlgg\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Nicholas Oon\"})}),className:\"framer-dxba3g\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Membrane Researcher\"})}),className:\"framer-14nikr4\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1isud86\",\"data-framer-name\":\"Tess\",name:\"Tess\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1426,intrinsicWidth:1426,pixelHeight:1426,pixelWidth:1426,sizes:\"364px\",src:\"https://framerusercontent.com/images/aXjUFMDPBvLol3psvSFP3Xk2Y.webp\",srcSet:\"https://framerusercontent.com/images/aXjUFMDPBvLol3psvSFP3Xk2Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aXjUFMDPBvLol3psvSFP3Xk2Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/aXjUFMDPBvLol3psvSFP3Xk2Y.webp 1426w\"},className:\"framer-16u2377\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kwxkzq\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Tess Turner\"})}),className:\"framer-1akjj4j\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Admin & Finance Manager\"})}),className:\"framer-1vg0w7u\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gwe7pk\",\"data-framer-name\":\"Jack\",name:\"Jack\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1426,intrinsicWidth:1427,pixelHeight:1426,pixelWidth:1427,sizes:\"364px\",src:\"https://framerusercontent.com/images/86xrEbndqthzqLV1VuLALafy8.webp\",srcSet:\"https://framerusercontent.com/images/86xrEbndqthzqLV1VuLALafy8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/86xrEbndqthzqLV1VuLALafy8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/86xrEbndqthzqLV1VuLALafy8.webp 1427w\"},className:\"framer-1gyb4g\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ydpp1u\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Jack Lim\"})}),className:\"framer-3kcrta\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Financial Controller\"})}),className:\"framer-zjwotx\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-530qse\",\"data-framer-name\":\"SK\",name:\"SK\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1430,intrinsicWidth:1426,pixelHeight:1430,pixelWidth:1426,sizes:\"364px\",src:\"https://framerusercontent.com/images/NzuWXNvxEVAgvEYDdcdwifwNCUQ.webp\",srcSet:\"https://framerusercontent.com/images/NzuWXNvxEVAgvEYDdcdwifwNCUQ.webp?scale-down-to=1024 1021w,https://framerusercontent.com/images/NzuWXNvxEVAgvEYDdcdwifwNCUQ.webp 1426w\"},className:\"framer-1s9r1qm\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h8vda8\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Siew Kei Lau\"})}),className:\"framer-1s10h4z\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Membrane Research Intern\"})}),className:\"framer-1q4wt3c\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ko60yx\",\"data-framer-name\":\"Sove\",name:\"Sove\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1426,intrinsicWidth:1427,pixelHeight:1426,pixelWidth:1427,sizes:\"364px\",src:\"https://framerusercontent.com/images/mqvVm6Gx99oZdD0UNyK67psm1w.webp\",srcSet:\"https://framerusercontent.com/images/mqvVm6Gx99oZdD0UNyK67psm1w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/mqvVm6Gx99oZdD0UNyK67psm1w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/mqvVm6Gx99oZdD0UNyK67psm1w.webp 1427w\"},className:\"framer-1xt7xt\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wbqtuu\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Sovechea Sophanna\"})}),className:\"framer-k8umxu\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"BD & Strategy Associate\"})}),className:\"framer-8jnh3i\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jppp2o\",\"data-framer-name\":\"Partners\",name:\"Partners\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-aaglfo\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Partners:\"})}),className:\"framer-1taeydx\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19e3wt5\",\"data-framer-name\":\"Backed By\",name:\"Backed By\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1baugyc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4d43593b-675a-4851-af4c-e3bede5c3529, rgb(30, 161, 150))\"},children:\"Backed & Funded By:\"})}),className:\"framer-1ug8lbf\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ysghf5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ci3liw\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khkxsBW9V9bO3K5T5PSYmXX5bw.png\"},className:\"framer-1xj1z1d\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rg2egl\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DD7sSSSBFcqiOZtMDQFCajN40w.png\"},className:\"framer-2g333v\",\"data-framer-name\":\"Image\",name:\"Image\",whileHover:animation7})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-125k3bz\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WomkNAGsu9EhjZrPaOG1GHlZ0s.png\"},className:\"framer-dsbqfo\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nkhagr\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UuxRXBkAVJvI6lVbTmL25Lh5lmk.png\"},className:\"framer-1w9s2yx\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-51pwkg\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mc1oAhx5GXam24QJbYgAqBKrdgA.png\"},className:\"framer-k02o29\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jglx0n\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CeEsk02asZ7pOrQ1CwfuBWK0lQ.png\"},className:\"framer-c84uxu\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j2bigs\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vPWd9ktE7qoPcDTD0tHVCKExxmY.png\"},className:\"framer-1mlj6yd\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kbf7gf\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IuSVSevLjxzMzkddBetDbKQ4dmw.png\"},className:\"framer-i6wq8g\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4jpbqq\",\"data-framer-name\":\"Advisors\",name:\"Advisors\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13nukrx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19b11778-e05a-49ae-9e4d-297b329ba73b, rgb(2, 113, 188))\"},children:\"Advisors From:\"})}),className:\"framer-14j62qb\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oku4tu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ror2vt\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eTLuzDSe5LnG2luOWb32olyn32s.png\"},className:\"framer-1ph95p9\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eanomg\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pA7EXkFykLAVoSQFCsPvbcJCEsI.png\"},className:\"framer-1hpgkea\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fjuxmd\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wDpuXBy3pifba9UZZq8yOPCw2A.png\"},className:\"framer-nnx6s4\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pokgkh\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/aLckykGjWYTufvdhPWZpjpFwhOw.png\"},className:\"framer-o011lp\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jkg3kz\",\"data-framer-name\":\"Part Of\",name:\"Part Of\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-703gg9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d1fcabfb-57f8-4992-b414-4b7a9c3a3860, rgb(206, 69, 153))\"},children:\"Selected & Part Of:\"})}),className:\"framer-rnze68\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ya2ake\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-177b5uk\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:121,intrinsicWidth:275,loading:\"lazy\",pixelHeight:121,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CvTESF382hBs6ZlmFgGP6aMlGgw.png\"},className:\"framer-1uepoki\",\"data-framer-name\":\"Image\",name:\"Image\",whileHover:animation7})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b2rm0j\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:121,intrinsicWidth:275,loading:\"lazy\",pixelHeight:121,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WgDwL1GUx1BgpWMwviM6gczYs.png\"},className:\"framer-1t87kzm\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ld5bh\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UKELNN0hGnHfkHcv2cHIPoaFo.png\"},className:\"framer-3kqxay\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fjwpft\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:121,intrinsicWidth:275,loading:\"lazy\",pixelHeight:121,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/n0NqWmlyznbGTKzmShTayMPjc.png\"},className:\"framer-wbkrki\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dsp24f\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0wSRWMYljw1kx3uNQOyLPxT7Rs.png\"},className:\"framer-pyjam0\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bs2yfb\",\"data-framer-name\":\"Card\",name:\"Card\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:275,loading:\"lazy\",pixelHeight:120,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/y4JRhbPylxeChHUbgaeUxZflKg.png\"},className:\"framer-1wopj8u\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x1zrsa-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{e2ywjlmzm:{variant:\"hzPXIgxWf\"},ELBSwCfUc:{variant:\"hh3KTbdUW\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"hLug3IQvd\",layoutId:\"hLug3IQvd\",style:{width:\"100%\"},variant:\"GZO22Qb8g\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-trCZs { background: var(--token-fd9ff9e5-eb5c-4201-a8b4-34ee46827cb7, rgb(29, 32, 50)) /* {\"name\":\"navy blue\"} */; }`,\".framer-trCZs.framer-v3dhlv, .framer-trCZs .framer-v3dhlv { display: block; }\",\".framer-trCZs.framer-1fa4li3 { align-content: center; align-items: center; background-color: var(--token-fd9ff9e5-eb5c-4201-a8b4-34ee46827cb7, #1d2032); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-trCZs .framer-911f2l-container, .framer-trCZs .framer-1x1zrsa-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-trCZs .framer-15ozesd-container { aspect-ratio: 1 / 1; bottom: 30px; flex: none; height: var(--framer-aspect-ratio-supported, 59px); position: fixed; right: 30px; width: 59px; z-index: 1; }\",\".framer-trCZs .framer-1qt6eei { border-bottom-right-radius: 170px; flex: none; height: 88vh; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",'.framer-trCZs .framer-19mt8ny { background: linear-gradient(140deg, var(--token-fd9ff9e5-eb5c-4201-a8b4-34ee46827cb7, #1d2032) /* {\"name\":\"navy blue\"} */ 0%, rgba(255, 255, 255, 0) 50.19003378378378%, rgba(255, 255, 255, 0) 100%); border-bottom-right-radius: 170px; bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); }',\".framer-trCZs .framer-1hw8kt4 { flex: none; height: 445px; left: 0px; opacity: 0.2; position: absolute; top: 0px; width: 550px; z-index: 1; }\",\".framer-trCZs .framer-1bmpm16 { flex: none; height: 296px; left: 0px; opacity: 0.2; position: absolute; top: 0px; width: 368px; z-index: 1; }\",\".framer-trCZs .framer-ogn5rg { flex: none; height: 161px; left: 0px; opacity: 0.2; position: absolute; top: 0px; width: 202px; z-index: 1; }\",\".framer-trCZs .framer-15ama3x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 50%; max-width: 1200px; min-height: 406px; overflow: hidden; padding: 200px 0px 0px 30px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-trCZs .framer-carvo6-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-trCZs .framer-f327fk { height: 921px; position: relative; width: 1547px; }\",\".framer-trCZs .framer-1209m10 { height: 884px; position: relative; width: 1547px; }\",\".framer-trCZs .framer-1fcvsbb { background: linear-gradient(90deg, rgba(29, 32, 50, 0.4) 0%, rgba(255, 255, 255, 0) 82.44826858108108%, rgba(255, 255, 255, 0) 100%); border-bottom-right-radius: 170px; bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-trCZs .framer-1rezdik { flex: none; height: 100%; left: calc(50.00000000000002% - min(1200px, 100%) / 2); max-width: 1200px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-trCZs .framer-1bofwsr { align-content: center; align-items: center; bottom: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: flex-start; left: calc(50.00000000000002% - min(1200px, 100%) / 2); max-width: 1200px; overflow: hidden; padding: 30px; position: absolute; width: 100%; }\",\".framer-trCZs .framer-7jo5p3, .framer-trCZs .framer-1amzuun { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-trCZs .framer-1kkqprg { background-color: var(--token-d1fcabfb-57f8-4992-b414-4b7a9c3a3860, #ce4599); flex: none; height: 30px; overflow: hidden; position: relative; width: 3px; }\",\".framer-trCZs .framer-sabzdd { align-content: center; align-items: center; background-color: var(--token-fd9ff9e5-eb5c-4201-a8b4-34ee46827cb7, #1d2032); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-trCZs .framer-55ndd4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; padding: 0px; position: relative; width: 1px; }\",\".framer-trCZs .framer-66r4na, .framer-trCZs .framer-wkbgv9, .framer-trCZs .framer-3xhu6q, .framer-trCZs .framer-15ftpw3, .framer-trCZs .framer-o3wx5l, .framer-trCZs .framer-mznf69, .framer-trCZs .framer-8o0v1, .framer-trCZs .framer-snfld3, .framer-trCZs .framer-dxba3g, .framer-trCZs .framer-1akjj4j, .framer-trCZs .framer-3kcrta, .framer-trCZs .framer-1s10h4z, .framer-trCZs .framer-k8umxu, .framer-trCZs .framer-1ug8lbf, .framer-trCZs .framer-14j62qb, .framer-trCZs .framer-rnze68 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-trCZs .framer-aowiub { flex: none; height: 963px; overflow: hidden; position: relative; width: 100%; }\",\".framer-trCZs .framer-yntxnm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; left: 50%; max-width: 1200px; overflow: visible; padding: 30px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-trCZs .framer-20sfk6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 841px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-trCZs .framer-v8czqw, .framer-trCZs .framer-opr0g3 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-trCZs .framer-15k1v9t, .framer-trCZs .framer-ubm298, .framer-trCZs .framer-a7lenl, .framer-trCZs .framer-s8dkba, .framer-trCZs .framer-8si2bs, .framer-trCZs .framer-dwe6us, .framer-trCZs .framer-1rsw527, .framer-trCZs .framer-1x8tk6x, .framer-trCZs .framer-14nikr4, .framer-trCZs .framer-1vg0w7u, .framer-trCZs .framer-zjwotx, .framer-trCZs .framer-1q4wt3c, .framer-trCZs .framer-8jnh3i { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-trCZs .framer-sf40h6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 902px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-trCZs .framer-1ogy8qd { background-color: #ffffff; flex: none; height: 533px; overflow: hidden; position: relative; width: 100%; }\",\".framer-trCZs .framer-d90erj { align-content: center; align-items: center; background-color: var(--token-1a8eb417-e69e-49f8-aeda-7b4c9e0a53cc, #ffffff); bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: center; left: calc(50.00000000000002% - min(1200px, 100%) / 2); max-width: 1200px; overflow: hidden; padding: 30px; position: absolute; top: 0px; width: 100%; }\",\".framer-trCZs .framer-1r3pamq-container { flex: none; height: 473px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-trCZs .framer-yk7y2q, .framer-trCZs .framer-1bvriaa, .framer-trCZs .framer-gv0f0f, .framer-trCZs .framer-1x43jvg, .framer-trCZs .framer-8ola4e, .framer-trCZs .framer-1isud86, .framer-trCZs .framer-1gwe7pk, .framer-trCZs .framer-530qse, .framer-trCZs .framer-ko60yx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 364px; }\",\".framer-trCZs .framer-145822n, .framer-trCZs .framer-bao1yi, .framer-trCZs .framer-gew9un, .framer-trCZs .framer-7pytul, .framer-trCZs .framer-mklzdv, .framer-trCZs .framer-16u2377, .framer-trCZs .framer-1gyb4g, .framer-trCZs .framer-1s9r1qm, .framer-trCZs .framer-1xt7xt { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 364px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-trCZs .framer-1s1rcwo, .framer-trCZs .framer-xloym, .framer-trCZs .framer-1o5xvl7, .framer-trCZs .framer-2m0ydd, .framer-trCZs .framer-ypdlgg, .framer-trCZs .framer-kwxkzq, .framer-trCZs .framer-ydpp1u, .framer-trCZs .framer-1h8vda8, .framer-trCZs .framer-wbqtuu { 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: center; padding: 0px; position: relative; width: 100%; }\",\".framer-trCZs .framer-jppp2o { align-content: center; align-items: center; background-color: var(--token-4d43593b-675a-4851-af4c-e3bede5c3529, #1ea196); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-trCZs .framer-aaglfo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; padding: 0px; position: relative; width: 1px; }\",\".framer-trCZs .framer-1taeydx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1200px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-trCZs .framer-19e3wt5, .framer-trCZs .framer-4jpbqq, .framer-trCZs .framer-jkg3kz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-trCZs .framer-1baugyc, .framer-trCZs .framer-13nukrx, .framer-trCZs .framer-703gg9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-trCZs .framer-ysghf5, .framer-trCZs .framer-oku4tu, .framer-trCZs .framer-ya2ake { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-trCZs .framer-ci3liw, .framer-trCZs .framer-1rg2egl, .framer-trCZs .framer-125k3bz, .framer-trCZs .framer-1nkhagr, .framer-trCZs .framer-51pwkg, .framer-trCZs .framer-jglx0n, .framer-trCZs .framer-1j2bigs, .framer-trCZs .framer-1kbf7gf, .framer-trCZs .framer-ror2vt, .framer-trCZs .framer-1eanomg, .framer-trCZs .framer-1fjuxmd, .framer-trCZs .framer-1pokgkh, .framer-trCZs .framer-177b5uk, .framer-trCZs .framer-1b2rm0j, .framer-trCZs .framer-3ld5bh, .framer-trCZs .framer-1fjwpft, .framer-trCZs .framer-dsp24f, .framer-trCZs .framer-1bs2yfb { align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-trCZs .framer-1xj1z1d, .framer-trCZs .framer-2g333v, .framer-trCZs .framer-dsbqfo, .framer-trCZs .framer-1w9s2yx, .framer-trCZs .framer-pyjam0, .framer-trCZs .framer-1wopj8u { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 203px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-trCZs .framer-k02o29, .framer-trCZs .framer-c84uxu, .framer-trCZs .framer-1mlj6yd, .framer-trCZs .framer-i6wq8g, .framer-trCZs .framer-1ph95p9, .framer-trCZs .framer-1hpgkea, .framer-trCZs .framer-nnx6s4, .framer-trCZs .framer-o011lp, .framer-trCZs .framer-1uepoki, .framer-trCZs .framer-1t87kzm, .framer-trCZs .framer-3kqxay, .framer-trCZs .framer-wbkrki { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 202px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-trCZs.framer-1fa4li3, .framer-trCZs .framer-15ama3x, .framer-trCZs .framer-1bofwsr, .framer-trCZs .framer-sabzdd, .framer-trCZs .framer-55ndd4, .framer-trCZs .framer-yntxnm, .framer-trCZs .framer-20sfk6, .framer-trCZs .framer-v8czqw, .framer-trCZs .framer-sf40h6, .framer-trCZs .framer-opr0g3, .framer-trCZs .framer-d90erj, .framer-trCZs .framer-yk7y2q, .framer-trCZs .framer-145822n, .framer-trCZs .framer-1s1rcwo, .framer-trCZs .framer-1bvriaa, .framer-trCZs .framer-bao1yi, .framer-trCZs .framer-xloym, .framer-trCZs .framer-gv0f0f, .framer-trCZs .framer-gew9un, .framer-trCZs .framer-1o5xvl7, .framer-trCZs .framer-1x43jvg, .framer-trCZs .framer-7pytul, .framer-trCZs .framer-2m0ydd, .framer-trCZs .framer-8ola4e, .framer-trCZs .framer-mklzdv, .framer-trCZs .framer-ypdlgg, .framer-trCZs .framer-1isud86, .framer-trCZs .framer-16u2377, .framer-trCZs .framer-kwxkzq, .framer-trCZs .framer-1gwe7pk, .framer-trCZs .framer-1gyb4g, .framer-trCZs .framer-ydpp1u, .framer-trCZs .framer-530qse, .framer-trCZs .framer-1s9r1qm, .framer-trCZs .framer-1h8vda8, .framer-trCZs .framer-ko60yx, .framer-trCZs .framer-1xt7xt, .framer-trCZs .framer-wbqtuu, .framer-trCZs .framer-jppp2o, .framer-trCZs .framer-aaglfo, .framer-trCZs .framer-19e3wt5, .framer-trCZs .framer-1baugyc, .framer-trCZs .framer-ci3liw, .framer-trCZs .framer-1rg2egl, .framer-trCZs .framer-125k3bz, .framer-trCZs .framer-1nkhagr, .framer-trCZs .framer-51pwkg, .framer-trCZs .framer-jglx0n, .framer-trCZs .framer-1j2bigs, .framer-trCZs .framer-1kbf7gf, .framer-trCZs .framer-4jpbqq, .framer-trCZs .framer-13nukrx, .framer-trCZs .framer-ror2vt, .framer-trCZs .framer-1eanomg, .framer-trCZs .framer-1fjuxmd, .framer-trCZs .framer-1pokgkh, .framer-trCZs .framer-jkg3kz, .framer-trCZs .framer-703gg9, .framer-trCZs .framer-177b5uk, .framer-trCZs .framer-1b2rm0j, .framer-trCZs .framer-3ld5bh, .framer-trCZs .framer-1fjwpft, .framer-trCZs .framer-dsp24f, .framer-trCZs .framer-1bs2yfb { gap: 0px; } .framer-trCZs.framer-1fa4li3 > *, .framer-trCZs .framer-55ndd4 > *, .framer-trCZs .framer-d90erj > *, .framer-trCZs .framer-1s1rcwo > *, .framer-trCZs .framer-xloym > *, .framer-trCZs .framer-1o5xvl7 > *, .framer-trCZs .framer-2m0ydd > *, .framer-trCZs .framer-ypdlgg > *, .framer-trCZs .framer-kwxkzq > *, .framer-trCZs .framer-ydpp1u > *, .framer-trCZs .framer-1h8vda8 > *, .framer-trCZs .framer-wbqtuu > *, .framer-trCZs .framer-ci3liw > *, .framer-trCZs .framer-1rg2egl > *, .framer-trCZs .framer-125k3bz > *, .framer-trCZs .framer-1nkhagr > *, .framer-trCZs .framer-51pwkg > *, .framer-trCZs .framer-jglx0n > *, .framer-trCZs .framer-1j2bigs > *, .framer-trCZs .framer-1kbf7gf > *, .framer-trCZs .framer-ror2vt > *, .framer-trCZs .framer-1eanomg > *, .framer-trCZs .framer-1fjuxmd > *, .framer-trCZs .framer-1pokgkh > *, .framer-trCZs .framer-177b5uk > *, .framer-trCZs .framer-1b2rm0j > *, .framer-trCZs .framer-3ld5bh > *, .framer-trCZs .framer-1fjwpft > *, .framer-trCZs .framer-dsp24f > *, .framer-trCZs .framer-1bs2yfb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-trCZs.framer-1fa4li3 > :first-child, .framer-trCZs .framer-15ama3x > :first-child, .framer-trCZs .framer-55ndd4 > :first-child, .framer-trCZs .framer-20sfk6 > :first-child, .framer-trCZs .framer-v8czqw > :first-child, .framer-trCZs .framer-sf40h6 > :first-child, .framer-trCZs .framer-opr0g3 > :first-child, .framer-trCZs .framer-d90erj > :first-child, .framer-trCZs .framer-yk7y2q > :first-child, .framer-trCZs .framer-145822n > :first-child, .framer-trCZs .framer-1s1rcwo > :first-child, .framer-trCZs .framer-1bvriaa > :first-child, .framer-trCZs .framer-bao1yi > :first-child, .framer-trCZs .framer-xloym > :first-child, .framer-trCZs .framer-gv0f0f > :first-child, .framer-trCZs .framer-gew9un > :first-child, .framer-trCZs .framer-1o5xvl7 > :first-child, .framer-trCZs .framer-1x43jvg > :first-child, .framer-trCZs .framer-7pytul > :first-child, .framer-trCZs .framer-2m0ydd > :first-child, .framer-trCZs .framer-8ola4e > :first-child, .framer-trCZs .framer-mklzdv > :first-child, .framer-trCZs .framer-ypdlgg > :first-child, .framer-trCZs .framer-1isud86 > :first-child, .framer-trCZs .framer-16u2377 > :first-child, .framer-trCZs .framer-kwxkzq > :first-child, .framer-trCZs .framer-1gwe7pk > :first-child, .framer-trCZs .framer-1gyb4g > :first-child, .framer-trCZs .framer-ydpp1u > :first-child, .framer-trCZs .framer-530qse > :first-child, .framer-trCZs .framer-1s9r1qm > :first-child, .framer-trCZs .framer-1h8vda8 > :first-child, .framer-trCZs .framer-ko60yx > :first-child, .framer-trCZs .framer-1xt7xt > :first-child, .framer-trCZs .framer-wbqtuu > :first-child, .framer-trCZs .framer-aaglfo > :first-child, .framer-trCZs .framer-19e3wt5 > :first-child, .framer-trCZs .framer-1baugyc > :first-child, .framer-trCZs .framer-ci3liw > :first-child, .framer-trCZs .framer-1rg2egl > :first-child, .framer-trCZs .framer-125k3bz > :first-child, .framer-trCZs .framer-1nkhagr > :first-child, .framer-trCZs .framer-51pwkg > :first-child, .framer-trCZs .framer-jglx0n > :first-child, .framer-trCZs .framer-1j2bigs > :first-child, .framer-trCZs .framer-1kbf7gf > :first-child, .framer-trCZs .framer-4jpbqq > :first-child, .framer-trCZs .framer-13nukrx > :first-child, .framer-trCZs .framer-ror2vt > :first-child, .framer-trCZs .framer-1eanomg > :first-child, .framer-trCZs .framer-1fjuxmd > :first-child, .framer-trCZs .framer-1pokgkh > :first-child, .framer-trCZs .framer-jkg3kz > :first-child, .framer-trCZs .framer-703gg9 > :first-child, .framer-trCZs .framer-177b5uk > :first-child, .framer-trCZs .framer-1b2rm0j > :first-child, .framer-trCZs .framer-3ld5bh > :first-child, .framer-trCZs .framer-1fjwpft > :first-child, .framer-trCZs .framer-dsp24f > :first-child, .framer-trCZs .framer-1bs2yfb > :first-child { margin-top: 0px; } .framer-trCZs.framer-1fa4li3 > :last-child, .framer-trCZs .framer-15ama3x > :last-child, .framer-trCZs .framer-55ndd4 > :last-child, .framer-trCZs .framer-20sfk6 > :last-child, .framer-trCZs .framer-v8czqw > :last-child, .framer-trCZs .framer-sf40h6 > :last-child, .framer-trCZs .framer-opr0g3 > :last-child, .framer-trCZs .framer-d90erj > :last-child, .framer-trCZs .framer-yk7y2q > :last-child, .framer-trCZs .framer-145822n > :last-child, .framer-trCZs .framer-1s1rcwo > :last-child, .framer-trCZs .framer-1bvriaa > :last-child, .framer-trCZs .framer-bao1yi > :last-child, .framer-trCZs .framer-xloym > :last-child, .framer-trCZs .framer-gv0f0f > :last-child, .framer-trCZs .framer-gew9un > :last-child, .framer-trCZs .framer-1o5xvl7 > :last-child, .framer-trCZs .framer-1x43jvg > :last-child, .framer-trCZs .framer-7pytul > :last-child, .framer-trCZs .framer-2m0ydd > :last-child, .framer-trCZs .framer-8ola4e > :last-child, .framer-trCZs .framer-mklzdv > :last-child, .framer-trCZs .framer-ypdlgg > :last-child, .framer-trCZs .framer-1isud86 > :last-child, .framer-trCZs .framer-16u2377 > :last-child, .framer-trCZs .framer-kwxkzq > :last-child, .framer-trCZs .framer-1gwe7pk > :last-child, .framer-trCZs .framer-1gyb4g > :last-child, .framer-trCZs .framer-ydpp1u > :last-child, .framer-trCZs .framer-530qse > :last-child, .framer-trCZs .framer-1s9r1qm > :last-child, .framer-trCZs .framer-1h8vda8 > :last-child, .framer-trCZs .framer-ko60yx > :last-child, .framer-trCZs .framer-1xt7xt > :last-child, .framer-trCZs .framer-wbqtuu > :last-child, .framer-trCZs .framer-aaglfo > :last-child, .framer-trCZs .framer-19e3wt5 > :last-child, .framer-trCZs .framer-1baugyc > :last-child, .framer-trCZs .framer-ci3liw > :last-child, .framer-trCZs .framer-1rg2egl > :last-child, .framer-trCZs .framer-125k3bz > :last-child, .framer-trCZs .framer-1nkhagr > :last-child, .framer-trCZs .framer-51pwkg > :last-child, .framer-trCZs .framer-jglx0n > :last-child, .framer-trCZs .framer-1j2bigs > :last-child, .framer-trCZs .framer-1kbf7gf > :last-child, .framer-trCZs .framer-4jpbqq > :last-child, .framer-trCZs .framer-13nukrx > :last-child, .framer-trCZs .framer-ror2vt > :last-child, .framer-trCZs .framer-1eanomg > :last-child, .framer-trCZs .framer-1fjuxmd > :last-child, .framer-trCZs .framer-1pokgkh > :last-child, .framer-trCZs .framer-jkg3kz > :last-child, .framer-trCZs .framer-703gg9 > :last-child, .framer-trCZs .framer-177b5uk > :last-child, .framer-trCZs .framer-1b2rm0j > :last-child, .framer-trCZs .framer-3ld5bh > :last-child, .framer-trCZs .framer-1fjwpft > :last-child, .framer-trCZs .framer-dsp24f > :last-child, .framer-trCZs .framer-1bs2yfb > :last-child { margin-bottom: 0px; } .framer-trCZs .framer-15ama3x > *, .framer-trCZs .framer-20sfk6 > *, .framer-trCZs .framer-sf40h6 > *, .framer-trCZs .framer-yk7y2q > *, .framer-trCZs .framer-1bvriaa > *, .framer-trCZs .framer-gv0f0f > *, .framer-trCZs .framer-1x43jvg > *, .framer-trCZs .framer-8ola4e > *, .framer-trCZs .framer-1isud86 > *, .framer-trCZs .framer-1gwe7pk > *, .framer-trCZs .framer-530qse > *, .framer-trCZs .framer-ko60yx > *, .framer-trCZs .framer-1baugyc > *, .framer-trCZs .framer-13nukrx > *, .framer-trCZs .framer-703gg9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-trCZs .framer-1bofwsr > *, .framer-trCZs .framer-sabzdd > *, .framer-trCZs .framer-jppp2o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-trCZs .framer-1bofwsr > :first-child, .framer-trCZs .framer-sabzdd > :first-child, .framer-trCZs .framer-yntxnm > :first-child, .framer-trCZs .framer-jppp2o > :first-child { margin-left: 0px; } .framer-trCZs .framer-1bofwsr > :last-child, .framer-trCZs .framer-sabzdd > :last-child, .framer-trCZs .framer-yntxnm > :last-child, .framer-trCZs .framer-jppp2o > :last-child { margin-right: 0px; } .framer-trCZs .framer-yntxnm > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-trCZs .framer-v8czqw > *, .framer-trCZs .framer-opr0g3 > *, .framer-trCZs .framer-145822n > *, .framer-trCZs .framer-bao1yi > *, .framer-trCZs .framer-gew9un > *, .framer-trCZs .framer-7pytul > *, .framer-trCZs .framer-mklzdv > *, .framer-trCZs .framer-16u2377 > *, .framer-trCZs .framer-1gyb4g > *, .framer-trCZs .framer-1s9r1qm > *, .framer-trCZs .framer-1xt7xt > *, .framer-trCZs .framer-aaglfo > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-trCZs .framer-19e3wt5 > *, .framer-trCZs .framer-4jpbqq > *, .framer-trCZs .framer-jkg3kz > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@media (min-width: 1200px) { .framer-trCZs .hidden-1fa4li3 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-trCZs .hidden-1d1v6h9 { display: none !important; } .${metadata.bodyClassName}-framer-trCZs { background: var(--token-fd9ff9e5-eb5c-4201-a8b4-34ee46827cb7, rgb(29, 32, 50)) /* {\"name\":\"navy blue\"} */; } .framer-trCZs.framer-1fa4li3 { width: 810px; } .framer-trCZs .framer-911f2l-container { order: 0; } .framer-trCZs .framer-15ozesd-container { order: 2; } .framer-trCZs .framer-1qt6eei { order: 1; } .framer-trCZs .framer-sabzdd { order: 3; } .framer-trCZs .framer-aowiub { order: 4; } .framer-trCZs .framer-20sfk6 { align-content: flex-start; align-items: flex-start; flex: none; justify-content: flex-start; width: 360px; } .framer-trCZs .framer-v8czqw, .framer-trCZs .framer-opr0g3 { flex: none; height: 364px; } .framer-trCZs .framer-sf40h6 { flex: none; height: 841px; justify-content: flex-start; width: 360px; } .framer-trCZs .framer-1ogy8qd { order: 5; } .framer-trCZs .framer-d90erj { bottom: unset; height: min-content; justify-content: flex-start; left: 50%; transform: translateX(-50%); } .framer-trCZs .framer-1r3pamq-container { height: 500px; width: 750px; } .framer-trCZs .framer-jppp2o { order: 6; } .framer-trCZs .framer-19e3wt5 { order: 7; } .framer-trCZs .framer-ysghf5, .framer-trCZs .framer-oku4tu, .framer-trCZs .framer-ya2ake { grid-template-columns: repeat(3, minmax(200px, 1fr)); } .framer-trCZs .framer-ci3liw, .framer-trCZs .framer-1eanomg, .framer-trCZs .framer-dsp24f { min-width: unset; } .framer-trCZs .framer-1xj1z1d, .framer-trCZs .framer-2g333v, .framer-trCZs .framer-dsbqfo, .framer-trCZs .framer-1mlj6yd, .framer-trCZs .framer-i6wq8g, .framer-trCZs .framer-1ph95p9, .framer-trCZs .framer-1hpgkea, .framer-trCZs .framer-nnx6s4, .framer-trCZs .framer-wbkrki, .framer-trCZs .framer-pyjam0, .framer-trCZs .framer-1wopj8u { height: var(--framer-aspect-ratio-supported, 178px); } .framer-trCZs .framer-1w9s2yx, .framer-trCZs .framer-k02o29, .framer-trCZs .framer-c84uxu, .framer-trCZs .framer-o011lp, .framer-trCZs .framer-1uepoki, .framer-trCZs .framer-1t87kzm, .framer-trCZs .framer-3kqxay { height: var(--framer-aspect-ratio-supported, 177px); } .framer-trCZs .framer-4jpbqq { order: 8; } .framer-trCZs .framer-jkg3kz { order: 9; } .framer-trCZs .framer-1x1zrsa-container { order: 10; }}`,`@media (max-width: 809px) { .framer-trCZs .hidden-i14c2m { display: none !important; } .${metadata.bodyClassName}-framer-trCZs { background: var(--token-fd9ff9e5-eb5c-4201-a8b4-34ee46827cb7, rgb(29, 32, 50)) /* {\"name\":\"navy blue\"} */; } .framer-trCZs.framer-1fa4li3 { width: 390px; } .framer-trCZs .framer-15ozesd-container { height: var(--framer-aspect-ratio-supported, 58px); left: 50%; right: unset; transform: translateX(-50%); width: 58px; } .framer-trCZs .framer-1qt6eei { height: 700px; } .framer-trCZs .framer-15ama3x { gap: 13px; left: 0px; min-height: 171px; padding: 30px; right: 0px; top: 140px; transform: unset; width: unset; } .framer-trCZs .framer-1bofwsr { height: 20px; } .framer-trCZs .framer-aowiub { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-trCZs .framer-yntxnm { flex-direction: column; left: unset; max-width: unset; position: relative; top: unset; transform: unset; } .framer-trCZs .framer-20sfk6, .framer-trCZs .framer-sf40h6 { flex: none; height: min-content; width: 100%; } .framer-trCZs .framer-v8czqw, .framer-trCZs .framer-opr0g3 { flex: none; height: 328px; width: 330px; } .framer-trCZs .framer-d90erj { bottom: unset; height: min-content; left: 50%; padding: 20px; transform: translateX(-50%); } .framer-trCZs .framer-1r3pamq-container { width: 350px; } .framer-trCZs .framer-ysghf5, .framer-trCZs .framer-oku4tu, .framer-trCZs .framer-ya2ake { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); } .framer-trCZs .framer-1xj1z1d, .framer-trCZs .framer-2g333v, .framer-trCZs .framer-pyjam0, .framer-trCZs .framer-1wopj8u { height: var(--framer-aspect-ratio-supported, 117px); } .framer-trCZs .framer-dsbqfo, .framer-trCZs .framer-1w9s2yx, .framer-trCZs .framer-k02o29, .framer-trCZs .framer-c84uxu, .framer-trCZs .framer-1mlj6yd, .framer-trCZs .framer-i6wq8g, .framer-trCZs .framer-1ph95p9, .framer-trCZs .framer-1hpgkea, .framer-trCZs .framer-nnx6s4, .framer-trCZs .framer-o011lp, .framer-trCZs .framer-1uepoki, .framer-trCZs .framer-1t87kzm, .framer-trCZs .framer-3kqxay, .framer-trCZs .framer-wbkrki { height: var(--framer-aspect-ratio-supported, 116px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-trCZs .framer-15ama3x, .framer-trCZs .framer-aowiub, .framer-trCZs .framer-yntxnm { gap: 0px; } .framer-trCZs .framer-15ama3x > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-trCZs .framer-15ama3x > :first-child, .framer-trCZs .framer-yntxnm > :first-child { margin-top: 0px; } .framer-trCZs .framer-15ama3x > :last-child, .framer-trCZs .framer-yntxnm > :last-child { margin-bottom: 0px; } .framer-trCZs .framer-aowiub > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-trCZs .framer-aowiub > :first-child { margin-left: 0px; } .framer-trCZs .framer-aowiub > :last-child { margin-right: 0px; } .framer-trCZs .framer-yntxnm > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4432\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ELBSwCfUc\":{\"layout\":[\"fixed\",\"auto\"]},\"e2ywjlmzm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerx2PchSkDy=withCSS(Component,css,\"framer-trCZs\");export default Framerx2PchSkDy;Framerx2PchSkDy.displayName=\"Team\";Framerx2PchSkDy.defaultProps={height:4432,width:1200};addFonts(Framerx2PchSkDy,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"}]},...NavbarFonts,...BackToTopFonts,...SlideshowFonts,...Slideshow1Fonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerx2PchSkDy\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ELBSwCfUc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e2ywjlmzm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"4432\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "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", "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", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "NavbarFonts", "getFonts", "htOsDgA9E_default", "BackToTopFonts", "B_G9VWxct_default", "ContainerWithFX", "withFX", "Container", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "SlideshowFonts", "Slideshow", "RichTextWithOptimizedAppearEffect", "RichText2", "Slideshow1Fonts", "FooterFonts", "Q7F88e4di_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "transformTemplate1", "_", "t", "transition2", "animation1", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "animation6", "transition5", "animation7", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "useRouteElementId", "ref2", "ref3", "id1", "ref4", "id2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "htOsDgA9E_default", "ContainerWithFX", "B_G9VWxct_default", "ImageWithOptimizedAppearEffect", "Slideshow", "Image2", "x", "RichTextWithOptimizedAppearEffect", "RichText2", "Link", "Q7F88e4di_default", "css", "Framerx2PchSkDy", "withCSS", "x2PchSkDy_default", "addFonts", "NavbarFonts", "BackToTopFonts", "SlideshowFonts", "Slideshow1Fonts", "FooterFonts", "__FramerMetadata__"]
}
