{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bJnHw5VokAqNKlg6Rp7L/SlideShow.js", "ssg:https://framerusercontent.com/modules/s1f5V15e0ozKOaMxfQfA/RnZUWPjaNEqiyFJG86hM/MLoJeUv_d.js", "ssg:https://framerusercontent.com/modules/iBfq8D0A7IVoggt0wRHP/ajCdyNKlKxBxnOIR9785/QECyhN82m.js", "ssg:https://framerusercontent.com/modules/2eImSLXs8Nlcrf2EFlCt/ScR3klvxqNM5EpNKy8BF/TL_C344S9-0.js", "ssg:https://framerusercontent.com/modules/2eImSLXs8Nlcrf2EFlCt/ScR3klvxqNM5EpNKy8BF/TL_C344S9.js", "ssg:https://framerusercontent.com/modules/6HkMFoRgsKMckTAqvlgD/mELuMP8FglIKIbNWIiJB/TL_C344S9.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){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[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */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}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},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\"],defaultValue:\"left\",displaySegmentedControl:true},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},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},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;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-FB9YF\";const variantClassNames={SlbV2BsCc:\"framer-v-c6fiay\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"SlbV2BsCc\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-c6fiay\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"SlbV2BsCc\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-181795i\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"ruFsT5VA5\",svg:'<svg width=\"22\" height=\"25\" viewBox=\"0 0 22 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.7748 5.96087C13.615 5.96087 12.7022 6.99152 11.198 6.99152C9.65576 6.99152 8.47941 5.96837 6.60775 5.96837C4.77573 5.96837 2.82211 7.08687 1.58148 8.99228C-0.16055 11.6792 0.135144 16.7398 2.95656 21.0509C3.96578 22.5942 5.31355 24.325 7.08129 24.3438H7.11343C8.64975 24.3438 9.10615 23.3377 11.2205 23.326H11.2526C13.3353 23.326 13.7532 24.3379 15.2831 24.3379H15.3152C17.0829 24.3191 18.503 22.4014 19.5122 20.864C20.2386 19.7583 20.5086 19.2034 21.0657 17.9526C16.9844 16.4034 16.3287 10.6175 20.365 8.39928C19.133 6.85653 17.4017 5.96302 15.7695 5.96302L15.7748 5.96087Z\" fill=\"#0F545C\"/>\\n<path d=\"M15.2991 0.34375C14.0135 0.431066 12.5136 1.24958 11.6351 2.31826C10.838 3.28677 10.1823 4.72346 10.4395 6.11676H10.5423C11.9115 6.11676 13.3128 5.29235 14.1314 4.23599C14.9199 3.23052 15.5177 1.80562 15.2991 0.34375Z\" fill=\"#0F545C\"/>\\n</svg>\\n',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FB9YF.framer-1c82qn6, .framer-FB9YF .framer-1c82qn6 { display: block; }\",\".framer-FB9YF.framer-c6fiay { height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-FB9YF .framer-181795i { bottom: 0px; flex: none; left: 2px; position: absolute; right: 2px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerMLoJeUv_d=withCSS(Component,css,\"framer-FB9YF\");export default FramerMLoJeUv_d;FramerMLoJeUv_d.displayName=\"Icons\";FramerMLoJeUv_d.defaultProps={height:24,width:24};addFonts(FramerMLoJeUv_d,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMLoJeUv_d\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MLoJeUv_d.map", "// Generated by Framer (eca4804)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={AdDdm79Xz:{hover:true},CpOC9oJIa:{hover:true},jkOiYZpX4:{hover:true},jQZ5lHApl:{hover:true},KdfpuG7yZ:{hover:true},miNCUsGUg:{hover:true},mN48ctV6w:{hover:true},OvX3Orz6Z:{hover:true},wp3WCRN8p:{hover:true},XpEE9aVmF:{hover:true}};const cycleOrder=[\"jkOiYZpX4\",\"wp3WCRN8p\",\"AdDdm79Xz\",\"OvX3Orz6Z\",\"KdfpuG7yZ\",\"miNCUsGUg\",\"XpEE9aVmF\",\"jQZ5lHApl\",\"CpOC9oJIa\",\"mN48ctV6w\"];const serializationHash=\"framer-qN3R1\";const variantClassNames={AdDdm79Xz:\"framer-v-13w5294\",CpOC9oJIa:\"framer-v-19hsvlh\",jkOiYZpX4:\"framer-v-18ri33y\",jQZ5lHApl:\"framer-v-1be2dg\",KdfpuG7yZ:\"framer-v-zvsa1i\",miNCUsGUg:\"framer-v-myd09e\",mN48ctV6w:\"framer-v-116mlsh\",OvX3Orz6Z:\"framer-v-kofqt3\",wp3WCRN8p:\"framer-v-jkvcy3\",XpEE9aVmF:\"framer-v-sqougc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"A year with my camera\":\"AdDdm79Xz\",\"Action for Happiness\":\"jkOiYZpX4\",\"Battered Black Book\":\"mN48ctV6w\",\"Gold and green\":\"jQZ5lHApl\",\"La Reserva\":\"KdfpuG7yZ\",\"Sanctuary with Rod Stryker\":\"wp3WCRN8p\",BCWN:\"XpEE9aVmF\",Bodily:\"CpOC9oJIa\",Erickson:\"OvX3Orz6Z\",Natwest:\"miNCUsGUg\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"jkOiYZpX4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jkOiYZpX4\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"wp3WCRN8p-hover\",\"AdDdm79Xz-hover\",\"OvX3Orz6Z-hover\",\"KdfpuG7yZ-hover\",\"miNCUsGUg-hover\",\"XpEE9aVmF-hover\",\"jQZ5lHApl-hover\",\"CpOC9oJIa-hover\",\"mN48ctV6w-hover\"].includes(gestureVariant))return false;if([\"wp3WCRN8p\",\"AdDdm79Xz\",\"OvX3Orz6Z\",\"KdfpuG7yZ\",\"miNCUsGUg\",\"XpEE9aVmF\",\"jQZ5lHApl\",\"CpOC9oJIa\",\"mN48ctV6w\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"wp3WCRN8p-hover\")return true;if(baseVariant===\"wp3WCRN8p\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"AdDdm79Xz-hover\")return true;if(baseVariant===\"AdDdm79Xz\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"OvX3Orz6Z-hover\")return true;if(baseVariant===\"OvX3Orz6Z\")return true;return false;};const isDisplayed4=()=>{if(gestureVariant===\"KdfpuG7yZ-hover\")return true;if(baseVariant===\"KdfpuG7yZ\")return true;return false;};const isDisplayed5=()=>{if(gestureVariant===\"miNCUsGUg-hover\")return true;if(baseVariant===\"miNCUsGUg\")return true;return false;};const isDisplayed6=()=>{if(gestureVariant===\"XpEE9aVmF-hover\")return true;if(baseVariant===\"XpEE9aVmF\")return true;return false;};const isDisplayed7=()=>{if(gestureVariant===\"jQZ5lHApl-hover\")return true;if(baseVariant===\"jQZ5lHApl\")return true;return false;};const isDisplayed8=()=>{if(gestureVariant===\"CpOC9oJIa-hover\")return true;if(baseVariant===\"CpOC9oJIa\")return true;return false;};const isDisplayed9=()=>{if(gestureVariant===\"mN48ctV6w-hover\")return true;if(baseVariant===\"mN48ctV6w\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/gb/app/action-for-happiness-get-tips/id1445419017\",motionChild:true,nodeId:\"jkOiYZpX4\",openInNewTab:true,scopeId:\"QECyhN82m\",...addPropertyOverrides({AdDdm79Xz:{href:\"https://apps.apple.com/gb/app/a-year-with-my-camera/id1455984870\"},CpOC9oJIa:{href:\"https://apps.apple.com/gb/app/bodily/id1546244713\"},jQZ5lHApl:{href:\"https://apps.apple.com/gb/app/syndicate-connect/id1513547810\"},KdfpuG7yZ:{href:\"https://apps.apple.com/gb/app/sotogrande/id1394700040\"},miNCUsGUg:{href:\"https://apps.apple.com/gb/app/natwest-accelerator/id6742901505\"},mN48ctV6w:{href:\"https://apps.apple.com/gb/app/battered-black-book/id1445447273\"},OvX3Orz6Z:{href:\"https://apps.apple.com/gb/app/erickson/id1609633401\"},wp3WCRN8p:{href:\"https://apps.apple.com/gb/app/sanctuary-with-rod-stryker/id1426508272\"},XpEE9aVmF:{href:\"https://apps.apple.com/gb/app/black-career-womens-network/id1563750930\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230},className:`${cx(scopingClassNames,\"framer-18ri33y\",className,classNames)} framer-khjnyj`,\"data-framer-name\":\"Action for Happiness\",layoutDependency:layoutDependency,layoutId:\"jkOiYZpX4\",ref:refBinding,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"AdDdm79Xz-hover\":{\"data-framer-name\":undefined},\"CpOC9oJIa-hover\":{\"data-framer-name\":undefined},\"jkOiYZpX4-hover\":{\"data-framer-name\":undefined},\"jQZ5lHApl-hover\":{\"data-framer-name\":undefined},\"KdfpuG7yZ-hover\":{\"data-framer-name\":undefined},\"miNCUsGUg-hover\":{\"data-framer-name\":undefined},\"mN48ctV6w-hover\":{\"data-framer-name\":undefined},\"OvX3Orz6Z-hover\":{\"data-framer-name\":undefined},\"wp3WCRN8p-hover\":{\"data-framer-name\":undefined},\"XpEE9aVmF-hover\":{\"data-framer-name\":undefined},AdDdm79Xz:{\"data-framer-name\":\"A year with my camera\"},CpOC9oJIa:{\"data-framer-name\":\"Bodily\"},jQZ5lHApl:{\"data-framer-name\":\"Gold and green\"},KdfpuG7yZ:{\"data-framer-name\":\"La Reserva\"},miNCUsGUg:{\"data-framer-name\":\"Natwest\"},mN48ctV6w:{\"data-framer-name\":\"Battered Black Book\"},OvX3Orz6Z:{\"data-framer-name\":\"Erickson\"},wp3WCRN8p:{\"data-framer-name\":\"Sanctuary with Rod Stryker\"},XpEE9aVmF:{\"data-framer-name\":\"BCWN\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c76c2c\",layoutDependency:layoutDependency,layoutId:\"PIqZ55mBg\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\",scale:1},variants:{\"AdDdm79Xz-hover\":{boxShadow:\"0px 3px 4px 2px rgba(15, 84, 92, 0.1)\",scale:1.035},\"CpOC9oJIa-hover\":{boxShadow:\"0px 3px 4px 2px rgba(15, 84, 92, 0.1)\",scale:1.035},\"jkOiYZpX4-hover\":{boxShadow:\"0px 3px 4px 2px rgba(15, 84, 92, 0.1)\",scale:1.035},\"jQZ5lHApl-hover\":{boxShadow:\"0px 3px 4px 2px rgba(15, 84, 92, 0.1)\",scale:1.035},\"KdfpuG7yZ-hover\":{boxShadow:\"0px 3px 4px 2px rgba(15, 84, 92, 0.1)\",scale:1.035},\"miNCUsGUg-hover\":{boxShadow:\"0px 3px 4px 2px rgba(15, 84, 92, 0.1)\",scale:1.035},\"mN48ctV6w-hover\":{boxShadow:\"0px 3px 4px 2px rgba(15, 84, 92, 0.1)\",scale:1.035},\"OvX3Orz6Z-hover\":{boxShadow:\"0px 3px 4px 2px rgba(15, 84, 92, 0.1)\",scale:1.035},\"wp3WCRN8p-hover\":{boxShadow:\"0px 3px 4px 2px rgba(15, 84, 92, 0.1)\",scale:1.035},\"XpEE9aVmF-hover\":{boxShadow:\"0px 3px 4px 2px rgba(15, 84, 92, 0.1)\",scale:1.035}},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:460,pixelWidth:460,src:\"https://framerusercontent.com/images/7ywhlXuRAFjuJPZXGtKVzNlWsI.png\"},className:\"framer-tkpq0m\",\"data-framer-name\":\"Action for happiness-bw\",layoutDependency:layoutDependency,layoutId:\"ctb9T7s2a\"}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:460,pixelWidth:460,src:\"https://framerusercontent.com/images/Kx4faf5eqUEfV4nQvxSn9cc6xGc.jpg\"},className:\"framer-d3vyyn\",\"data-framer-name\":\"Action for happiness\",layoutDependency:layoutDependency,layoutId:\"gGlCKzSvF\",style:{opacity:0},variants:{\"jkOiYZpX4-hover\":{opacity:1}}}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/fX1jAzuodtFEnADvtHGSjPxsI.jpg\"},className:\"framer-1b9bcwp\",\"data-framer-name\":\"Sanctuary\",layoutDependency:layoutDependency,layoutId:\"Cv6yuMduQ\",style:{opacity:0},variants:{\"wp3WCRN8p-hover\":{opacity:1}},...addPropertyOverrides({wp3WCRN8p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/fX1jAzuodtFEnADvtHGSjPxsI.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/X9XkhVNpG3ZlvQCjdOa5cOI4Q.png\"},className:\"framer-15sxgr3\",\"data-framer-name\":\"Image 54\",layoutDependency:layoutDependency,layoutId:\"Af6Y1fYM1\",style:{opacity:1},variants:{\"wp3WCRN8p-hover\":{opacity:0}},...addPropertyOverrides({wp3WCRN8p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/X9XkhVNpG3ZlvQCjdOa5cOI4Q.png\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/cGdiYkdxnoO86RWwYsFk5NLcpc.jpg\"},className:\"framer-ety14n\",\"data-framer-name\":\"Image 56\",layoutDependency:layoutDependency,layoutId:\"ovkouwiw2\",style:{opacity:0},variants:{\"AdDdm79Xz-hover\":{opacity:1}},...addPropertyOverrides({AdDdm79Xz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/cGdiYkdxnoO86RWwYsFk5NLcpc.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/g6Z43xCqihg0FTdg8Clem92tQzs.png\"},className:\"framer-1oqen0\",\"data-framer-name\":\"Image 55\",layoutDependency:layoutDependency,layoutId:\"GdGP4b_yL\",style:{opacity:1},variants:{\"AdDdm79Xz-hover\":{opacity:0}},...addPropertyOverrides({AdDdm79Xz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/g6Z43xCqihg0FTdg8Clem92tQzs.png\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/FQf2Z09OLxCXZLjm82XvPzTjZS4.jpg\"},className:\"framer-fzilg4\",\"data-framer-name\":\"Image 57\",layoutDependency:layoutDependency,layoutId:\"M279rfD_5\",style:{opacity:0},variants:{\"OvX3Orz6Z-hover\":{opacity:1}},...addPropertyOverrides({OvX3Orz6Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/FQf2Z09OLxCXZLjm82XvPzTjZS4.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/wUgF8zeSQ7yMsDmQ3y6g3RHGaVA.png\"},className:\"framer-8lb25n\",\"data-framer-name\":\"Image 58\",layoutDependency:layoutDependency,layoutId:\"zzwERksIU\",style:{opacity:1},variants:{\"OvX3Orz6Z-hover\":{opacity:0}},...addPropertyOverrides({OvX3Orz6Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/wUgF8zeSQ7yMsDmQ3y6g3RHGaVA.png\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/VMNVAxAswaKR2Ry3sQtMgjJ3W84.jpg\"},className:\"framer-7xjwzj\",\"data-framer-name\":\"Image 60\",layoutDependency:layoutDependency,layoutId:\"lAeUSnxmC\",style:{opacity:0},variants:{\"KdfpuG7yZ-hover\":{opacity:1}},...addPropertyOverrides({KdfpuG7yZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/VMNVAxAswaKR2Ry3sQtMgjJ3W84.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/4MGL00NiFb9ZwW8ekUIWKQso.png\"},className:\"framer-npnguy\",\"data-framer-name\":\"Image 61\",layoutDependency:layoutDependency,layoutId:\"Fb_lWzmcL\",style:{opacity:1},variants:{\"KdfpuG7yZ-hover\":{opacity:0}},...addPropertyOverrides({KdfpuG7yZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/4MGL00NiFb9ZwW8ekUIWKQso.png\"}}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/wdsmK8D1rflI7qzlqYede2ysKis.jpg\"},className:\"framer-13na86u\",\"data-framer-name\":\"Image 64\",layoutDependency:layoutDependency,layoutId:\"mj_7IQbO5\",style:{opacity:0},variants:{\"miNCUsGUg-hover\":{opacity:1}},...addPropertyOverrides({miNCUsGUg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/wdsmK8D1rflI7qzlqYede2ysKis.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/VNnZRl4qkzTyDa4knvRf1TODaA4.png\"},className:\"framer-ual3vx\",\"data-framer-name\":\"Frame 4\",layoutDependency:layoutDependency,layoutId:\"S1bp2_Y1x\",style:{opacity:1},variants:{\"miNCUsGUg-hover\":{opacity:0}},...addPropertyOverrides({miNCUsGUg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+-3),pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/VNnZRl4qkzTyDa4knvRf1TODaA4.png\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/TeelESr1votXcsA189td9woO6P0.png\"},className:\"framer-p06f5x\",\"data-framer-name\":\"Frame 6 1\",layoutDependency:layoutDependency,layoutId:\"hHezk1sBW\",style:{opacity:1},variants:{\"XpEE9aVmF-hover\":{opacity:0}},...addPropertyOverrides({XpEE9aVmF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/TeelESr1votXcsA189td9woO6P0.png\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/XosYvwVDD0sRzHOp6LMzYJPbSc.jpg\"},className:\"framer-1tdstoc\",\"data-framer-name\":\"Image 66\",layoutDependency:layoutDependency,layoutId:\"YRX4s8Mxc\",style:{opacity:0},variants:{\"XpEE9aVmF-hover\":{opacity:1}},...addPropertyOverrides({XpEE9aVmF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/XosYvwVDD0sRzHOp6LMzYJPbSc.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/oHlNqA1Yf8yJscHnS85JvhKGWM.jpg\"},className:\"framer-1dzvwak\",\"data-framer-name\":\"Image 71\",layoutDependency:layoutDependency,layoutId:\"o87pMFYl_\",style:{opacity:0},variants:{\"jQZ5lHApl-hover\":{opacity:1}},...addPropertyOverrides({jQZ5lHApl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/oHlNqA1Yf8yJscHnS85JvhKGWM.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/sypx9atNO5hgMDmvQpR6MNDQK0.png\"},className:\"framer-o3r0ve\",\"data-framer-name\":\"Image 71\",layoutDependency:layoutDependency,layoutId:\"Mc668AYj4\",style:{opacity:1},variants:{\"jQZ5lHApl-hover\":{opacity:0}},...addPropertyOverrides({jQZ5lHApl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:460,pixelWidth:461,src:\"https://framerusercontent.com/images/sypx9atNO5hgMDmvQpR6MNDQK0.png\"}}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/rJydH3YxW9DnydMjY0syIGXbbyQ.jpg\"},className:\"framer-1eloe6p\",\"data-framer-name\":\"Image 72\",layoutDependency:layoutDependency,layoutId:\"NE6RXzNHz\",style:{opacity:0},variants:{\"CpOC9oJIa-hover\":{opacity:1}},...addPropertyOverrides({CpOC9oJIa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/rJydH3YxW9DnydMjY0syIGXbbyQ.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/2HVRCtuK7UjRVpoJ9pPivmDia44.png\"},className:\"framer-jswz51\",\"data-framer-name\":\"Image 72\",layoutDependency:layoutDependency,layoutId:\"tYRnBDZhe\",style:{opacity:1},variants:{\"CpOC9oJIa-hover\":{opacity:0}},...addPropertyOverrides({CpOC9oJIa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/2HVRCtuK7UjRVpoJ9pPivmDia44.png\"}}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/urG3bwav0Y8Hl9wuLHR43RtOD4.jpg\"},className:\"framer-11zbbzb\",\"data-framer-name\":\"Image 73\",layoutDependency:layoutDependency,layoutId:\"INRErERNa\",style:{opacity:0},variants:{\"mN48ctV6w-hover\":{opacity:1}},...addPropertyOverrides({mN48ctV6w:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/urG3bwav0Y8Hl9wuLHR43RtOD4.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/e7VcdRv9M7Lyi1mLh9BUjxYRNJ4.png\"},className:\"framer-fp4qc9\",\"data-framer-name\":\"Image 73\",layoutDependency:layoutDependency,layoutId:\"h2E2l5s7M\",style:{opacity:1},variants:{\"mN48ctV6w-hover\":{opacity:0}},...addPropertyOverrides({mN48ctV6w:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230.5,intrinsicWidth:230.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:461,pixelWidth:461,src:\"https://framerusercontent.com/images/e7VcdRv9M7Lyi1mLh9BUjxYRNJ4.png\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rkl8mb\",layoutDependency:layoutDependency,layoutId:\"yUlLzml3m\",style:{backgroundColor:\"var(--token-d5f0c94d-4166-43ae-8281-9c61d279375c, rgb(80, 94, 100))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,opacity:0},transformTemplate:transformTemplate1,variants:{\"AdDdm79Xz-hover\":{opacity:1},\"CpOC9oJIa-hover\":{opacity:1},\"jkOiYZpX4-hover\":{opacity:1},\"jQZ5lHApl-hover\":{opacity:1},\"KdfpuG7yZ-hover\":{opacity:1},\"miNCUsGUg-hover\":{opacity:1},\"mN48ctV6w-hover\":{opacity:1},\"OvX3Orz6Z-hover\":{opacity:1},\"wp3WCRN8p-hover\":{opacity:1},\"XpEE9aVmF-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250)))\"},children:\"Action for Happiness\"})}),className:\"framer-qh7loj\",fonts:[\"CUSTOM;Proxima Nova Bold\"],layoutDependency:layoutDependency,layoutId:\"VgrTcSyHL\",style:{\"--extracted-r6o4lv\":\"var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{\"AdDdm79Xz-hover\":{opacity:1},\"CpOC9oJIa-hover\":{opacity:1},\"jkOiYZpX4-hover\":{opacity:1},\"jQZ5lHApl-hover\":{opacity:1},\"KdfpuG7yZ-hover\":{opacity:1},\"miNCUsGUg-hover\":{opacity:1},\"mN48ctV6w-hover\":{opacity:1},\"OvX3Orz6Z-hover\":{opacity:1},\"wp3WCRN8p-hover\":{opacity:1},\"XpEE9aVmF-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AdDdm79Xz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250)))\"},children:\"A Year With My Camera\"})})},CpOC9oJIa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250)))\"},children:\"Bodily\"})})},jQZ5lHApl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250)))\"},children:\"Syndicate Connect\"})})},KdfpuG7yZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250)))\"},children:\"La Reserva\"})})},miNCUsGUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250)))\"},children:\"Natwest\"})})},mN48ctV6w:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250)))\"},children:\"Battered Black Book\"})})},OvX3Orz6Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250)))\"},children:\"Erickson+\"})})},wp3WCRN8p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250)))\"},children:\"Sanctuary with Rod Stryker\"})})},XpEE9aVmF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Byb3hpbWEgTm92YSBCb2xk\",\"--framer-font-family\":'\"Proxima Nova Bold\", \"Proxima Nova Bold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250)))\"},children:\"Black Career Women's Network\"})})}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qN3R1.framer-khjnyj, .framer-qN3R1 .framer-khjnyj { display: block; }\",\".framer-qN3R1.framer-18ri33y { cursor: pointer; height: 64px; overflow: visible; position: relative; text-decoration: none; width: 64px; }\",\".framer-qN3R1 .framer-c76c2c { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qN3R1 .framer-tkpq0m, .framer-qN3R1 .framer-d3vyyn, .framer-qN3R1 .framer-ety14n, .framer-qN3R1 .framer-fzilg4, .framer-qN3R1 .framer-13na86u, .framer-qN3R1 .framer-1tdstoc, .framer-qN3R1 .framer-1dzvwak, .framer-qN3R1 .framer-1eloe6p, .framer-qN3R1 .framer-jswz51, .framer-qN3R1 .framer-11zbbzb, .framer-qN3R1 .framer-fp4qc9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-qN3R1 .framer-1b9bcwp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 231px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 64px; }\",\".framer-qN3R1 .framer-15sxgr3, .framer-qN3R1 .framer-1oqen0, .framer-qN3R1 .framer-8lb25n, .framer-qN3R1 .framer-p06f5x, .framer-qN3R1 .framer-o3r0ve { aspect-ratio: 1.0021739130434784 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-qN3R1 .framer-7xjwzj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 64px; }\",\".framer-qN3R1 .framer-npnguy { aspect-ratio: 1.0021739130434784 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 64px; }\",\".framer-qN3R1 .framer-ual3vx { aspect-ratio: 1.0021739130434784 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: -3px; overflow: visible; position: absolute; right: -3px; top: -3px; }\",\".framer-qN3R1 .framer-1rkl8mb { align-content: center; align-items: center; bottom: -24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: center; left: 50%; overflow: visible; padding: 0px 8px 0px 8px; position: absolute; width: min-content; }\",\".framer-qN3R1 .framer-qh7loj { flex: none; height: 12px; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qN3R1 .framer-1rkl8mb { gap: 0px; } .framer-qN3R1 .framer-1rkl8mb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qN3R1 .framer-1rkl8mb > :first-child { margin-left: 0px; } .framer-qN3R1 .framer-1rkl8mb > :last-child { margin-right: 0px; } }\",\".framer-qN3R1.framer-v-jkvcy3.framer-18ri33y, .framer-qN3R1.framer-v-13w5294.framer-18ri33y, .framer-qN3R1.framer-v-kofqt3.framer-18ri33y, .framer-qN3R1.framer-v-zvsa1i.framer-18ri33y, .framer-qN3R1.framer-v-myd09e.framer-18ri33y, .framer-qN3R1.framer-v-sqougc.framer-18ri33y, .framer-qN3R1.framer-v-1be2dg.framer-18ri33y, .framer-qN3R1.framer-v-19hsvlh.framer-18ri33y, .framer-qN3R1.framer-v-116mlsh.framer-18ri33y, .framer-qN3R1.framer-v-18ri33y.hover.framer-18ri33y { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); }\",\".framer-qN3R1.framer-v-jkvcy3 .framer-1b9bcwp { height: var(--framer-aspect-ratio-supported, 64px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"wp3WCRN8p\":{\"layout\":[\"fixed\",\"fixed\"]},\"AdDdm79Xz\":{\"layout\":[\"fixed\",\"fixed\"]},\"OvX3Orz6Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"KdfpuG7yZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"miNCUsGUg\":{\"layout\":[\"fixed\",\"fixed\"]},\"XpEE9aVmF\":{\"layout\":[\"fixed\",\"fixed\"]},\"jQZ5lHApl\":{\"layout\":[\"fixed\",\"fixed\"]},\"CpOC9oJIa\":{\"layout\":[\"fixed\",\"fixed\"]},\"mN48ctV6w\":{\"layout\":[\"fixed\",\"fixed\"]},\"LokEtvLiS\":{\"layout\":[\"fixed\",\"fixed\"]},\"R8es3rO7f\":{\"layout\":[\"fixed\",\"fixed\"]},\"mwbA2g8OQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"fbrsUimGK\":{\"layout\":[\"fixed\",\"fixed\"]},\"ycSe5jst7\":{\"layout\":[\"fixed\",\"fixed\"]},\"Tb71yvQLz\":{\"layout\":[\"fixed\",\"fixed\"]},\"jTPGVD3Jx\":{\"layout\":[\"fixed\",\"fixed\"]},\"JemTxgriA\":{\"layout\":[\"fixed\",\"fixed\"]},\"KnKVos3bP\":{\"layout\":[\"fixed\",\"fixed\"]},\"CKYtTc7XU\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerQECyhN82m=withCSS(Component,css,\"framer-qN3R1\");export default FramerQECyhN82m;FramerQECyhN82m.displayName=\"Customer logo\";FramerQECyhN82m.defaultProps={height:64,width:64};addPropertyControls(FramerQECyhN82m,{variant:{options:[\"jkOiYZpX4\",\"wp3WCRN8p\",\"AdDdm79Xz\",\"OvX3Orz6Z\",\"KdfpuG7yZ\",\"miNCUsGUg\",\"XpEE9aVmF\",\"jQZ5lHApl\",\"CpOC9oJIa\",\"mN48ctV6w\"],optionTitles:[\"Action for Happiness\",\"Sanctuary with Rod Stryker\",\"A year with my camera\",\"Erickson\",\"La Reserva\",\"Natwest\",\"BCWN\",\"Gold and green\",\"Bodily\",\"Battered Black Book\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQECyhN82m,[{explicitInter:true,fonts:[{family:\"Proxima Nova Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/hEIFKm1s1gnyboFv5ls3Tbysvg.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQECyhN82m\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"64\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wp3WCRN8p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AdDdm79Xz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OvX3Orz6Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KdfpuG7yZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"miNCUsGUg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XpEE9aVmF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jQZ5lHApl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CpOC9oJIa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mN48ctV6w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LokEtvLiS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R8es3rO7f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mwbA2g8OQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fbrsUimGK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ycSe5jst7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Tb71yvQLz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jTPGVD3Jx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JemTxgriA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KnKVos3bP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CKYtTc7XU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"64\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QECyhN82m.map", "export const v0=\"Alle\";export const v1=\"Gesch\\xe4ft\";export const v2=\"Coaching\";export const v3=\"Glaube\";export const v4=\"Hobby\";export const v5=\"Gemeinn\\xfctzig\";export const v6=\"Abonnementdienst\";\nexport const __FramerMetadata__ = {\"exports\":{\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e942a9a)\nimport*as localizedValues from\"./TL_C344S9-0.js\";const valuesByLocaleId={wP1v3FpCR:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e942a9a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,PathVariablesContext,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CommunityStories,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/Zpk5mbaZl9IhMLv3GrVx/LnNCEdd3XrM0kWdFwfQD/S6vUt2AEK.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/2eImSLXs8Nlcrf2EFlCt/ScR3klvxqNM5EpNKy8BF/TL_C344S9.js\";import CaseStudiesListItem from\"https://framerusercontent.com/modules/qE8sGnnucRdO3fJd6MYo/yTrTO4zdGd3U8xCNat64/J8QVnyZds.js\";import CaseStudiesFilterChip from\"https://framerusercontent.com/modules/B9QYpsDEHFam971OtBON/ayapJgxQirr3vlVhEIE7/td4_kv_0u.js\";const CaseStudiesFilterChipFonts=getFonts(CaseStudiesFilterChip);const CaseStudiesListItemFonts=getFonts(CaseStudiesListItem);const cycleOrder=[\"zEFrEH5hh\",\"fBTl7BMBY\",\"Jgtvmdo9G\",\"lF2d7h1wc\",\"Wk_XePZe1\",\"NOdCm3WLQ\",\"o4xWRHd9n\"];const serializationHash=\"framer-3BkTj\";const variantClassNames={fBTl7BMBY:\"framer-v-tf3e4j\",Jgtvmdo9G:\"framer-v-1f63nbs\",lF2d7h1wc:\"framer-v-4cvl8y\",NOdCm3WLQ:\"framer-v-yfthnv\",o4xWRHd9n:\"framer-v-8huxyl\",Wk_XePZe1:\"framer-v-q0p173\",zEFrEH5hh:\"framer-v-2p3md5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"SD4WHvTMN\":return'var(--token-cd7c0508-74ef-4cfe-9219-8f5be791eb76, rgb(235, 147, 162)) /* {\"name\":\"Rose\"} */';case\"v08hOkucw\":return'var(--token-b3fd4bf5-9c43-484a-bc6c-4a3e15d3b684, rgb(255, 186, 54)) /* {\"name\":\"Sunflower\"} */';case\"GBscnQ7bf\":return'var(--token-cd7c0508-74ef-4cfe-9219-8f5be791eb76, rgb(235, 147, 162)) /* {\"name\":\"Rose\"} */';case\"DAjum74Z8\":return'var(--token-cc194494-4c92-4a5f-9a94-813c7e119098, rgb(41, 150, 163)) /* {\"name\":\"Turquoise\"} */';case\"qWcwUbf1O\":return'var(--token-d5f0c94d-4166-43ae-8281-9c61d279375c, rgb(80, 94, 100)) /* {\"name\":\"Charcoal\"} */';case\"XZHsjYaqq\":return'var(--token-f3348474-2785-467b-9536-8a9ff162f99a, rgb(245, 150, 112)) /* {\"name\":\"Peach\"} */';case\"j37CFMiPH\":return'var(--token-d5f0c94d-4166-43ae-8281-9c61d279375c, rgb(80, 94, 100)) /* {\"name\":\"Charcoal\"} */';default:return'var(--token-d5f0c94d-4166-43ae-8281-9c61d279375c, rgb(80, 94, 100)) /* {\"name\":\"Charcoal\"} */';}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const query=prequery=>prequery({from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}]});const query1=prequery=>prequery({from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"v08hOkucw\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"v08hOkucw\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"v08hOkucw\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GBscnQ7bf\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GBscnQ7bf\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GBscnQ7bf\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query3=prequery=>prequery({from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"DAjum74Z8\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"DAjum74Z8\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"DAjum74Z8\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query4=prequery=>prequery({from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"j37CFMiPH\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"j37CFMiPH\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"j37CFMiPH\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query5=prequery=>prequery({from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"g_LWUWrjG\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"g_LWUWrjG\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"g_LWUWrjG\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query6=prequery=>prequery({from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"tehtICrbT\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"tehtICrbT\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"tehtICrbT\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"l7IG6m63s\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableEnumMap1={Hidden:\"hidden\",Scroll:\"auto\",Visible:\"visible\"};const humanReadableVariantMap={\"Non-profit\":\"NOdCm3WLQ\",\"Subscription service\":\"o4xWRHd9n\",All:\"zEFrEH5hh\",Business:\"fBTl7BMBY\",Coaching:\"Jgtvmdo9G\",Faith:\"lF2d7h1wc\",Hobby:\"Wk_XePZe1\"};const getProps=({chipGap,distribute,gap,height,id,overflow,padding,width,...props})=>{return{...props,Et6pL9QuY:padding??props.Et6pL9QuY??\"16px\",JcbIQuMdq:humanReadableEnumMap[distribute]??distribute??props.JcbIQuMdq??\"center\",O7UowofSM:chipGap??props.O7UowofSM??8,p8rTbjTAH:gap??props.p8rTbjTAH??16,variant:humanReadableVariantMap[props.variant]??props.variant??\"zEFrEH5hh\",zyWPaZpn3:humanReadableEnumMap1[overflow]??overflow??props.zyWPaZpn3??\"auto\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,JcbIQuMdq,p8rTbjTAH,Et6pL9QuY,zyWPaZpn3,O7UowofSM,rnXR_UDxJl7IG6m63s,gBrg3s_Dpl7IG6m63s,M5kslOzWjl7IG6m63s,r_PKaPsAml7IG6m63s,cmSW2I3twl7IG6m63s,idl7IG6m63s,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zEFrEH5hh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Z0ivPrsZzo1f1rp=activeVariantCallback(async(...args)=>{setVariant(\"zEFrEH5hh\");});const Z0ivPrsZz1nvp36g=activeVariantCallback(async(...args)=>{setVariant(\"fBTl7BMBY\");});const Z0ivPrsZz1tr6xig=activeVariantCallback(async(...args)=>{setVariant(\"Jgtvmdo9G\");});const Z0ivPrsZz1vx7n5s=activeVariantCallback(async(...args)=>{setVariant(\"lF2d7h1wc\");});const Z0ivPrsZz1sdbcoe=activeVariantCallback(async(...args)=>{setVariant(\"Wk_XePZe1\");});const Z0ivPrsZz16npjqg=activeVariantCallback(async(...args)=>{setVariant(\"NOdCm3WLQ\");});const Z0ivPrsZzym1e5n=activeVariantCallback(async(...args)=>{setVariant(\"o4xWRHd9n\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-2p3md5\",className,classNames),\"data-framer-name\":\"All\",layoutDependency:layoutDependency,layoutId:\"zEFrEH5hh\",ref:refBinding,style:{\"--mza31u\":numberToPixelString(p8rTbjTAH),...style},...addPropertyOverrides({fBTl7BMBY:{\"data-framer-name\":\"Business\"},Jgtvmdo9G:{\"data-framer-name\":\"Coaching\"},lF2d7h1wc:{\"data-framer-name\":\"Faith\"},NOdCm3WLQ:{\"data-framer-name\":\"Non-profit\"},o4xWRHd9n:{\"data-framer-name\":\"Subscription service\"},Wk_XePZe1:{\"data-framer-name\":\"Hobby\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pn55t\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"srmA2072K\",style:{\"--1igqfef\":numberToPixelString(O7UowofSM),\"--1vzt2ol\":JcbIQuMdq,\"--1x67k86\":numberToPixelString(Et6pL9QuY)},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2t9jcp-container\",layoutDependency:layoutDependency,layoutId:\"a9y_l7c9c-container\",nodeId:\"a9y_l7c9c\",rendersWithMotion:true,scopeId:\"TL_C344S9\",children:/*#__PURE__*/_jsx(CaseStudiesFilterChip,{CkSOG6nV6:getLocalizedValue(\"v0\",activeLocale)??\"All\",dJBSa8Umq:\"var(--token-4705d1fc-9750-468d-a07e-7b769a3abb93, rgb(226, 230, 232))\",fUaATg3Gh:\"var(--token-f3115124-c770-4798-a7cc-fe11b3d56978, rgb(15, 84, 92))\",height:\"100%\",id:\"a9y_l7c9c\",layoutId:\"a9y_l7c9c\",variant:\"WvRpjfFgo\",width:\"100%\",xSvRkbrhC:\"0px 2px 2px 2px rgba(15, 84, 92, 0.1)\",...addPropertyOverrides({fBTl7BMBY:{variant:\"HkSvmvYul\",Z0ivPrsZz:Z0ivPrsZzo1f1rp},Jgtvmdo9G:{variant:\"HkSvmvYul\",Z0ivPrsZz:Z0ivPrsZzo1f1rp},lF2d7h1wc:{variant:\"HkSvmvYul\",Z0ivPrsZz:Z0ivPrsZzo1f1rp},NOdCm3WLQ:{variant:\"HkSvmvYul\",Z0ivPrsZz:Z0ivPrsZzo1f1rp},o4xWRHd9n:{variant:\"HkSvmvYul\",Z0ivPrsZz:Z0ivPrsZzo1f1rp},Wk_XePZe1:{variant:\"HkSvmvYul\",Z0ivPrsZz:Z0ivPrsZzo1f1rp}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1et3naz-container\",layoutDependency:layoutDependency,layoutId:\"ip4Dr3AsN-container\",nodeId:\"ip4Dr3AsN\",rendersWithMotion:true,scopeId:\"TL_C344S9\",children:/*#__PURE__*/_jsx(CaseStudiesFilterChip,{CkSOG6nV6:getLocalizedValue(\"v1\",activeLocale)??\"Business\",dJBSa8Umq:\"var(--token-4705d1fc-9750-468d-a07e-7b769a3abb93, rgb(226, 230, 232))\",fUaATg3Gh:\"var(--token-f3115124-c770-4798-a7cc-fe11b3d56978, rgb(15, 84, 92))\",height:\"100%\",id:\"ip4Dr3AsN\",layoutId:\"ip4Dr3AsN\",variant:\"HkSvmvYul\",width:\"100%\",xSvRkbrhC:\"0px 2px 2px 2px rgba(15, 84, 92, 0.1)\",Z0ivPrsZz:Z0ivPrsZz1nvp36g,...addPropertyOverrides({fBTl7BMBY:{fUaATg3Gh:\"var(--token-b3fd4bf5-9c43-484a-bc6c-4a3e15d3b684, rgb(255, 186, 54))\",variant:\"WvRpjfFgo\"},Jgtvmdo9G:{fUaATg3Gh:\"var(--token-b3fd4bf5-9c43-484a-bc6c-4a3e15d3b684, rgb(255, 186, 54))\"},lF2d7h1wc:{fUaATg3Gh:\"var(--token-b3fd4bf5-9c43-484a-bc6c-4a3e15d3b684, rgb(255, 186, 54))\"},NOdCm3WLQ:{fUaATg3Gh:\"var(--token-b3fd4bf5-9c43-484a-bc6c-4a3e15d3b684, rgb(255, 186, 54))\"},o4xWRHd9n:{fUaATg3Gh:\"var(--token-b3fd4bf5-9c43-484a-bc6c-4a3e15d3b684, rgb(255, 186, 54))\"},Wk_XePZe1:{fUaATg3Gh:\"var(--token-b3fd4bf5-9c43-484a-bc6c-4a3e15d3b684, rgb(255, 186, 54))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ehr2e0-container\",layoutDependency:layoutDependency,layoutId:\"erxiEOaVs-container\",nodeId:\"erxiEOaVs\",rendersWithMotion:true,scopeId:\"TL_C344S9\",children:/*#__PURE__*/_jsx(CaseStudiesFilterChip,{CkSOG6nV6:getLocalizedValue(\"v2\",activeLocale)??\"Coaching\",dJBSa8Umq:\"var(--token-4705d1fc-9750-468d-a07e-7b769a3abb93, rgb(226, 230, 232))\",fUaATg3Gh:\"var(--token-f3115124-c770-4798-a7cc-fe11b3d56978, rgb(15, 84, 92))\",height:\"100%\",id:\"erxiEOaVs\",layoutId:\"erxiEOaVs\",variant:\"HkSvmvYul\",width:\"100%\",xSvRkbrhC:\"0px 2px 2px 2px rgba(15, 84, 92, 0.1)\",Z0ivPrsZz:Z0ivPrsZz1tr6xig,...addPropertyOverrides({Jgtvmdo9G:{fUaATg3Gh:\"var(--token-cd7c0508-74ef-4cfe-9219-8f5be791eb76, rgb(235, 147, 162))\",variant:\"WvRpjfFgo\"},lF2d7h1wc:{fUaATg3Gh:\"var(--token-cd7c0508-74ef-4cfe-9219-8f5be791eb76, rgb(235, 147, 162))\"},NOdCm3WLQ:{fUaATg3Gh:\"var(--token-cd7c0508-74ef-4cfe-9219-8f5be791eb76, rgb(235, 147, 162))\"},o4xWRHd9n:{fUaATg3Gh:\"var(--token-cd7c0508-74ef-4cfe-9219-8f5be791eb76, rgb(235, 147, 162))\"},Wk_XePZe1:{fUaATg3Gh:\"var(--token-cd7c0508-74ef-4cfe-9219-8f5be791eb76, rgb(235, 147, 162))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1obxo7q-container\",layoutDependency:layoutDependency,layoutId:\"sTMHzjQWz-container\",nodeId:\"sTMHzjQWz\",rendersWithMotion:true,scopeId:\"TL_C344S9\",children:/*#__PURE__*/_jsx(CaseStudiesFilterChip,{CkSOG6nV6:getLocalizedValue(\"v3\",activeLocale)??\"Faith\",dJBSa8Umq:\"var(--token-4705d1fc-9750-468d-a07e-7b769a3abb93, rgb(226, 230, 232))\",fUaATg3Gh:\"var(--token-f3115124-c770-4798-a7cc-fe11b3d56978, rgb(15, 84, 92))\",height:\"100%\",id:\"sTMHzjQWz\",layoutId:\"sTMHzjQWz\",variant:\"HkSvmvYul\",width:\"100%\",xSvRkbrhC:\"0px 2px 2px 2px rgba(15, 84, 92, 0.1)\",Z0ivPrsZz:Z0ivPrsZz1vx7n5s,...addPropertyOverrides({lF2d7h1wc:{fUaATg3Gh:\"var(--token-cc194494-4c92-4a5f-9a94-813c7e119098, rgb(41, 150, 163))\",variant:\"WvRpjfFgo\"},NOdCm3WLQ:{fUaATg3Gh:\"var(--token-cc194494-4c92-4a5f-9a94-813c7e119098, rgb(41, 150, 163))\"},o4xWRHd9n:{fUaATg3Gh:\"var(--token-cc194494-4c92-4a5f-9a94-813c7e119098, rgb(41, 150, 163))\"},Wk_XePZe1:{fUaATg3Gh:\"var(--token-cc194494-4c92-4a5f-9a94-813c7e119098, rgb(41, 150, 163))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-skup58-container\",layoutDependency:layoutDependency,layoutId:\"dcwBH3aHH-container\",nodeId:\"dcwBH3aHH\",rendersWithMotion:true,scopeId:\"TL_C344S9\",children:/*#__PURE__*/_jsx(CaseStudiesFilterChip,{CkSOG6nV6:getLocalizedValue(\"v4\",activeLocale)??\"Hobby\",dJBSa8Umq:\"var(--token-4705d1fc-9750-468d-a07e-7b769a3abb93, rgb(226, 230, 232))\",fUaATg3Gh:\"var(--token-f3115124-c770-4798-a7cc-fe11b3d56978, rgb(15, 84, 92))\",height:\"100%\",id:\"dcwBH3aHH\",layoutId:\"dcwBH3aHH\",variant:\"HkSvmvYul\",width:\"100%\",xSvRkbrhC:\"0px 2px 2px 2px rgba(15, 84, 92, 0.1)\",Z0ivPrsZz:Z0ivPrsZz1sdbcoe,...addPropertyOverrides({NOdCm3WLQ:{fUaATg3Gh:\"var(--token-d5f0c94d-4166-43ae-8281-9c61d279375c, rgb(80, 94, 100))\"},o4xWRHd9n:{fUaATg3Gh:\"var(--token-d5f0c94d-4166-43ae-8281-9c61d279375c, rgb(80, 94, 100))\"},Wk_XePZe1:{fUaATg3Gh:\"var(--token-d5f0c94d-4166-43ae-8281-9c61d279375c, rgb(80, 94, 100))\",variant:\"WvRpjfFgo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v9yy2t-container\",layoutDependency:layoutDependency,layoutId:\"Y9STwXzeW-container\",nodeId:\"Y9STwXzeW\",rendersWithMotion:true,scopeId:\"TL_C344S9\",children:/*#__PURE__*/_jsx(CaseStudiesFilterChip,{CkSOG6nV6:getLocalizedValue(\"v5\",activeLocale)??\"Non-profit\",dJBSa8Umq:\"var(--token-4705d1fc-9750-468d-a07e-7b769a3abb93, rgb(226, 230, 232))\",fUaATg3Gh:\"var(--token-f3115124-c770-4798-a7cc-fe11b3d56978, rgb(15, 84, 92))\",height:\"100%\",id:\"Y9STwXzeW\",layoutId:\"Y9STwXzeW\",variant:\"HkSvmvYul\",width:\"100%\",xSvRkbrhC:\"0px 2px 2px 2px rgba(15, 84, 92, 0.1)\",Z0ivPrsZz:Z0ivPrsZz16npjqg,...addPropertyOverrides({NOdCm3WLQ:{fUaATg3Gh:\"var(--token-b3fd4bf5-9c43-484a-bc6c-4a3e15d3b684, rgb(255, 186, 54))\",variant:\"WvRpjfFgo\"},o4xWRHd9n:{fUaATg3Gh:\"var(--token-b3fd4bf5-9c43-484a-bc6c-4a3e15d3b684, rgb(255, 186, 54))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-69axuc-container\",layoutDependency:layoutDependency,layoutId:\"UbCntjwcz-container\",nodeId:\"UbCntjwcz\",rendersWithMotion:true,scopeId:\"TL_C344S9\",children:/*#__PURE__*/_jsx(CaseStudiesFilterChip,{CkSOG6nV6:getLocalizedValue(\"v6\",activeLocale)??\"Subscription service\",dJBSa8Umq:\"var(--token-4705d1fc-9750-468d-a07e-7b769a3abb93, rgb(226, 230, 232))\",fUaATg3Gh:\"var(--token-f3115124-c770-4798-a7cc-fe11b3d56978, rgb(15, 84, 92))\",height:\"100%\",id:\"UbCntjwcz\",layoutId:\"UbCntjwcz\",variant:\"HkSvmvYul\",width:\"100%\",xSvRkbrhC:\"0px 2px 2px 2px rgba(15, 84, 92, 0.1)\",Z0ivPrsZz:Z0ivPrsZzym1e5n,...addPropertyOverrides({o4xWRHd9n:{fUaATg3Gh:\"var(--token-d5f0c94d-4166-43ae-8281-9c61d279375c, rgb(80, 94, 100))\",variant:\"WvRpjfFgo\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vcrcun\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"l7IG6m63s\",style:{\"--14shmyh\":zyWPaZpn3,\"--1vzt2ol\":JcbIQuMdq},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:4,query:{from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}]},...addPropertyOverrides({fBTl7BMBY:{pageSize:4,query:{from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"v08hOkucw\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"v08hOkucw\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"v08hOkucw\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},Jgtvmdo9G:{pageSize:4,query:{from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GBscnQ7bf\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GBscnQ7bf\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GBscnQ7bf\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},lF2d7h1wc:{pageSize:4,query:{from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"DAjum74Z8\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"DAjum74Z8\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"DAjum74Z8\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},NOdCm3WLQ:{pageSize:4,query:{from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"g_LWUWrjG\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"g_LWUWrjG\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"g_LWUWrjG\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},o4xWRHd9n:{pageSize:4,query:{from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"tehtICrbT\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"tehtICrbT\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"tehtICrbT\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},Wk_XePZe1:{pageSize:4,query:{from:{alias:\"l7IG6m63s\",data:CommunityStories,type:\"Collection\"},select:[{collection:\"l7IG6m63s\",name:\"rnXR_UDxJ\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"gBrg3s_Dp\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"M5kslOzWj\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"r_PKaPsAm\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},{collection:\"l7IG6m63s\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"l7IG6m63s\",name:\"cmSW2I3tw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"j37CFMiPH\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"c9q1izfcO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"j37CFMiPH\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"l7IG6m63s\",name:\"XISFBZFDq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"j37CFMiPH\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({cmSW2I3tw:cmSW2I3twl7IG6m63s,gBrg3s_Dp:gBrg3s_Dpl7IG6m63s,id:idl7IG6m63s,M5kslOzWj:M5kslOzWjl7IG6m63s,r_PKaPsAm:r_PKaPsAml7IG6m63s,rnXR_UDxJ:rnXR_UDxJl7IG6m63s},index)=>{rnXR_UDxJl7IG6m63s??=\"\";M5kslOzWjl7IG6m63s??=\"\";r_PKaPsAml7IG6m63s??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`l7IG6m63s-${idl7IG6m63s}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{rnXR_UDxJ:rnXR_UDxJl7IG6m63s},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p3pis7\",layoutDependency:layoutDependency,layoutId:\"dmF0MzG9u\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rnXR_UDxJ:rnXR_UDxJl7IG6m63s},webPageId:\"tLJ5qCpbQ\"},implicitPathVariables:undefined},{href:{pathVariables:{rnXR_UDxJ:rnXR_UDxJl7IG6m63s},webPageId:\"tLJ5qCpbQ\"},implicitPathVariables:undefined},{href:{pathVariables:{rnXR_UDxJ:rnXR_UDxJl7IG6m63s},webPageId:\"tLJ5qCpbQ\"},implicitPathVariables:undefined},{href:{pathVariables:{rnXR_UDxJ:rnXR_UDxJl7IG6m63s},webPageId:\"tLJ5qCpbQ\"},implicitPathVariables:undefined},{href:{pathVariables:{rnXR_UDxJ:rnXR_UDxJl7IG6m63s},webPageId:\"tLJ5qCpbQ\"},implicitPathVariables:undefined},{href:{pathVariables:{rnXR_UDxJ:rnXR_UDxJl7IG6m63s},webPageId:\"tLJ5qCpbQ\"},implicitPathVariables:undefined},{href:{pathVariables:{rnXR_UDxJ:rnXR_UDxJl7IG6m63s},webPageId:\"tLJ5qCpbQ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lsw4n-container\",layoutDependency:layoutDependency,layoutId:\"asOPz4TQT-container\",nodeId:\"asOPz4TQT\",rendersWithMotion:true,scopeId:\"TL_C344S9\",children:/*#__PURE__*/_jsx(CaseStudiesListItem,{fKMkFVGPk:r_PKaPsAml7IG6m63s,height:\"100%\",id:\"asOPz4TQT\",KrXCy_nFY:resolvedLinks[0],L_2yl96am:toString(convertFromEnum(cmSW2I3twl7IG6m63s,activeLocale)),layoutId:\"asOPz4TQT\",m96m0wFjK:enumToDisplayNameFunctions[\"cmSW2I3tw\"]?.(cmSW2I3twl7IG6m63s,activeLocale),OKryAXT_d:\"0px 3px 4px 2px rgba(15, 84, 92, 0.1)\",t8K3Y5jQH:toResponsiveImage(gBrg3s_Dpl7IG6m63s),uLon2BN_n:M5kslOzWjl7IG6m63s,variant:\"DhKt6Olud\",width:\"100%\",zHoTpZApD:\"var(--token-ddf13f8a-2e70-4d41-bfc4-3d5bc41c4860, rgb(250, 250, 250))\",...addPropertyOverrides({fBTl7BMBY:{KrXCy_nFY:resolvedLinks[1]},Jgtvmdo9G:{KrXCy_nFY:resolvedLinks[2]},lF2d7h1wc:{KrXCy_nFY:resolvedLinks[3]},NOdCm3WLQ:{KrXCy_nFY:resolvedLinks[5]},o4xWRHd9n:{KrXCy_nFY:resolvedLinks[6]},Wk_XePZe1:{KrXCy_nFY:resolvedLinks[4]}},baseVariant,gestureVariant)})})})})})})},idl7IG6m63s);})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3BkTj.framer-1m59cte, .framer-3BkTj .framer-1m59cte { display: block; }\",\".framer-3BkTj.framer-2p3md5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: var(--mza31u); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1000px; }\",\".framer-3BkTj .framer-pn55t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: var(--1igqfef); height: min-content; justify-content: var(--1vzt2ol); max-width: 100%; overflow: auto; padding: var(--1x67k86); position: relative; width: 100%; }\",\".framer-3BkTj .framer-2t9jcp-container, .framer-3BkTj .framer-1et3naz-container, .framer-3BkTj .framer-ehr2e0-container, .framer-3BkTj .framer-1obxo7q-container, .framer-3BkTj .framer-skup58-container, .framer-3BkTj .framer-1v9yy2t-container, .framer-3BkTj .framer-69axuc-container, .framer-3BkTj .framer-lsw4n-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3BkTj .framer-vcrcun { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: var(--1vzt2ol); overflow: var(--14shmyh); padding: 16px; position: relative; width: 100%; }\",\".framer-3BkTj .framer-1p3pis7 { 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-3BkTj[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-3BkTj [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-3BkTj[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-3BkTj [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-3BkTj[data-hide-scrollbars=\"true\"], .framer-3BkTj [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 445.5\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fBTl7BMBY\":{\"layout\":[\"fixed\",\"auto\"]},\"Jgtvmdo9G\":{\"layout\":[\"fixed\",\"auto\"]},\"lF2d7h1wc\":{\"layout\":[\"fixed\",\"auto\"]},\"Wk_XePZe1\":{\"layout\":[\"fixed\",\"auto\"]},\"NOdCm3WLQ\":{\"layout\":[\"fixed\",\"auto\"]},\"o4xWRHd9n\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JcbIQuMdq\":\"distribute\",\"p8rTbjTAH\":\"gap\",\"Et6pL9QuY\":\"padding\",\"zyWPaZpn3\":\"overflow\",\"O7UowofSM\":\"chipGap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerTL_C344S9=withCSS(Component,css,\"framer-3BkTj\");export default FramerTL_C344S9;FramerTL_C344S9.displayName=\"Case studies section 2\";FramerTL_C344S9.defaultProps={height:445.5,width:1e3};addPropertyControls(FramerTL_C344S9,{variant:{options:[\"zEFrEH5hh\",\"fBTl7BMBY\",\"Jgtvmdo9G\",\"lF2d7h1wc\",\"Wk_XePZe1\",\"NOdCm3WLQ\",\"o4xWRHd9n\"],optionTitles:[\"All\",\"Business\",\"Coaching\",\"Faith\",\"Hobby\",\"Non-profit\",\"Subscription service\"],title:\"Variant\",type:ControlType.Enum},JcbIQuMdq:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},p8rTbjTAH:{defaultValue:16,min:0,title:\"Gap\",type:ControlType.Number},Et6pL9QuY:{defaultValue:\"16px\",title:\"Padding\",type:ControlType.Padding},zyWPaZpn3:{defaultValue:\"auto\",options:[\"hidden\",\"visible\",\"auto\"],optionTitles:[\"Hidden\",\"Visible\",\"Scroll\"],title:\"Overflow\",type:ControlType.Enum},O7UowofSM:{defaultValue:8,min:0,title:\"Chip gap\",type:ControlType.Number}});addFonts(FramerTL_C344S9,[{explicitInter:true,fonts:[]},...CaseStudiesFilterChipFonts,...CaseStudiesListItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTL_C344S9\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"445.5\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fBTl7BMBY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jgtvmdo9G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lF2d7h1wc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Wk_XePZe1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NOdCm3WLQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o4xWRHd9n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"JcbIQuMdq\\\":\\\"distribute\\\",\\\"p8rTbjTAH\\\":\\\"gap\\\",\\\"Et6pL9QuY\\\":\\\"padding\\\",\\\"zyWPaZpn3\\\":\\\"overflow\\\",\\\"O7UowofSM\\\":\\\"chipGap\\\"}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "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", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "SVG", "css", "FramerMLoJeUv_d", "withCSS", "MLoJeUv_d_default", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerQECyhN82m", "withCSS", "QECyhN82m_default", "addPropertyControls", "ControlType", "addFonts", "TL_C344S9_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "__FramerMetadata__", "valuesByLocaleId", "TL_C344S9_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "CaseStudiesFilterChipFonts", "getFonts", "td4_kv_0u_default", "CaseStudiesListItemFonts", "J8QVnyZds_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "toResponsiveImage", "convertFromEnum", "activeLocale", "toString", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "chipGap", "distribute", "gap", "height", "id", "overflow", "padding", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "JcbIQuMdq", "p8rTbjTAH", "Et6pL9QuY", "zyWPaZpn3", "O7UowofSM", "rnXR_UDxJl7IG6m63s", "gBrg3s_Dpl7IG6m63s", "M5kslOzWjl7IG6m63s", "r_PKaPsAml7IG6m63s", "cmSW2I3twl7IG6m63s", "idl7IG6m63s", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "Z0ivPrsZzo1f1rp", "args", "Z0ivPrsZz1nvp36g", "Z0ivPrsZz1tr6xig", "Z0ivPrsZz1vx7n5s", "Z0ivPrsZz1sdbcoe", "Z0ivPrsZz16npjqg", "Z0ivPrsZzym1e5n", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "transition1", "u", "numberToPixelString", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "td4_kv_0u_default", "getLocalizedValue", "ChildrenCanSuspend", "S6vUt2AEK_default", "collection", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "J8QVnyZds_default", "toString", "convertFromEnum", "enumToDisplayNameFunctions", "toResponsiveImage", "css", "FramerTL_C344S9", "withCSS", "TL_C344S9_default", "addPropertyControls", "ControlType", "addFonts", "CaseStudiesFilterChipFonts", "CaseStudiesListItemFonts"]
}
