{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framerusercontent.com/modules/vR8NuI9s8QmdsqjFBjWG/KNzNFUNTxQaf3bQg8z5P/r8bVlYSR1.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\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);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=filteredSlots.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=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const 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(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{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\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import PageHeader from\"#framer/local/canvasComponent/avHQO6pvp/avHQO6pvp.js\";import CTASection from\"#framer/local/canvasComponent/AX42WPO7q/AX42WPO7q.js\";import Footer from\"#framer/local/canvasComponent/ldrhxzr_W/ldrhxzr_W.js\";import MenuBar from\"#framer/local/canvasComponent/t4zc2Lwk0/t4zc2Lwk0.js\";import SmallCard from\"#framer/local/canvasComponent/wTrfMhaqT/wTrfMhaqT.js\";import*as sharedStyle from\"#framer/local/css/ob13WvUQe/ob13WvUQe.js\";import*as sharedStyle1 from\"#framer/local/css/REVkC6CYY/REVkC6CYY.js\";import metadataProvider from\"#framer/local/webPageMetadata/r8bVlYSR1/r8bVlYSR1.js\";const PageHeaderFonts=getFonts(PageHeader);const SlideshowFonts=getFonts(Slideshow);const MotionDivWithFX=withFX(motion.div);const SmallCardFonts=getFonts(SmallCard);const CTASectionFonts=getFonts(CTASection);const MenuBarFonts=getFonts(MenuBar);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={FNIIGLHKG:\"(max-width: 809px)\",k2K35QAnA:\"(min-width: 1400px)\",LMBc1vTAh:\"(min-width: 810px) and (max-width: 1399px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-op7Ui\";const variantClassNames={FNIIGLHKG:\"framer-v-kty0ye\",k2K35QAnA:\"framer-v-1bjy6mo\",LMBc1vTAh:\"framer-v-awzfez\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transition1={damping:30,delay:0,mass:1,stiffness:63,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition1,x:0,y:50};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"k2K35QAnA\",Phone:\"FNIIGLHKG\",Tablet:\"LMBc1vTAh\"};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:\"k2K35QAnA\"};};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-op7Ui`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-op7Ui`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"P3yxMmJAz\");const ref2=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"k2K35QAnA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bjy6mo\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{height:500},LMBc1vTAh:{height:500}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700.3058103975535,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cxudtx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{variant:\"yzZGNU5ae\"},LMBc1vTAh:{variant:\"T5ifd4BNC\"}},children:/*#__PURE__*/_jsx(PageHeader,{height:\"100%\",id:\"CYrXXZQCP\",layoutId:\"CYrXXZQCP\",style:{height:\"100%\",width:\"100%\"},variant:\"bUuJ50Mla\",VqzZDnIsB:\"Insightful Infographics\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iu4mum\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-90uh5n\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dd87h9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UHVibGljIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(199, 199, 199)\"},children:[\"Transforming\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Data\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\"into \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Delight\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UHVibGljIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(199, 199, 199)\"},children:[\"Transforming\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Data\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\"into \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Delight\"})]})}),className:\"framer-1be5nnl\",fonts:[\"FS;Public Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:\"We transform data into visualisations that increase comprehension. From Excel to Engagement.\"})}),className:\"framer-paybf7\",fonts:[\"GF;Public Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5s0069\",\"data-framer-name\":\"card\",name:\"card\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1675,intrinsicWidth:2564,loading:getLoadingLazyAtYPosition(646.35),pixelHeight:3350,pixelWidth:5128,sizes:\"max(100vw - 80px, 1px)\",src:\"https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=512 512w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp 5128w\"}},LMBc1vTAh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1675,intrinsicWidth:2564,loading:getLoadingLazyAtYPosition(794.35),pixelHeight:3350,pixelWidth:5128,sizes:\"max(100vw - 120px, 1px)\",src:\"https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=512 512w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp 5128w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1675,intrinsicWidth:2564,loading:getLoadingLazyAtYPosition(997.6558103975535),pixelHeight:3350,pixelWidth:5128,sizes:\"max(100vw - 200px, 1px)\",src:\"https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=512 512w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/49aWb9g5J49waRZHItTgyjEjA8E.webp 5128w\"},className:\"framer-1pehn1m\",\"data-framer-name\":\"data_to_delight\",name:\"data_to_delight\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hw5cv\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ipc0d\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-135pmsk\",\"data-framer-name\":\"Data Visualization\",name:\"Data Visualization\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-grkgam\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-164bxc5\",\"data-styles-preset\":\"ob13WvUQe\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Data \",/*#__PURE__*/_jsx(\"br\",{}),\"Visualization\"]})}),className:\"framer-av9dd4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g09hk1-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:true},autoPlayControl:true,borderRadius:20,direction:\"right\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"vPCoNCOnS\",intervalControl:2.6,itemAmount:1,layoutId:\"vPCoNCOnS\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:7,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/ldt5z6lm8BUuyoN5ijcjYz6ts.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ldt5z6lm8BUuyoN5ijcjYz6ts.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ldt5z6lm8BUuyoN5ijcjYz6ts.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ldt5z6lm8BUuyoN5ijcjYz6ts.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/ldt5z6lm8BUuyoN5ijcjYz6ts.webp 2400w\"},className:\"framer-kxjg1l\",\"data-framer-name\":\"Data_Viz_Construction_Waste_Lotus\",name:\"Data_Viz_Construction_Waste_Lotus\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/PQhpzvReGmxrSbxrCdvCFciVRc.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/PQhpzvReGmxrSbxrCdvCFciVRc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PQhpzvReGmxrSbxrCdvCFciVRc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PQhpzvReGmxrSbxrCdvCFciVRc.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/PQhpzvReGmxrSbxrCdvCFciVRc.webp 2400w\"},className:\"framer-1oh3tl\",\"data-framer-name\":\"Data_Viz_Carbon_Sequestration\",name:\"Data_Viz_Carbon_Sequestration\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/wNvwp6r7EB1eZWyiOIR2qTM.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wNvwp6r7EB1eZWyiOIR2qTM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/wNvwp6r7EB1eZWyiOIR2qTM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/wNvwp6r7EB1eZWyiOIR2qTM.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/wNvwp6r7EB1eZWyiOIR2qTM.webp 2400w\"},className:\"framer-1uxkgfw\",\"data-framer-name\":\"Data_Viz_CW_report_ridge\",name:\"Data_Viz_CW_report_ridge\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/pvDC2Uo3tPpPC4XuaEjnGhLWLB8.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/pvDC2Uo3tPpPC4XuaEjnGhLWLB8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/pvDC2Uo3tPpPC4XuaEjnGhLWLB8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/pvDC2Uo3tPpPC4XuaEjnGhLWLB8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/pvDC2Uo3tPpPC4XuaEjnGhLWLB8.webp 2400w\"},className:\"framer-1q0r223\",\"data-framer-name\":\"Data_Viz_CW_report_sankey\",name:\"Data_Viz_CW_report_sankey\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/zfCQ9kwrFYLkwynGn7opwLwzE.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/zfCQ9kwrFYLkwynGn7opwLwzE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zfCQ9kwrFYLkwynGn7opwLwzE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zfCQ9kwrFYLkwynGn7opwLwzE.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/zfCQ9kwrFYLkwynGn7opwLwzE.webp 2400w\"},className:\"framer-x5ca6t\",\"data-framer-name\":\"Data_Viz_CW_report_voronoi\",name:\"Data_Viz_CW_report_voronoi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/iw1KJ0DIijNm4upkp3nLiPvbXg.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/iw1KJ0DIijNm4upkp3nLiPvbXg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/iw1KJ0DIijNm4upkp3nLiPvbXg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/iw1KJ0DIijNm4upkp3nLiPvbXg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/iw1KJ0DIijNm4upkp3nLiPvbXg.webp 2400w\"},className:\"framer-1m2d127\",\"data-framer-name\":\"Data_Viz_Empowerment_Data_viz\",name:\"Data_Viz_Empowerment_Data_viz\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/hNseFPwz3XRzFl6oAvcxlLvcE4.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hNseFPwz3XRzFl6oAvcxlLvcE4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hNseFPwz3XRzFl6oAvcxlLvcE4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/hNseFPwz3XRzFl6oAvcxlLvcE4.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/hNseFPwz3XRzFl6oAvcxlLvcE4.webp 2400w\"},className:\"framer-1buq2g8\",\"data-framer-name\":\"Data_Viz_Treemap\",name:\"Data_Viz_Treemap\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/hIV0KRSU84SHtGBtPODstKn8WY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hIV0KRSU84SHtGBtPODstKn8WY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hIV0KRSU84SHtGBtPODstKn8WY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/hIV0KRSU84SHtGBtPODstKn8WY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/hIV0KRSU84SHtGBtPODstKn8WY.webp 2400w\"},className:\"framer-1kx5tj7\",\"data-framer-name\":\"Data_Viz_MPCE_infographic\",name:\"Data_Viz_MPCE_infographic\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/dRwAt7Qu6EI4uFmsnZAUo5xCeaI.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dRwAt7Qu6EI4uFmsnZAUo5xCeaI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/dRwAt7Qu6EI4uFmsnZAUo5xCeaI.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/dRwAt7Qu6EI4uFmsnZAUo5xCeaI.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/dRwAt7Qu6EI4uFmsnZAUo5xCeaI.webp 2400w\"},className:\"framer-4l35h6\",\"data-framer-name\":\"Data_Viz_Internet_adoption\",name:\"Data_Viz_Internet_adoption\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:37,delay:0,mass:1.6,stiffness:160,type:\"spring\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-156jm2y\",\"data-framer-name\":\"Isometric Illustrations\",name:\"Isometric Illustrations\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tjjcbz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-164bxc5\",\"data-styles-preset\":\"ob13WvUQe\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Isometric \",/*#__PURE__*/_jsx(\"br\",{}),\"Illustrations\"]})}),className:\"framer-1fi7gs5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-828glx-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:true},autoPlayControl:true,borderRadius:20,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"Y9pIYkVVo\",intervalControl:2.6,itemAmount:1,layoutId:\"Y9pIYkVVo\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/cmFklt4IU7FEAAv2jjobnjE.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/cmFklt4IU7FEAAv2jjobnjE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/cmFklt4IU7FEAAv2jjobnjE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/cmFklt4IU7FEAAv2jjobnjE.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/cmFklt4IU7FEAAv2jjobnjE.webp 2400w\"},className:\"framer-1fp0xkj\",\"data-framer-name\":\"IsometricBazaar_Street_methodology\",name:\"IsometricBazaar_Street_methodology\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/zB4EQwF2JdBO3aufW5mpL0hcHA.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/zB4EQwF2JdBO3aufW5mpL0hcHA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zB4EQwF2JdBO3aufW5mpL0hcHA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zB4EQwF2JdBO3aufW5mpL0hcHA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/zB4EQwF2JdBO3aufW5mpL0hcHA.webp 2400w\"},className:\"framer-3hzqvz\",\"data-framer-name\":\"IsometricCW_report_waste_types\",name:\"IsometricCW_report_waste_types\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/4AwPlL9mBFKrMI6mf0H0Z2SoT10.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4AwPlL9mBFKrMI6mf0H0Z2SoT10.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4AwPlL9mBFKrMI6mf0H0Z2SoT10.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4AwPlL9mBFKrMI6mf0H0Z2SoT10.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/4AwPlL9mBFKrMI6mf0H0Z2SoT10.webp 2400w\"},className:\"framer-1srceq9\",\"data-framer-name\":\"IsometricCW_waste_material\",name:\"IsometricCW_waste_material\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/0UXVWCqARoeADLUrRpKclMLsJpk.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/0UXVWCqARoeADLUrRpKclMLsJpk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/0UXVWCqARoeADLUrRpKclMLsJpk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/0UXVWCqARoeADLUrRpKclMLsJpk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/0UXVWCqARoeADLUrRpKclMLsJpk.webp 2400w\"},className:\"framer-teux3k\",\"data-framer-name\":\"IsometricG2_Isometric_2\",name:\"IsometricG2_Isometric_2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/wM8yz0mxUpDfg9FjyHDnwsYvrk.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wM8yz0mxUpDfg9FjyHDnwsYvrk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/wM8yz0mxUpDfg9FjyHDnwsYvrk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/wM8yz0mxUpDfg9FjyHDnwsYvrk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/wM8yz0mxUpDfg9FjyHDnwsYvrk.webp 2400w\"},className:\"framer-cfkxf5\",\"data-framer-name\":\"IsometricG2_isometric_3\",name:\"IsometricG2_isometric_3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/FwafpcNvD8iaiyJaeguwybSQiJk.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/FwafpcNvD8iaiyJaeguwybSQiJk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/FwafpcNvD8iaiyJaeguwybSQiJk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/FwafpcNvD8iaiyJaeguwybSQiJk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/FwafpcNvD8iaiyJaeguwybSQiJk.webp 2400w\"},className:\"framer-hsco8\",\"data-framer-name\":\"IsometricGodrej_Origins_Approach\",name:\"IsometricGodrej_Origins_Approach\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/T0BOayPAhx0i9kCRR04L9shBJY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/T0BOayPAhx0i9kCRR04L9shBJY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/T0BOayPAhx0i9kCRR04L9shBJY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/T0BOayPAhx0i9kCRR04L9shBJY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/T0BOayPAhx0i9kCRR04L9shBJY.webp 2400w\"},className:\"framer-1r5xe3\",\"data-framer-name\":\"IsometricHealth_and_well_being\",name:\"IsometricHealth_and_well_being\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/X7sHUBC9ABULqWXduSW3xapBw.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/X7sHUBC9ABULqWXduSW3xapBw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/X7sHUBC9ABULqWXduSW3xapBw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/X7sHUBC9ABULqWXduSW3xapBw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/X7sHUBC9ABULqWXduSW3xapBw.webp 2400w\"},className:\"framer-m3tna6\",\"data-framer-name\":\"IsometricSolid_waste_Management\",name:\"IsometricSolid_waste_Management\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8kr3jo\",\"data-framer-name\":\"Branded Charts\",name:\"Branded Charts\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-174wr05\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-164bxc5\",\"data-styles-preset\":\"ob13WvUQe\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Branded \",/*#__PURE__*/_jsx(\"br\",{}),\"Charts\"]})}),className:\"framer-1wt7qjc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r8uuok-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:true},autoPlayControl:true,borderRadius:20,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"p3E8HdERU\",intervalControl:2.4,itemAmount:1,layoutId:\"p3E8HdERU\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/DuXgRDhYXDc8JJaxqkiZBYeXOY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/DuXgRDhYXDc8JJaxqkiZBYeXOY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/DuXgRDhYXDc8JJaxqkiZBYeXOY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/DuXgRDhYXDc8JJaxqkiZBYeXOY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/DuXgRDhYXDc8JJaxqkiZBYeXOY.webp 2400w\"},className:\"framer-1tshtag\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsEmore\",name:\"Insightful_Infographics_branded_chartsEmore\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/EBmK5hIH9eDB9cBecyakYHyJc.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/EBmK5hIH9eDB9cBecyakYHyJc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/EBmK5hIH9eDB9cBecyakYHyJc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBmK5hIH9eDB9cBecyakYHyJc.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/EBmK5hIH9eDB9cBecyakYHyJc.webp 2400w\"},className:\"framer-3nrdr5\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsEv_Samvaad_charts\",name:\"Insightful_Infographics_branded_chartsEv_Samvaad_charts\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/dkVf9mVxLm4BVUzlNcTOohDo.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dkVf9mVxLm4BVUzlNcTOohDo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/dkVf9mVxLm4BVUzlNcTOohDo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/dkVf9mVxLm4BVUzlNcTOohDo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/dkVf9mVxLm4BVUzlNcTOohDo.webp 2400w\"},className:\"framer-ozqpgt\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsGMF_1\",name:\"Insightful_Infographics_branded_chartsGMF_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/jmzW5qm3KZYW2q6Na7zfwjoPFY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jmzW5qm3KZYW2q6Na7zfwjoPFY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/jmzW5qm3KZYW2q6Na7zfwjoPFY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/jmzW5qm3KZYW2q6Na7zfwjoPFY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/jmzW5qm3KZYW2q6Na7zfwjoPFY.webp 2400w\"},className:\"framer-anjghz\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsGMF_2\",name:\"Insightful_Infographics_branded_chartsGMF_2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/MuyUhfkbpt13F1HXkzxynXwl8.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/MuyUhfkbpt13F1HXkzxynXwl8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/MuyUhfkbpt13F1HXkzxynXwl8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/MuyUhfkbpt13F1HXkzxynXwl8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/MuyUhfkbpt13F1HXkzxynXwl8.webp 2400w\"},className:\"framer-1rnew08\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsGODREJ_HR\",name:\"Insightful_Infographics_branded_chartsGODREJ_HR\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/Wn0lW3h2GTre1ai2DpMn7bKaZUw.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Wn0lW3h2GTre1ai2DpMn7bKaZUw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Wn0lW3h2GTre1ai2DpMn7bKaZUw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wn0lW3h2GTre1ai2DpMn7bKaZUw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Wn0lW3h2GTre1ai2DpMn7bKaZUw.webp 2400w\"},className:\"framer-1vz6n2l\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsICMR_aunnual_report\",name:\"Insightful_Infographics_branded_chartsICMR_aunnual_report\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/8vsp7A8HQwMn7O4ucquvCnLuz0.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/8vsp7A8HQwMn7O4ucquvCnLuz0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/8vsp7A8HQwMn7O4ucquvCnLuz0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/8vsp7A8HQwMn7O4ucquvCnLuz0.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/8vsp7A8HQwMn7O4ucquvCnLuz0.webp 2400w\"},className:\"framer-jm3cf1\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsICMR\",name:\"Insightful_Infographics_branded_chartsICMR\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/3dDH700R0naaqx8uK7YTb89xuk.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3dDH700R0naaqx8uK7YTb89xuk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3dDH700R0naaqx8uK7YTb89xuk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3dDH700R0naaqx8uK7YTb89xuk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/3dDH700R0naaqx8uK7YTb89xuk.webp 2400w\"},className:\"framer-10i0fr0\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsIPAB_1\",name:\"Insightful_Infographics_branded_chartsIPAB_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/dHxtuP1FStoSii4plOa2ClnfwaY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dHxtuP1FStoSii4plOa2ClnfwaY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/dHxtuP1FStoSii4plOa2ClnfwaY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/dHxtuP1FStoSii4plOa2ClnfwaY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/dHxtuP1FStoSii4plOa2ClnfwaY.webp 2400w\"},className:\"framer-hnip29\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsSWM_\",name:\"Insightful_Infographics_branded_chartsSWM_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/MVXfBqaBdIdN6BS49dypZKqjdAU.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/MVXfBqaBdIdN6BS49dypZKqjdAU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/MVXfBqaBdIdN6BS49dypZKqjdAU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/MVXfBqaBdIdN6BS49dypZKqjdAU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/MVXfBqaBdIdN6BS49dypZKqjdAU.webp 2400w\"},className:\"framer-18hjlaz\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsWBB\",name:\"Insightful_Infographics_branded_chartsWBB\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/9ZV7ijtLvwJiis2LtExclmOQDB8.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/9ZV7ijtLvwJiis2LtExclmOQDB8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/9ZV7ijtLvwJiis2LtExclmOQDB8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/9ZV7ijtLvwJiis2LtExclmOQDB8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/9ZV7ijtLvwJiis2LtExclmOQDB8.webp 2400w\"},className:\"framer-6hsi5z\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsIPAB\",name:\"Insightful_Infographics_branded_chartsIPAB\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/nr9DLEZ8Ug6nIS13BkfjQb2rl4.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/nr9DLEZ8Ug6nIS13BkfjQb2rl4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nr9DLEZ8Ug6nIS13BkfjQb2rl4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/nr9DLEZ8Ug6nIS13BkfjQb2rl4.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/nr9DLEZ8Ug6nIS13BkfjQb2rl4.webp 2400w\"},className:\"framer-1pe1r8n\",\"data-framer-name\":\"Insightful_Infographics_branded_chartsIPAB_2\",name:\"Insightful_Infographics_branded_chartsIPAB_2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-98iwuf\",\"data-framer-name\":\"Spatial Viz\",name:\"Spatial Viz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ulyob1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-164bxc5\",\"data-styles-preset\":\"ob13WvUQe\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Spatial / Map\",/*#__PURE__*/_jsx(\"br\",{}),\"Visualization\"]})}),className:\"framer-17m5yi5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11dy5v6-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:true},autoPlayControl:true,borderRadius:20,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"AlEq8PKyS\",intervalControl:2.5,itemAmount:1,layoutId:\"AlEq8PKyS\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2400,pixelHeight:1800,pixelWidth:2400,sizes:\"1173.3333px\",src:\"https://framerusercontent.com/images/AKMBZRrEOt2FvqDwx9Xbi4QS8A.jpg\",srcSet:\"https://framerusercontent.com/images/AKMBZRrEOt2FvqDwx9Xbi4QS8A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AKMBZRrEOt2FvqDwx9Xbi4QS8A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AKMBZRrEOt2FvqDwx9Xbi4QS8A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AKMBZRrEOt2FvqDwx9Xbi4QS8A.jpg 2400w\"},className:\"framer-loj7d1\",\"data-framer-name\":\"Spatial_Viz_Bazaar_Street_spatial_1\",name:\"Spatial_Viz_Bazaar_Street_spatial_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2400,pixelHeight:1800,pixelWidth:2400,sizes:\"1173.3333px\",src:\"https://framerusercontent.com/images/BkeIE88eBZzqPTtsZjK47Bq90.jpg\",srcSet:\"https://framerusercontent.com/images/BkeIE88eBZzqPTtsZjK47Bq90.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BkeIE88eBZzqPTtsZjK47Bq90.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BkeIE88eBZzqPTtsZjK47Bq90.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BkeIE88eBZzqPTtsZjK47Bq90.jpg 2400w\"},className:\"framer-76ne9y\",\"data-framer-name\":\"Spatial_Viz_Bazaar_Street_Spatial_2\",name:\"Spatial_Viz_Bazaar_Street_Spatial_2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2400,pixelHeight:1800,pixelWidth:2400,sizes:\"1173.3333px\",src:\"https://framerusercontent.com/images/y8aMI5ZJs1lvSm0UlRC6cPMMqw.jpg\",srcSet:\"https://framerusercontent.com/images/y8aMI5ZJs1lvSm0UlRC6cPMMqw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/y8aMI5ZJs1lvSm0UlRC6cPMMqw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y8aMI5ZJs1lvSm0UlRC6cPMMqw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/y8aMI5ZJs1lvSm0UlRC6cPMMqw.jpg 2400w\"},className:\"framer-4c2lpw\",\"data-framer-name\":\"Spatial_Viz_Bazaar_Street_Spatial_3\",name:\"Spatial_Viz_Bazaar_Street_Spatial_3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2400,pixelHeight:1800,pixelWidth:2400,sizes:\"1173.3333px\",src:\"https://framerusercontent.com/images/P3uBnYoeEo7Pnbn4EbA1D9Tvn28.jpg\",srcSet:\"https://framerusercontent.com/images/P3uBnYoeEo7Pnbn4EbA1D9Tvn28.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/P3uBnYoeEo7Pnbn4EbA1D9Tvn28.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/P3uBnYoeEo7Pnbn4EbA1D9Tvn28.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/P3uBnYoeEo7Pnbn4EbA1D9Tvn28.jpg 2400w\"},className:\"framer-ktan49\",\"data-framer-name\":\"Spatial_Viz_Detroit_map\",name:\"Spatial_Viz_Detroit_map\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2400,pixelHeight:1800,pixelWidth:2400,sizes:\"1173.3333px\",src:\"https://framerusercontent.com/images/LgQZzFejxrG26BKrxDm3mfO8LU.jpg\",srcSet:\"https://framerusercontent.com/images/LgQZzFejxrG26BKrxDm3mfO8LU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LgQZzFejxrG26BKrxDm3mfO8LU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LgQZzFejxrG26BKrxDm3mfO8LU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LgQZzFejxrG26BKrxDm3mfO8LU.jpg 2400w\"},className:\"framer-1eer6nz\",\"data-framer-name\":\"Spatial_Viz_Mumbai_Map_Blue\",name:\"Spatial_Viz_Mumbai_Map_Blue\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2400,pixelHeight:1800,pixelWidth:2400,sizes:\"1173.3333px\",src:\"https://framerusercontent.com/images/6eM6RF6xi3KWTz2K7bPD58cMKPs.jpg\",srcSet:\"https://framerusercontent.com/images/6eM6RF6xi3KWTz2K7bPD58cMKPs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6eM6RF6xi3KWTz2K7bPD58cMKPs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6eM6RF6xi3KWTz2K7bPD58cMKPs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/6eM6RF6xi3KWTz2K7bPD58cMKPs.jpg 2400w\"},className:\"framer-1lm4w80\",\"data-framer-name\":\"Spatial_Viz_Street_Vendor_map\",name:\"Spatial_Viz_Street_Vendor_map\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dty793\",\"data-framer-name\":\"Isometric Viz\",name:\"Isometric Viz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-187biwn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-164bxc5\",\"data-styles-preset\":\"ob13WvUQe\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Conceptual Infographics\"})}),className:\"framer-1toa1ux\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gogdt9-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:true},autoPlayControl:true,borderRadius:20,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"FjvZEi2xh\",intervalControl:2.5,itemAmount:1,layoutId:\"FjvZEi2xh\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/ec06tH1rlxxs6P2FObkKXPSAvg.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ec06tH1rlxxs6P2FObkKXPSAvg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ec06tH1rlxxs6P2FObkKXPSAvg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ec06tH1rlxxs6P2FObkKXPSAvg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/ec06tH1rlxxs6P2FObkKXPSAvg.webp 2400w\"},className:\"framer-fcnt61\",\"data-framer-name\":\"Conceptual_6P_framework\",name:\"Conceptual_6P_framework\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/m4VfxB9B3m8m0Ejp3APbgVHMwg.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/m4VfxB9B3m8m0Ejp3APbgVHMwg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/m4VfxB9B3m8m0Ejp3APbgVHMwg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/m4VfxB9B3m8m0Ejp3APbgVHMwg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/m4VfxB9B3m8m0Ejp3APbgVHMwg.webp 2400w\"},className:\"framer-mmckal\",\"data-framer-name\":\"Conceptual_EV_Samvaad_illustration\",name:\"Conceptual_EV_Samvaad_illustration\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/meGFNC2ZHT0N9Wi8YLngQg3QOdw.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/meGFNC2ZHT0N9Wi8YLngQg3QOdw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/meGFNC2ZHT0N9Wi8YLngQg3QOdw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/meGFNC2ZHT0N9Wi8YLngQg3QOdw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/meGFNC2ZHT0N9Wi8YLngQg3QOdw.webp 2400w\"},className:\"framer-5n4gvl\",\"data-framer-name\":\"Conceptual_GPL_IR_climate\",name:\"Conceptual_GPL_IR_climate\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/MxsKZm37we4ZFUKRlJwAG67xXbc.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/MxsKZm37we4ZFUKRlJwAG67xXbc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/MxsKZm37we4ZFUKRlJwAG67xXbc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/MxsKZm37we4ZFUKRlJwAG67xXbc.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/MxsKZm37we4ZFUKRlJwAG67xXbc.webp 2400w\"},className:\"framer-1tortlg\",\"data-framer-name\":\"Conceptual_GPL_IR_earth\",name:\"Conceptual_GPL_IR_earth\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/nZk5SClim0ufgHoCpk7whlHlUA.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/nZk5SClim0ufgHoCpk7whlHlUA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nZk5SClim0ufgHoCpk7whlHlUA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/nZk5SClim0ufgHoCpk7whlHlUA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/nZk5SClim0ufgHoCpk7whlHlUA.webp 2400w\"},className:\"framer-amgu40\",\"data-framer-name\":\"Conceptual_GPL_SUS_water\",name:\"Conceptual_GPL_SUS_water\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/28EVgNf25tXiF9TXuy5Qt28fm4c.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/28EVgNf25tXiF9TXuy5Qt28fm4c.webp?scale-down-to=512 512w,https://framerusercontent.com/images/28EVgNf25tXiF9TXuy5Qt28fm4c.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/28EVgNf25tXiF9TXuy5Qt28fm4c.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/28EVgNf25tXiF9TXuy5Qt28fm4c.webp 2400w\"},className:\"framer-y764t2\",\"data-framer-name\":\"Conceptual_JFS_poster\",name:\"Conceptual_JFS_poster\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/XKX6NY6IZb3LR8SC592tVgxMQg.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/XKX6NY6IZb3LR8SC592tVgxMQg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/XKX6NY6IZb3LR8SC592tVgxMQg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/XKX6NY6IZb3LR8SC592tVgxMQg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/XKX6NY6IZb3LR8SC592tVgxMQg.webp 2400w\"},className:\"framer-ru20a7\",\"data-framer-name\":\"Conceptual_Lets_Talk_EDIT\",name:\"Conceptual_Lets_Talk_EDIT\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,pixelHeight:1800,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/36t8a2o5hwNoLDKF4FfRYeRFTbE.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/36t8a2o5hwNoLDKF4FfRYeRFTbE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/36t8a2o5hwNoLDKF4FfRYeRFTbE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/36t8a2o5hwNoLDKF4FfRYeRFTbE.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/36t8a2o5hwNoLDKF4FfRYeRFTbE.webp 2400w\"},className:\"framer-1tcvcn3\",\"data-framer-name\":\"Conceptual_WRI_IEMI\",name:\"Conceptual_WRI_IEMI\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qtma4q\",\"data-framer-name\":\"Our other offerings\",name:\"Our other offerings\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1urfgq7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nfczrr\",\"data-styles-preset\":\"REVkC6CYY\",style:{\"--framer-text-color\":\"var(--token-a3d488a5-1d08-487a-bcda-64d5273a7130, rgb(255, 255, 255))\"},children:\"Our other offerings\"})}),className:\"framer-oypuae\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18h756v\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"x7fYbIEZa\"},implicitPathVariables:undefined},{href:{webPageId:\"x7fYbIEZa\"},implicitPathVariables:undefined},{href:{webPageId:\"x7fYbIEZa\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{width:\"calc(100vw - 40px)\",y:2134.8999999999996},LMBc1vTAh:{width:\"max((100vw - 140px) / 3, 1px)\",y:2492.8999999999996}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"max((100vw - 220px) / 3, 1px)\",y:2841.9058103975535,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f7ldp1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{style:{width:\"100%\"},xWdtsXbYa:resolvedLinks[2]},LMBc1vTAh:{xWdtsXbYa:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(SmallCard,{GlnzYg48I:\"Create Reports that elevate your content and resonate with your audience\",height:\"100%\",id:\"qQzfPgfIj\",layoutId:\"qQzfPgfIj\",ri8bpJRw5:\"Research Reports\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xWdtsXbYa:resolvedLinks[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rfxeYxh_5\"},implicitPathVariables:undefined},{href:{webPageId:\"rfxeYxh_5\"},implicitPathVariables:undefined},{href:{webPageId:\"rfxeYxh_5\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{width:\"calc(100vw - 40px)\",y:2314.8999999999996},LMBc1vTAh:{width:\"max((100vw - 140px) / 3, 1px)\",y:2492.8999999999996}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"max((100vw - 220px) / 3, 1px)\",y:2841.9058103975535,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gzdvgt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{xWdtsXbYa:resolvedLinks1[2]},LMBc1vTAh:{xWdtsXbYa:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(SmallCard,{GlnzYg48I:\"Need to make an impression? Power your point with slick slides.\",height:\"100%\",id:\"mgwk8uv_p\",layoutId:\"mgwk8uv_p\",ri8bpJRw5:\"Persuasive Presentations\",style:{width:\"100%\"},width:\"100%\",xWdtsXbYa:resolvedLinks1[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xEsz6vcjR\"},implicitPathVariables:undefined},{href:{webPageId:\"xEsz6vcjR\"},implicitPathVariables:undefined},{href:{webPageId:\"xEsz6vcjR\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{width:\"calc(100vw - 40px)\",y:2494.8999999999996},LMBc1vTAh:{width:\"max((100vw - 140px) / 3, 1px)\",y:2492.8999999999996}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"max((100vw - 220px) / 3, 1px)\",y:2841.9058103975535,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i12lqi-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{xWdtsXbYa:resolvedLinks2[2]},LMBc1vTAh:{xWdtsXbYa:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(SmallCard,{GlnzYg48I:\"Leverage the power of digital storytelling to deliver your content effectively.\",height:\"100%\",id:\"ffa5w1t3B\",layoutId:\"ffa5w1t3B\",ri8bpJRw5:\"Engaging Experiences\",style:{width:\"100%\"},width:\"100%\",xWdtsXbYa:resolvedLinks2[0]})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{width:\"calc(100vw - 40px)\",y:2679.8999999999996},LMBc1vTAh:{width:\"calc(100vw - 80px)\",y:2677.8999999999996}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:\"calc(100vw - 160px)\",y:3026.9058103975535,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j1ekuz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{variant:\"aqAkkvT1C\"},LMBc1vTAh:{variant:\"kc2tjzUHQ\"}},children:/*#__PURE__*/_jsx(CTASection,{height:\"100%\",id:\"ck2gg9VDb\",layoutId:\"ck2gg9VDb\",style:{width:\"100%\"},variant:\"T6WyutV5w\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{y:2925.8999999999996},LMBc1vTAh:{y:2943.8999999999996}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:3332.9058103975535,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7uyfgr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{variant:\"ZvZbpL3UQ\"},LMBc1vTAh:{variant:\"jDmtiiuAx\"}},children:/*#__PURE__*/_jsx(MenuBar,{height:\"100%\",id:\"mjZDW3QWB\",layoutId:\"mjZDW3QWB\",variant:\"dtGCF11PW\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{y:2984.8999999999996},LMBc1vTAh:{y:3002.8999999999996}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:596,width:\"100vw\",y:3391.9058103975535,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wnogdo-container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FNIIGLHKG:{variant:\"p_QnvDXRv\"},LMBc1vTAh:{variant:\"oxnuKgh36\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"P3yxMmJAz\",layoutId:\"P3yxMmJAz\",style:{width:\"100%\"},variant:\"FfYQn6Wpg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ikp0pk-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"hsk7C9Upe\",intensity:20,layoutId:\"hsk7C9Upe\",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-op7Ui { background: white; }`,\".framer-op7Ui.framer-4m486h, .framer-op7Ui .framer-4m486h { display: block; }\",\".framer-op7Ui.framer-1bjy6mo { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1400px; }\",\".framer-op7Ui .framer-cxudtx-container { flex: none; height: 70.03058103975535vh; position: relative; width: 100%; }\",\".framer-op7Ui .framer-1iu4mum { align-content: center; align-items: center; background-color: #f5f5f5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-op7Ui .framer-90uh5n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 44px 0px 44px 0px; position: relative; width: 100%; }\",\".framer-op7Ui .framer-dd87h9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-op7Ui .framer-1be5nnl, .framer-op7Ui .framer-oypuae { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-op7Ui .framer-paybf7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-op7Ui .framer-5s0069 { align-content: center; align-items: center; aspect-ratio: 2.0865102639296187 / 1; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 829px); justify-content: center; overflow: visible; padding: 20px 20px 25px 20px; position: relative; width: 100%; }\",\".framer-op7Ui .framer-1pehn1m { aspect-ratio: 1.5307462686567164 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 784px); overflow: visible; position: relative; width: 1px; }\",\".framer-op7Ui .framer-1hw5cv { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-op7Ui .framer-1ipc0d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 119px 80px 119px 80px; position: relative; width: 1px; }\",\".framer-op7Ui .framer-135pmsk, .framer-op7Ui .framer-156jm2y, .framer-op7Ui .framer-8kr3jo, .framer-op7Ui .framer-98iwuf, .framer-op7Ui .framer-1dty793 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-op7Ui .framer-grkgam, .framer-op7Ui .framer-1tjjcbz, .framer-op7Ui .framer-174wr05, .framer-op7Ui .framer-1ulyob1, .framer-op7Ui .framer-187biwn { -webkit-backdrop-filter: blur(3px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(3px); background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-op7Ui .framer-av9dd4, .framer-op7Ui .framer-1fi7gs5, .framer-op7Ui .framer-1wt7qjc, .framer-op7Ui .framer-17m5yi5, .framer-op7Ui .framer-1toa1ux { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-op7Ui .framer-g09hk1-container, .framer-op7Ui .framer-828glx-container, .framer-op7Ui .framer-r8uuok-container, .framer-op7Ui .framer-11dy5v6-container, .framer-op7Ui .framer-gogdt9-container { aspect-ratio: 1.3336520076481835 / 1; flex: 2 0 0px; height: var(--framer-aspect-ratio-supported, 585px); position: relative; width: 1px; }\",\".framer-op7Ui .framer-kxjg1l, .framer-op7Ui .framer-1oh3tl, .framer-op7Ui .framer-1uxkgfw, .framer-op7Ui .framer-1q0r223, .framer-op7Ui .framer-x5ca6t, .framer-op7Ui .framer-1m2d127, .framer-op7Ui .framer-1buq2g8, .framer-op7Ui .framer-1kx5tj7, .framer-op7Ui .framer-4l35h6, .framer-op7Ui .framer-1fp0xkj, .framer-op7Ui .framer-3hzqvz, .framer-op7Ui .framer-1srceq9, .framer-op7Ui .framer-teux3k, .framer-op7Ui .framer-cfkxf5, .framer-op7Ui .framer-hsco8, .framer-op7Ui .framer-1r5xe3, .framer-op7Ui .framer-m3tna6, .framer-op7Ui .framer-1tshtag, .framer-op7Ui .framer-3nrdr5, .framer-op7Ui .framer-ozqpgt, .framer-op7Ui .framer-anjghz, .framer-op7Ui .framer-1rnew08, .framer-op7Ui .framer-1vz6n2l, .framer-op7Ui .framer-jm3cf1, .framer-op7Ui .framer-10i0fr0, .framer-op7Ui .framer-hnip29, .framer-op7Ui .framer-18hjlaz, .framer-op7Ui .framer-6hsi5z, .framer-op7Ui .framer-1pe1r8n, .framer-op7Ui .framer-fcnt61, .framer-op7Ui .framer-mmckal, .framer-op7Ui .framer-5n4gvl, .framer-op7Ui .framer-1tortlg, .framer-op7Ui .framer-amgu40, .framer-op7Ui .framer-y764t2, .framer-op7Ui .framer-ru20a7, .framer-op7Ui .framer-1tcvcn3 { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 900px); overflow: visible; position: relative; width: 1200px; }\",\".framer-op7Ui .framer-loj7d1, .framer-op7Ui .framer-76ne9y, .framer-op7Ui .framer-4c2lpw, .framer-op7Ui .framer-ktan49, .framer-op7Ui .framer-1eer6nz, .framer-op7Ui .framer-1lm4w80 { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 880px); overflow: visible; position: relative; width: 1173px; }\",\".framer-op7Ui .framer-1qtma4q { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-op7Ui .framer-1urfgq7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 58px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-op7Ui .framer-18h756v { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-op7Ui .framer-1f7ldp1-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-op7Ui .framer-1gzdvgt-container, .framer-op7Ui .framer-i12lqi-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-op7Ui .framer-j1ekuz-container, .framer-op7Ui .framer-1wnogdo-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-op7Ui .framer-7uyfgr-container { bottom: 50px; flex: none; height: auto; position: sticky; width: auto; will-change: transform; z-index: 8; }\",\".framer-op7Ui .framer-1ikp0pk-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-op7Ui.framer-1bjy6mo, .framer-op7Ui .framer-1iu4mum, .framer-op7Ui .framer-90uh5n, .framer-op7Ui .framer-dd87h9, .framer-op7Ui .framer-5s0069, .framer-op7Ui .framer-1hw5cv, .framer-op7Ui .framer-1ipc0d, .framer-op7Ui .framer-135pmsk, .framer-op7Ui .framer-grkgam, .framer-op7Ui .framer-156jm2y, .framer-op7Ui .framer-1tjjcbz, .framer-op7Ui .framer-8kr3jo, .framer-op7Ui .framer-174wr05, .framer-op7Ui .framer-98iwuf, .framer-op7Ui .framer-1ulyob1, .framer-op7Ui .framer-1dty793, .framer-op7Ui .framer-187biwn, .framer-op7Ui .framer-1qtma4q, .framer-op7Ui .framer-1urfgq7, .framer-op7Ui .framer-18h756v { gap: 0px; } .framer-op7Ui.framer-1bjy6mo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-op7Ui.framer-1bjy6mo > :first-child, .framer-op7Ui .framer-1iu4mum > :first-child, .framer-op7Ui .framer-90uh5n > :first-child, .framer-op7Ui .framer-dd87h9 > :first-child, .framer-op7Ui .framer-1ipc0d > :first-child, .framer-op7Ui .framer-1qtma4q > :first-child, .framer-op7Ui .framer-1urfgq7 > :first-child { margin-top: 0px; } .framer-op7Ui.framer-1bjy6mo > :last-child, .framer-op7Ui .framer-1iu4mum > :last-child, .framer-op7Ui .framer-90uh5n > :last-child, .framer-op7Ui .framer-dd87h9 > :last-child, .framer-op7Ui .framer-1ipc0d > :last-child, .framer-op7Ui .framer-1qtma4q > :last-child, .framer-op7Ui .framer-1urfgq7 > :last-child { margin-bottom: 0px; } .framer-op7Ui .framer-1iu4mum > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-op7Ui .framer-90uh5n > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-op7Ui .framer-dd87h9 > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-op7Ui .framer-5s0069 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-op7Ui .framer-5s0069 > :first-child, .framer-op7Ui .framer-1hw5cv > :first-child, .framer-op7Ui .framer-135pmsk > :first-child, .framer-op7Ui .framer-grkgam > :first-child, .framer-op7Ui .framer-156jm2y > :first-child, .framer-op7Ui .framer-1tjjcbz > :first-child, .framer-op7Ui .framer-8kr3jo > :first-child, .framer-op7Ui .framer-174wr05 > :first-child, .framer-op7Ui .framer-98iwuf > :first-child, .framer-op7Ui .framer-1ulyob1 > :first-child, .framer-op7Ui .framer-1dty793 > :first-child, .framer-op7Ui .framer-187biwn > :first-child, .framer-op7Ui .framer-18h756v > :first-child { margin-left: 0px; } .framer-op7Ui .framer-5s0069 > :last-child, .framer-op7Ui .framer-1hw5cv > :last-child, .framer-op7Ui .framer-135pmsk > :last-child, .framer-op7Ui .framer-grkgam > :last-child, .framer-op7Ui .framer-156jm2y > :last-child, .framer-op7Ui .framer-1tjjcbz > :last-child, .framer-op7Ui .framer-8kr3jo > :last-child, .framer-op7Ui .framer-174wr05 > :last-child, .framer-op7Ui .framer-98iwuf > :last-child, .framer-op7Ui .framer-1ulyob1 > :last-child, .framer-op7Ui .framer-1dty793 > :last-child, .framer-op7Ui .framer-187biwn > :last-child, .framer-op7Ui .framer-18h756v > :last-child { margin-right: 0px; } .framer-op7Ui .framer-1hw5cv > *, .framer-op7Ui .framer-grkgam > *, .framer-op7Ui .framer-1tjjcbz > *, .framer-op7Ui .framer-174wr05 > *, .framer-op7Ui .framer-1ulyob1 > *, .framer-op7Ui .framer-187biwn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-op7Ui .framer-1ipc0d > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-op7Ui .framer-135pmsk > *, .framer-op7Ui .framer-156jm2y > *, .framer-op7Ui .framer-8kr3jo > *, .framer-op7Ui .framer-98iwuf > *, .framer-op7Ui .framer-1dty793 > *, .framer-op7Ui .framer-18h756v > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-op7Ui .framer-1qtma4q > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-op7Ui .framer-1urfgq7 > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,`@media (min-width: 810px) and (max-width: 1399px) { .${metadata.bodyClassName}-framer-op7Ui { background: white; } .framer-op7Ui.framer-1bjy6mo { width: 810px; } .framer-op7Ui .framer-cxudtx-container { height: 50vh; } .framer-op7Ui .framer-1iu4mum { padding: 0px 40px 0px 40px; } .framer-op7Ui .framer-dd87h9 { gap: 31px; } .framer-op7Ui .framer-paybf7 { width: 100%; } .framer-op7Ui .framer-5s0069 { height: var(--framer-aspect-ratio-supported, 496px); } .framer-op7Ui .framer-1pehn1m { height: var(--framer-aspect-ratio-supported, 451px); } .framer-op7Ui .framer-1ipc0d, .framer-op7Ui .framer-1qtma4q { padding: 40px; } .framer-op7Ui .framer-grkgam, .framer-op7Ui .framer-1tjjcbz, .framer-op7Ui .framer-174wr05, .framer-op7Ui .framer-1ulyob1, .framer-op7Ui .framer-187biwn { flex-direction: column; } .framer-op7Ui .framer-av9dd4, .framer-op7Ui .framer-1fi7gs5, .framer-op7Ui .framer-1wt7qjc, .framer-op7Ui .framer-17m5yi5, .framer-op7Ui .framer-1toa1ux { flex: none; width: 100%; } .framer-op7Ui .framer-g09hk1-container, .framer-op7Ui .framer-r8uuok-container { flex: none; height: var(--framer-aspect-ratio-supported, 502px); width: 100%; } .framer-op7Ui .framer-828glx-container, .framer-op7Ui .framer-11dy5v6-container, .framer-op7Ui .framer-gogdt9-container { flex: none; height: var(--framer-aspect-ratio-supported, 503px); width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-op7Ui .framer-dd87h9, .framer-op7Ui .framer-grkgam, .framer-op7Ui .framer-1tjjcbz, .framer-op7Ui .framer-174wr05, .framer-op7Ui .framer-1ulyob1, .framer-op7Ui .framer-187biwn { gap: 0px; } .framer-op7Ui .framer-dd87h9 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-op7Ui .framer-dd87h9 > :first-child, .framer-op7Ui .framer-grkgam > :first-child, .framer-op7Ui .framer-1tjjcbz > :first-child, .framer-op7Ui .framer-174wr05 > :first-child, .framer-op7Ui .framer-1ulyob1 > :first-child, .framer-op7Ui .framer-187biwn > :first-child { margin-top: 0px; } .framer-op7Ui .framer-dd87h9 > :last-child, .framer-op7Ui .framer-grkgam > :last-child, .framer-op7Ui .framer-1tjjcbz > :last-child, .framer-op7Ui .framer-174wr05 > :last-child, .framer-op7Ui .framer-1ulyob1 > :last-child, .framer-op7Ui .framer-187biwn > :last-child { margin-bottom: 0px; } .framer-op7Ui .framer-grkgam > *, .framer-op7Ui .framer-1tjjcbz > *, .framer-op7Ui .framer-174wr05 > *, .framer-op7Ui .framer-1ulyob1 > *, .framer-op7Ui .framer-187biwn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-op7Ui { background: white; } .framer-op7Ui.framer-1bjy6mo { width: 390px; } .framer-op7Ui .framer-cxudtx-container { height: 50vh; } .framer-op7Ui .framer-1iu4mum { padding: 0px 20px 0px 20px; } .framer-op7Ui .framer-dd87h9 { gap: 23px; } .framer-op7Ui .framer-paybf7 { width: 100%; } .framer-op7Ui .framer-5s0069 { height: var(--framer-aspect-ratio-supported, 96px); } .framer-op7Ui .framer-1pehn1m { height: var(--framer-aspect-ratio-supported, 131px); } .framer-op7Ui .framer-1hw5cv, .framer-op7Ui .framer-18h756v { flex-direction: column; } .framer-op7Ui .framer-1ipc0d { flex: none; padding: 20px; width: 100%; } .framer-op7Ui .framer-grkgam, .framer-op7Ui .framer-1tjjcbz, .framer-op7Ui .framer-174wr05, .framer-op7Ui .framer-1ulyob1, .framer-op7Ui .framer-187biwn { flex-direction: column; padding: 15px; } .framer-op7Ui .framer-av9dd4, .framer-op7Ui .framer-1fi7gs5, .framer-op7Ui .framer-1wt7qjc, .framer-op7Ui .framer-17m5yi5, .framer-op7Ui .framer-1toa1ux, .framer-op7Ui .framer-1gzdvgt-container, .framer-op7Ui .framer-i12lqi-container { flex: none; width: 100%; } .framer-op7Ui .framer-g09hk1-container, .framer-op7Ui .framer-828glx-container, .framer-op7Ui .framer-r8uuok-container, .framer-op7Ui .framer-11dy5v6-container, .framer-op7Ui .framer-gogdt9-container { flex: none; height: var(--framer-aspect-ratio-supported, 150px); width: 100%; } .framer-op7Ui .framer-1qtma4q { padding: 20px; } .framer-op7Ui .framer-1f7ldp1-container { align-self: unset; flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-op7Ui .framer-dd87h9, .framer-op7Ui .framer-1hw5cv, .framer-op7Ui .framer-grkgam, .framer-op7Ui .framer-1tjjcbz, .framer-op7Ui .framer-174wr05, .framer-op7Ui .framer-1ulyob1, .framer-op7Ui .framer-187biwn, .framer-op7Ui .framer-18h756v { gap: 0px; } .framer-op7Ui .framer-dd87h9 > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-op7Ui .framer-dd87h9 > :first-child, .framer-op7Ui .framer-1hw5cv > :first-child, .framer-op7Ui .framer-grkgam > :first-child, .framer-op7Ui .framer-1tjjcbz > :first-child, .framer-op7Ui .framer-174wr05 > :first-child, .framer-op7Ui .framer-1ulyob1 > :first-child, .framer-op7Ui .framer-187biwn > :first-child, .framer-op7Ui .framer-18h756v > :first-child { margin-top: 0px; } .framer-op7Ui .framer-dd87h9 > :last-child, .framer-op7Ui .framer-1hw5cv > :last-child, .framer-op7Ui .framer-grkgam > :last-child, .framer-op7Ui .framer-1tjjcbz > :last-child, .framer-op7Ui .framer-174wr05 > :last-child, .framer-op7Ui .framer-1ulyob1 > :last-child, .framer-op7Ui .framer-187biwn > :last-child, .framer-op7Ui .framer-18h756v > :last-child { margin-bottom: 0px; } .framer-op7Ui .framer-1hw5cv > *, .framer-op7Ui .framer-grkgam > *, .framer-op7Ui .framer-1tjjcbz > *, .framer-op7Ui .framer-174wr05 > *, .framer-op7Ui .framer-1ulyob1 > *, .framer-op7Ui .framer-187biwn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-op7Ui .framer-18h756v > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6536\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LMBc1vTAh\":{\"layout\":[\"fixed\",\"auto\"]},\"FNIIGLHKG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerr8bVlYSR1=withCSS(Component,css,\"framer-op7Ui\");export default Framerr8bVlYSR1;Framerr8bVlYSR1.displayName=\"Page\";Framerr8bVlYSR1.defaultProps={height:6536,width:1400};addFonts(Framerr8bVlYSR1,[{explicitInter:true,fonts:[{family:\"Public Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KEZHVBA7K5W2AK35YD2Q332ZH6JJYKPI/YSSJL3FZ55BIRNOPQ7IG2MVJBJEXVSQ4/4QGWO2XSJ47NHK4SEA7ZMAX2NY3M6FUV.woff2\",weight:\"600\"},{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v18/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5xg0pX189fg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PageHeaderFonts,...SlideshowFonts,...SmallCardFonts,...CTASectionFonts,...MenuBarFonts,...FooterFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr8bVlYSR1\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"6536\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LMBc1vTAh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FNIIGLHKG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "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", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "PageHeaderFonts", "getFonts", "avHQO6pvp_default", "SlideshowFonts", "Slideshow", "MotionDivWithFX", "withFX", "motion", "SmallCardFonts", "wTrfMhaqT_default", "CTASectionFonts", "AX42WPO7q_default", "MenuBarFonts", "t4zc2Lwk0_default", "FooterFonts", "ldrhxzr_W_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "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", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "avHQO6pvp_default", "x", "RichText2", "getLoadingLazyAtYPosition", "Image2", "MotionDivWithFX", "Slideshow", "ResolveLinks", "resolvedLinks", "wTrfMhaqT_default", "resolvedLinks1", "resolvedLinks2", "AX42WPO7q_default", "t4zc2Lwk0_default", "ldrhxzr_W_default", "SmoothScroll", "css", "Framerr8bVlYSR1", "withCSS", "r8bVlYSR1_default", "addFonts", "PageHeaderFonts", "SlideshowFonts", "SmallCardFonts", "CTASectionFonts", "MenuBarFonts", "FooterFonts", "SmoothScrollFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
