{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framerusercontent.com/modules/z13HHuoDj9OkrlRsFuHj/3OXhncKSjFv7dVQxUgEJ/Kym4ifyAB.js", "ssg:https://framerusercontent.com/modules/5eqDxLIKey1RuhTfvmAr/oFCtCqiGo2ZyuQ4Gc1cv/UpqEA6qxk.js", "ssg:https://framerusercontent.com/modules/MHCDbMH4uvKeYzm1yNo6/uFz9p7dHj7D5hm0YXDv7/Mailchimp.js", "ssg:https://framerusercontent.com/modules/pb8GvWxMSz2ovJPsGRuv/i9hLUjHb0zTHvL7OQxsR/GvoiKHMSZ.js", "ssg:https://framerusercontent.com/modules/t6l0yGigVVIc9XF4nDMX/CCVckZCo4qnR781Y8X90/KQhXoqMTQ.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "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 (e1877f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/fGpSFURUKo9j7sTvsAbF/tGqQE5bM9PMh4d5EsFrS/cGTNsvVOM.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/TyzwdnbebWpIE60P7rnF/TKz8VVPhhy7IoikpyPJq/DAZA_4VYt.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8u5qLiTksPKamMTzS7yu/RWbHkKwXEdUcZAScAtDx/pzgAh97sX.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/6oRM83pdoOic29AYA12m/uGEQbdxmQdwc48MfPmZc/xZndidUCt.js\";import CTA from\"https://framerusercontent.com/modules/mcdb8Lkn0g1EbseWEGtV/L4JqJ2jR1YxN699suiar/OlTWqYMo3.js\";const PhosphorFonts=getFonts(Phosphor);const CTAFonts=getFonts(CTA);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"KeWUWSw2t\",\"hUO6W9Cv4\",\"oO6m8pK61\",\"rnz703G5_\",\"SON8BvVgC\"];const serializationHash=\"framer-rJius\";const variantClassNames={hUO6W9Cv4:\"framer-v-gnn78v\",KeWUWSw2t:\"framer-v-fvxdms\",oO6m8pK61:\"framer-v-119wxul\",rnz703G5_:\"framer-v-pi222v\",SON8BvVgC:\"framer-v-yvntk0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Home Timeline\":\"SON8BvVgC\",\"Left Alternative\":\"hUO6W9Cv4\",\"Left Color Alternative\":\"rnz703G5_\",Center:\"oO6m8pK61\",Left:\"KeWUWSw2t\"};const getProps=({cTA,cTA1,date,description,height,icon,icon1,id,link,subhead,text,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_humanReadableVariantMap_props_variant,_ref9;return{...props,EgEa9J473:(_ref=cTA1!==null&&cTA1!==void 0?cTA1:props.EgEa9J473)!==null&&_ref!==void 0?_ref:\"Learn more\",eZ5aNjZIy:link!==null&&link!==void 0?link:props.eZ5aNjZIy,fsUmuS24I:(_ref1=description!==null&&description!==void 0?description:props.fsUmuS24I)!==null&&_ref1!==void 0?_ref1:\"Description here\",g56HeEMzh:(_ref2=title!==null&&title!==void 0?title:props.g56HeEMzh)!==null&&_ref2!==void 0?_ref2:\"60 Components\",HQlsDHpqI:(_ref3=text!==null&&text!==void 0?text:props.HQlsDHpqI)!==null&&_ref3!==void 0?_ref3:true,J2X4hmGjs:(_ref4=icon!==null&&icon!==void 0?icon:props.J2X4hmGjs)!==null&&_ref4!==void 0?_ref4:true,jezvjAzk0:(_ref5=subhead!==null&&subhead!==void 0?subhead:props.jezvjAzk0)!==null&&_ref5!==void 0?_ref5:\"Subhead\",mdujxVvIp:(_ref6=date!==null&&date!==void 0?date:props.mdujxVvIp)!==null&&_ref6!==void 0?_ref6:\"JUNE 2023\",qKOBsbAyJ:(_ref7=cTA!==null&&cTA!==void 0?cTA:props.qKOBsbAyJ)!==null&&_ref7!==void 0?_ref7:true,SXDgbTQKy:(_ref8=icon1!==null&&icon1!==void 0?icon1:props.SXDgbTQKy)!==null&&_ref8!==void 0?_ref8:\"Cube\",variant:(_ref9=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref9!==void 0?_ref9:\"KeWUWSw2t\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,J2X4hmGjs,SXDgbTQKy,g56HeEMzh,mdujxVvIp,HQlsDHpqI,fsUmuS24I,qKOBsbAyJ,EgEa9J473,eZ5aNjZIy,jezvjAzk0,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KeWUWSw2t\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"hUO6W9Cv4\",\"SON8BvVgC\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"hUO6W9Cv4\",\"SON8BvVgC\"].includes(baseVariant))return true;return false;};const isDisplayed2=value=>{if(baseVariant===\"oO6m8pK61\")return true;return value;};const isDisplayed3=value=>{if([\"hUO6W9Cv4\",\"oO6m8pK61\",\"SON8BvVgC\"].includes(baseVariant))return false;return value;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-fvxdms\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"KeWUWSw2t\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(32, 105, 247, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:'0px 10px 30px -20px var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255)) /* {\"name\":\"Blue\"} */',...style},variants:{hUO6W9Cv4:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",boxShadow:\"0px 0.6021873017743928px 1.083937143193907px -1.0833333333333333px rgba(208, 218, 230, 0.63193), 0px 2.288533303243457px 4.119359945838223px -2.1666666666666665px rgba(208, 218, 230, 0.58134), 0px 10px 18px -3.25px rgba(208, 218, 230, 0.35)\"},rnz703G5_:{backgroundColor:\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\"},SON8BvVgC:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",boxShadow:\"0px 0.6021873017743928px 1.083937143193907px -1.0833333333333333px rgba(208, 218, 230, 0.63193), 0px 2.288533303243457px 4.119359945838223px -2.1666666666666665px rgba(208, 218, 230, 0.58134), 0px 10px 18px -3.25px rgba(208, 218, 230, 0.35)\"}},...addPropertyOverrides({hUO6W9Cv4:{\"data-framer-name\":\"Left Alternative\"},oO6m8pK61:{\"data-framer-name\":\"Center\"},rnz703G5_:{\"data-framer-name\":\"Left Color Alternative\"},SON8BvVgC:{\"data-framer-name\":\"Home Timeline\"}},baseVariant,gestureVariant),children:[J2X4hmGjs&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-uucjd2\",layoutDependency:layoutDependency,layoutId:\"F95f36hha\",style:{backgroundColor:\"var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, rgb(235, 245, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{rnz703G5_:{backgroundColor:\"rgba(0, 0, 0, 0.2)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kqmbbe-container\",layoutDependency:layoutDependency,layoutId:\"Ty5tyHJHr-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-97505c00-b373-4043-853f-3700d21ed84f, rgb(32, 105, 247))\",height:\"100%\",iconSearch:\"House\",iconSelection:SXDgbTQKy,id:\"Ty5tyHJHr\",layoutId:\"Ty5tyHJHr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({rnz703G5_:{color:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-la8y0v\",layoutDependency:layoutDependency,layoutId:\"bYmYnzPr_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z5nbjq\",layoutDependency:layoutDependency,layoutId:\"RTForIbu1\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-97505c00-b373-4043-853f-3700d21ed84f, rgb(32, 105, 247)))\"},children:\"60 Components\"})}),className:\"framer-1uxjwyq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hB6nuKfjq\",style:{\"--extracted-r6o4lv\":\"var(--token-97505c00-b373-4043-853f-3700d21ed84f, rgb(32, 105, 247))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:g56HeEMzh,variants:{rnz703G5_:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rnz703G5_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"60 Components\"})}),verticalAlignment:\"center\"}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby01MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-97505c00-b373-4043-853f-3700d21ed84f, rgb(32, 105, 247)))\",\"--framer-text-transform\":\"uppercase\"},children:\"JUNE 2023\"})}),className:\"framer-9kpx5m\",fonts:[\"GF;IBM Plex Mono-500\"],layoutDependency:layoutDependency,layoutId:\"dZ87ZXwyE\",style:{\"--extracted-r6o4lv\":\"var(--token-97505c00-b373-4043-853f-3700d21ed84f, rgb(32, 105, 247))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mdujxVvIp,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({hUO6W9Cv4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",children:\"JUNE 2023\"})}),fonts:[\"Inter\"]},SON8BvVgC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",children:\"JUNE 2023\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vgpzu7\",\"data-styles-preset\":\"DAZA_4VYt\",children:\"Subhead\"})}),className:\"framer-14hnfxo\",\"data-framer-name\":\"Subheader\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gJPc0hMjp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:jezvjAzk0,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SON8BvVgC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Subhead\"})})}},baseVariant,gestureVariant)}),isDisplayed2(HQlsDHpqI)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})}),className:\"framer-1im8s97\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R_F67sjlM\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:fsUmuS24I,variants:{oO6m8pK61:{\"--extracted-r6o4lv\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},rnz703G5_:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",opacity:.8}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oO6m8pK61:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})},rnz703G5_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})}},baseVariant,gestureVariant)})]}),isDisplayed3(qKOBsbAyJ)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bhxmgd-container\",layoutDependency:layoutDependency,layoutId:\"oe7WZP7JM-container\",children:/*#__PURE__*/_jsx(CTA,{EnBVDC6a2:\"var(--token-97505c00-b373-4043-853f-3700d21ed84f, rgb(32, 105, 247))\",height:\"100%\",id:\"oe7WZP7JM\",layoutId:\"oe7WZP7JM\",SRBP_E1AV:EgEa9J473,variant:\"DT5wJl0k7\",width:\"100%\",zNGAVVmSy:eZ5aNjZIy,...addPropertyOverrides({rnz703G5_:{EnBVDC6a2:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"kRTkeX9rK\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rJius.framer-1dk5uem, .framer-rJius .framer-1dk5uem { display: block; }\",\".framer-rJius.framer-fvxdms { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 490px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rJius .framer-uucjd2 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 56px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rJius .framer-kqmbbe-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-rJius .framer-la8y0v { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rJius .framer-z5nbjq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rJius .framer-1uxjwyq, .framer-rJius .framer-14hnfxo, .framer-rJius .framer-1im8s97 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rJius .framer-9kpx5m { flex: none; height: 56px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rJius .framer-bhxmgd-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rJius.framer-fvxdms, .framer-rJius .framer-uucjd2, .framer-rJius .framer-la8y0v, .framer-rJius .framer-z5nbjq { gap: 0px; } .framer-rJius.framer-fvxdms > *, .framer-rJius .framer-la8y0v > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-rJius.framer-fvxdms > :first-child, .framer-rJius .framer-la8y0v > :first-child, .framer-rJius .framer-z5nbjq > :first-child { margin-top: 0px; } .framer-rJius.framer-fvxdms > :last-child, .framer-rJius .framer-la8y0v > :last-child, .framer-rJius .framer-z5nbjq > :last-child { margin-bottom: 0px; } .framer-rJius .framer-uucjd2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rJius .framer-uucjd2 > :first-child { margin-left: 0px; } .framer-rJius .framer-uucjd2 > :last-child { margin-right: 0px; } .framer-rJius .framer-z5nbjq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-rJius.framer-v-gnn78v.framer-fvxdms, .framer-rJius.framer-v-pi222v.framer-fvxdms, .framer-rJius.framer-v-yvntk0.framer-fvxdms { flex-direction: row; }\",\".framer-rJius.framer-v-gnn78v .framer-la8y0v, .framer-rJius.framer-v-yvntk0 .framer-la8y0v { flex: 1 0 0px; width: 1px; }\",\".framer-rJius.framer-v-gnn78v .framer-z5nbjq, .framer-rJius.framer-v-yvntk0 .framer-z5nbjq { align-content: flex-start; align-items: flex-start; gap: 5px; justify-content: flex-start; }\",\".framer-rJius.framer-v-gnn78v .framer-9kpx5m, .framer-rJius.framer-v-yvntk0 .framer-9kpx5m { order: 1; }\",\".framer-rJius.framer-v-gnn78v .framer-14hnfxo, .framer-rJius.framer-v-yvntk0 .framer-14hnfxo { order: 2; }\",\".framer-rJius.framer-v-gnn78v .framer-1im8s97, .framer-rJius.framer-v-yvntk0 .framer-1im8s97 { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rJius.framer-v-gnn78v.framer-fvxdms, .framer-rJius.framer-v-gnn78v .framer-z5nbjq { gap: 0px; } .framer-rJius.framer-v-gnn78v.framer-fvxdms > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-rJius.framer-v-gnn78v.framer-fvxdms > :first-child { margin-left: 0px; } .framer-rJius.framer-v-gnn78v.framer-fvxdms > :last-child { margin-right: 0px; } .framer-rJius.framer-v-gnn78v .framer-z5nbjq > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-rJius.framer-v-gnn78v .framer-z5nbjq > :first-child { margin-top: 0px; } .framer-rJius.framer-v-gnn78v .framer-z5nbjq > :last-child { margin-bottom: 0px; } }\",\".framer-rJius.framer-v-119wxul.framer-fvxdms, .framer-rJius.framer-v-119wxul .framer-la8y0v { align-content: center; align-items: center; }\",\".framer-rJius.framer-v-pi222v .framer-la8y0v { flex: 1 0 0px; gap: 20px; width: 1px; }\",\".framer-rJius.framer-v-pi222v .framer-z5nbjq { align-content: flex-start; align-items: flex-start; gap: 5px; }\",\".framer-rJius.framer-v-pi222v .framer-1uxjwyq { height: 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rJius.framer-v-pi222v.framer-fvxdms, .framer-rJius.framer-v-pi222v .framer-la8y0v, .framer-rJius.framer-v-pi222v .framer-z5nbjq { gap: 0px; } .framer-rJius.framer-v-pi222v.framer-fvxdms > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-rJius.framer-v-pi222v.framer-fvxdms > :first-child { margin-left: 0px; } .framer-rJius.framer-v-pi222v.framer-fvxdms > :last-child { margin-right: 0px; } .framer-rJius.framer-v-pi222v .framer-la8y0v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-rJius.framer-v-pi222v .framer-la8y0v > :first-child, .framer-rJius.framer-v-pi222v .framer-z5nbjq > :first-child { margin-top: 0px; } .framer-rJius.framer-v-pi222v .framer-la8y0v > :last-child, .framer-rJius.framer-v-pi222v .framer-z5nbjq > :last-child { margin-bottom: 0px; } .framer-rJius.framer-v-pi222v .framer-z5nbjq > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rJius.framer-v-yvntk0.framer-fvxdms, .framer-rJius.framer-v-yvntk0 .framer-z5nbjq { gap: 0px; } .framer-rJius.framer-v-yvntk0.framer-fvxdms > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-rJius.framer-v-yvntk0.framer-fvxdms > :first-child { margin-left: 0px; } .framer-rJius.framer-v-yvntk0.framer-fvxdms > :last-child { margin-right: 0px; } .framer-rJius.framer-v-yvntk0 .framer-z5nbjq > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-rJius.framer-v-yvntk0 .framer-z5nbjq > :first-child { margin-top: 0px; } .framer-rJius.framer-v-yvntk0 .framer-z5nbjq > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-rJius[data-border=\"true\"]::after, .framer-rJius [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 272\n * @framerIntrinsicWidth 490\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hUO6W9Cv4\":{\"layout\":[\"fixed\",\"auto\"]},\"oO6m8pK61\":{\"layout\":[\"fixed\",\"auto\"]},\"rnz703G5_\":{\"layout\":[\"fixed\",\"auto\"]},\"SON8BvVgC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"J2X4hmGjs\":\"icon\",\"SXDgbTQKy\":\"icon1\",\"g56HeEMzh\":\"title\",\"mdujxVvIp\":\"date\",\"HQlsDHpqI\":\"text\",\"fsUmuS24I\":\"description\",\"qKOBsbAyJ\":\"cTA\",\"EgEa9J473\":\"cTA1\",\"eZ5aNjZIy\":\"link\",\"jezvjAzk0\":\"subhead\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKym4ifyAB=withCSS(Component,css,\"framer-rJius\");export default FramerKym4ifyAB;FramerKym4ifyAB.displayName=\"Feature Card\";FramerKym4ifyAB.defaultProps={height:272,width:490};addPropertyControls(FramerKym4ifyAB,{variant:{options:[\"KeWUWSw2t\",\"hUO6W9Cv4\",\"oO6m8pK61\",\"rnz703G5_\",\"SON8BvVgC\"],optionTitles:[\"Left\",\"Left Alternative\",\"Center\",\"Left Color Alternative\",\"Home Timeline\"],title:\"Variant\",type:ControlType.Enum},J2X4hmGjs:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean},SXDgbTQKy:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Cube\",description:undefined,hidden:undefined,title:\"Icon\"},g56HeEMzh:{defaultValue:\"60 Components\",displayTextArea:false,title:\"Title\",type:ControlType.String},mdujxVvIp:{defaultValue:\"JUNE 2023\",displayTextArea:false,title:\"Date\",type:ControlType.String},HQlsDHpqI:{defaultValue:true,title:\"Text\",type:ControlType.Boolean},fsUmuS24I:{defaultValue:\"Description here\",displayTextArea:true,title:\"Description\",type:ControlType.String},qKOBsbAyJ:{defaultValue:true,title:\"CTA\",type:ControlType.Boolean},EgEa9J473:{defaultValue:\"Learn more\",displayTextArea:false,title:\"CTA\",type:ControlType.String},eZ5aNjZIy:{title:\"Link\",type:ControlType.Link},jezvjAzk0:{defaultValue:\"Subhead\",title:\"Subhead\",type:ControlType.String}});addFonts(FramerKym4ifyAB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"IBM Plex Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8lJPg-IUDNg.woff2\",weight:\"500\"}]},...PhosphorFonts,...CTAFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKym4ifyAB\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hUO6W9Cv4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oO6m8pK61\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rnz703G5_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SON8BvVgC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"272\",\"framerVariables\":\"{\\\"J2X4hmGjs\\\":\\\"icon\\\",\\\"SXDgbTQKy\\\":\\\"icon1\\\",\\\"g56HeEMzh\\\":\\\"title\\\",\\\"mdujxVvIp\\\":\\\"date\\\",\\\"HQlsDHpqI\\\":\\\"text\\\",\\\"fsUmuS24I\\\":\\\"description\\\",\\\"qKOBsbAyJ\\\":\\\"cTA\\\",\\\"EgEa9J473\\\":\\\"cTA1\\\",\\\"eZ5aNjZIy\\\":\\\"link\\\",\\\"jezvjAzk0\\\":\\\"subhead\\\"}\",\"framerIntrinsicWidth\":\"490\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Kym4ifyAB.map", "// Generated by Framer (b0164a3)\nvar _componentPresets_fonts,_componentPresets_fonts1;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ControlType,cx,getFontsFromComponentPreset,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/Z1SMBzyQI2P2bs783eL6/f1EyPFJp3ofPrV9iLt6I/componentPresets.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/fGpSFURUKo9j7sTvsAbF/tGqQE5bM9PMh4d5EsFrS/cGTNsvVOM.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/TyzwdnbebWpIE60P7rnF/TKz8VVPhhy7IoikpyPJq/DAZA_4VYt.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/sCrdgALhRduTJ7e4dWa7/CR15eITxirowgBnHAcr8/f_JgQVGd5.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/5LiOSU8HFwf8DlDSuLrU/l38hzxF8g6yvADK8ayY2/MXT80mwA5.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/12wMzWWgaeDpOb7RvVtj/uMz4GLb7Q5wCV3r74jin/nrmDuaBZ_.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/84kiYgsC2hULvlyO6jhd/IlQhr5Zz8di1SJmKrzDq/pbkah0okA.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/xcf5arYYBkKNFUzvEnBw/7xNGPFQPFrUEugoJO3WP/pBZhQGkip.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/6oRM83pdoOic29AYA12m/uGEQbdxmQdwc48MfPmZc/xZndidUCt.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/CJBGLsCgAtdcfA0RzX5n/lTegIcJbEqaieNFgflfZ/YAP816Y5n.js\";const enabledGestures={U5p8N7xRm:{hover:true}};const cycleOrder=[\"ukSm6eQBr\",\"U5p8N7xRm\"];const serializationHash=\"framer-HZ2z0\";const variantClassNames={U5p8N7xRm:\"framer-v-2bcbag\",ukSm6eQBr:\"framer-v-olk5xd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Closed:\"U5p8N7xRm\",Open:\"ukSm6eQBr\"};const getProps=({answer,background,height,id,question,tap,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,EBosMvmXB:(_ref=question!==null&&question!==void 0?question:props.EBosMvmXB)!==null&&_ref!==void 0?_ref:\"How does the Environmental Tech Lab work?\",iCWxaawPK:tap!==null&&tap!==void 0?tap:props.iCWxaawPK,jkmvchNua:(_ref1=background!==null&&background!==void 0?background:props.jkmvchNua)!==null&&_ref1!==void 0?_ref1:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",oAneuex2F:(_ref2=answer!==null&&answer!==void 0?answer:props.oAneuex2F)!==null&&_ref2!==void 0?_ref2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Answer goes here.\"})}),variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"ukSm6eQBr\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,iCWxaawPK,EBosMvmXB,oAneuex2F,jkmvchNua,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ukSm6eQBr\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap9xzdsw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(iCWxaawPK){const res=await iCWxaawPK(...args);if(res===false)return false;}setVariant(\"U5p8N7xRm\");});const onTap1a0n1tq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(iCWxaawPK){const res=await iCWxaawPK(...args);if(res===false)return false;}setVariant(\"ukSm6eQBr\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"U5p8N7xRm-hover\")return false;if(baseVariant===\"U5p8N7xRm\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-olk5xd\",className,classNames),\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ukSm6eQBr\",onTap:onTap9xzdsw,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:jkmvchNua,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},variants:{\"U5p8N7xRm-hover\":{backgroundColor:jkmvchNua},U5p8N7xRm:{backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"U5p8N7xRm-hover\":{\"data-framer-name\":undefined},U5p8N7xRm:{\"data-framer-name\":\"Closed\",onTap:onTap1a0n1tq}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14k8rn3\",layoutDependency:layoutDependency,layoutId:\"T5CrfWy_o\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wf4vzb\",layoutDependency:layoutDependency,layoutId:\"PsdCDkf0b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vgpzu7\",\"data-styles-preset\":\"DAZA_4VYt\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(0, 0, 0)))\"},children:\"How does the Environmental Tech Lab work?\"})}),className:\"framer-10dl5x2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SMsuS8tAl\",style:{\"--extracted-1eung3n\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:EBosMvmXB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n744wx\",layoutDependency:layoutDependency,layoutId:\"ww7P_jnya\",style:{rotate:-90},variants:{U5p8N7xRm:{rotate:45}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dx3teb\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xvCMaLfvd\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17 7 L 7 17 M 7 7 L 12.03 12.03 L 17 17\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9399849202,withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"FZikSiRt9\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:oAneuex2F,className:\"framer-1wueld1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Xoa1O0ULo\",stylesPresetsClassNames:{a:\"framer-styles-preset-pbndum\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1tif1bq\",h3:\"framer-styles-preset-kdrywy\",h4:\"framer-styles-preset-1vgpzu7\",h5:\"framer-styles-preset-1xc02l4\",h6:\"framer-styles-preset-1qd9pnh\",img:\"framer-styles-preset-o0jd1r\",p:\"framer-styles-preset-21ogod\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HZ2z0.framer-418dnk, .framer-HZ2z0 .framer-418dnk { display: block; }\",\".framer-HZ2z0.framer-olk5xd { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 694px; }\",\".framer-HZ2z0 .framer-14k8rn3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-HZ2z0 .framer-wf4vzb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HZ2z0 .framer-10dl5x2 { flex: 1 0 0px; height: auto; max-width: 80%; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-HZ2z0 .framer-n744wx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HZ2z0 .framer-dx3teb { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-HZ2z0 .framer-1wueld1 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HZ2z0.framer-olk5xd, .framer-HZ2z0 .framer-14k8rn3, .framer-HZ2z0 .framer-n744wx { gap: 0px; } .framer-HZ2z0.framer-olk5xd > *, .framer-HZ2z0 .framer-n744wx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HZ2z0.framer-olk5xd > :first-child, .framer-HZ2z0 .framer-n744wx > :first-child { margin-left: 0px; } .framer-HZ2z0.framer-olk5xd > :last-child, .framer-HZ2z0 .framer-n744wx > :last-child { margin-right: 0px; } .framer-HZ2z0 .framer-14k8rn3 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-HZ2z0 .framer-14k8rn3 > :first-child { margin-top: 0px; } .framer-HZ2z0 .framer-14k8rn3 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 134\n * @framerIntrinsicWidth 694\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"U5p8N7xRm\":{\"layout\":[\"fixed\",\"auto\"]},\"ocgR_BWUm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"iCWxaawPK\":\"tap\",\"EBosMvmXB\":\"question\",\"oAneuex2F\":\"answer\",\"jkmvchNua\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUpqEA6qxk=withCSS(Component,css,\"framer-HZ2z0\");export default FramerUpqEA6qxk;FramerUpqEA6qxk.displayName=\"FAQ Home\";FramerUpqEA6qxk.defaultProps={height:134,width:694};addPropertyControls(FramerUpqEA6qxk,{variant:{options:[\"ukSm6eQBr\",\"U5p8N7xRm\"],optionTitles:[\"Open\",\"Closed\"],title:\"Variant\",type:ControlType.Enum},iCWxaawPK:{title:\"Tap\",type:ControlType.EventHandler},EBosMvmXB:{defaultValue:\"How does the Environmental Tech Lab work?\",displayTextArea:true,title:\"Question\",type:ControlType.String},oAneuex2F:{defaultValue:\"<p>Answer goes here.</p>\",title:\"Answer\",type:ControlType.RichText},jkmvchNua:{defaultValue:'var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255)) /* {\"name\":\"Grey Light\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerUpqEA6qxk,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"FZikSiRt9\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"FZikSiRt9\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUpqEA6qxk\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"134\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"iCWxaawPK\\\":\\\"tap\\\",\\\"EBosMvmXB\\\":\\\"question\\\",\\\"oAneuex2F\\\":\\\"answer\\\",\\\"jkmvchNua\\\":\\\"background\\\"}\",\"framerIntrinsicWidth\":\"694\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U5p8N7xRm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ocgR_BWUm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UpqEA6qxk.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useMemo,useState}from\"react\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{const[,domain,parameters]=url.replace(\"&amp;\",\"&\").match(mailchimpRegex)??[null,null,null];return[domain,new URLSearchParams(parameters)];};/**\n * MAILCHIMP\n *\n * @framerIntrinsicWidth 430\n * @framerIntrinsicHeight 52\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight auto\n */const Mailchimp=withCSS(function Mailchimp({url,input,button,layout,style,gap,onSubmit,...props}){const[email,setEmail]=useState(input.value);const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);return false;}return true;},[]);const handleChange=useCallback(event1=>{setError(false);setEmail(event1.target.value);},[]);const handleSubmit=useCallback(()=>{event.preventDefault();const[domain,parameters]=parseMailChimpUrl(url);if(!validateForm(email)||!domain||!parameters){setLoading(false);}else{parameters.set(\"MERGE0\",email)// MERGE0 being Mailchimp's email field name\n;fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{setSuccess(true);onSubmit();}).catch(()=>{setLoading(false);});}},[url,email]);const handleClick=useCallback(()=>{setLoading(true);},[]);return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-mailchimp-placeholder-color\":input.placeholderColor},children:isSuccess?/*#__PURE__*/_jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:.3},children:/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",display:\"grid\",gap,gridTemplateColumns:layout===\"vertical\"?\"1fr\":\"1fr max-content\",gridTemplateRows:layout===\"vertical\"?\"1fr 1fr\":\"1fr\"},onSubmit:handleSubmit,method:\"POST\",children:[/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",visibility:\"hidden\"},\"aria-hidden\":\"true\",children:/*#__PURE__*/_jsx(\"input\",{type:\"text\",name:\"b_1487cc549a49109c00fe60a80_93cd7be172\",tabIndex:-1})}),/*#__PURE__*/_jsx(\"input\",{type:\"email\",name:\"email\",placeholder:input.placeholder,value:isCanvas?input.value:email,className:\"framer-mailchimp-input\",onChange:handleChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:input.fill,color:input.color,boxShadow:`inset 0 0 0 1px ${isError?input.error:\"transparent\"}`}}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\"},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,onClick:handleClick,style:{...defaultStyle,cursor:\"pointer\",borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,color:button.color,zIndex:1},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})});},[\".framer-mailchimp-input::placeholder { color: var(--framer-mailchimp-placeholder-color) !important; }\"]);Mailchimp.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15};addPropertyControls(Mailchimp,{url:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,description:\"Create a [Mailchimp](https://mailchimp.com/) account and copy your embedded form URL. [Learn more\u2026](https://www.framer.com/sites/integrations/mailchimp/)\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"email@framer.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},value:{title:\"Value\",type:ControlType.String},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default Mailchimp;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Mailchimp\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"52\",\"framerIntrinsicWidth\":\"430\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Mailchimp.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-600\",\"GF;Inter-600\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-gOqeZ .framer-styles-preset-j1gui8:not(.rich-text-wrapper), .framer-gOqeZ .framer-styles-preset-j1gui8.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, #5b5e76); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-gOqeZ .framer-styles-preset-j1gui8:not(.rich-text-wrapper), .framer-gOqeZ .framer-styles-preset-j1gui8.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, #5b5e76); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-gOqeZ .framer-styles-preset-j1gui8:not(.rich-text-wrapper), .framer-gOqeZ .framer-styles-preset-j1gui8.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, #5b5e76); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-gOqeZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import BlogCard from\"#framer/local/canvasComponent/FIQUCdJNE/FIQUCdJNE.js\";import FeatureCard from\"#framer/local/canvasComponent/Kym4ifyAB/Kym4ifyAB.js\";import Topbar from\"#framer/local/canvasComponent/lWUcIJP0H/lWUcIJP0H.js\";import Footer from\"#framer/local/canvasComponent/M82dauGNX/M82dauGNX.js\";import Button from\"#framer/local/canvasComponent/Tnz4seCKc/Tnz4seCKc.js\";import FAQHome from\"#framer/local/canvasComponent/UpqEA6qxk/UpqEA6qxk.js\";import Mailchimp from\"#framer/local/codeFile/Q7lY6Kk/Mailchimp.js\";import News from\"#framer/local/collection/nWZy3UnCE/nWZy3UnCE.js\";import*as sharedStyle6 from\"#framer/local/css/AUlaJcS0A/AUlaJcS0A.js\";import*as sharedStyle4 from\"#framer/local/css/cGTNsvVOM/cGTNsvVOM.js\";import*as sharedStyle3 from\"#framer/local/css/f_JgQVGd5/f_JgQVGd5.js\";import*as sharedStyle5 from\"#framer/local/css/GvoiKHMSZ/GvoiKHMSZ.js\";import*as sharedStyle from\"#framer/local/css/pbkah0okA/pbkah0okA.js\";import*as sharedStyle2 from\"#framer/local/css/pzgAh97sX/pzgAh97sX.js\";import*as sharedStyle1 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import metadataProvider from\"#framer/local/webPageMetadata/KQhXoqMTQ/KQhXoqMTQ.js\";const TopbarFonts=getFonts(Topbar);const SlideshowFonts=getFonts(Slideshow);const ButtonFonts=getFonts(Button);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const PhosphorFonts=getFonts(Phosphor);const FeatureCardFonts=getFonts(FeatureCard);const MotionDivWithFX=withFX(motion.div);const BlogCardFonts=getFonts(BlogCard);const MailchimpFonts=getFonts(Mailchimp);const FAQHomeFonts=getFonts(FAQHome);const FooterFonts=getFonts(Footer);const breakpoints={HphOZ2h0g:\"(min-width: 1200px)\",I3q64OPXc:\"(min-width: 810px) and (max-width: 1199px)\",T7BKf01Hp:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-UChu9\";const variantClassNames={HphOZ2h0g:\"framer-v-79fn9t\",I3q64OPXc:\"framer-v-1yrgv5x\",T7BKf01Hp:\"framer-v-s6ux78\"};const transition1={damping:80,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:80,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={boxShadow:\"0px 2px 5px 0px rgba(32, 105, 247, 0.25)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition4={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:100};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"HphOZ2h0g\",Phone:\"T7BKf01Hp\",Tablet:\"I3q64OPXc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"HphOZ2h0g\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,PPeTwl1b8rPrdHCPfh,DD39DBmBHrPrdHCPfh,kBAWMceDjrPrdHCPfh,YSKHrdVc1rPrdHCPfh,ivFLyaMNqrPrdHCPfh,EZue1CzWPrPrdHCPfh,Tu_Pd0zTZrPrdHCPfh,idrPrdHCPfh,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"kg37RJykP\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"T7BKf01Hp\")return false;return true;};const activeLocaleCode=useLocaleCode();const elementId1=useRouteElementId(\"w1JxkVyzG\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"uHVThBCTy\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"LpwpTc9Q8\");const ref5=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"HphOZ2h0g\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-79fn9t\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hueoay-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{variant:\"ZQwaB4_p3\"},T7BKf01Hp:{variant:\"ZQwaB4_p3\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"cIn5CDt3L\",layoutId:\"cIn5CDt3L\",style:{width:\"100%\"},variant:\"jRXICbciv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7od9ck\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c7we37\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pxi02a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ymwtg9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Making New York the global leader in water, while building a sustainable future for all New Yorkers.\"})}),className:\"framer-p1142o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"The Environmental Tech Lab is a collaboration between the NYC Department of Environmental Protection (DEP) and the New York City Partnership Foundation, the nonprofit affiliate of Partnership Fund for New York City.\"})}),className:\"framer-1w2xy57\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wjlogl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"In partnership with\"})}),className:\"framer-k6mkd1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eesq8q\",\"data-framer-name\":\"Logos Desktop\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mo8ef\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.nyc.gov/site/dep/index.page\",nodeId:\"kvX24H_4g\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1n9m4tn framer-xka4z6\",\"data-framer-name\":\"NYC_DEP_logo_white\",fill:\"black\",intrinsicHeight:63,intrinsicWidth:107,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 106.81 63\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_2\" data-name=\"Layer 2\"><g id=\"Layer_1-2\" data-name=\"Layer 1\"><path class=\"cls-1\" d=\"M.05 40.71h7.02v1.82H2.34v1.53h4.32v1.75H2.34v1.66h4.85v1.95H.05v-8.71zm8.11 2.38h2V44a2.41 2.41 0 0 1 2-1.05c2.13 0 2.31 1.54 2.31 2.45v4.06h-2.1v-3.1c0-.87.1-1.74-1-1.74-.79 0-1.13.66-1.13 1.35v3.45H8.16Zm11.33 6.33h-2.42l-2.13-6.33h2.18l1.17 4.18h.03l1.18-4.18h2.14l-2.15 6.33zm4.73-7.12h-2.09v-1.59h2.09Zm-2.09.79h2.09v6.33h-2.09Zm3.4 0h2v1.11a1.93 1.93 0 0 1 1.98-1.2 2 2 0 0 1 .49 0v1.89a3 3 0 0 0-.8-.12 1.47 1.47 0 0 0-1.58 1.5v3.13h-2.09Zm7.77-.18a3.35 3.35 0 1 1-3.37 3.35 3.26 3.26 0 0 1 3.37-3.35m0 5.11c1 0 1.28-1 1.28-1.76s-.31-1.76-1.28-1.76-1.3.96-1.3 1.76.32 1.74 1.3 1.74m4.22-4.91h2V44a2.42 2.42 0 0 1 2-1.05c2.13 0 2.31 1.54 2.31 2.45v4.06H41.8v-3.1c0-.87.1-1.74-1-1.74-.79 0-1.13.66-1.13 1.35v3.45h-2.1Zm7.48 0h2V44a2.13 2.13 0 0 1 1.84-1.05 1.85 1.85 0 0 1 1.86 1 2.34 2.34 0 0 1 2-1c2 0 2.25 1.52 2.25 2.73v3.78H53V45.7c0-.68-.34-1.08-.88-1.08-.9 0-1 .68-1 1.71v3.09H49v-3.6c0-.74-.22-1.2-.79-1.2-.75 0-1.07.42-1.07 1.72v3.08H45Zm13 3.67a1.35 1.35 0 0 0 1.43 1.44 1.25 1.25 0 0 0 1.19-.69h2a3 3 0 0 1-3.22 2.09 3.2 3.2 0 0 1-3.5-3.36 3.34 3.34 0 0 1 3.45-3.33c2.3 0 3.44 1.71 3.34 3.85Zm2.6-1.16a1.3 1.3 0 0 0-1.25-1.29A1.37 1.37 0 0 0 58 45.6Zm2.89-2.51h2V44a2.42 2.42 0 0 1 2-1.05c2.14 0 2.31 1.54 2.31 2.45v4.06h-2.1v-3.1c0-.87.1-1.74-1-1.74-.79 0-1.13.66-1.13 1.35v3.45h-2.1Zm11.38 1.34h-1.29v2.88c0 .5.29.61.75.61h.54v1.52c-.38 0-.76.06-1.15.06-1.78 0-2.24-.51-2.24-2.23v-2.84h-1.06v-1.34h1.06v-1.91h2.1v1.91h1.29Zm.61.57a1.94 1.94 0 0 1 1-1.69 4.25 4.25 0 0 1 2-.44c1.51 0 3 .33 3 2.12v2.81a3.59 3.59 0 0 0 .25 1.62h-2.1a2.38 2.38 0 0 1-.12-.59 2.93 2.93 0 0 1-2.11.78c-1.22 0-2.18-.62-2.18-1.92 0-2.06 2.26-1.9 3.72-2.19.36-.08.55-.2.55-.59s-.58-.66-1-.66a.93.93 0 0 0-1 .79Zm2.71 3.29c1 0 1.33-.57 1.28-1.87a6.09 6.09 0 0 1-1.3.34c-.46.11-.86.3-.86.8s.41.73.88.73m4.51-7.57h2.1v8.71h-2.1zM.05 54.11h4.18c1.64 0 3.18.74 3.18 2.8s-1.24 3-3.18 3H2.34v2.9H.05Zm2.29 4h1.54c.72 0 1.24-.29 1.24-1.09s-.53-1.14-1.24-1.14H2.34Zm5.9-1.62h2v1.11a1.93 1.93 0 0 1 1.93-1.23 2.7 2.7 0 0 1 .49 0v1.93a3.1 3.1 0 0 0-.8-.12 1.46 1.46 0 0 0-1.58 1.5v3.14H8.24Zm7.76-.18A3.35 3.35 0 1 1 16 63a3.35 3.35 0 1 1 0-6.69m0 5.11c1 0 1.28-1 1.28-1.76S17 57.89 16 57.89s-1.27 1-1.27 1.77.27 1.76 1.27 1.76m8.09-3.59h-1.3v2.88c0 .5.3.61.76.61h.54v1.53c-.38 0-.77.06-1.15.06-1.79 0-2.24-.51-2.24-2.23v-2.85h-1.06v-1.34h1.06v-1.92h2.09v1.92h1.3Zm2.47 2.33A1.37 1.37 0 0 0 28 61.6a1.24 1.24 0 0 0 1.19-.7h2A3 3 0 0 1 28 63a3.2 3.2 0 0 1-3.5-3.36 3.34 3.34 0 0 1 3.45-3.33c2.29 0 3.44 1.7 3.34 3.85ZM29.17 59a1.29 1.29 0 0 0-1.25-1.29A1.38 1.38 0 0 0 26.56 59Zm7.06-.2a1 1 0 0 0-1-.91c-1.18 0-1.36 1-1.36 1.86s.36 1.66 1.24 1.66a1.12 1.12 0 0 0 1.2-1.08h2a3 3 0 0 1-3.2 2.67 3.18 3.18 0 0 1-3.36-3.25 3.22 3.22 0 0 1 3.36-3.44c1.59 0 3 .82 3.15 2.49Zm6.77-.97h-1.31v2.88c0 .5.3.61.75.61h.54v1.53c-.38 0-.76.06-1.14.06-1.79 0-2.25-.51-2.25-2.23v-2.85h-1.06v-1.34h1.06v-1.92h2.1v1.92H43Zm2.84-2.14h-2.09v-1.58h2.09Zm-2.09.8h2.09v6.33h-2.09Zm6.38-.18a3.35 3.35 0 1 1-3.36 3.35 3.26 3.26 0 0 1 3.36-3.35m0 5.11c1 0 1.29-1 1.29-1.76s-.31-1.77-1.29-1.77-1.27 1-1.27 1.77.3 1.76 1.27 1.76m4.23-4.93h2v.86a2.42 2.42 0 0 1 2-1c2.13 0 2.3 1.53 2.3 2.45v4.06h-2.02v-3.1c0-.87.1-1.75-1-1.75-.79 0-1.13.66-1.13 1.36v3.45h-2.1Zm50.23-41.11 2.22-2.17v-6.6L100.14 0H77.89l-6.68 6.61V2.2L69 0h-8.92l-2.22 2.2v4.41L53.41 11 49 6.61V2.2L46.73 0h-8.9l-2.22 2.2L33.38 0h-8.9l-2.23 2.2V11L11.13 0H2.22L0 2.2V33l2.22 2.2h8.91l2.22-2.2v-8.78l11.13 11h8.9L35.61 33V15.41l11.12 11V33L49 35.23h8.9L60.08 33v-6.58l11.13-11v13.2l6.68 6.61h22.25l6.67-6.61V22l-2.22-2.21H93.46V22h-8.9v-8.79h8.9v2.17ZM105.32 3a1.46 1.46 0 0 1-1.5-1.51 1.5 1.5 0 1 1 3 0 1.47 1.47 0 0 1-1.5 1.51m0-2.76a1.18 1.18 0 0 0-1.17 1.25 1.17 1.17 0 1 0 2.34 0 1.18 1.18 0 0 0-1.17-1.23M105 2.37h-.27V.7h.64c.4 0 .61.14.61.48a.44.44 0 0 1-.44.46l.47.73h-.31l-.44-.71H105Zm.31-1c.21 0 .39 0 .39-.26s-.2-.22-.36-.22H105v.48Z\"/><path class=\"cls-1\" d=\"m104.59 15.38 2.22-2.17v-6.6L100.14 0H77.89l-6.68 6.61V2.2L69 0h-8.92l-2.22 2.2v4.41L53.41 11 49 6.61V2.2L46.73 0h-8.9l-2.22 2.2L33.38 0h-8.9l-2.23 2.2V11L11.13 0H2.22L0 2.2V33l2.22 2.2h8.91l2.22-2.2v-8.78l11.13 11h8.9L35.61 33V15.41l11.12 11V33L49 35.23h8.9L60.08 33v-6.58l11.13-11v13.2l6.68 6.61h22.25l6.67-6.61V22l-2.22-2.21H93.46V22h-8.9v-8.79h8.9v2.17ZM105.32 3a1.46 1.46 0 0 1-1.5-1.51 1.5 1.5 0 1 1 3 0 1.47 1.47 0 0 1-1.5 1.51m0-2.76a1.18 1.18 0 0 0-1.17 1.25 1.17 1.17 0 1 0 2.34 0 1.18 1.18 0 0 0-1.17-1.23M105 2.37h-.27V.7h.64c.4 0 .61.14.61.48a.44.44 0 0 1-.44.46l.47.73h-.31l-.44-.71H105Zm.31-1c.21 0 .39 0 .39-.26s-.2-.22-.36-.22H105v.48Z\"/></g></g></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2bp69e\",children:/*#__PURE__*/_jsx(Link,{href:\"https://partnershipfundnyc.org/\",nodeId:\"xIcvc3WAK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+8.400000000000006+0+233.2+0+115+0+0),pixelHeight:44,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"233.5px\",src:\"https://framerusercontent.com/images/31KOFWOqJDnTvJgaHGIPQJxABU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/31KOFWOqJDnTvJgaHGIPQJxABU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/31KOFWOqJDnTvJgaHGIPQJxABU.svg 524w\"}},T7BKf01Hp:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+0+0+208.2+0+115+0+0),pixelHeight:44,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"233.3333px\",src:\"https://framerusercontent.com/images/31KOFWOqJDnTvJgaHGIPQJxABU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/31KOFWOqJDnTvJgaHGIPQJxABU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/31KOFWOqJDnTvJgaHGIPQJxABU.svg 524w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+230.00000000000003+0+0+253.2+0+115+7.5+0),pixelHeight:44,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"233.5px\",src:\"https://framerusercontent.com/images/31KOFWOqJDnTvJgaHGIPQJxABU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/31KOFWOqJDnTvJgaHGIPQJxABU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/31KOFWOqJDnTvJgaHGIPQJxABU.svg 524w\"},className:\"framer-ynvk57 framer-xka4z6\",\"data-framer-name\":\"NYC Partnership Foundation\"})})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qgtwuj-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:20,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"fjP4aVb0k\",intervalControl:3,itemAmount:1,layoutId:\"fjP4aVb0k\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1987,intrinsicWidth:2641,pixelHeight:1987,pixelWidth:2641,sizes:\"737px\",src:\"https://framerusercontent.com/images/N7sSTAruhNW0jibeJgWIbR8Q0yU.jpg\",srcSet:\"https://framerusercontent.com/images/N7sSTAruhNW0jibeJgWIbR8Q0yU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N7sSTAruhNW0jibeJgWIbR8Q0yU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N7sSTAruhNW0jibeJgWIbR8Q0yU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/N7sSTAruhNW0jibeJgWIbR8Q0yU.jpg 2641w\"},className:\"framer-1je6zsv\",\"data-framer-name\":\"etl\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1267,intrinsicWidth:1900.5,pixelHeight:2534,pixelWidth:3801,sizes:\"738px\",src:\"https://framerusercontent.com/images/rtgpz6r097mESa0qjoBsylrt4M.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rtgpz6r097mESa0qjoBsylrt4M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rtgpz6r097mESa0qjoBsylrt4M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rtgpz6r097mESa0qjoBsylrt4M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rtgpz6r097mESa0qjoBsylrt4M.jpg 3801w\"},className:\"framer-131qv4x\",\"data-framer-name\":\"dep_scientist\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1688.5,intrinsicWidth:3004.5,pixelHeight:3377,pixelWidth:6009,sizes:\"736.6675px\",src:\"https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg 6009w\"},className:\"framer-11m4ht\",\"data-framer-name\":\"mountain_range_during_golden_hour\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{duration:0,type:\"tween\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eigwla\",\"data-framer-name\":\"About Us\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fe4ocm\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7eu6e9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vnkhjh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dzxfv7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"New York City tap water is world-renowned for its quality and New York Harbor is the cleanest it\u2019s been in 100 years.\"})}),className:\"framer-lsn35n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We want to keep it that way. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"The New York City Department of Environmental Protection (DEP) seeks to be a world class water and wastewater utility, while building a sustainable future for all New Yorkers.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Climate change has created new challenges for water and wastewater utilities across the country. The Environmental Tech Lab will identify innovative solutions to address complex DEP priorities.\"})]}),className:\"framer-1aoz8os\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SgOl2xl_X\"},implicitPathVariables:undefined},{href:{webPageId:\"SgOl2xl_X\"},implicitPathVariables:undefined},{href:{webPageId:\"SgOl2xl_X\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{y:(componentViewport?.y||0)+0+630+50+0+0+732+0+0+0+508.2},T7BKf01Hp:{y:(componentViewport?.y||0)+0+938.2+50+0+0+0+0+0+0+508.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+748.2+50+0+48.89999999999998+0+0+0+508.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-csm281-container\",\"data-framer-name\":\"See the Challenges\",name:\"See the Challenges\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{gHeOvXgAq:resolvedLinks[1]},T7BKf01Hp:{gHeOvXgAq:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{gHeOvXgAq:resolvedLinks[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:\"LEARN MORE\",id:\"SR8dGcNaO\",IZmB9ojKD:false,layoutId:\"SR8dGcNaO\",name:\"See the Challenges\",Uwhubicpx:false,variant:\"zMIqz4YH_\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tna6o0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7BKf01Hp:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:125,__perspectiveFX:false,__targetOpacity:1,animate:animation,className:\"framer-xi8nr8\",\"data-framer-appear-id\":\"xi8nr8\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{background:{alt:\"Sunset over the Ashokan Reservoir in New York\",fit:\"fill\",intrinsicHeight:3377,intrinsicWidth:6009,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+630+50+0+0+0+-35.40789473684208+0+0),pixelHeight:3377,pixelWidth:6009,sizes:\"310px\",src:\"https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg\",srcSet:\"https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg 6009w\"}},T7BKf01Hp:{background:{alt:\"Sunset over the Ashokan Reservoir in New York\",fit:\"fill\",intrinsicHeight:3377,intrinsicWidth:6009,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+938.2+50+0+0+604.2+0+0+0),pixelHeight:3377,pixelWidth:6009,sizes:\"310px\",src:\"https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg\",srcSet:\"https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg 6009w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Sunset over the Ashokan Reservoir in New York\",fit:\"fill\",intrinsicHeight:3377,intrinsicWidth:6009,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+748.2+50+0+0+-120.40789473684208+170+0),pixelHeight:3377,pixelWidth:6009,sizes:\"310px\",src:\"https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg\",srcSet:\"https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ous1ERBODaEthFirZrZ71pd0.jpg 6009w\"},className:\"framer-1wrv8dx\",\"data-border\":true,\"data-framer-name\":\"Section 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{background:{alt:\"Mother and child drinking water from a New York City water fountain\",fit:\"fill\",intrinsicHeight:1360,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+630+50+0+0+0+-35.40789473684208+0+235.36842105263156),pixelHeight:1360,pixelWidth:2048,sizes:\"310px\",src:\"https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg\",srcSet:\"https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg 2048w\"}},T7BKf01Hp:{background:{alt:\"Mother and child drinking water from a New York City water fountain\",fit:\"fill\",intrinsicHeight:1360,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+938.2+50+0+0+604.2+0+0+235.36842105263156),pixelHeight:1360,pixelWidth:2048,sizes:\"310px\",src:\"https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg\",srcSet:\"https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Mother and child drinking water from a New York City water fountain\",fit:\"fill\",intrinsicHeight:1360,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+748.2+50+0+0+-120.40789473684208+170+235.36842105263156),pixelHeight:1360,pixelWidth:2048,sizes:\"310px\",src:\"https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg\",srcSet:\"https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CcXoeoZkmZuGFV9ZOgItUH2IQ.jpg 2048w\"},className:\"framer-1phvkes\",\"data-border\":true,\"data-framer-name\":\"Section 4\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{background:{alt:\"NYC DEP worker wearing a hard hard and yellow safety vest\",fit:\"fill\",intrinsicHeight:1365,intrinsicWidth:2047,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+630+50+0+0+0+-35.40789473684208+0+502.55263157894734),pixelHeight:1365,pixelWidth:2047,sizes:\"310px\",src:\"https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg\",srcSet:\"https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg 2047w\"}},T7BKf01Hp:{background:{alt:\"NYC DEP worker wearing a hard hard and yellow safety vest\",fit:\"fill\",intrinsicHeight:1365,intrinsicWidth:2047,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+938.2+50+0+0+604.2+0+0+502.55263157894734),pixelHeight:1365,pixelWidth:2047,sizes:\"310px\",src:\"https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg\",srcSet:\"https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg 2047w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"NYC DEP worker wearing a hard hard and yellow safety vest\",fit:\"fill\",intrinsicHeight:1365,intrinsicWidth:2047,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+748.2+50+0+0+-120.40789473684208+170+502.55263157894734),pixelHeight:1365,pixelWidth:2047,sizes:\"310px\",src:\"https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg\",srcSet:\"https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w3npu0hazDRG1ith9WcZJRA1QYc.jpg 2047w\"},className:\"framer-17j4vx7\",\"data-border\":true,\"data-framer-name\":\"Section 2\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7BKf01Hp:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:145,__perspectiveFX:false,__targetOpacity:1,animate:animation2,className:\"framer-dipd80\",\"data-framer-appear-id\":\"dipd80\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{background:{alt:\"Running water from kitchen faucet\",fit:\"fill\",intrinsicHeight:5600,intrinsicWidth:4480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+630+50+0+0+0+-35.40789473684208+0+0),pixelHeight:5600,pixelWidth:4480,sizes:\"310px\",src:\"https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg\",srcSet:\"https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg 4480w\"}},T7BKf01Hp:{background:{alt:\"Running water from kitchen faucet\",fit:\"fill\",intrinsicHeight:5600,intrinsicWidth:4480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+938.2+50+0+0+604.2+0+0+0),pixelHeight:5600,pixelWidth:4480,sizes:\"310px\",src:\"https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg\",srcSet:\"https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg 4480w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Running water from kitchen faucet\",fit:\"fill\",intrinsicHeight:5600,intrinsicWidth:4480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+748.2+50+0+0+-35.40789473684208+0+0),pixelHeight:5600,pixelWidth:4480,sizes:\"310px\",src:\"https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg\",srcSet:\"https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/0uh4JbZmKEU0d8UcdW5TCsGxk.jpg 4480w\"},className:\"framer-wtigjf\",\"data-border\":true,\"data-framer-name\":\"Section 3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{background:{alt:\"Sesame bagel with smoke salmon, red onion and cream cheese served on a white plate placed on a wooden table\",fit:\"fill\",intrinsicHeight:1882,intrinsicWidth:3585,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+630+50+0+0+0+-35.40789473684208+0+331.6315789473684),pixelHeight:1882,pixelWidth:3585,sizes:\"310px\",src:\"https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg\",srcSet:\"https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg 3585w\"}},T7BKf01Hp:{background:{alt:\"Sesame bagel with smoke salmon, red onion and cream cheese served on a white plate placed on a wooden table\",fit:\"fill\",intrinsicHeight:1882,intrinsicWidth:3585,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+938.2+50+0+0+604.2+0+0+331.6315789473684),pixelHeight:1882,pixelWidth:3585,sizes:\"310px\",src:\"https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg\",srcSet:\"https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg 3585w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Sesame bagel with smoke salmon, red onion and cream cheese served on a white plate placed on a wooden table\",fit:\"fill\",intrinsicHeight:1882,intrinsicWidth:3585,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+748.2+50+0+0+-35.40789473684208+0+331.6315789473684),pixelHeight:1882,pixelWidth:3585,sizes:\"310px\",src:\"https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg\",srcSet:\"https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FPzoKs8dU8vlSbA5HCqwLTxMk.jpg 3585w\"},className:\"framer-1fve65p\",\"data-border\":true,\"data-framer-name\":\"Section 5\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{background:{alt:\"Children playing in water from a city fire hydrant\",fit:\"fill\",intrinsicHeight:2781,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+630+50+0+0+0+-35.40789473684208+0+507.4473684210526),pixelHeight:2781,pixelWidth:4e3,sizes:\"310px\",src:\"https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg\",srcSet:\"https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg 4000w\"}},T7BKf01Hp:{background:{alt:\"Children playing in water from a city fire hydrant\",fit:\"fill\",intrinsicHeight:2781,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+938.2+50+0+0+604.2+0+0+507.4473684210526),pixelHeight:2781,pixelWidth:4e3,sizes:\"310px\",src:\"https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg\",srcSet:\"https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Children playing in water from a city fire hydrant\",fit:\"fill\",intrinsicHeight:2781,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+748.2+50+0+0+-35.40789473684208+0+507.4473684210526),pixelHeight:2781,pixelWidth:4e3,sizes:\"310px\",src:\"https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg\",srcSet:\"https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/N57ob66qX8APkKHq1YG4nD8PKo.jpg 4000w\"},className:\"framer-1qney7z\",\"data-border\":true,\"data-framer-name\":\"Section 1\"})})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2jd0g9\",\"data-framer-name\":\"2024 Challenge Competition\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-d4ec8q\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ft9d18\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17vnxni\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u5p7lr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vjk4q9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"2024 Challenge Competition\"})}),className:\"framer-4mkwmd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Each year, the Environmental Tech Lab engages with DEP leadership and staff to develop priority problem statements to improve agency operations and services. Our proven process has received strong endorsement from both the startups and public servants we work with.\"})}),className:\"framer-g1lqn1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Learn more about the 2024 \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tGwqLXUp6\"},nodeId:\"I0aIT32LH\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"Resilience\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kBtXrcOBH\"},nodeId:\"I0aIT32LH\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"Data Management & Governance\"})}),\" Challenges and apply by August 1, 2024.\"]})})})}),className:\"framer-1q1uwsb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dkq3vt hidden-s6ux78\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{background:{alt:\"Sunset over the Ashokan Reservoir in New York\",fit:\"fill\",intrinsicHeight:730,intrinsicWidth:730,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2016.2+100+0+0+0+0+0+0+0),pixelHeight:730,pixelWidth:730,src:\"https://framerusercontent.com/images/AaVkP9rYEtz0tweo9I3lGflqAM.png\",srcSet:\"https://framerusercontent.com/images/AaVkP9rYEtz0tweo9I3lGflqAM.png?scale-down-to=512 512w,https://framerusercontent.com/images/AaVkP9rYEtz0tweo9I3lGflqAM.png 730w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Sunset over the Ashokan Reservoir in New York\",fit:\"fill\",intrinsicHeight:730,intrinsicWidth:730,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1500.2+100+0+0+0+0+61.599999999999994+0+0),pixelHeight:730,pixelWidth:730,sizes:`max((max((max(min(${componentViewport?.width||\"100vw\"} - 200px, 1200px), 1px) - 100px) / 2, 1px) - 10px) / 2, 200px)`,src:\"https://framerusercontent.com/images/AaVkP9rYEtz0tweo9I3lGflqAM.png\",srcSet:\"https://framerusercontent.com/images/AaVkP9rYEtz0tweo9I3lGflqAM.png?scale-down-to=512 512w,https://framerusercontent.com/images/AaVkP9rYEtz0tweo9I3lGflqAM.png 730w\"},className:\"framer-1nusbqg\",\"data-framer-name\":\"Resilience icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{background:{alt:\"Sunset over the Ashokan Reservoir in New York\",fit:\"fill\",intrinsicHeight:1095,intrinsicWidth:1095,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2016.2+100+0+0+0+0+0+0+210),pixelHeight:730,pixelWidth:730,src:\"https://framerusercontent.com/images/6mGPzazQPEYiO5yBBfoNBrjalwo.png\",srcSet:\"https://framerusercontent.com/images/6mGPzazQPEYiO5yBBfoNBrjalwo.png?scale-down-to=512 512w,https://framerusercontent.com/images/6mGPzazQPEYiO5yBBfoNBrjalwo.png 730w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Sunset over the Ashokan Reservoir in New York\",fit:\"fill\",intrinsicHeight:1095,intrinsicWidth:1095,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1500.2+100+0+0+0+0+61.599999999999994+0+0),pixelHeight:730,pixelWidth:730,sizes:`max((max((max(min(${componentViewport?.width||\"100vw\"} - 200px, 1200px), 1px) - 100px) / 2, 1px) - 10px) / 2, 200px)`,src:\"https://framerusercontent.com/images/6mGPzazQPEYiO5yBBfoNBrjalwo.png\",srcSet:\"https://framerusercontent.com/images/6mGPzazQPEYiO5yBBfoNBrjalwo.png?scale-down-to=512 512w,https://framerusercontent.com/images/6mGPzazQPEYiO5yBBfoNBrjalwo.png 730w\"},className:\"framer-1opvkmg\",\"data-framer-name\":\"Section 1\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-plflr7\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tGwqLXUp6\"},nodeId:\"aBTvEookn\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-xpgwzn framer-xka4z6\",whileHover:animation4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-168kpe0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-color\":\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\"},children:\"2024 Challenge Competition\"})})},T7BKf01Hp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-color\":\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\"},children:\"2024 Challenge Competition\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",children:\"2024 Challenge Competition\"})}),className:\"framer-1mcr8ae\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Resilience\"})}),className:\"framer-5ycio3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"How can DEP enhance climate resiliency goals including carbon reduction actions, noise/air/water compliance initiatives, flooding mitigations, and water conservation strategies?\"})}),className:\"framer-z8tmmk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-66cfgm-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowCircleRight\",id:\"YxAkDw1FW\",layoutId:\"YxAkDw1FW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kBtXrcOBH\"},nodeId:\"chDi9o69c\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-i0s6f7 framer-xka4z6\",whileHover:animation4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qykjl9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-color\":\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\"},children:\"2024 Challenge Competition\"})})},T7BKf01Hp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-color\":\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\"},children:\"2024 Challenge Competition\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",children:\"2024 Challenge Competition\"})}),className:\"framer-1mjowb6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Data Management & Governance\"})}),className:\"framer-hp4z7u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"How can DEP integrate and analyze disparate data sets to drive business strategies, deliver capital construction projects, optimize critical data models, and better protect people & infrastructure?\"})}),className:\"framer-19k6yez\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vdpin6-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowCircleRight\",id:\"sHbF0WBmz\",layoutId:\"sHbF0WBmz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hh262j\",\"data-framer-name\":\"Why ETL?\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q61ncq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"left\"},children:\"Why Environmental Tech Lab?\"})}),className:\"framer-u4mzzy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1czufc5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oz14lm\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t4ny27-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\",height:\"100%\",iconSearch:\"water\",iconSelection:\"Drop\",id:\"rTF42lJge\",layoutId:\"rTF42lJge\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Opportunity for early stage companies to work with the nation\u2019s largest water/wastewater municipality.\"})}),className:\"framer-xg61rj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Each application submitted is reviewed by relevant domain experts, with potential to pitch directly to relevant DEP staff.\\xa0\"})}),className:\"framer-o8q7sl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-twq4sv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tu1dz-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\",height:\"100%\",iconSearch:\"desktop\",iconSelection:\"ListChecks\",id:\"cga0i7JTh\",layoutId:\"cga0i7JTh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Eight weeks of programming for finalists with a customized plan to evaluate a technical test.\"})}),className:\"framer-1chb5ev\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"An accelerated, pre-approved process to facilitate collaboration with key go/no-go decision points by DEP leadership.\"})}),className:\"framer-1ekcbdh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e4fckr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1epng28-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\",height:\"100%\",iconSearch:\"barricade\",iconSelection:\"UsersFour\",id:\"BQBzxEXjN\",layoutId:\"BQBzxEXjN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Direct access to relevant decision makers and subject matter experts.\\xa0\"})}),className:\"framer-i1elko\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Exposure to NYC DEP leaders, private sector investors, and industry experts.\\xa0\"})}),className:\"framer-85fui\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16vt8zv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bxu74p-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\",height:\"100%\",iconSearch:\"buildings\",iconSelection:\"Circle\",id:\"VtICthZfq\",layoutId:\"VtICthZfq\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Opportunity to participate in a year-long Pilot with potential Pilot funding for NYC-based companies.\"})}),className:\"framer-1d9rnqq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"An opportunity to deploy technology at scale across the DEP.\"})}),className:\"framer-yueoyy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l1a7ei\",\"data-framer-name\":\"Timeline\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j0inck\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nj1ass\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"left\"},children:\"Timeline\"})}),className:\"framer-1fhnp8n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1akgyev\",\"data-framer-name\":\"Cards\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{y:(componentViewport?.y||0)+0+4135.200000000001+100+0+0+0},T7BKf01Hp:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+5028.215789473685+50+0+93.19999999999999+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:272,y:(componentViewport?.y||0)+0+3502.4+100+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p1aotb-container\",children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"\",fsUmuS24I:\"Companies apply online to one of the 2024 Challenges, detailing evidence of product-market fit.\",g56HeEMzh:\"Step 1\",height:\"100%\",HQlsDHpqI:true,id:\"GlJHVryxa\",J2X4hmGjs:true,jezvjAzk0:\"Open Application Period\",layoutId:\"GlJHVryxa\",mdujxVvIp:\"June-August 2024\",qKOBsbAyJ:false,style:{width:\"100%\"},SXDgbTQKy:\"NumberCircleOne\",variant:\"SON8BvVgC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{y:(componentViewport?.y||0)+0+4135.200000000001+100+0+0+297},T7BKf01Hp:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+5028.215789473685+50+0+93.19999999999999+0+297}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:272,y:(componentViewport?.y||0)+0+3502.4+100+0+0+297,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xgfc8c-container\",children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"Explore sections\",fsUmuS24I:\"Experts from water and sustainability sectors review applications, and select companies are invited to New York City to pitch to a panel of DEP and private sector evaluators.\",g56HeEMzh:\"Step 2\",height:\"100%\",HQlsDHpqI:true,id:\"xgsfjbR7d\",J2X4hmGjs:true,jezvjAzk0:\"Evaluation Period\",layoutId:\"xgsfjbR7d\",mdujxVvIp:\"August-September 2024\",qKOBsbAyJ:false,style:{width:\"100%\"},SXDgbTQKy:\"NumberCircleTwo\",variant:\"SON8BvVgC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{y:(componentViewport?.y||0)+0+4135.200000000001+100+0+0+594},T7BKf01Hp:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+5028.215789473685+50+0+93.19999999999999+0+594}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:272,y:(componentViewport?.y||0)+0+3502.4+100+0+0+594,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qu4sht-container\",children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"\",fsUmuS24I:\"Promising companies are selected for accelerated Proof of Concept to conduct a minimally viable technology test. Accepted companies must complete scoping exercises, insurance policy requirements, and cybersecurity screening prior to the start of POCs.\",g56HeEMzh:\"Step 3\",height:\"100%\",HQlsDHpqI:true,id:\"HB60IJIIE\",J2X4hmGjs:true,jezvjAzk0:\"Proof of Concept\",layoutId:\"HB60IJIIE\",mdujxVvIp:\"October-December 2024\",qKOBsbAyJ:false,style:{width:\"100%\"},SXDgbTQKy:\"NumberCircleThree\",variant:\"SON8BvVgC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{y:(componentViewport?.y||0)+0+4135.200000000001+100+0+0+891},T7BKf01Hp:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+5028.215789473685+50+0+93.19999999999999+0+891}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:272,y:(componentViewport?.y||0)+0+3502.4+100+0+0+891,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14o4zho-container\",children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"\",fsUmuS24I:\"Companies integrate innovative solutions into the system for immediate impact, and to assess them for long-term commercial value at scale. Participants gain enhanced visibility and credibility far beyond the competition.\",g56HeEMzh:\"Step 4\",height:\"100%\",HQlsDHpqI:true,id:\"uXDgjaVP8\",J2X4hmGjs:true,jezvjAzk0:\"Pilots Launch\",layoutId:\"uXDgjaVP8\",mdujxVvIp:\"April 2025\",qKOBsbAyJ:false,style:{width:\"100%\"},SXDgbTQKy:\"NumberCircleFour\",variant:\"SON8BvVgC\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u9l4jr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zczw3q-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"glo0ETaAR\",intervalControl:10,itemAmount:1,layoutId:\"glo0ETaAR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yxi9s4\",\"data-framer-name\":\"knaq quote\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-j1gui8\",\"data-styles-preset\":\"GvoiKHMSZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\"},children:\"\u201CThe Lab provided businesses with an exceptional opportunity to work and learn directly with DEP staff, which is invaluable from a product perspective. Companies quickly Piloted new technology without a lengthy initial procurement, thus enabling value to be delivered and evaluated in a structured environment built to progress rapid decision-making. We would highly recommend the model to other public entities and innovation groups looking to replicate its success.\u201D\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-vongqw\",\"data-styles-preset\":\"AUlaJcS0A\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Brian Carey\",/*#__PURE__*/_jsx(\"br\",{}),\"CEO, Knaq\"]})]}),className:\"framer-1704m42\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a6z847\",\"data-framer-name\":\"dep quote 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-j1gui8\",\"data-styles-preset\":\"GvoiKHMSZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\"},children:\"\u201CThe ETL program is wonderful. From the pitch day to the final presentations: I enjoyed learning about the ground breaking work and services from these companies and working with the ETL team for the betterment of New York City.\u201D\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-vongqw\",\"data-styles-preset\":\"AUlaJcS0A\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Deputy Director\",/*#__PURE__*/_jsx(\"br\",{}),\"Bureau of Engineering Design and Construction\"]})]}),className:\"framer-12m33co\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16e61oh\",\"data-framer-name\":\"gybe quote\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-j1gui8\",\"data-styles-preset\":\"GvoiKHMSZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1506c2a3-6198-4978-9dd1-3ee2d88898e6, rgb(32, 105, 247))\"},children:\"\u201CThe ETL has been an invaluable partner in helping Gybe deliver a successful product demonstration for the Bureau of Water Supply, connecting us with NYC DEP leadership, and navigating the department\u2019s operations, legal, and IT organizations.\u201D\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-vongqw\",\"data-styles-preset\":\"AUlaJcS0A\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Ivan Lalovic\",/*#__PURE__*/_jsx(\"br\",{}),\"CEO, Gybe\"]})]}),className:\"framer-ixc7rt\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{duration:0,type:\"tween\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s1wy1k\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dn91rk\",\"data-framer-name\":\"News\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yv06s4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"News and insights\"})}),className:\"framer-1yfb0n7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lCMKdjGrh\"},implicitPathVariables:undefined},{href:{webPageId:\"lCMKdjGrh\"},implicitPathVariables:undefined},{href:{webPageId:\"lCMKdjGrh\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{y:(componentViewport?.y||0)+0+5949.200000000001+50+93.19999999999999},T7BKf01Hp:{y:(componentViewport?.y||0)+0+6893.4157894736845+50+93.19999999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+5466.4+100+93.19999999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xdxwg7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{gHeOvXgAq:resolvedLinks1[1]},T7BKf01Hp:{gHeOvXgAq:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{gHeOvXgAq:resolvedLinks1[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:\"SEE MORE ARTICLES\",id:\"pnCNsR2qd\",IZmB9ojKD:false,layoutId:\"pnCNsR2qd\",Uwhubicpx:false,variant:\"zMIqz4YH_\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7vdw2k\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{query:{from:{alias:\"rPrdHCPfh\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"rPrdHCPfh\",name:\"PPeTwl1b8\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"DD39DBmBH\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"ivFLyaMNq\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"EZue1CzWP\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"id\",type:\"Identifier\"}],where:{collection:\"rPrdHCPfh\",name:\"oblsMPwoB\",type:\"Identifier\"}}},T7BKf01Hp:{query:{from:{alias:\"rPrdHCPfh\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"rPrdHCPfh\",name:\"PPeTwl1b8\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"DD39DBmBH\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"ivFLyaMNq\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"EZue1CzWP\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"id\",type:\"Identifier\"}],where:{collection:\"rPrdHCPfh\",name:\"oblsMPwoB\",type:\"Identifier\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"rPrdHCPfh\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"rPrdHCPfh\",name:\"PPeTwl1b8\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"DD39DBmBH\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"ivFLyaMNq\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"EZue1CzWP\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"rPrdHCPfh\",name:\"id\",type:\"Identifier\"}],where:{collection:\"rPrdHCPfh\",name:\"oblsMPwoB\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({DD39DBmBH:DD39DBmBHrPrdHCPfh,EZue1CzWP:EZue1CzWPrPrdHCPfh,id:idrPrdHCPfh,ivFLyaMNq:ivFLyaMNqrPrdHCPfh,kBAWMceDj:kBAWMceDjrPrdHCPfh,PPeTwl1b8:PPeTwl1b8rPrdHCPfh,Tu_Pd0zTZ:Tu_Pd0zTZrPrdHCPfh,YSKHrdVc1:YSKHrdVc1rPrdHCPfh},index)=>{PPeTwl1b8rPrdHCPfh??=\"\";DD39DBmBHrPrdHCPfh??=\"#09F\";YSKHrdVc1rPrdHCPfh??=\"\";ivFLyaMNqrPrdHCPfh??=\"\";Tu_Pd0zTZrPrdHCPfh??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`rPrdHCPfh-${idrPrdHCPfh}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZrPrdHCPfh},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bcUIOegNe\"},implicitPathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZrPrdHCPfh}},{href:{webPageId:\"bcUIOegNe\"},implicitPathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZrPrdHCPfh}},{href:{webPageId:\"bcUIOegNe\"},implicitPathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZrPrdHCPfh}}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+0+5949.200000000001+50+189.2+0+0},T7BKf01Hp:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 200px)`,y:(componentViewport?.y||0)+0+6893.4157894736845+50+189.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:489,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1200px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+5466.4+100+189.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c7g87q-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{iTLspfP7r:resolvedLinks2[1]},T7BKf01Hp:{iTLspfP7r:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(BlogCard,{CPMabOrfU:PPeTwl1b8rPrdHCPfh,cWI4CB6po:DD39DBmBHrPrdHCPfh,fl_dKZrsX:true,HDbfmLJN9:YSKHrdVc1rPrdHCPfh,height:\"100%\",id:\"Pxb1aV8Hg\",iTLspfP7r:resolvedLinks2[0],layoutId:\"Pxb1aV8Hg\",LFXgxuHG4:true,mJ5LrnBOl:toDateString(EZue1CzWPrPrdHCPfh,{dateStyle:\"long\",locale:\"\"},activeLocaleCode),mMXkBrQjq:false,style:{height:\"100%\",width:\"100%\"},TS9IF2Dr6:ivFLyaMNqrPrdHCPfh,variant:\"Nsz6JbBfs\",width:\"100%\",Yo7UXCjeZ:toResponsiveImage(kBAWMceDjrPrdHCPfh)})})})})})})})},idrPrdHCPfh);})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1czqed8\",\"data-framer-name\":\"Subscribe\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rnwebo\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14yclbu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-aam5fj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Get news and updates\"})}),className:\"framer-1ucr5vp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f8joxe-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{input:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",placeholder:\"email address\",placeholderColor:\"rgba(0, 0, 0, 0.3)\",value:\"\"}},T7BKf01Hp:{fontSize:14}},children:/*#__PURE__*/_jsx(Mailchimp,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"var(--token-97505c00-b373-4043-853f-3700d21ed84f, rgb(32, 105, 247))\",fill:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",fontWeight:600,label:\"SUBSCRIBE\"},font:true,fontFamily:\"IBM Plex Mono\",fontSize:16,fontWeight:400,gap:15,height:\"100%\",id:\"UIqkldRDY\",input:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(235, 235, 235)\",placeholder:\"email address\",placeholderColor:\"rgba(0, 0, 0, 0.3)\",value:\"\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"UIqkldRDY\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{width:\"100%\"},topLeftRadius:8,topRightRadius:8,url:\"https://pfnyc.us5.list-manage.com/subscribe/post?u=f22d9c852caf58359d300732d&amp;id=a930726f9c&amp;f_id=00c497e3f0\",width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dwfpl5\",\"data-framer-name\":\"FAQ\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tpq6rt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frequently asked questions\"})}),className:\"framer-d26nvh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6qdl83\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{width:`min(${componentViewport?.width||\"100vw\"} - 100px, 800px)`,y:(componentViewport?.y||0)+0+7112.6+100+123.19999999999999+0+0},T7BKf01Hp:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 800px)`,y:(componentViewport?.y||0)+0+7906.815789473684+50+93.19999999999999+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:134,width:`min(${componentViewport?.width||\"100vw\"} - 200px, 800px)`,y:(componentViewport?.y||0)+0+6679.799999999999+100+123.19999999999999+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-191v2sz-container\",children:/*#__PURE__*/_jsx(FAQHome,{EBosMvmXB:\"How does the Environmental Tech Lab work?\",height:\"100%\",id:\"ABB5CS4lE\",jkmvchNua:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",layoutId:\"ABB5CS4lE\",oAneuex2F:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"The Environmental Tech Lab offers companies an opportunity to receive mentorship and deploy their technologies with the nation's largest municipal water system. After the application process, the NYC Department of Environmental Protection will select companies to participate in an 8-week Proof of Concept (POC) during which a minimally viable test will be conducted to understand selected products\u2019 capabilities and their value proposition. Upon successful completion, NYC DEP will select the most promising companies to deploy their solutions on a larger scale during a yearlong Pilot.\"})}),style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{width:`min(${componentViewport?.width||\"100vw\"} - 100px, 800px)`,y:(componentViewport?.y||0)+0+7112.6+100+123.19999999999999+0+144},T7BKf01Hp:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 800px)`,y:(componentViewport?.y||0)+0+7906.815789473684+50+93.19999999999999+0+144}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:134,width:`min(${componentViewport?.width||\"100vw\"} - 200px, 800px)`,y:(componentViewport?.y||0)+0+6679.799999999999+100+123.19999999999999+0+144,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hi9ebk-container\",children:/*#__PURE__*/_jsx(FAQHome,{EBosMvmXB:\"Do companies receive compensation for participating in the Proof of Concepts or Pilots?\",height:\"100%\",id:\"sUuhUtKma\",jkmvchNua:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",layoutId:\"sUuhUtKma\",oAneuex2F:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"There will not be funding available for the eight-week POCs. For the initial Proof of Concept, we look for a small, targeted scope that can be implemented and measured within 8 weeks, with the ability to scale up to serve the entire agency if proven. Each company has discretion to create an achievable scope of work they are comfortable taking on.\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"For NYC-based Pilot winners, there is an opportunity for investment capital from the Partnership for NYC.\\xa0 We are currently looking into funding opportunities for non-NYC based companies.\\xa0\"})})]})}),style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{width:`min(${componentViewport?.width||\"100vw\"} - 100px, 800px)`,y:(componentViewport?.y||0)+0+7112.6+100+123.19999999999999+0+288},T7BKf01Hp:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 800px)`,y:(componentViewport?.y||0)+0+7906.815789473684+50+93.19999999999999+0+288}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:134,width:`min(${componentViewport?.width||\"100vw\"} - 200px, 800px)`,y:(componentViewport?.y||0)+0+6679.799999999999+100+123.19999999999999+0+288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lrcydz-container\",children:/*#__PURE__*/_jsx(FAQHome,{EBosMvmXB:\"Who is eligible to apply to the Environmental Tech Lab?\",height:\"100%\",id:\"oEbtKjJvI\",jkmvchNua:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",layoutId:\"oEbtKjJvI\",oAneuex2F:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Please see the Eligibility Criteria under the \",/*#__PURE__*/_jsx(Link,{href:{hash:\":kg37RJykP\",webPageId:\"KQhXoqMTQ\"},nodeId:\"oEbtKjJvI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"How to Apply\"})}),\" section of our website.\"]})}),style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{width:`min(${componentViewport?.width||\"100vw\"} - 100px, 800px)`,y:(componentViewport?.y||0)+0+7112.6+100+123.19999999999999+0+432},T7BKf01Hp:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 800px)`,y:(componentViewport?.y||0)+0+7906.815789473684+50+93.19999999999999+0+432}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:134,width:`min(${componentViewport?.width||\"100vw\"} - 200px, 800px)`,y:(componentViewport?.y||0)+0+6679.799999999999+100+123.19999999999999+0+432,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l1g9ay-container\",children:/*#__PURE__*/_jsx(FAQHome,{EBosMvmXB:\"Does an applicant have to be a U.S. corporation or resident?\",height:\"100%\",id:\"YZEcoktO2\",jkmvchNua:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",layoutId:\"YZEcoktO2\",oAneuex2F:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"No, citizens and companies from all around the world can apply. However, please note that all DEP data must be stored in the US and companies must be registered to do business in New York. Companies incorporated outside New York state that wish to participate in the Environmental Tech Lab must complete the following steps prior to starting the Proof of Concept. If your company is not incorporated in New York State please:\"}),/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Obtain a 'Certificate of Good Standing' or 'Certificate of Existence' from the US state or foreign country where your company incorporated.\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Complete the New York state Department of State 'Application for Authority' form located\",/*#__PURE__*/_jsx(Link,{href:\"https://dos.ny.gov/system/files/documents/2018/11/1335-f.pdf\",nodeId:\"YZEcoktO2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\" here\"})}),\". Please note this form has a filing fee of $225 USD. More information on the New York state Department of State\",/*#__PURE__*/_jsx(Link,{href:\"https://www.dos.ny.gov/corps/buscorp.html#appauth\",nodeId:\"YZEcoktO2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\" website\"})}),\".\"]})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Please see the Eligibility Criteria under the How to Apply section of our website for more details.\"})})]})]}),style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VZfqdYUGY\"},implicitPathVariables:undefined},{href:{webPageId:\"VZfqdYUGY\"},implicitPathVariables:undefined},{href:{webPageId:\"VZfqdYUGY\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{y:(componentViewport?.y||0)+0+7112.6+100+769.2},T7BKf01Hp:{y:(componentViewport?.y||0)+0+7906.815789473684+50+709.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+6679.799999999999+100+769.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6kcb6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{gHeOvXgAq:resolvedLinks3[1]},T7BKf01Hp:{gHeOvXgAq:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Button,{gHeOvXgAq:resolvedLinks3[0],Goeh0UlpU:\"Question\",height:\"100%\",hyoIEBZCr:\"SEE MORE FAQ\",id:\"Oj98gUvjj\",IZmB9ojKD:false,layoutId:\"Oj98gUvjj\",Uwhubicpx:false,variant:\"zMIqz4YH_\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I3q64OPXc:{y:(componentViewport?.y||0)+0+8127.8},T7BKf01Hp:{y:(componentViewport?.y||0)+0+8762.015789473684}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:519,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7694.999999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n1mxe1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7BKf01Hp:{variant:\"YJaCNd84M\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"dfOuVDmh7\",layoutId:\"dfOuVDmh7\",style:{width:\"100%\"},variant:\"NWDLXXgiF\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UChu9.framer-xka4z6, .framer-UChu9 .framer-xka4z6 { display: block; }\",\".framer-UChu9.framer-79fn9t { 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: 1200px; }\",\".framer-UChu9 .framer-hueoay-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-UChu9 .framer-7od9ck { align-content: center; align-items: center; background: linear-gradient(314deg, #1024e0 0%, hsl(211, 98%, 59%) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 230px 100px 100px 100px; position: relative; width: 100%; z-index: 1; }\",\".framer-UChu9 .framer-1c7we37 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-UChu9 .framer-1pxi02a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-UChu9 .framer-ymwtg9, .framer-UChu9 .framer-vjk4q9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-p1142o, .framer-UChu9 .framer-1w2xy57, .framer-UChu9 .framer-k6mkd1, .framer-UChu9 .framer-lsn35n, .framer-UChu9 .framer-1aoz8os, .framer-UChu9 .framer-4mkwmd, .framer-UChu9 .framer-1mcr8ae, .framer-UChu9 .framer-5ycio3, .framer-UChu9 .framer-z8tmmk, .framer-UChu9 .framer-1mjowb6, .framer-UChu9 .framer-hp4z7u, .framer-UChu9 .framer-19k6yez, .framer-UChu9 .framer-u4mzzy, .framer-UChu9 .framer-xg61rj, .framer-UChu9 .framer-o8q7sl, .framer-UChu9 .framer-1chb5ev, .framer-UChu9 .framer-1ekcbdh, .framer-UChu9 .framer-i1elko, .framer-UChu9 .framer-85fui, .framer-UChu9 .framer-1d9rnqq, .framer-UChu9 .framer-yueoyy, .framer-UChu9 .framer-1yfb0n7, .framer-UChu9 .framer-1ucr5vp, .framer-UChu9 .framer-d26nvh { --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-UChu9 .framer-1wjlogl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-eesq8q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-mo8ef, .framer-UChu9 .framer-2bp69e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UChu9 .framer-1n9m4tn { aspect-ratio: 1.6984126984126984 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; text-decoration: none; width: 85px; }\",\".framer-UChu9 .framer-ynvk57 { aspect-ratio: 6.666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); overflow: visible; position: relative; text-decoration: none; width: 234px; }\",\".framer-UChu9 .framer-1qgtwuj-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-UChu9 .framer-1je6zsv, .framer-UChu9 .framer-131qv4x { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 492px); overflow: visible; position: relative; width: 737px; }\",\".framer-UChu9 .framer-11m4ht { aspect-ratio: 1.7793899911163755 / 1; height: var(--framer-aspect-ratio-supported, 414px); overflow: visible; position: relative; width: 736px; }\",\".framer-UChu9 .framer-eigwla { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-1fe4ocm, .framer-UChu9 .framer-d4ec8q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-7eu6e9, .framer-UChu9 .framer-1u5p7lr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UChu9 .framer-1vnkhjh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-1dzxfv7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-csm281-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-UChu9 .framer-1tna6o0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 652px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-UChu9 .framer-xi8nr8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 170px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-UChu9 .framer-1wrv8dx, .framer-UChu9 .framer-1qney7z { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.4393939393939394 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 216px); overflow: hidden; position: relative; width: 310px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UChu9 .framer-1phvkes { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.2541254125412542 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 247px); overflow: hidden; position: relative; width: 310px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UChu9 .framer-17j4vx7 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.4074074074074074 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 221px); overflow: hidden; position: relative; width: 310px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UChu9 .framer-dipd80 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UChu9 .framer-wtigjf { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 0.9947643979057592 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 312px); overflow: hidden; position: relative; width: 310px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UChu9 .framer-1fve65p { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.9895287958115184 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 156px); overflow: hidden; position: relative; width: 310px; will-change: var(--framer-will-change-override, transform); }\",'.framer-UChu9 .framer-2jd0g9 { align-content: center; align-items: center; background: linear-gradient(147deg, var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, #ebf5ff) /* {\"name\":\"Blue Light\"} */ 0%, hsl(220, 100%, 90%) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px; position: relative; scroll-margin-top: 100px; width: 100%; }',\".framer-UChu9 .framer-1ft9d18 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-UChu9 .framer-17vnxni { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-g1lqn1, .framer-UChu9 .framer-1q1uwsb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UChu9 .framer-1dkq3vt { display: grid; flex: 1 0 0px; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UChu9 .framer-1nusbqg, .framer-UChu9 .framer-1opvkmg { align-self: start; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 220px); justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-UChu9 .framer-plflr7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-xpgwzn, .framer-UChu9 .framer-i0s6f7 { align-content: flex-start; align-items: flex-start; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px; position: relative; text-decoration: none; width: 1px; }\",\".framer-UChu9 .framer-168kpe0, .framer-UChu9 .framer-qykjl9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-66cfgm-container, .framer-UChu9 .framer-1vdpin6-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); position: relative; width: 50px; }\",\".framer-UChu9 .framer-hh262j { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-1q61ncq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-1czufc5 { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-oz14lm, .framer-UChu9 .framer-twq4sv, .framer-UChu9 .framer-16vt8zv { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-a5c9e393-587e-41c0-a5cb-0cbab7d5bb60, #fbfbfb); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 50px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-UChu9 .framer-t4ny27-container, .framer-UChu9 .framer-1tu1dz-container, .framer-UChu9 .framer-1epng28-container, .framer-UChu9 .framer-bxu74p-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-UChu9 .framer-1e4fckr { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-a5c9e393-587e-41c0-a5cb-0cbab7d5bb60, #fbfbfb); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 50px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",'.framer-UChu9 .framer-1l1a7ei { align-content: flex-start; align-items: flex-start; background: linear-gradient(147deg, var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, #ebf5ff) /* {\"name\":\"Blue Light\"} */ 0%, hsl(220, 100%, 90%) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 100px; position: relative; width: 100%; }',\".framer-UChu9 .framer-j0inck { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-UChu9 .framer-nj1ass { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-UChu9 .framer-1fhnp8n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-UChu9 .framer-1akgyev { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-UChu9 .framer-1p1aotb-container, .framer-UChu9 .framer-xgfc8c-container, .framer-UChu9 .framer-qu4sht-container, .framer-UChu9 .framer-14o4zho-container, .framer-UChu9 .framer-191v2sz-container, .framer-UChu9 .framer-1hi9ebk-container, .framer-UChu9 .framer-1lrcydz-container, .framer-UChu9 .framer-1l1g9ay-container, .framer-UChu9 .framer-n1mxe1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-UChu9 .framer-u9l4jr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-zczw3q-container { flex: none; height: 500px; max-width: 800px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-yxi9s4 { background-color: #ffffff; height: 371px; overflow: hidden; position: relative; width: 672px; }\",\".framer-UChu9 .framer-1704m42, .framer-UChu9 .framer-12m33co, .framer-UChu9 .framer-ixc7rt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-UChu9 .framer-1a6z847, .framer-UChu9 .framer-16e61oh { background-color: #ffffff; height: 236px; overflow: hidden; position: relative; width: 672px; }\",\".framer-UChu9 .framer-1s1wy1k { background-color: var(--token-6e37b890-5b79-46fa-af1c-53bad11350aa, #ebebeb); flex: none; height: 1px; max-width: 1200px; overflow: hidden; position: relative; width: 100%; }\",\".framer-UChu9 .framer-1dn91rk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-1yv06s4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-1xdxwg7-container, .framer-UChu9 .framer-6kcb6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-UChu9 .framer-7vdw2k { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1200px; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-1c7g87q-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-UChu9 .framer-1czqed8 { align-content: center; align-items: center; background: linear-gradient(314deg, #1024e0 0%, hsl(211, 98%, 59%) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-UChu9 .framer-1rnwebo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-14yclbu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-UChu9 .framer-aam5fj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-f8joxe-container { flex: none; height: auto; position: relative; width: 430px; }\",\".framer-UChu9 .framer-dwfpl5 { align-content: center; align-items: center; background-color: var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, #ebf5ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-UChu9 .framer-tpq6rt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UChu9 .framer-6qdl83 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-UChu9.framer-79fn9t, .framer-UChu9 .framer-7od9ck, .framer-UChu9 .framer-1c7we37, .framer-UChu9 .framer-1pxi02a, .framer-UChu9 .framer-ymwtg9, .framer-UChu9 .framer-1wjlogl, .framer-UChu9 .framer-eesq8q, .framer-UChu9 .framer-mo8ef, .framer-UChu9 .framer-2bp69e, .framer-UChu9 .framer-eigwla, .framer-UChu9 .framer-1fe4ocm, .framer-UChu9 .framer-7eu6e9, .framer-UChu9 .framer-1vnkhjh, .framer-UChu9 .framer-1dzxfv7, .framer-UChu9 .framer-1tna6o0, .framer-UChu9 .framer-xi8nr8, .framer-UChu9 .framer-dipd80, .framer-UChu9 .framer-2jd0g9, .framer-UChu9 .framer-d4ec8q, .framer-UChu9 .framer-1ft9d18, .framer-UChu9 .framer-17vnxni, .framer-UChu9 .framer-1u5p7lr, .framer-UChu9 .framer-vjk4q9, .framer-UChu9 .framer-plflr7, .framer-UChu9 .framer-xpgwzn, .framer-UChu9 .framer-168kpe0, .framer-UChu9 .framer-i0s6f7, .framer-UChu9 .framer-qykjl9, .framer-UChu9 .framer-hh262j, .framer-UChu9 .framer-1q61ncq, .framer-UChu9 .framer-oz14lm, .framer-UChu9 .framer-twq4sv, .framer-UChu9 .framer-1e4fckr, .framer-UChu9 .framer-16vt8zv, .framer-UChu9 .framer-1l1a7ei, .framer-UChu9 .framer-j0inck, .framer-UChu9 .framer-nj1ass, .framer-UChu9 .framer-1akgyev, .framer-UChu9 .framer-u9l4jr, .framer-UChu9 .framer-1dn91rk, .framer-UChu9 .framer-1yv06s4, .framer-UChu9 .framer-1czqed8, .framer-UChu9 .framer-1rnwebo, .framer-UChu9 .framer-14yclbu, .framer-UChu9 .framer-aam5fj, .framer-UChu9 .framer-dwfpl5, .framer-UChu9 .framer-tpq6rt, .framer-UChu9 .framer-6qdl83 { gap: 0px; } .framer-UChu9.framer-79fn9t > *, .framer-UChu9 .framer-eigwla > *, .framer-UChu9 .framer-1czqed8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UChu9.framer-79fn9t > :first-child, .framer-UChu9 .framer-1pxi02a > :first-child, .framer-UChu9 .framer-ymwtg9 > :first-child, .framer-UChu9 .framer-1wjlogl > :first-child, .framer-UChu9 .framer-eigwla > :first-child, .framer-UChu9 .framer-7eu6e9 > :first-child, .framer-UChu9 .framer-1vnkhjh > :first-child, .framer-UChu9 .framer-1dzxfv7 > :first-child, .framer-UChu9 .framer-xi8nr8 > :first-child, .framer-UChu9 .framer-dipd80 > :first-child, .framer-UChu9 .framer-2jd0g9 > :first-child, .framer-UChu9 .framer-1ft9d18 > :first-child, .framer-UChu9 .framer-1u5p7lr > :first-child, .framer-UChu9 .framer-vjk4q9 > :first-child, .framer-UChu9 .framer-xpgwzn > :first-child, .framer-UChu9 .framer-168kpe0 > :first-child, .framer-UChu9 .framer-i0s6f7 > :first-child, .framer-UChu9 .framer-qykjl9 > :first-child, .framer-UChu9 .framer-hh262j > :first-child, .framer-UChu9 .framer-1q61ncq > :first-child, .framer-UChu9 .framer-oz14lm > :first-child, .framer-UChu9 .framer-twq4sv > :first-child, .framer-UChu9 .framer-1e4fckr > :first-child, .framer-UChu9 .framer-16vt8zv > :first-child, .framer-UChu9 .framer-1akgyev > :first-child, .framer-UChu9 .framer-u9l4jr > :first-child, .framer-UChu9 .framer-1dn91rk > :first-child, .framer-UChu9 .framer-1yv06s4 > :first-child, .framer-UChu9 .framer-1czqed8 > :first-child, .framer-UChu9 .framer-14yclbu > :first-child, .framer-UChu9 .framer-aam5fj > :first-child, .framer-UChu9 .framer-dwfpl5 > :first-child, .framer-UChu9 .framer-tpq6rt > :first-child, .framer-UChu9 .framer-6qdl83 > :first-child { margin-top: 0px; } .framer-UChu9.framer-79fn9t > :last-child, .framer-UChu9 .framer-1pxi02a > :last-child, .framer-UChu9 .framer-ymwtg9 > :last-child, .framer-UChu9 .framer-1wjlogl > :last-child, .framer-UChu9 .framer-eigwla > :last-child, .framer-UChu9 .framer-7eu6e9 > :last-child, .framer-UChu9 .framer-1vnkhjh > :last-child, .framer-UChu9 .framer-1dzxfv7 > :last-child, .framer-UChu9 .framer-xi8nr8 > :last-child, .framer-UChu9 .framer-dipd80 > :last-child, .framer-UChu9 .framer-2jd0g9 > :last-child, .framer-UChu9 .framer-1ft9d18 > :last-child, .framer-UChu9 .framer-1u5p7lr > :last-child, .framer-UChu9 .framer-vjk4q9 > :last-child, .framer-UChu9 .framer-xpgwzn > :last-child, .framer-UChu9 .framer-168kpe0 > :last-child, .framer-UChu9 .framer-i0s6f7 > :last-child, .framer-UChu9 .framer-qykjl9 > :last-child, .framer-UChu9 .framer-hh262j > :last-child, .framer-UChu9 .framer-1q61ncq > :last-child, .framer-UChu9 .framer-oz14lm > :last-child, .framer-UChu9 .framer-twq4sv > :last-child, .framer-UChu9 .framer-1e4fckr > :last-child, .framer-UChu9 .framer-16vt8zv > :last-child, .framer-UChu9 .framer-1akgyev > :last-child, .framer-UChu9 .framer-u9l4jr > :last-child, .framer-UChu9 .framer-1dn91rk > :last-child, .framer-UChu9 .framer-1yv06s4 > :last-child, .framer-UChu9 .framer-1czqed8 > :last-child, .framer-UChu9 .framer-14yclbu > :last-child, .framer-UChu9 .framer-aam5fj > :last-child, .framer-UChu9 .framer-dwfpl5 > :last-child, .framer-UChu9 .framer-tpq6rt > :last-child, .framer-UChu9 .framer-6qdl83 > :last-child { margin-bottom: 0px; } .framer-UChu9 .framer-7od9ck > *, .framer-UChu9 .framer-1c7we37 > *, .framer-UChu9 .framer-1fe4ocm > *, .framer-UChu9 .framer-d4ec8q > *, .framer-UChu9 .framer-17vnxni > *, .framer-UChu9 .framer-j0inck > *, .framer-UChu9 .framer-nj1ass > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-UChu9 .framer-7od9ck > :first-child, .framer-UChu9 .framer-1c7we37 > :first-child, .framer-UChu9 .framer-eesq8q > :first-child, .framer-UChu9 .framer-mo8ef > :first-child, .framer-UChu9 .framer-2bp69e > :first-child, .framer-UChu9 .framer-1fe4ocm > :first-child, .framer-UChu9 .framer-1tna6o0 > :first-child, .framer-UChu9 .framer-d4ec8q > :first-child, .framer-UChu9 .framer-17vnxni > :first-child, .framer-UChu9 .framer-plflr7 > :first-child, .framer-UChu9 .framer-1l1a7ei > :first-child, .framer-UChu9 .framer-j0inck > :first-child, .framer-UChu9 .framer-nj1ass > :first-child, .framer-UChu9 .framer-1rnwebo > :first-child { margin-left: 0px; } .framer-UChu9 .framer-7od9ck > :last-child, .framer-UChu9 .framer-1c7we37 > :last-child, .framer-UChu9 .framer-eesq8q > :last-child, .framer-UChu9 .framer-mo8ef > :last-child, .framer-UChu9 .framer-2bp69e > :last-child, .framer-UChu9 .framer-1fe4ocm > :last-child, .framer-UChu9 .framer-1tna6o0 > :last-child, .framer-UChu9 .framer-d4ec8q > :last-child, .framer-UChu9 .framer-17vnxni > :last-child, .framer-UChu9 .framer-plflr7 > :last-child, .framer-UChu9 .framer-1l1a7ei > :last-child, .framer-UChu9 .framer-j0inck > :last-child, .framer-UChu9 .framer-nj1ass > :last-child, .framer-UChu9 .framer-1rnwebo > :last-child { margin-right: 0px; } .framer-UChu9 .framer-1pxi02a > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-UChu9 .framer-ymwtg9 > *, .framer-UChu9 .framer-xi8nr8 > *, .framer-UChu9 .framer-dipd80 > *, .framer-UChu9 .framer-vjk4q9 > *, .framer-UChu9 .framer-xpgwzn > *, .framer-UChu9 .framer-i0s6f7 > *, .framer-UChu9 .framer-1yv06s4 > *, .framer-UChu9 .framer-aam5fj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UChu9 .framer-1wjlogl > *, .framer-UChu9 .framer-168kpe0 > *, .framer-UChu9 .framer-qykjl9 > *, .framer-UChu9 .framer-oz14lm > *, .framer-UChu9 .framer-twq4sv > *, .framer-UChu9 .framer-1e4fckr > *, .framer-UChu9 .framer-16vt8zv > *, .framer-UChu9 .framer-u9l4jr > *, .framer-UChu9 .framer-tpq6rt > *, .framer-UChu9 .framer-6qdl83 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UChu9 .framer-eesq8q > * { margin: 0px; margin-left: calc(85px / 2); margin-right: calc(85px / 2); } .framer-UChu9 .framer-mo8ef > *, .framer-UChu9 .framer-2bp69e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UChu9 .framer-7eu6e9 > *, .framer-UChu9 .framer-1vnkhjh > *, .framer-UChu9 .framer-1u5p7lr > *, .framer-UChu9 .framer-14yclbu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-UChu9 .framer-1dzxfv7 > *, .framer-UChu9 .framer-1akgyev > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-UChu9 .framer-1tna6o0 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-UChu9 .framer-2jd0g9 > *, .framer-UChu9 .framer-dwfpl5 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-UChu9 .framer-1ft9d18 > *, .framer-UChu9 .framer-hh262j > *, .framer-UChu9 .framer-1q61ncq > *, .framer-UChu9 .framer-1dn91rk > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-UChu9 .framer-plflr7 > *, .framer-UChu9 .framer-1rnwebo > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-UChu9 .framer-1l1a7ei > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-UChu9[data-border=\"true\"]::after, .framer-UChu9 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-UChu9.framer-79fn9t { width: 810px; } .framer-UChu9 .framer-7od9ck { padding: 180px 50px 50px 50px; } .framer-UChu9 .framer-1pxi02a { gap: 50px; } .framer-UChu9 .framer-1wjlogl { overflow: visible; } .framer-UChu9 .framer-eesq8q { align-content: flex-start; align-items: flex-start; gap: 28px; } .framer-UChu9 .framer-1n9m4tn { height: var(--framer-aspect-ratio-supported, 30px); width: 51px; } .framer-UChu9 .framer-1qgtwuj-container { align-self: unset; height: 400px; } .framer-UChu9 .framer-1fe4ocm { flex-direction: column; gap: 80px; } .framer-UChu9 .framer-7eu6e9 { flex: none; width: 100%; } .framer-UChu9 .framer-1tna6o0 { flex: none; justify-content: center; order: 3; width: 100%; } .framer-UChu9 .framer-xi8nr8 { padding: 0px; } .framer-UChu9 .framer-2jd0g9, .framer-UChu9 .framer-hh262j, .framer-UChu9 .framer-1l1a7ei, .framer-UChu9 .framer-dwfpl5 { padding: 100px 50px 100px 50px; } .framer-UChu9 .framer-1ft9d18 { gap: 80px; } .framer-UChu9 .framer-1dkq3vt { flex: none; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: min-content; } .framer-UChu9 .framer-1nusbqg, .framer-UChu9 .framer-1opvkmg { height: var(--framer-aspect-ratio-supported, 200px); } .framer-UChu9 .framer-1akgyev { max-width: 540px; } .framer-UChu9 .framer-u9l4jr { padding: 0px 0px 50px 0px; } .framer-UChu9 .framer-zczw3q-container { height: 400px; width: 85%; } .framer-UChu9 .framer-1dn91rk { padding: 50px 50px 100px 50px; } .framer-UChu9 .framer-7vdw2k { grid-template-columns: repeat(2, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-UChu9 .framer-1pxi02a, .framer-UChu9 .framer-eesq8q, .framer-UChu9 .framer-1fe4ocm, .framer-UChu9 .framer-1ft9d18 { gap: 0px; } .framer-UChu9 .framer-1pxi02a > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-UChu9 .framer-1pxi02a > :first-child, .framer-UChu9 .framer-1fe4ocm > :first-child, .framer-UChu9 .framer-1ft9d18 > :first-child { margin-top: 0px; } .framer-UChu9 .framer-1pxi02a > :last-child, .framer-UChu9 .framer-1fe4ocm > :last-child, .framer-UChu9 .framer-1ft9d18 > :last-child { margin-bottom: 0px; } .framer-UChu9 .framer-eesq8q > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-UChu9 .framer-eesq8q > :first-child { margin-left: 0px; } .framer-UChu9 .framer-eesq8q > :last-child { margin-right: 0px; } .framer-UChu9 .framer-1fe4ocm > *, .framer-UChu9 .framer-1ft9d18 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}\",\"@media (max-width: 809px) { .framer-UChu9.framer-79fn9t { overflow: hidden; width: 390px; } .framer-UChu9 .framer-7od9ck { flex-direction: column; padding: 180px 20px 50px 20px; } .framer-UChu9 .framer-1c7we37 { flex: none; flex-direction: column; gap: 50px; width: 100%; } .framer-UChu9 .framer-1pxi02a { flex: none; gap: 25px; width: 100%; } .framer-UChu9 .framer-1w2xy57 { width: 350px; } .framer-UChu9 .framer-eesq8q { gap: 31px; } .framer-UChu9 .framer-1n9m4tn { height: var(--framer-aspect-ratio-supported, 35px); width: 59px; } .framer-UChu9 .framer-ynvk57 { width: 233px; } .framer-UChu9 .framer-1qgtwuj-container { align-self: unset; flex: none; height: 300px; width: 100%; } .framer-UChu9 .framer-eigwla, .framer-UChu9 .framer-2jd0g9, .framer-UChu9 .framer-hh262j, .framer-UChu9 .framer-1l1a7ei, .framer-UChu9 .framer-1dn91rk, .framer-UChu9 .framer-1czqed8 { padding: 50px 20px 50px 20px; } .framer-UChu9 .framer-1fe4ocm, .framer-UChu9 .framer-17vnxni, .framer-UChu9 .framer-j0inck { flex-direction: column; gap: 50px; } .framer-UChu9 .framer-7eu6e9 { flex: none; order: 0; width: 100%; } .framer-UChu9 .framer-1vnkhjh { order: 0; } .framer-UChu9 .framer-1tna6o0 { align-content: flex-start; align-items: flex-start; flex: none; height: min-content; justify-content: center; order: 3; width: 100%; } .framer-UChu9 .framer-xi8nr8 { padding: 0px; } .framer-UChu9 .framer-d4ec8q { flex-direction: column; } .framer-UChu9 .framer-1ft9d18, .framer-UChu9 .framer-1akgyev { flex: none; width: 100%; } .framer-UChu9 .framer-1u5p7lr { flex: none; order: 1; width: 100%; } .framer-UChu9 .framer-plflr7 { flex-direction: column; gap: 25px; } .framer-UChu9 .framer-xpgwzn, .framer-UChu9 .framer-i0s6f7 { flex: none; padding: 30px; width: 100%; } .framer-UChu9 .framer-1czufc5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-UChu9 .framer-oz14lm, .framer-UChu9 .framer-twq4sv, .framer-UChu9 .framer-1e4fckr, .framer-UChu9 .framer-16vt8zv { align-self: unset; height: min-content; padding: 30px; } .framer-UChu9 .framer-t4ny27-container, .framer-UChu9 .framer-1tu1dz-container, .framer-UChu9 .framer-1epng28-container, .framer-UChu9 .framer-bxu74p-container { height: 40px; width: 40px; } .framer-UChu9 .framer-u9l4jr { padding: 0px 0px 50px 0px; } .framer-UChu9 .framer-zczw3q-container { height: 458px; width: 90%; } .framer-UChu9 .framer-7vdw2k { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-UChu9 .framer-f8joxe-container { width: 100%; } .framer-UChu9 .framer-dwfpl5 { gap: 50px; padding: 50px 20px 50px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-UChu9 .framer-7od9ck, .framer-UChu9 .framer-1c7we37, .framer-UChu9 .framer-1pxi02a, .framer-UChu9 .framer-eesq8q, .framer-UChu9 .framer-1fe4ocm, .framer-UChu9 .framer-d4ec8q, .framer-UChu9 .framer-17vnxni, .framer-UChu9 .framer-plflr7, .framer-UChu9 .framer-1czufc5, .framer-UChu9 .framer-j0inck, .framer-UChu9 .framer-dwfpl5 { gap: 0px; } .framer-UChu9 .framer-7od9ck > *, .framer-UChu9 .framer-d4ec8q > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-UChu9 .framer-7od9ck > :first-child, .framer-UChu9 .framer-1c7we37 > :first-child, .framer-UChu9 .framer-1pxi02a > :first-child, .framer-UChu9 .framer-1fe4ocm > :first-child, .framer-UChu9 .framer-d4ec8q > :first-child, .framer-UChu9 .framer-17vnxni > :first-child, .framer-UChu9 .framer-plflr7 > :first-child, .framer-UChu9 .framer-1czufc5 > :first-child, .framer-UChu9 .framer-j0inck > :first-child, .framer-UChu9 .framer-dwfpl5 > :first-child { margin-top: 0px; } .framer-UChu9 .framer-7od9ck > :last-child, .framer-UChu9 .framer-1c7we37 > :last-child, .framer-UChu9 .framer-1pxi02a > :last-child, .framer-UChu9 .framer-1fe4ocm > :last-child, .framer-UChu9 .framer-d4ec8q > :last-child, .framer-UChu9 .framer-17vnxni > :last-child, .framer-UChu9 .framer-plflr7 > :last-child, .framer-UChu9 .framer-1czufc5 > :last-child, .framer-UChu9 .framer-j0inck > :last-child, .framer-UChu9 .framer-dwfpl5 > :last-child { margin-bottom: 0px; } .framer-UChu9 .framer-1c7we37 > *, .framer-UChu9 .framer-1fe4ocm > *, .framer-UChu9 .framer-17vnxni > *, .framer-UChu9 .framer-j0inck > *, .framer-UChu9 .framer-dwfpl5 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-UChu9 .framer-1pxi02a > *, .framer-UChu9 .framer-plflr7 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-UChu9 .framer-eesq8q > * { margin: 0px; margin-left: calc(31px / 2); margin-right: calc(31px / 2); } .framer-UChu9 .framer-eesq8q > :first-child { margin-left: 0px; } .framer-UChu9 .framer-eesq8q > :last-child { margin-right: 0px; } .framer-UChu9 .framer-1czufc5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8123\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"I3q64OPXc\":{\"layout\":[\"fixed\",\"auto\"]},\"T7BKf01Hp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerLayoutTemplateCompatible true\n * @framerResponsiveScreen\n */const FramerKQhXoqMTQ=withCSS(Component,css,\"framer-UChu9\");export default FramerKQhXoqMTQ;FramerKQhXoqMTQ.displayName=\"Home\";FramerKQhXoqMTQ.defaultProps={height:8123,width:1200};addFonts(FramerKQhXoqMTQ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TopbarFonts,...SlideshowFonts,...ButtonFonts,...PhosphorFonts,...FeatureCardFonts,...BlogCardFonts,...MailchimpFonts,...FAQHomeFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKQhXoqMTQ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I3q64OPXc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T7BKf01Hp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerLayoutTemplateCompatible\":\"true\",\"framerIntrinsicHeight\":\"8123\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "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", "PhosphorFonts", "getFonts", "Icon", "CTAFonts", "OlTWqYMo3_default", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cTA", "cTA1", "date", "description", "height", "icon", "icon1", "id", "link", "subhead", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_humanReadableVariantMap_props_variant", "_ref9", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "J2X4hmGjs", "SXDgbTQKy", "g56HeEMzh", "mdujxVvIp", "HQlsDHpqI", "fsUmuS24I", "qKOBsbAyJ", "EgEa9J473", "eZ5aNjZIy", "jezvjAzk0", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerKym4ifyAB", "withCSS", "Kym4ifyAB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "_componentPresets_fonts", "_componentPresets_fonts1", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "answer", "background", "height", "id", "question", "tap", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "x", "motion", "createLayoutDependency", "Variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "iCWxaawPK", "EBosMvmXB", "oAneuex2F", "jkmvchNua", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap9xzdsw", "args", "onTap1a0n1tq", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "SVG", "ComponentPresetsProvider", "css", "FramerUpqEA6qxk", "withCSS", "UpqEA6qxk_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "domain", "parameters", "Mailchimp", "withCSS", "input", "button", "layout", "style", "gap", "onSubmit", "props", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "handleChange", "event1", "handleSubmit", "response", "handleClick", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "Mailchimp_default", "fontStore", "fonts", "css", "className", "TopbarFonts", "getFonts", "lWUcIJP0H_default", "SlideshowFonts", "Slideshow", "ButtonFonts", "Tnz4seCKc_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "PhosphorFonts", "Icon", "FeatureCardFonts", "Kym4ifyAB_default", "MotionDivWithFX", "BlogCardFonts", "FIQUCdJNE_default", "MailchimpFonts", "Mailchimp_default", "FAQHomeFonts", "UpqEA6qxk_default", "FooterFonts", "M82dauGNX_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "PPeTwl1b8rPrdHCPfh", "DD39DBmBHrPrdHCPfh", "kBAWMceDjrPrdHCPfh", "YSKHrdVc1rPrdHCPfh", "ivFLyaMNqrPrdHCPfh", "EZue1CzWPrPrdHCPfh", "Tu_Pd0zTZrPrdHCPfh", "idrPrdHCPfh", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "isDisplayed", "activeLocaleCode", "useLocaleCode", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "Link", "SVG", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "ChildrenCanSuspend", "nWZy3UnCE_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks2", "resolvedLinks3", "css", "FramerKQhXoqMTQ", "withCSS", "KQhXoqMTQ_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
