{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framer.com/m/SlideShow-07du.js", "ssg:https://framerusercontent.com/modules/cAltU55upngmWKE2mRuc/uJ0O6ZgpzkjS91LZckdv/CMSSlideshow.js", "ssg:https://framerusercontent.com/modules/d5oCY4Xe90klk4ME6wnL/rkCQYBloW7udmR1emUFV/componentPresets.js", "ssg:https://framerusercontent.com/modules/40eWHOYjRHLNaqJExYHb/1v8DDHRwRbCHw13o8G8W/DX24sP767.js", "ssg:https://framerusercontent.com/modules/pZ42IgecAFou7HY3Wils/SkOmTItk8WOWaxMCBm3L/Ftfu8vG8L.js", "ssg:https://framerusercontent.com/modules/qgdL2DquBWIx6pDnVNBd/T2FUIILO9G44ejeG7Tyu/QPoTh3mVG.js", "ssg:https://framerusercontent.com/modules/9pJHtQIt8baXVWafjmk1/5gGk1WZ1XJFYrMDfyn0E/GypVYER5a.js"],
  "sourcesContent": ["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 amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>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),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}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||amountChildren<=1)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];}else 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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,// @ts-ignore\ngetPropertyControls,// @ts-ignore\nuseQueryData,ControlType,RenderTarget}from\"framer\";import{cloneElement,Children}from\"react\";import{motion}from\"framer-motion\";import SlideShow from\"https://framer.com/m/SlideShow-07du.js\";const slideshowProps=getComponentProps(SlideShow);/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n */export default function CMSSlideshow(props){var _props_collectionList;const{startLayers,endLayers,...otherProps}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const items=isCanvas?[]:getCollectionListItems((_props_collectionList=props.collectionList)===null||_props_collectionList===void 0?void 0:_props_collectionList[0]);let layers=[];if(startLayers){layers=layers.concat(startLayers);}if(!isCanvas){for(let i=0;i<items.length;i++){const layer=/*#__PURE__*/cloneElement(items[i].props.children.props.children,{style:{width:\"100%\",height:\"100%\"}});layers.push(/*#__PURE__*/_jsx(motion.div,{style:{width:\"100%\",height:\"100%\"},children:layer}));}if(props.randomize){layers=shuffleArray(layers);}}else{for(let i=0;i<props.itemAmount;i++){layers.push(/*#__PURE__*/_jsx(CanvasPlaceholder,{title:\"Run project to view slideshow content\",subtitle:\"Collection List content is not accessible to the slideshow component in the editor. Run your project orvisit the live website to view the slideshow with CMS content.\"}));}}if(endLayers){layers=layers.concat(endLayers);}return /*#__PURE__*/_jsx(SlideShow,{...otherProps,slots:layers});}CMSSlideshow.displayName=\"CMS Slideshow\";addPropertyControls(CMSSlideshow,{collectionList:{type:ControlType.ComponentInstance},startLayers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance},title:\"Start\"},endLayers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance},title:\"End\"},randomize:{type:ControlType.Boolean,defaultValue:false,description:\"Shuffle order of CMS items\"},...slideshowProps,arrowOptions:{...slideshowProps.arrowOptions,controls:{...slideshowProps.arrowOptions.controls,arrowPadding:{...slideshowProps.arrowOptions.controls.arrowPadding,max:Infinity,min:Infinity}}}});function getComponentProps(component){const{slots,...otherProps}=getPropertyControls(component);return otherProps;}export function CanvasPlaceholder({title,subtitle}){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",borderRadius:6,border:\"1px dashed rgb(136, 85, 255)\",color:\"rgb(136, 85, 255)\",fontSize:12,padding:24},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{margin:0,opacity:.7,maxWidth:500,lineHeight:1.5,textAlign:\"center\"},children:subtitle})]});}function shuffleArray(array){for(let i=array.length-1;i>0;i--){const j=Math.floor(Math.random()*(i+1));[array[i],array[j]]=[array[j],array[i]];}return array;}export function getCollectionListItems(collectionList){var _collectionList_props,_collectionList_props_children_props,_collectionList_props_children,_collectionList_props1,_collectionList_props_children_props_children_props,_collectionList_props_children_props_children,_collectionList_props_children_props1,_collectionList_props_children1,_collectionList_props2;var _collectionList_props_query,_ref;const query=(_ref=(_collectionList_props_query=collectionList===null||collectionList===void 0?void 0:(_collectionList_props=collectionList.props)===null||_collectionList_props===void 0?void 0:_collectionList_props.query)!==null&&_collectionList_props_query!==void 0?_collectionList_props_query:collectionList===null||collectionList===void 0?void 0:(_collectionList_props1=collectionList.props)===null||_collectionList_props1===void 0?void 0:(_collectionList_props_children=_collectionList_props1.children)===null||_collectionList_props_children===void 0?void 0:(_collectionList_props_children_props=_collectionList_props_children.props)===null||_collectionList_props_children_props===void 0?void 0:_collectionList_props_children_props.query)!==null&&_ref!==void 0?_ref:collectionList===null||collectionList===void 0?void 0:(_collectionList_props2=collectionList.props)===null||_collectionList_props2===void 0?void 0:(_collectionList_props_children1=_collectionList_props2.children)===null||_collectionList_props_children1===void 0?void 0:(_collectionList_props_children_props1=_collectionList_props_children1.props)===null||_collectionList_props_children_props1===void 0?void 0:(_collectionList_props_children_props_children=_collectionList_props_children_props1.children)===null||_collectionList_props_children_props_children===void 0?void 0:(_collectionList_props_children_props_children_props=_collectionList_props_children_props_children.props)===null||_collectionList_props_children_props_children_props===void 0?void 0:_collectionList_props_children_props_children_props.query;if(query){var _collectionList_props3,_clpc_props,_clpc_props_children_props,_clpc_props_children,_clpc_props1;let childrenFunction=null;const clpc=(_collectionList_props3=collectionList.props)===null||_collectionList_props3===void 0?void 0:_collectionList_props3.children;if(typeof clpc==\"function\"){childrenFunction=clpc;}else if(typeof(clpc===null||clpc===void 0?void 0:(_clpc_props=clpc.props)===null||_clpc_props===void 0?void 0:_clpc_props.children)==\"function\"){childrenFunction=clpc.props.children;}else if(typeof(clpc===null||clpc===void 0?void 0:(_clpc_props1=clpc.props)===null||_clpc_props1===void 0?void 0:(_clpc_props_children=_clpc_props1.children)===null||_clpc_props_children===void 0?void 0:(_clpc_props_children_props=_clpc_props_children.props)===null||_clpc_props_children_props===void 0?void 0:_clpc_props_children_props.children)==\"function\"){childrenFunction=clpc.props.children.props.children;}const data=useQueryData(query);let children=[];if(childrenFunction){var _clChildren_props_children,_clChildren_props,_clChildren_props1;let clChildren=childrenFunction(data);if(Array.isArray(clChildren)){children=clChildren;}else if(Array.isArray(clChildren===null||clChildren===void 0?void 0:(_clChildren_props=clChildren.props)===null||_clChildren_props===void 0?void 0:(_clChildren_props_children=_clChildren_props.children)===null||_clChildren_props_children===void 0?void 0:_clChildren_props_children[0])){children=clChildren.props.children[0];}else if(Array.isArray(clChildren===null||clChildren===void 0?void 0:(_clChildren_props1=clChildren.props)===null||_clChildren_props1===void 0?void 0:_clChildren_props1.children)){children=clChildren.props.children;}}if(children){return Children.toArray(children);}}return[];}\nexport const __FramerMetadata__ = {\"exports\":{\"CanvasPlaceholder\":{\"type\":\"reactComponent\",\"name\":\"CanvasPlaceholder\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CMSSlideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"getCollectionListItems\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CMSSlideshow.map", "// Generated by Framer (128ce9c)\nexport const props={PuHSl9FYe:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15}};export const fonts={PuHSl9FYe:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-8PPiT .framer-styles-preset-ytv36x {  }\"];export const className=\"framer-8PPiT\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (edb532b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-BpBKZ .framer-styles-preset-1vjbtj { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-BpBKZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c747e62)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Plus Jakarta Sans-regular\",\"GF;Plus Jakarta Sans-700\",\"GF;Plus Jakarta Sans-700italic\",\"GF;Plus Jakarta Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_VMq2oR82k.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_VMq2oR82k.woff2\",weight:\"400\"}]}];export const css=['.framer-DimUO .framer-styles-preset-1pqoycd:not(.rich-text-wrapper), .framer-DimUO .framer-styles-preset-1pqoycd.rich-text-wrapper h3 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1899px) and (min-width: 1200px) { .framer-DimUO .framer-styles-preset-1pqoycd:not(.rich-text-wrapper), .framer-DimUO .framer-styles-preset-1pqoycd.rich-text-wrapper h3 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-DimUO .framer-styles-preset-1pqoycd:not(.rich-text-wrapper), .framer-DimUO .framer-styles-preset-1pqoycd.rich-text-wrapper h3 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-DimUO .framer-styles-preset-1pqoycd:not(.rich-text-wrapper), .framer-DimUO .framer-styles-preset-1pqoycd.rich-text-wrapper h3 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-DimUO\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,clampRGB,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,safeCSSValue,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Sidebar from\"#framer/local/canvasComponent/BBvaRXpv_/BBvaRXpv_.js\";import Footer from\"#framer/local/canvasComponent/MjDO0X419/MjDO0X419.js\";import Topbar from\"#framer/local/canvasComponent/nZD3E8oMk/nZD3E8oMk.js\";import Case from\"#framer/local/canvasComponent/QN8Us10hc/QN8Us10hc.js\";import MenuButton from\"#framer/local/canvasComponent/Rg08mXfD1/Rg08mXfD1.js\";import MenuIcon from\"#framer/local/canvasComponent/ygBd6y8ZR/ygBd6y8ZR.js\";import CMSSlideshow from\"#framer/local/codeFile/bcP22ur/CMSSlideshow.js\";import{withGermanHyphenation}from\"#framer/local/codeFile/Mx3kAaO/Hypernation.js\";import Projekte from\"#framer/local/collection/TeEDk3euX/TeEDk3euX.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle6 from\"#framer/local/css/DX24sP767/DX24sP767.js\";import*as sharedStyle5 from\"#framer/local/css/Ftfu8vG8L/Ftfu8vG8L.js\";import*as sharedStyle1 from\"#framer/local/css/lkTyGrf2P/lkTyGrf2P.js\";import*as sharedStyle3 from\"#framer/local/css/mDvdE4x1m/mDvdE4x1m.js\";import*as sharedStyle2 from\"#framer/local/css/QPoTh3mVG/QPoTh3mVG.js\";import*as sharedStyle from\"#framer/local/css/RA8f26_AY/RA8f26_AY.js\";import*as sharedStyle4 from\"#framer/local/css/wCJ0XDNj3/wCJ0XDNj3.js\";import metadataProvider from\"#framer/local/webPageMetadata/GypVYER5a/GypVYER5a.js\";const RichTextWithFX=withFX(RichText);const RichTextWithGermanHyphenationhp11oc=withCodeBoundaryForOverrides(RichText,{nodeId:\"WAvvPR0aC\",override:withGermanHyphenation,scopeId:\"GypVYER5a\"});const RichTextWithGermanHyphenation18dv7q4=withCodeBoundaryForOverrides(RichText,{nodeId:\"GoT3lxXsF\",override:withGermanHyphenation,scopeId:\"GypVYER5a\"});const RichTextWithGermanHyphenation1tr4ct8=withCodeBoundaryForOverrides(RichText,{nodeId:\"XJqY3xqO6\",override:withGermanHyphenation,scopeId:\"GypVYER5a\"});const MenuButtonFonts=getFonts(MenuButton);const MotionDivWithFX=withFX(motion.div);const TopbarFonts=getFonts(Topbar);const TopbarWithVariantAppearEffect=withVariantAppearEffect(Topbar);const MenuIconFonts=getFonts(MenuIcon);const SidebarFonts=getFonts(Sidebar);const CaseFonts=getFonts(Case);const CMSSlideshowFonts=getFonts(CMSSlideshow);const FooterFonts=getFonts(Footer);const breakpoints={B5wBu7poa:\"(min-width: 810px) and (max-width: 1199px)\",caqmiJKFR:\"(min-width: 1200px) and (max-width: 1899px)\",rAyVaTGbG:\"(min-width: 1900px)\",vfvACdDSw:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Wbjlz\";const variantClassNames={B5wBu7poa:\"framer-v-1ilnoft\",caqmiJKFR:\"framer-v-1vofagm\",rAyVaTGbG:\"framer-v-e4ll0c\",vfvACdDSw:\"framer-v-tifruz\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"VcqyjFIT5\":return'var(--token-62c47e50-8917-4c1e-8993-3210b2552ad1, rgb(242, 244, 221)) /* {\"name\":\"Vision Sand\"} */';case\"FL_f8tB5Y\":return'var(--token-665b3720-6949-49d4-adf1-8ec0ff86f2b0, rgb(241, 233, 103)) /* {\"name\":\"Vision Gelb\"} */';default:return'var(--token-62c47e50-8917-4c1e-8993-3210b2552ad1, rgb(242, 244, 221)) /* {\"name\":\"Vision Sand\"} */';}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:200};const transition1={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:.2,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition3={damping:40,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:600,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:600,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"GADxXHtAk\":return\"Er9VOyFYt\";case\"Bze8cHUbe\":return\"GNmlYM7JT\";case\"i15DZhChf\":return\"ZUsqFHsUu\";case\"C8XnXd1TD\":return\"hLiPsWVx9\";default:return\"mQbGX1_rk\";}};const convertFromEnum2=(value,activeLocale)=>{switch(value){case\"VcqyjFIT5\":return'var(--token-62c47e50-8917-4c1e-8993-3210b2552ad1, rgb(242, 244, 221)) /* {\"name\":\"Vision Sand\"} */';case\"FL_f8tB5Y\":return'var(--token-665b3720-6949-49d4-adf1-8ec0ff86f2b0, rgb(241, 233, 103)) /* {\"name\":\"Vision Gelb\"} */';default:return\"#09F\";}};const convertFromEnum3=(value,activeLocale)=>{switch(value){case\"VcqyjFIT5\":return'var(--token-665b3720-6949-49d4-adf1-8ec0ff86f2b0, rgb(241, 233, 103)) /* {\"name\":\"Vision Gelb\"} */';case\"FL_f8tB5Y\":return'var(--token-62c47e50-8917-4c1e-8993-3210b2552ad1, rgb(242, 244, 221)) /* {\"name\":\"Vision Sand\"} */';default:return\"#09F\";}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"caqmiJKFR\",Desktop:\"rAyVaTGbG\",Phone:\"vfvACdDSw\",Tablet:\"B5wBu7poa\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rAyVaTGbG\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"GypVYER5a\",data:Projekte,type:\"Collection\"},select:[{collection:\"GypVYER5a\",name:\"XJti4NnA2\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"Vw64tr2qS\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"GGKULQs4V\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"FLGnhVsvS\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"X5MBizZWl\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"ZgfiP7VOp\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"xE9x3Q6wv\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"AykF8sEhD\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"Q_yErEEak\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"RPaQr8MvK\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"BmVcsDsxK\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"v4Tj2e8uw\",type:\"Identifier\"},{collection:\"GypVYER5a\",name:\"n46zRmage\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"GypVYER5a\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,XJti4NnA2=getFromCurrentRouteData(\"XJti4NnA2\"),X5MBizZWl=getFromCurrentRouteData(\"X5MBizZWl\")??\"\",ZgfiP7VOp=getFromCurrentRouteData(\"ZgfiP7VOp\")??\"\",xE9x3Q6wv=getFromCurrentRouteData(\"xE9x3Q6wv\")??\"\",AykF8sEhD=getFromCurrentRouteData(\"AykF8sEhD\")??\"\",GGKULQs4V=getFromCurrentRouteData(\"GGKULQs4V\"),FLGnhVsvS=getFromCurrentRouteData(\"FLGnhVsvS\")??\"\",Q_yErEEak=getFromCurrentRouteData(\"Q_yErEEak\")??\"\",RPaQr8MvK=getFromCurrentRouteData(\"RPaQr8MvK\")??\"\",BmVcsDsxK=getFromCurrentRouteData(\"BmVcsDsxK\")??\"\",n46zRmage=getFromCurrentRouteData(\"n46zRmage\")??\"\",v4Tj2e8uw=getFromCurrentRouteData(\"v4Tj2e8uw\")??\"\",Vw64tr2qSggLHowFo5,op_fLcTgpggLHowFo5,X5MBizZWlggLHowFo5,idggLHowFo5,Vw64tr2qS=getFromCurrentRouteData(\"Vw64tr2qS\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const mjt6xbsER3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const kNebUQDdb16wq50x=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{await delay(()=>overlay.hide(),400);});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const fillColor=toString(convertFromEnum(XJti4NnA2,activeLocale));const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"vfvACdDSw\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"vfvACdDSw\")return true;return false;};const visible=equals(XJti4NnA2,\"FL_f8tB5Y\");const visible1=equals(XJti4NnA2,\"VcqyjFIT5\");const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"rAyVaTGbG\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:`html body { background: ${safeCSSValue(fillColor)}; }`}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-e4ll0c\",className),ref:refBinding,style:{\"--13gyznc\":fillColor,\"--1rv4okn\":clampRGB(fillColor),...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d8wclu\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xgdjus\",\"data-styles-preset\":\"RA8f26_AY\",style:{\"--framer-text-alignment\":\"right\"},children:\"mehr Forschung, Technologie und Innovation\"})}),className:\"framer-yh70ww\",fonts:[\"Inter\"],text:X5MBizZWl,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B5wBu7poa:{text:xE9x3Q6wv}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-xaoup\",\"data-styles-preset\":\"lkTyGrf2P\",children:\"Zentrum f\\xfcr Bildungsinnovation in Wien\"})}),className:\"framer-oi98b8 hidden-tifruz\",fonts:[\"Inter\"],text:ZgfiP7VOp,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-xaoup\",\"data-styles-preset\":\"lkTyGrf2P\",children:\"Zentrum f\\xfcr Bildungsinnovation in Wien\"})}),className:\"framer-181lcge hidden-e4ll0c hidden-1vofagm hidden-1ilnoft\",fonts:[\"Inter\"],text:xE9x3Q6wv,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wom30p\",\"data-framer-name\":\"Body\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n0lcel\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a6fyjj\",children:[visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1pqoycd\",\"data-styles-preset\":\"QPoTh3mVG\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Best \",/*#__PURE__*/_jsx(\"br\",{}),\"Practice\"]})}),className:\"framer-16fee7e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pqoycd\",\"data-styles-preset\":\"QPoTh3mVG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Projekt\"})}),className:\"framer-8sq2ke\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1clddu5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2xa0b4\",\"data-styles-preset\":\"mDvdE4x1m\",children:\"Auftraggeber:innen\"})}),className:\"framer-1itt0o5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"PuHSl9FYe\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:AykF8sEhD,className:\"framer-puerfh\",\"data-framer-name\":\"Auftraggeberinnen \",fonts:[\"Inter\"],stylesPresetsClassNames:{code:\"framer-styles-preset-1vjbtj\",img:\"framer-styles-preset-ytv36x\",p:\"framer-styles-preset-ue62e\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gcs1f5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B5wBu7poa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+700+60+502.5+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...toResponsiveImage(GGKULQs4V)}},caqmiJKFR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+700+60+542.5+20+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 140px)`,...toResponsiveImage(GGKULQs4V)}},vfvACdDSw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+500+30+518.5+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 50px)`,...toResponsiveImage(GGKULQs4V)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+700+60+582.5+70+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 140px)`,...toResponsiveImage(GGKULQs4V)},className:\"framer-17dy63s\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B5wBu7poa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:\"Die Herausforderung\"})})},vfvACdDSw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:\"Die Herausforderung\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:\"Die Herausforderung\"})}),className:\"framer-1qvoeya\",fonts:[\"GF;Plus Jakarta Sans-regular\"],text:FLGnhVsvS,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gqc1jv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2xa0b4\",\"data-styles-preset\":\"mDvdE4x1m\",children:\"Die Herausforderung\"})}),className:\"framer-eeywfx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"PuHSl9FYe\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vfvACdDSw:{stylesPresetsClassNames:{img:\"framer-styles-preset-ytv36x\",p:\"framer-styles-preset-ue62e\"}}},children:/*#__PURE__*/_jsx(RichTextWithGermanHyphenationhp11oc,{__fromCanvasComponent:true,children:Q_yErEEak,className:\"framer-hp11oc\",\"data-framer-name\":\"Herausforderung\",fonts:[\"Inter\"],stylesPresetsClassNames:{code:\"framer-styles-preset-1vjbtj\",img:\"framer-styles-preset-ytv36x\",p:\"framer-styles-preset-ue62e\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sl0rwg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2xa0b4\",\"data-styles-preset\":\"mDvdE4x1m\",children:\"Die L\\xf6sung\"})}),className:\"framer-158rxkt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{},children:/*#__PURE__*/_jsx(RichTextWithGermanHyphenation18dv7q4,{__fromCanvasComponent:true,children:RPaQr8MvK,className:\"framer-18dv7q4\",\"data-framer-name\":\"L\\xf6sung\",fonts:[\"Inter\"],stylesPresetsClassNames:{p:\"framer-styles-preset-ue62e\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1txc4b1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2xa0b4\",\"data-styles-preset\":\"mDvdE4x1m\",children:\"Das Ergebnis\"})}),className:\"framer-yacy9l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u3eo4s\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"PuHSl9FYe\"]},children:/*#__PURE__*/_jsx(RichTextWithGermanHyphenation1tr4ct8,{__fromCanvasComponent:true,children:BmVcsDsxK,className:\"framer-1tr4ct8\",\"data-framer-name\":\"Ergebnis\",fonts:[\"Inter\"],stylesPresetsClassNames:{code:\"framer-styles-preset-1vjbtj\",img:\"framer-styles-preset-ytv36x\",p:\"framer-styles-preset-ue62e\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:v4Tj2e8uw,implicitPathVariables:undefined},{href:v4Tj2e8uw,implicitPathVariables:undefined},{href:v4Tj2e8uw,implicitPathVariables:undefined},{href:v4Tj2e8uw,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B5wBu7poa:{y:(componentViewport?.y||0)+0+700+60+2002.5+70+0+126},caqmiJKFR:{y:(componentViewport?.y||0)+0+700+60+2115+70+0+146},vfvACdDSw:{y:(componentViewport?.y||0)+0+500+30+2125.9+50+172.5+0+126}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:114,y:(componentViewport?.y||0)+0+700+60+2177+70+0+146,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4rsj4r-container\",nodeId:\"UxMkRzkr9\",scopeId:\"GypVYER5a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B5wBu7poa:{kWwecA6L2:resolvedLinks[2],variant:\"OQTs7YDLm\"},caqmiJKFR:{kWwecA6L2:resolvedLinks[1],variant:\"OQTs7YDLm\"},vfvACdDSw:{kWwecA6L2:resolvedLinks[3],variant:\"OQTs7YDLm\"}},children:/*#__PURE__*/_jsx(MenuButton,{height:\"100%\",id:\"UxMkRzkr9\",kWwecA6L2:resolvedLinks[0],layoutId:\"UxMkRzkr9\",variant:\"DrcG5zhub\",width:\"100%\",ZBtCHpqcm:n46zRmage})})})})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vfvACdDSw:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oeydsd-container\",layoutScroll:true,nodeId:\"u6D0LjSBc\",rendersWithMotion:true,scopeId:\"GypVYER5a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vfvACdDSw:{style:{width:\"100%\"},variant:\"ZNDjf_F9c\"}},children:/*#__PURE__*/_jsx(TopbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"u6D0LjSBc\",layoutId:\"u6D0LjSBc\",style:{height:\"100%\",width:\"100%\"},variant:\"nYs9KLMAm\",width:\"100%\",y5yezVMw2:toString(convertFromEnum(XJti4NnA2,activeLocale))})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vfvACdDSw:{y:20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"90px\",y:50,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1dvl5xt-container\",id:\"1dvl5xt\",layoutScroll:true,nodeId:\"JjcS8v5U1\",scopeId:\"GypVYER5a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vfvACdDSw:{variant:overlay.visible?\"DbDnxTVXT\":\"Cy6UunR2a\"}},children:/*#__PURE__*/_jsx(MenuIcon,{height:\"100%\",id:\"JjcS8v5U1\",layoutId:\"JjcS8v5U1\",mjt6xbsER:mjt6xbsER3bnx0g({overlay}),style:{height:\"100%\",width:\"100%\"},variant:overlay.visible?\"khFOWcWxC\":\"I2428:337;2347:649\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-86w5ai\"),\"data-framer-portal-id\":\"1dvl5xt\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"H4HDCvI9D\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vfvACdDSw:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation2,className:cx(scopingClassNames,\"framer-cwv3q9-container\"),\"data-framer-portal-id\":\"1dvl5xt\",exit:animation1,inComponentSlot:true,initial:animation3,nodeId:\"bmunns5_y\",rendersWithMotion:true,scopeId:\"GypVYER5a\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vfvACdDSw:{style:{height:\"100%\",width:\"100%\"},variant:\"Uscl0FoEY\"}},children:/*#__PURE__*/_jsx(Sidebar,{height:\"100%\",id:\"bmunns5_y\",kNebUQDdb:kNebUQDdb16wq50x({overlay}),layoutId:\"bmunns5_y\",style:{height:\"100%\"},variant:\"ChNKsdXaH\",width:\"100%\"})})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bfgjqe\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1azzi3m\",children:[visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-xaoup\",\"data-styles-preset\":\"lkTyGrf2P\",children:[\"Mehr Projekte \",/*#__PURE__*/_jsx(\"br\",{}),\"von uns\"]})}),className:\"framer-1yt2tdy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-xaoup\",\"data-styles-preset\":\"lkTyGrf2P\",children:[\"Mehr Best Practice \",/*#__PURE__*/_jsx(\"br\",{}),\"Beispiele\"]})}),className:\"framer-1wy61xx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yvqc45-container\",isAuthoredByUser:true,nodeId:\"J6twoFutt\",scopeId:\"GypVYER5a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B5wBu7poa:{itemAmount:2},vfvACdDSw:{arrowOptions:{arrowFill:\"rgb(0, 0, 0)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:-80,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:30,showMouseControls:true},itemAmount:1}},children:/*#__PURE__*/_jsx(CMSSlideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgb(0, 0, 0)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:-120,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s4tz5z\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ggLHowFo5\",data:Projekte,type:\"Collection\"},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"ggLHowFo5\",name:\"Vw64tr2qS\",type:\"Identifier\"},{collection:\"ggLHowFo5\",name:\"op_fLcTgp\",type:\"Identifier\"},{collection:\"ggLHowFo5\",name:\"X5MBizZWl\",type:\"Identifier\"},{collection:\"ggLHowFo5\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"ggLHowFo5\",name:\"XJti4NnA2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:XJti4NnA2},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"ggLHowFo5\",name:\"Vw64tr2qS\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Vw64tr2qS},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idggLHowFo5,op_fLcTgp:op_fLcTgpggLHowFo5,Vw64tr2qS:Vw64tr2qSggLHowFo5,X5MBizZWl:X5MBizZWlggLHowFo5},index)=>{Vw64tr2qSggLHowFo5??=\"\";X5MBizZWlggLHowFo5??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ggLHowFo5-${idggLHowFo5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Vw64tr2qS:Vw64tr2qSggLHowFo5},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Vw64tr2qS:Vw64tr2qSggLHowFo5},webPageId:\"GypVYER5a\"},motionChild:true,nodeId:\"YalY5oHEE\",scopeId:\"GypVYER5a\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jg4l13 framer-14yfowa\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"401px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r4uw2x-container\",inComponentSlot:true,nodeId:\"d6vDtKfmc\",rendersWithMotion:true,scopeId:\"GypVYER5a\",children:/*#__PURE__*/_jsx(Case,{fDYRuNQOW:X5MBizZWlggLHowFo5,height:\"100%\",id:\"d6vDtKfmc\",layoutId:\"d6vDtKfmc\",LhpJrQ43w:toString(convertFromEnum2(XJti4NnA2,activeLocale)),LRADQxceC:40,style:{width:\"100%\"},UCM87c32b:toString(convertFromEnum3(XJti4NnA2,activeLocale)),uKeCcHiJc:\"40px\",variant:convertFromEnum1(op_fLcTgpggLHowFo5,activeLocale),width:\"100%\"})})})})})})},idggLHowFo5);})})})})})],direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},endLayers:[],fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:70,height:\"100%\",id:\"J6twoFutt\",intervalControl:1.5,itemAmount:3,layoutId:\"J6twoFutt\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},randomize:false,startFrom:0,startLayers:[],style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a9myjp\",\"data-framer-name\":\"Footer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ave6e6\",\"data-framer-name\":\"Space\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B5wBu7poa:{y:(componentViewport?.y||0)+0+4034.5+0+140},caqmiJKFR:{y:(componentViewport?.y||0)+0+4167+0+140},vfvACdDSw:{y:(componentViewport?.y||0)+0+3890.4+0+140}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:860,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4529+0+140,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fllm2g-container\",nodeId:\"gPzG3CvjJ\",scopeId:\"GypVYER5a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B5wBu7poa:{variant:\"uxq9nfFcu\"},vfvACdDSw:{variant:\"NmhGojwYx\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"gPzG3CvjJ\",layoutId:\"gPzG3CvjJ\",style:{height:\"100%\",width:\"100%\"},variant:\"t1QTQ8Y8v\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Wbjlz.framer-14yfowa, .framer-Wbjlz .framer-14yfowa { display: block; }\",\".framer-Wbjlz.framer-e4ll0c { align-content: center; align-items: center; background-color: var(--1uqxcis, var(--1rv4okn)); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1900px; }\",\".framer-Wbjlz .framer-d8wclu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-end; min-height: 70vh; overflow: visible; padding: 210px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-Wbjlz .framer-yh70ww, .framer-Wbjlz .framer-181lcge, .framer-Wbjlz .framer-1yt2tdy, .framer-Wbjlz .framer-1wy61xx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Wbjlz .framer-oi98b8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-Wbjlz .framer-1wom30p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-Wbjlz .framer-1n0lcel { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-Wbjlz .framer-a6fyjj { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 170px; border-bottom-right-radius: 170px; border-top-left-radius: 170px; border-top-right-radius: 170px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 280px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 280px); will-change: var(--framer-will-change-override, transform); }\",\".framer-Wbjlz .framer-16fee7e, .framer-Wbjlz .framer-8sq2ke { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Wbjlz .framer-1clddu5, .framer-Wbjlz .framer-gqc1jv, .framer-Wbjlz .framer-sl0rwg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: visible; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-Wbjlz .framer-1itt0o5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Wbjlz .framer-puerfh, .framer-Wbjlz .framer-hp11oc, .framer-Wbjlz .framer-18dv7q4 { --framer-paragraph-spacing: 32px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Wbjlz .framer-gcs1f5 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 70px; position: relative; width: 100%; }\",\".framer-Wbjlz .framer-17dy63s { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 880px); position: relative; width: 100%; }\",\".framer-Wbjlz .framer-1qvoeya { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: sticky; top: 210px; white-space: pre; width: auto; z-index: 1; }\",\".framer-Wbjlz .framer-eeywfx, .framer-Wbjlz .framer-158rxkt, .framer-Wbjlz .framer-yacy9l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: sticky; top: 210px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Wbjlz .framer-1txc4b1 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 90px; border-bottom-right-radius: 90px; border-top-left-radius: 90px; border-top-right-radius: 90px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: visible; padding: 70px; position: relative; width: 100%; }\",\".framer-Wbjlz .framer-1u3eo4s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Wbjlz .framer-1tr4ct8 { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Wbjlz .framer-4rsj4r-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Wbjlz .framer-1oeydsd-container { flex: none; height: 140px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 4; }\",\".framer-Wbjlz .framer-1dvl5xt-container { flex: none; height: 40px; position: fixed; right: 70px; top: 50px; width: 90px; z-index: 10; }\",\".framer-Wbjlz.framer-86w5ai { background-color: rgba(255, 255, 255, 0.5); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-Wbjlz.framer-cwv3q9-container { bottom: 0px; flex: none; position: fixed; right: 0px; top: 0px; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 8; }\",\".framer-Wbjlz .framer-bfgjqe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: visible; padding: 70px; position: relative; width: 100%; }\",\".framer-Wbjlz .framer-1azzi3m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Wbjlz .framer-yvqc45-container { flex: none; height: 700px; position: relative; width: 100%; }\",\".framer-Wbjlz .framer-1s4tz5z { display: grid; gap: 70px; grid-auto-rows: 500px; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1343px; }\",\".framer-Wbjlz .framer-1jg4l13 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Wbjlz .framer-1r4uw2x-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Wbjlz .framer-a9myjp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; min-height: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Wbjlz .framer-1ave6e6 { flex: none; height: 140px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Wbjlz .framer-1fllm2g-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\"@supports (color: color(display-p3 1 1 1)) { .framer-Wbjlz.framer-e4ll0c { --1uqxcis: var(--13gyznc); --1uqxcis: var(--13gyznc); --1uqxcis: var(--13gyznc); --1uqxcis: var(--13gyznc); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 1200px) and (max-width: 1899px) { .framer-Wbjlz.framer-e4ll0c { width: 1200px; } .framer-Wbjlz .framer-1wom30p { padding: 60px 0px 100px 0px; } .framer-Wbjlz .framer-a6fyjj { height: 240px; width: var(--framer-aspect-ratio-supported, 240px); } .framer-Wbjlz .framer-gcs1f5 { padding: 20px 70px 20px 70px; } .framer-Wbjlz .framer-17dy63s { height: var(--framer-aspect-ratio-supported, 530px); } .framer-Wbjlz .framer-1qvoeya { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Wbjlz .framer-yvqc45-container { height: 450px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Wbjlz.framer-e4ll0c { width: 810px; } .framer-Wbjlz .framer-d8wclu { padding: 210px 50px 0px 50px; } .framer-Wbjlz .framer-oi98b8 { width: 100%; } .framer-Wbjlz .framer-1n0lcel, .framer-Wbjlz .framer-1clddu5, .framer-Wbjlz .framer-gcs1f5, .framer-Wbjlz .framer-gqc1jv, .framer-Wbjlz .framer-sl0rwg { padding: 0px 50px 0px 50px; } .framer-Wbjlz .framer-a6fyjj { height: 200px; width: var(--framer-aspect-ratio-supported, 200px); } .framer-Wbjlz .framer-1itt0o5, .framer-Wbjlz .framer-eeywfx, .framer-Wbjlz .framer-158rxkt, .framer-Wbjlz .framer-yacy9l { flex: 0.5 0 0px; } .framer-Wbjlz .framer-17dy63s { height: var(--framer-aspect-ratio-supported, 355px); } .framer-Wbjlz .framer-1qvoeya { white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; } .framer-Wbjlz .framer-1txc4b1 { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; padding: 70px 50px 70px 50px; } .framer-Wbjlz .framer-1u3eo4s { gap: 30px; } .framer-Wbjlz .framer-yvqc45-container { height: 400px; }}\",\"@media (max-width: 809px) { .framer-Wbjlz.framer-e4ll0c { width: 390px; } .framer-Wbjlz .framer-d8wclu { align-content: flex-end; align-items: flex-end; min-height: 50vh; order: 0; padding: 210px 25px 0px 25px; } .framer-Wbjlz .framer-yh70ww { width: 80%; } .framer-Wbjlz .framer-1wom30p { gap: 40px; order: 1; padding: 30px 0px 80px 0px; } .framer-Wbjlz .framer-1n0lcel { padding: 0px 25px 0px 25px; } .framer-Wbjlz .framer-a6fyjj { height: 120px; width: var(--framer-aspect-ratio-supported, 120px); } .framer-Wbjlz .framer-1clddu5 { flex-direction: column; gap: 10px; padding: 25px; } .framer-Wbjlz .framer-1itt0o5, .framer-Wbjlz .framer-puerfh, .framer-Wbjlz .framer-hp11oc, .framer-Wbjlz .framer-158rxkt, .framer-Wbjlz .framer-18dv7q4, .framer-Wbjlz .framer-yacy9l { flex: none; width: 100%; } .framer-Wbjlz .framer-gcs1f5 { gap: 10px; padding: 0px 25px 0px 25px; } .framer-Wbjlz .framer-17dy63s { height: var(--framer-aspect-ratio-supported, 170px); } .framer-Wbjlz .framer-1qvoeya { position: relative; top: unset; } .framer-Wbjlz .framer-gqc1jv, .framer-Wbjlz .framer-sl0rwg { flex-direction: column; gap: 10px; padding: 25px 25px 0px 25px; } .framer-Wbjlz .framer-eeywfx { flex: none; position: relative; top: unset; width: 100%; } .framer-Wbjlz .framer-1txc4b1 { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex-direction: column; gap: 10px; padding: 50px 25px 50px 25px; } .framer-Wbjlz .framer-1u3eo4s { flex: none; gap: 30px; width: 100%; } .framer-Wbjlz .framer-1oeydsd-container { height: auto; left: 50%; order: 2; transform: translateX(-50%); } .framer-Wbjlz .framer-1dvl5xt-container { order: 4; right: 30px; top: 20px; } .framer-Wbjlz.framer-cwv3q9-container { bottom: unset; height: 100vh; width: 100%; } .framer-Wbjlz .framer-bfgjqe { gap: 40px; order: 3; padding: 30px 30px 90px 30px; } .framer-Wbjlz .framer-yvqc45-container { height: 350px; } .framer-Wbjlz .framer-a9myjp { order: 5; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6366\n * @framerIntrinsicWidth 1900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"caqmiJKFR\":{\"layout\":[\"fixed\",\"auto\"]},\"B5wBu7poa\":{\"layout\":[\"fixed\",\"auto\"]},\"vfvACdDSw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerGypVYER5a=withCSS(Component,css,\"framer-Wbjlz\");export default FramerGypVYER5a;FramerGypVYER5a.displayName=\"Blog Detail\";FramerGypVYER5a.defaultProps={height:6366,width:1900};addFonts(FramerGypVYER5a,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"}]},...MenuButtonFonts,...TopbarFonts,...MenuIconFonts,...SidebarFonts,...CaseFonts,...CMSSlideshowFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...componentPresets.fonts?.[\"PuHSl9FYe\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"PuHSl9FYe\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGypVYER5a\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"6366\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"caqmiJKFR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"B5wBu7poa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vfvACdDSw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1900\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "amountChildren", "j", "hasChildren", "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", "slideshowProps", "getComponentProps", "Slideshow", "CMSSlideshow", "props", "_props_collectionList", "startLayers", "endLayers", "otherProps", "isCanvas", "RenderTarget", "items", "getCollectionListItems", "layers", "i", "p", "CanvasPlaceholder", "layer", "q", "motion", "shuffleArray", "addPropertyControls", "ControlType", "component", "slots", "getPropertyControls", "title", "subtitle", "u", "array", "j", "collectionList", "_collectionList_props", "_collectionList_props_children_props", "_collectionList_props_children", "_collectionList_props1", "_collectionList_props_children_props_children_props", "_collectionList_props_children_props_children", "_collectionList_props_children_props1", "_collectionList_props_children1", "_collectionList_props2", "_collectionList_props_query", "_ref", "query", "_collectionList_props3", "_clpc_props", "_clpc_props_children_props", "_clpc_props_children", "_clpc_props1", "childrenFunction", "clpc", "data", "useQueryData", "children", "_clChildren_props_children", "_clChildren_props", "_clChildren_props1", "clChildren", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "RichTextWithFX", "withFX", "RichText2", "RichTextWithGermanHyphenationhp11oc", "withCodeBoundaryForOverrides", "withGermanHyphenation", "RichTextWithGermanHyphenation18dv7q4", "RichTextWithGermanHyphenation1tr4ct8", "MenuButtonFonts", "getFonts", "Rg08mXfD1_default", "MotionDivWithFX", "motion", "TopbarFonts", "nZD3E8oMk_default", "TopbarWithVariantAppearEffect", "withVariantAppearEffect", "MenuIconFonts", "ygBd6y8ZR_default", "SidebarFonts", "BBvaRXpv_default", "CaseFonts", "QN8Us10hc_default", "CMSSlideshowFonts", "CMSSlideshow", "FooterFonts", "MjDO0X419_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "convertFromEnum", "value", "activeLocale", "toString", "animation", "transition1", "transition2", "equals", "a", "b", "toResponsiveImage", "transformTemplate1", "_", "t", "transition3", "animation1", "animation2", "animation3", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "convertFromEnum1", "convertFromEnum2", "convertFromEnum3", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "TeEDk3euX_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "XJti4NnA2", "X5MBizZWl", "ZgfiP7VOp", "xE9x3Q6wv", "AykF8sEhD", "GGKULQs4V", "FLGnhVsvS", "Q_yErEEak", "RPaQr8MvK", "BmVcsDsxK", "n46zRmage", "v4Tj2e8uw", "Vw64tr2qSggLHowFo5", "op_fLcTgpggLHowFo5", "X5MBizZWlggLHowFo5", "idggLHowFo5", "Vw64tr2qS", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "mjt6xbsER3bnx0g", "overlay", "loadMore", "args", "kNebUQDdb16wq50x", "sharedStyleClassNames", "fillColor", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "visible1", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "safeCSSValue", "clampRGB", "x", "PropertyOverrides2", "ComponentPresetsProvider", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "l", "AnimatePresence", "Ga", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "Link", "css", "FramerGypVYER5a", "withCSS", "GypVYER5a_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
