{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/qlN04JKWsPiTjQExBWpf/SlideShow.js", "ssg:https://framerusercontent.com/modules/8CxPUPbfxTFMrkhl8fEc/b6SkVHhyZEz9urKodftG/KATJZuasn.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,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);}).catch(()=>{});// 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\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[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     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.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);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);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=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const 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===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */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.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),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),\"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),\"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},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;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\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/qlN04JKWsPiTjQExBWpf/SlideShow.js\";import Button from\"#framer/local/canvasComponent/gC1h3wI5r/gC1h3wI5r.js\";import FooterSection from\"#framer/local/canvasComponent/jYhP7G7m2/jYhP7G7m2.js\";import TemplateCard from\"#framer/local/canvasComponent/V5qhRoU9O/V5qhRoU9O.js\";import Header from\"#framer/local/canvasComponent/ZAOhh_jhC/ZAOhh_jhC.js\";import TemplateUnlockedVariants from\"#framer/local/codeFile/uOobXLW/TemplateUnlockedVariants.js\";import Template from\"#framer/local/collection/xeP895O2I/xeP895O2I.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle4 from\"#framer/local/css/ahqIgA0aL/ahqIgA0aL.js\";import*as sharedStyle6 from\"#framer/local/css/c26K2xloG/c26K2xloG.js\";import*as sharedStyle7 from\"#framer/local/css/Ccwywrq0m/Ccwywrq0m.js\";import*as sharedStyle1 from\"#framer/local/css/CQSB4wEyV/CQSB4wEyV.js\";import*as sharedStyle from\"#framer/local/css/eThsr2DPy/eThsr2DPy.js\";import*as sharedStyle5 from\"#framer/local/css/HCBSbtLPQ/HCBSbtLPQ.js\";import*as sharedStyle9 from\"#framer/local/css/hvQL4AuVz/hvQL4AuVz.js\";import*as sharedStyle12 from\"#framer/local/css/jySPu_4Xs/jySPu_4Xs.js\";import*as sharedStyle2 from\"#framer/local/css/L1DS86q0R/L1DS86q0R.js\";import*as sharedStyle11 from\"#framer/local/css/rtBm1IIdj/rtBm1IIdj.js\";import*as sharedStyle13 from\"#framer/local/css/RWOyGhkBy/RWOyGhkBy.js\";import*as sharedStyle3 from\"#framer/local/css/sNg5KeNjN/sNg5KeNjN.js\";import*as sharedStyle10 from\"#framer/local/css/TJP9kaFI5/TJP9kaFI5.js\";import*as sharedStyle8 from\"#framer/local/css/vbXrYxbkV/vbXrYxbkV.js\";import metadataProvider from\"#framer/local/webPageMetadata/KATJZuasn/KATJZuasn.js\";const HeaderFonts=getFonts(Header);const SlideshowFonts=getFonts(Slideshow);const ButtonFonts=getFonts(Button);const TemplateUnlockedVariantsFonts=getFonts(TemplateUnlockedVariants);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TemplateCardFonts=getFonts(TemplateCard);const FooterSectionFonts=getFonts(FooterSection);const breakpoints={c6OX8_K3n:\"(min-width: 1440px)\",fcORMTHcR:\"(min-width: 992px) and (max-width: 1439px)\",MYBcvCqgB:\"(min-width: 768px) and (max-width: 991px)\",tlW7CmMO3:\"(max-width: 767px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-7lRNQ\";const variantClassNames={c6OX8_K3n:\"framer-v-99fbz3\",fcORMTHcR:\"framer-v-1v6c87h\",MYBcvCqgB:\"framer-v-18layx3\",tlW7CmMO3:\"framer-v-1u0rtu2\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const transition1={damping:60,delay:.2,mass:1.2,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-2};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};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={\"Large Desktop\":\"c6OX8_K3n\",Desktop:\"fcORMTHcR\",Phone:\"tlW7CmMO3\",Tablet:\"MYBcvCqgB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"c6OX8_K3n\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"KATJZuasn\",data:Template,type:\"Collection\"},select:[{collection:\"KATJZuasn\",name:\"HheIlXlAR\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"j9RS5xjhE\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"LPAyaO7sW\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"XiZMI4pVW\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"FwRQCHGPG\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"a1ivPMELM\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"ckFTIPMxm\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"FywgFSIOx\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"v3yBduRm6\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"qcXCha36F\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"luvkIvfh1\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"cHEa5hVum\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"JZD2SNs4k\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"Hx0Wmj6kU\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"G6bJd9x90\",type:\"Identifier\"},{collection:\"KATJZuasn\",name:\"wcyO2Fccr\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"KATJZuasn\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,HheIlXlAR=getFromCurrentRouteData(\"HheIlXlAR\")??\"\",j9RS5xjhE=getFromCurrentRouteData(\"j9RS5xjhE\")??\"\",LPAyaO7sW=getFromCurrentRouteData(\"LPAyaO7sW\"),XiZMI4pVW=getFromCurrentRouteData(\"XiZMI4pVW\"),FwRQCHGPG=getFromCurrentRouteData(\"FwRQCHGPG\"),luvkIvfh1=getFromCurrentRouteData(\"luvkIvfh1\")??\"\",FywgFSIOx=getFromCurrentRouteData(\"FywgFSIOx\"),JZD2SNs4k=getFromCurrentRouteData(\"JZD2SNs4k\")??\"\",v3yBduRm6=getFromCurrentRouteData(\"v3yBduRm6\")??\"\",Hx0Wmj6kU=getFromCurrentRouteData(\"Hx0Wmj6kU\")??\"\",G6bJd9x90=getFromCurrentRouteData(\"G6bJd9x90\")??\"\",wcyO2Fccr=getFromCurrentRouteData(\"wcyO2Fccr\")??\"\",cHEa5hVum=getFromCurrentRouteData(\"cHEa5hVum\")??\"\",u0qa1J4adDeqTx_CMo,JZD2SNs4kDeqTx_CMo,N7MUJ4f73DeqTx_CMo,HheIlXlARDeqTx_CMo,v3yBduRm6DeqTx_CMo,j9RS5xjhEDeqTx_CMo,idDeqTx_CMo,ckFTIPMxm=getFromCurrentRouteData(\"ckFTIPMxm\"),...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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"H7yQGShu1\");const ref2=React.useRef(null);const visible=negate(equals(FywgFSIOx,\"IlFssRj5F\"));const router=useRouter();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"c6OX8_K3n\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-99fbz3\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-85uy4d\",\"data-framer-name\":\"Main Header Area\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zzslp6\",\"data-framer-name\":\"Hero Area\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:151,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2pyjzp-container\",nodeId:\"RyII95dSH\",scopeId:\"KATJZuasn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MYBcvCqgB:{variant:\"kUessqcIG\"},tlW7CmMO3:{variant:\"lSeBkPamV\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"RyII95dSH\",JULGPl9d2:true,layoutId:\"RyII95dSH\",oQVKOrmBa:true,style:{width:\"100%\"},variant:\"TsMmDLNVT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9m9hpr\",\"data-framer-name\":\"Main Hero\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1154v6j\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iy3avn\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-bv6wuw\",\"data-styles-preset\":\"eThsr2DPy\",style:{\"--framer-text-color\":\"var(--token-f5411055-20b6-4145-8a75-1e04bd414101, rgb(20, 21, 18))\"},children:\"All Template Access\"})}),className:\"framer-1dmtysi\",\"data-framer-name\":\"Build & launch unique website faster in Framer\",fonts:[\"Inter\"],text:HheIlXlAR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tvg30b\",\"data-styles-preset\":\"CQSB4wEyV\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get all current templates + all upcoming new templates with a single price\"})}),className:\"framer-kwavfj\",\"data-framer-name\":\"We build free & premium Framer templates, components & resources that help you speed up your website design process inside Framer.\",fonts:[\"Inter\"],text:j9RS5xjhE,verticalAlignment:\"center\",withExternalLayout:true})]})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c1g64s\",\"data-framer-name\":\"Hero Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-s6q6il\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jrqj2s\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s3fmhl\",\"data-framer-name\":\"Left Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-akx60g\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wvhx7v-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ayihXSvuu\",scopeId:\"KATJZuasn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MYBcvCqgB:{gap:20,padding:0}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:40,height:\"100%\",id:\"ayihXSvuu\",intervalControl:3,itemAmount:1,layoutId:\"ayihXSvuu\",padding:20,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:16,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"1400px\",...toResponsiveImage(LPAyaO7sW)},className:\"framer-16m930e\",\"data-framer-name\":\"Banner\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"1400px\",...toResponsiveImage(XiZMI4pVW)},className:\"framer-n1ezup\",\"data-framer-name\":\"Banner\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"1400px\",...toResponsiveImage(FwRQCHGPG)},className:\"framer-11jw6za\",\"data-framer-name\":\"Banner\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:60,delay:0,mass:1.2,stiffness:200,type:\"spring\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oikse0\",\"data-framer-name\":\"Content Block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8fd56g\",\"data-styles-preset\":\"L1DS86q0R\",children:\"Overview\"})}),className:\"framer-17y9ovh\",\"data-framer-name\":\"Benefits\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"yUGFBGq6H\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:luvkIvfh1,className:\"framer-18is5ir\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-173o3ma\",code:\"framer-styles-preset-2qwhg2\",h1:\"framer-styles-preset-19t9gtm\",h2:\"framer-styles-preset-qisnpd\",h3:\"framer-styles-preset-5c1nl2\",h4:\"framer-styles-preset-1kltv7s\",h5:\"framer-styles-preset-1f3llbn\",h6:\"framer-styles-preset-77ysz7\",img:\"framer-styles-preset-1vcc99h\",p:\"framer-styles-preset-stac3u\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13uxhsb\",\"data-framer-name\":\"RIght Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m70xbq\",\"data-border\":true,\"data-framer-name\":\"Purchase Block\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jgq3au\",\"data-framer-name\":\"Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19kdf75\",\"data-framer-name\":\"Benefit List\",children:[visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y2l25r\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1anl35l\",\"data-framer-name\":\"Icon/Outline/check-circle\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a2qrht\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"-1 -1 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.5 8L7.16667 9.66667L10.5 6.33333M15.5 8C15.5 12.1421 12.1421 15.5 8 15.5C3.85786 15.5 0.5 12.1421 0.5 8C0.5 3.85786 3.85786 0.5 8 0.5C12.1421 0.5 15.5 3.85786 15.5 8Z\" stroke=\"#474B3C\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-stac3u\",\"data-styles-preset\":\"hvQL4AuVz\",children:\"One-time Payment\"})}),className:\"framer-1m6ivv4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-152iiy5\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jisi9p\",\"data-framer-name\":\"Icon/Outline/check-circle\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gu4pwv\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"-1 -1 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.5 8L7.16667 9.66667L10.5 6.33333M15.5 8C15.5 12.1421 12.1421 15.5 8 15.5C3.85786 15.5 0.5 12.1421 0.5 8C0.5 3.85786 3.85786 0.5 8 0.5C12.1421 0.5 15.5 3.85786 15.5 8Z\" stroke=\"#474B3C\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-stac3u\",\"data-styles-preset\":\"hvQL4AuVz\",children:\"Instant Access to Framer Template\"})}),className:\"framer-sj8dl8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o3lx3q\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kurxhm\",\"data-framer-name\":\"Figma\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2047,pixelWidth:1365,sizes:\"13px\",src:\"https://framerusercontent.com/images/vOSHSnUL7pUq3cECZrvkF9dtc.png\",srcSet:\"https://framerusercontent.com/images/vOSHSnUL7pUq3cECZrvkF9dtc.png?scale-down-to=1024 682w,https://framerusercontent.com/images/vOSHSnUL7pUq3cECZrvkF9dtc.png 1365w\"},className:\"framer-qlwd86\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dxi718\",\"data-styles-preset\":\"RWOyGhkBy\",children:\"Free Figma File Included\"})}),className:\"framer-5rn0r7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n8f3lk\",\"data-framer-name\":\"4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yg9olu\",\"data-framer-name\":\"Icon/Outline/check-circle\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ufz3e6\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"-1 -1 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.5 8L7.16667 9.66667L10.5 6.33333M15.5 8C15.5 12.1421 12.1421 15.5 8 15.5C3.85786 15.5 0.5 12.1421 0.5 8C0.5 3.85786 3.85786 0.5 8 0.5C12.1421 0.5 15.5 3.85786 15.5 8Z\" stroke=\"#474B3C\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-stac3u\",\"data-styles-preset\":\"hvQL4AuVz\",children:\"Commercial License\"})}),className:\"framer-ixseb7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ebbsmj\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lhy5mx\",\"data-framer-name\":\"Icon/Outline/check-circle\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lkwog5\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"-1 -1 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.5 8L7.16667 9.66667L10.5 6.33333M15.5 8C15.5 12.1421 12.1421 15.5 8 15.5C3.85786 15.5 0.5 12.1421 0.5 8C0.5 3.85786 3.85786 0.5 8 0.5C12.1421 0.5 15.5 3.85786 15.5 8Z\" stroke=\"#474B3C\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-stac3u\",\"data-styles-preset\":\"hvQL4AuVz\",children:\"Lifetime Free Support & Updates\"})}),className:\"framer-nc68r4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1nw80dj\",\"data-framer-appear-id\":\"1nw80dj\",\"data-framer-name\":\"Hero Buttons Block\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n99ogn\",whileHover:animation2,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:JZD2SNs4k,implicitPathVariables:undefined},{href:JZD2SNs4k,implicitPathVariables:undefined},{href:JZD2SNs4k,implicitPathVariables:undefined},{href:JZD2SNs4k,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcORMTHcR:{width:`max(min(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 90px) / 2, 1px), 420px) - 64px, 1px)`},MYBcvCqgB:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 124px, 1px)`},tlW7CmMO3:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1px) - 84px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,width:`max(min(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 110px) / 2, 1px), 420px) - 64px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1giubw5-container\",nodeId:\"Kr3IvAvhM\",scopeId:\"KATJZuasn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcORMTHcR:{nUuqzxkMc:resolvedLinks[1]},MYBcvCqgB:{nUuqzxkMc:resolvedLinks[2]},tlW7CmMO3:{nUuqzxkMc:resolvedLinks[3],variant:\"atdOw7Mrc\"}},children:/*#__PURE__*/_jsx(Button,{fTgJRA0EU:\"var(--token-f5411055-20b6-4145-8a75-1e04bd414101, rgb(20, 21, 18))\",GyiRWO3ZD:\"zap\",height:\"100%\",id:\"Kr3IvAvhM\",layoutId:\"Kr3IvAvhM\",LQf3a4Yez:\"Live Preview\",nUuqzxkMc:resolvedLinks[0],pvXTzLPyr:\"var(--token-9b489c75-56a7-4d93-8840-72e34376f4a6, rgb(255, 255, 255))\",sipiUhrcf:true,SN11EMmd9:false,style:{width:\"100%\"},variant:\"nzoh4jeKQ\",width:\"100%\",wyKD25QGi:true})})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q17sy-container\",isAuthoredByUser:true,nodeId:\"gxoMY7H_Y\",scopeId:\"KATJZuasn\",children:/*#__PURE__*/_jsx(TemplateUnlockedVariants,{bundleName:\"\",height:\"100%\",id:\"gxoMY7H_Y\",layoutId:\"gxoMY7H_Y\",locked:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y3hi1l\",\"data-framer-name\":\"Locked\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v2j9cq\",\"data-framer-name\":\"Without Overlay\",whileHover:animation2,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:Hx0Wmj6kU,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,width:\"335px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-i9ztwv-container\",inComponentSlot:true,nodeId:\"stFylB2ch\",rendersWithMotion:true,scopeId:\"KATJZuasn\",children:/*#__PURE__*/_jsx(Button,{fTgJRA0EU:\"var(--token-f5411055-20b6-4145-8a75-1e04bd414101, rgb(20, 21, 18))\",GyiRWO3ZD:\"zap\",height:\"100%\",id:\"stFylB2ch\",layoutId:\"stFylB2ch\",LQf3a4Yez:suffix(suffix(prefix(HheIlXlAR,\"Get \"),\" For \"),v3yBduRm6),nUuqzxkMc:resolvedLinks1[0],pvXTzLPyr:\"var(--token-9b489c75-56a7-4d93-8840-72e34376f4a6, rgb(255, 255, 255))\",sipiUhrcf:true,SN11EMmd9:false,style:{width:\"100%\"},variant:\"LkpdE1WX8\",width:\"100%\",wyKD25QGi:true})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14bd7gl\",whileHover:animation2,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LB2IawvnF\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,width:\"335px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ys60ac-container\",inComponentSlot:true,nodeId:\"JhTW_3f_1\",rendersWithMotion:true,scopeId:\"KATJZuasn\",children:/*#__PURE__*/_jsx(Button,{fTgJRA0EU:\"var(--token-f5411055-20b6-4145-8a75-1e04bd414101, rgb(20, 21, 18))\",GyiRWO3ZD:\"zap\",height:\"100%\",id:\"JhTW_3f_1\",layoutId:\"JhTW_3f_1\",LQf3a4Yez:\"\u2728 Unlock All 160+ Templates\",nUuqzxkMc:resolvedLinks2[0],pvXTzLPyr:\"var(--token-9b489c75-56a7-4d93-8840-72e34376f4a6, rgb(255, 255, 255))\",sipiUhrcf:true,SN11EMmd9:false,style:{width:\"100%\"},variant:\"LZsQqSJYb\",width:\"100%\",wyKD25QGi:false})})})})})]})],style:{width:\"100%\"},templateName:HheIlXlAR,type:\"template\",unlocked:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fqfgsi\",\"data-framer-name\":\"Unlocked\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-unb6je\",whileHover:animation2,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:G6bJd9x90,implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,width:\"335px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-a6bv1x-container\",inComponentSlot:true,nodeId:\"dEGqfOJQ_\",rendersWithMotion:true,scopeId:\"KATJZuasn\",children:/*#__PURE__*/_jsx(Button,{fTgJRA0EU:\"var(--token-f5411055-20b6-4145-8a75-1e04bd414101, rgb(20, 21, 18))\",GyiRWO3ZD:\"zap\",height:\"100%\",id:\"dEGqfOJQ_\",layoutId:\"dEGqfOJQ_\",LQf3a4Yez:\"Remix Framer Template\",nUuqzxkMc:resolvedLinks3[0],pvXTzLPyr:\"var(--token-9b489c75-56a7-4d93-8840-72e34376f4a6, rgb(255, 255, 255))\",sipiUhrcf:true,SN11EMmd9:false,style:{width:\"100%\"},variant:\"LkpdE1WX8\",width:\"100%\",wyKD25QGi:true})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12ikemm\",whileHover:animation2,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:wcyO2Fccr,implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,width:\"335px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17k2i6b-container\",inComponentSlot:true,nodeId:\"YGE7GObqy\",rendersWithMotion:true,scopeId:\"KATJZuasn\",children:/*#__PURE__*/_jsx(Button,{fTgJRA0EU:\"var(--token-f5411055-20b6-4145-8a75-1e04bd414101, rgb(20, 21, 18))\",GyiRWO3ZD:\"figma\",height:\"100%\",id:\"YGE7GObqy\",layoutId:\"YGE7GObqy\",LQf3a4Yez:\"Copy Figma File\",nUuqzxkMc:resolvedLinks4[0],pvXTzLPyr:\"var(--token-9b489c75-56a7-4d93-8840-72e34376f4a6, rgb(255, 255, 255))\",sipiUhrcf:true,SN11EMmd9:true,style:{width:\"100%\"},variant:\"fkixGpnqN\",width:\"100%\",wyKD25QGi:true})})})})})]})],width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-154mrzw\",\"data-framer-name\":\"Sidebar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2mkv8g\",\"data-framer-name\":\"Pages\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8fd56g\",\"data-styles-preset\":\"L1DS86q0R\",children:\"Pages Included:\"})}),className:\"framer-7o1r7a\",\"data-framer-name\":\"Pages\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"yUGFBGq6H\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:cHEa5hVum,className:\"framer-fs39rf\",\"data-framer-name\":\"Pages\",fonts:[\"Inter\"],stylesPresetsClassNames:{code:\"framer-styles-preset-2qwhg2\",h3:\"framer-styles-preset-5c1nl2\",h4:\"framer-styles-preset-1kltv7s\",h5:\"framer-styles-preset-1f3llbn\",h6:\"framer-styles-preset-77ysz7\",img:\"framer-styles-preset-1vcc99h\",p:\"framer-styles-preset-stac3u\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kmaceo\",\"data-framer-name\":\"Template Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18l4jh4\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ed3bdk\",\"data-framer-name\":\"Template Content Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6wr5xa\",\"data-framer-name\":\"Section Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MYBcvCqgB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.4px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-f5411055-20b6-4145-8a75-1e04bd414101, rgb(20, 21, 18))\"},children:\"Explore More Templates\"})})},tlW7CmMO3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.4px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-f5411055-20b6-4145-8a75-1e04bd414101, rgb(20, 21, 18))\"},children:\"Explore More Templates\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.4px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-f5411055-20b6-4145-8a75-1e04bd414101, rgb(20, 21, 18))\"},children:\"Explore More Templates\"})}),className:\"framer-1kihmoe\",\"data-framer-name\":\"Build & launch unique website faster in Framer\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lNb28CBaT\"},implicitPathVariables:undefined},{href:{webPageId:\"lNb28CBaT\"},implicitPathVariables:undefined},{href:{webPageId:\"lNb28CBaT\"},implicitPathVariables:undefined},{href:{webPageId:\"lNb28CBaT\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ik80t3-container\",nodeId:\"Sh39TNhi4\",scopeId:\"KATJZuasn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcORMTHcR:{nUuqzxkMc:resolvedLinks5[1]},MYBcvCqgB:{nUuqzxkMc:resolvedLinks5[2]},tlW7CmMO3:{nUuqzxkMc:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(Button,{fTgJRA0EU:\"var(--token-f5411055-20b6-4145-8a75-1e04bd414101, rgb(20, 21, 18))\",GyiRWO3ZD:\"zap\",height:\"100%\",id:\"Sh39TNhi4\",layoutId:\"Sh39TNhi4\",LQf3a4Yez:\"Explore All Templates\",nUuqzxkMc:resolvedLinks5[0],pvXTzLPyr:\"var(--token-9b489c75-56a7-4d93-8840-72e34376f4a6, rgb(255, 255, 255))\",sipiUhrcf:true,SN11EMmd9:false,variant:\"fkixGpnqN\",width:\"100%\",wyKD25QGi:false})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nktrl7\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-aspurw\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcORMTHcR:{query:{from:{alias:\"DeqTx_CMo\",data:Template,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"DeqTx_CMo\",name:\"u0qa1J4ad\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"JZD2SNs4k\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"N7MUJ4f73\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"HheIlXlAR\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"v3yBduRm6\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"j9RS5xjhE\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"DeqTx_CMo\",name:\"KGqBgLaGR\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"DeqTx_CMo\",name:\"nmQl43Frz\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"aYTB30D7O\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"DeqTx_CMo\",name:\"FywgFSIOx\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"mJITaXFG2\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"DeqTx_CMo\",name:\"HheIlXlAR\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:HheIlXlAR},type:\"BinaryOperation\"}},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"DeqTx_CMo\",name:\"HheIlXlAR\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"All Template Access\"},type:\"BinaryOperation\"}},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"DeqTx_CMo\",name:\"ckFTIPMxm\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:ckFTIPMxm},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},tlW7CmMO3:{query:{from:{alias:\"DeqTx_CMo\",data:Template,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"DeqTx_CMo\",name:\"u0qa1J4ad\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"JZD2SNs4k\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"N7MUJ4f73\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"HheIlXlAR\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"v3yBduRm6\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"j9RS5xjhE\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"DeqTx_CMo\",name:\"KGqBgLaGR\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"DeqTx_CMo\",name:\"nmQl43Frz\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"aYTB30D7O\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"DeqTx_CMo\",name:\"FywgFSIOx\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"mJITaXFG2\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"DeqTx_CMo\",name:\"HheIlXlAR\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:HheIlXlAR},type:\"BinaryOperation\"}},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"DeqTx_CMo\",name:\"HheIlXlAR\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"All Template Access\"},type:\"BinaryOperation\"}},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"DeqTx_CMo\",name:\"ckFTIPMxm\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:ckFTIPMxm},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"DeqTx_CMo\",data:Template,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"DeqTx_CMo\",name:\"u0qa1J4ad\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"JZD2SNs4k\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"N7MUJ4f73\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"HheIlXlAR\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"v3yBduRm6\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"j9RS5xjhE\",type:\"Identifier\"},{collection:\"DeqTx_CMo\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"DeqTx_CMo\",name:\"KGqBgLaGR\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"DeqTx_CMo\",name:\"nmQl43Frz\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"aYTB30D7O\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"DeqTx_CMo\",name:\"FywgFSIOx\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"mJITaXFG2\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"DeqTx_CMo\",name:\"HheIlXlAR\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:HheIlXlAR},type:\"BinaryOperation\"}},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"DeqTx_CMo\",name:\"HheIlXlAR\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"All Template Access\"},type:\"BinaryOperation\"}},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"DeqTx_CMo\",name:\"ckFTIPMxm\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:ckFTIPMxm},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({HheIlXlAR:HheIlXlARDeqTx_CMo,id:idDeqTx_CMo,j9RS5xjhE:j9RS5xjhEDeqTx_CMo,JZD2SNs4k:JZD2SNs4kDeqTx_CMo,N7MUJ4f73:N7MUJ4f73DeqTx_CMo,u0qa1J4ad:u0qa1J4adDeqTx_CMo,v3yBduRm6:v3yBduRm6DeqTx_CMo},index)=>{JZD2SNs4kDeqTx_CMo??=\"\";N7MUJ4f73DeqTx_CMo??=\"\";HheIlXlARDeqTx_CMo??=\"\";v3yBduRm6DeqTx_CMo??=\"\";j9RS5xjhEDeqTx_CMo??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`DeqTx_CMo-${idDeqTx_CMo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{N7MUJ4f73:N7MUJ4f73DeqTx_CMo},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3tx6qj\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:JZD2SNs4kDeqTx_CMo,implicitPathVariables:{N7MUJ4f73:N7MUJ4f73DeqTx_CMo}},{href:{pathVariables:{N7MUJ4f73:N7MUJ4f73DeqTx_CMo},webPageId:\"KATJZuasn\"},implicitPathVariables:undefined},{href:JZD2SNs4kDeqTx_CMo,implicitPathVariables:{N7MUJ4f73:N7MUJ4f73DeqTx_CMo}},{href:{pathVariables:{N7MUJ4f73:N7MUJ4f73DeqTx_CMo},webPageId:\"KATJZuasn\"},implicitPathVariables:undefined},{href:JZD2SNs4kDeqTx_CMo,implicitPathVariables:{N7MUJ4f73:N7MUJ4f73DeqTx_CMo}},{href:{pathVariables:{N7MUJ4f73:N7MUJ4f73DeqTx_CMo},webPageId:\"KATJZuasn\"},implicitPathVariables:undefined},{href:JZD2SNs4kDeqTx_CMo,implicitPathVariables:{N7MUJ4f73:N7MUJ4f73DeqTx_CMo}},{href:{pathVariables:{N7MUJ4f73:N7MUJ4f73DeqTx_CMo},webPageId:\"KATJZuasn\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcORMTHcR:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1298px) - 60px, 1000px), 1px)`},MYBcvCqgB:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1298px) - 84px) / 2, 200px)`},tlW7CmMO3:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1298px) - 40px, 400px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:421,width:`max(min(${componentViewport?.width||\"100vw\"}, 1298px) - 60px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j0wfku-container\",nodeId:\"kdEgx9g3Z\",scopeId:\"KATJZuasn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcORMTHcR:{kl6SkhFQS:resolvedLinks6[3],sipWLh135:resolvedLinks6[2]},MYBcvCqgB:{kl6SkhFQS:resolvedLinks6[5],sipWLh135:resolvedLinks6[4]},tlW7CmMO3:{kl6SkhFQS:resolvedLinks6[7],sipWLh135:resolvedLinks6[6]}},children:/*#__PURE__*/_jsx(TemplateCard,{dLOPDS4Nj:\"September 03, 2023\",EwLQp9_Bm:\"rgb(0, 0, 0)\",F2X1HOOvX:toResponsiveImage(u0qa1J4adDeqTx_CMo),height:\"100%\",id:\"kdEgx9g3Z\",ilbag9hyT:\"var(--token-f5411055-20b6-4145-8a75-1e04bd414101, rgb(20, 21, 18))\",IRWAolDPj:false,kl6SkhFQS:resolvedLinks6[1],layoutId:\"kdEgx9g3Z\",Q264pfj5E:false,RDMgTiglg:\"var(--token-13860c62-f763-49d0-b858-0eafb4d7e592, rgb(111, 115, 101))\",RWL6bohFT:true,sipWLh135:resolvedLinks6[0],style:{width:\"100%\"},tKfovNttQ:j9RS5xjhEDeqTx_CMo,u2g6ikyJ_:HheIlXlARDeqTx_CMo,variant:\"FtSwasoHG\",Wh_NICvs0:v3yBduRm6DeqTx_CMo,width:\"100%\",YVxm91lnJ:\"0px 0px 16px 0px\"})})})})})})})})},idDeqTx_CMo);})})})})})})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:866,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-h97hyl-container\",nodeId:\"hKwJ38Iuy\",scopeId:\"KATJZuasn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fcORMTHcR:{variant:\"EBNfy_ngl\"},MYBcvCqgB:{variant:\"gErAIAUsf\"},tlW7CmMO3:{variant:\"GOmGSpKl4\"}},children:/*#__PURE__*/_jsx(FooterSection,{height:\"100%\",id:\"hKwJ38Iuy\",layoutId:\"hKwJ38Iuy\",style:{width:\"100%\"},variant:\"ls7ZjNW3a\",width:\"100%\",WmNwBGf45:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7lRNQ.framer-1a2wplr, .framer-7lRNQ .framer-1a2wplr { display: block; }\",\".framer-7lRNQ.framer-99fbz3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-7lRNQ .framer-85uy4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-zzslp6, .framer-7lRNQ .framer-1nktrl7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-2pyjzp-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-7lRNQ .framer-9m9hpr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 20px 72px 20px; position: relative; width: 100%; z-index: 3; }\",\".framer-7lRNQ .framer-1154v6j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1296px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 1px; }\",\".framer-7lRNQ .framer-iy3avn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 680px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7lRNQ .framer-1dmtysi, .framer-7lRNQ .framer-kwavfj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7lRNQ .framer-c1g64s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-s6q6il { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: visible; padding: 0px 30px 90px 30px; position: relative; width: 1px; }\",\".framer-7lRNQ .framer-1jrqj2s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-1s3fmhl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-7lRNQ .framer-akx60g { align-content: center; align-items: center; aspect-ratio: 1.3547826086956523 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 569px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-1wvhx7v-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-7lRNQ .framer-16m930e, .framer-7lRNQ .framer-n1ezup, .framer-7lRNQ .framer-11jw6za { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: 1040px; position: relative; width: 1400px; }\",\".framer-7lRNQ .framer-1oikse0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-17y9ovh, .framer-7lRNQ .framer-18is5ir { --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-7lRNQ .framer-13uxhsb { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 420px; padding: 16px 0px 0px 0px; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-7lRNQ .framer-m70xbq { --border-bottom-width: 1px; --border-color: var(--token-32491d16-2d87-4bda-8aaf-34746af07762, #e3e3e3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-jgq3au, .framer-7lRNQ .framer-2mkv8g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-19kdf75 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-y2l25r, .framer-7lRNQ .framer-152iiy5, .framer-7lRNQ .framer-1n8f3lk, .framer-7lRNQ .framer-1ebbsmj { 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; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-1anl35l, .framer-7lRNQ .framer-1jisi9p, .framer-7lRNQ .framer-yg9olu, .framer-7lRNQ .framer-lhy5mx { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 20px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; }\",\".framer-7lRNQ .framer-1a2qrht, .framer-7lRNQ .framer-1gu4pwv, .framer-7lRNQ .framer-ufz3e6, .framer-7lRNQ .framer-1lkwog5 { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-7lRNQ .framer-1m6ivv4, .framer-7lRNQ .framer-sj8dl8, .framer-7lRNQ .framer-5rn0r7, .framer-7lRNQ .framer-ixseb7, .framer-7lRNQ .framer-nc68r4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7lRNQ .framer-1o3lx3q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-1kurxhm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 4px; position: relative; width: min-content; }\",\".framer-7lRNQ .framer-qlwd86 { aspect-ratio: 0.6704545454545454 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 13px; }\",\".framer-7lRNQ .framer-1nw80dj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 2px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-n99ogn, .framer-7lRNQ .framer-1v2j9cq, .framer-7lRNQ .framer-14bd7gl, .framer-7lRNQ .framer-unb6je, .framer-7lRNQ .framer-12ikemm { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7lRNQ .framer-1giubw5-container, .framer-7lRNQ .framer-i9ztwv-container, .framer-7lRNQ .framer-ys60ac-container, .framer-7lRNQ .framer-a6bv1x-container, .framer-7lRNQ .framer-17k2i6b-container, .framer-7lRNQ .framer-j0wfku-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-7lRNQ .framer-1q17sy-container, .framer-7lRNQ .framer-h97hyl-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-y3hi1l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 335px; }\",\".framer-7lRNQ .framer-1fqfgsi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 335px; }\",\".framer-7lRNQ .framer-154mrzw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-7o1r7a, .framer-7lRNQ .framer-fs39rf { --framer-paragraph-spacing: 32px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7lRNQ .framer-kmaceo { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-18l4jh4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1298px; overflow: hidden; padding: 20px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-ed3bdk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-6wr5xa { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-1kihmoe { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-7lRNQ .framer-ik80t3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-7lRNQ .framer-aspurw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-7lRNQ .framer-3tx6qj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px 0px 20px 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7lRNQ.framer-99fbz3, .framer-7lRNQ .framer-85uy4d, .framer-7lRNQ .framer-zzslp6, .framer-7lRNQ .framer-9m9hpr, .framer-7lRNQ .framer-1154v6j, .framer-7lRNQ .framer-iy3avn, .framer-7lRNQ .framer-c1g64s, .framer-7lRNQ .framer-s6q6il, .framer-7lRNQ .framer-1jrqj2s, .framer-7lRNQ .framer-1s3fmhl, .framer-7lRNQ .framer-akx60g, .framer-7lRNQ .framer-1oikse0, .framer-7lRNQ .framer-13uxhsb, .framer-7lRNQ .framer-m70xbq, .framer-7lRNQ .framer-jgq3au, .framer-7lRNQ .framer-19kdf75, .framer-7lRNQ .framer-y2l25r, .framer-7lRNQ .framer-1anl35l, .framer-7lRNQ .framer-152iiy5, .framer-7lRNQ .framer-1jisi9p, .framer-7lRNQ .framer-1o3lx3q, .framer-7lRNQ .framer-1kurxhm, .framer-7lRNQ .framer-1n8f3lk, .framer-7lRNQ .framer-yg9olu, .framer-7lRNQ .framer-1ebbsmj, .framer-7lRNQ .framer-lhy5mx, .framer-7lRNQ .framer-1nw80dj, .framer-7lRNQ .framer-n99ogn, .framer-7lRNQ .framer-y3hi1l, .framer-7lRNQ .framer-1v2j9cq, .framer-7lRNQ .framer-14bd7gl, .framer-7lRNQ .framer-1fqfgsi, .framer-7lRNQ .framer-unb6je, .framer-7lRNQ .framer-12ikemm, .framer-7lRNQ .framer-154mrzw, .framer-7lRNQ .framer-2mkv8g, .framer-7lRNQ .framer-kmaceo, .framer-7lRNQ .framer-18l4jh4, .framer-7lRNQ .framer-ed3bdk, .framer-7lRNQ .framer-1nktrl7, .framer-7lRNQ .framer-aspurw, .framer-7lRNQ .framer-3tx6qj { gap: 0px; } .framer-7lRNQ.framer-99fbz3 > *, .framer-7lRNQ .framer-s6q6il > *, .framer-7lRNQ .framer-kmaceo > *, .framer-7lRNQ .framer-18l4jh4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7lRNQ.framer-99fbz3 > :first-child, .framer-7lRNQ .framer-85uy4d > :first-child, .framer-7lRNQ .framer-zzslp6 > :first-child, .framer-7lRNQ .framer-iy3avn > :first-child, .framer-7lRNQ .framer-s6q6il > :first-child, .framer-7lRNQ .framer-1s3fmhl > :first-child, .framer-7lRNQ .framer-1oikse0 > :first-child, .framer-7lRNQ .framer-13uxhsb > :first-child, .framer-7lRNQ .framer-m70xbq > :first-child, .framer-7lRNQ .framer-jgq3au > :first-child, .framer-7lRNQ .framer-19kdf75 > :first-child, .framer-7lRNQ .framer-1kurxhm > :first-child, .framer-7lRNQ .framer-1nw80dj > :first-child, .framer-7lRNQ .framer-y3hi1l > :first-child, .framer-7lRNQ .framer-1fqfgsi > :first-child, .framer-7lRNQ .framer-154mrzw > :first-child, .framer-7lRNQ .framer-2mkv8g > :first-child, .framer-7lRNQ .framer-kmaceo > :first-child, .framer-7lRNQ .framer-18l4jh4 > :first-child, .framer-7lRNQ .framer-ed3bdk > :first-child, .framer-7lRNQ .framer-1nktrl7 > :first-child { margin-top: 0px; } .framer-7lRNQ.framer-99fbz3 > :last-child, .framer-7lRNQ .framer-85uy4d > :last-child, .framer-7lRNQ .framer-zzslp6 > :last-child, .framer-7lRNQ .framer-iy3avn > :last-child, .framer-7lRNQ .framer-s6q6il > :last-child, .framer-7lRNQ .framer-1s3fmhl > :last-child, .framer-7lRNQ .framer-1oikse0 > :last-child, .framer-7lRNQ .framer-13uxhsb > :last-child, .framer-7lRNQ .framer-m70xbq > :last-child, .framer-7lRNQ .framer-jgq3au > :last-child, .framer-7lRNQ .framer-19kdf75 > :last-child, .framer-7lRNQ .framer-1kurxhm > :last-child, .framer-7lRNQ .framer-1nw80dj > :last-child, .framer-7lRNQ .framer-y3hi1l > :last-child, .framer-7lRNQ .framer-1fqfgsi > :last-child, .framer-7lRNQ .framer-154mrzw > :last-child, .framer-7lRNQ .framer-2mkv8g > :last-child, .framer-7lRNQ .framer-kmaceo > :last-child, .framer-7lRNQ .framer-18l4jh4 > :last-child, .framer-7lRNQ .framer-ed3bdk > :last-child, .framer-7lRNQ .framer-1nktrl7 > :last-child { margin-bottom: 0px; } .framer-7lRNQ .framer-85uy4d > *, .framer-7lRNQ .framer-zzslp6 > *, .framer-7lRNQ .framer-1kurxhm > *, .framer-7lRNQ .framer-1nktrl7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7lRNQ .framer-9m9hpr > *, .framer-7lRNQ .framer-y2l25r > *, .framer-7lRNQ .framer-152iiy5 > *, .framer-7lRNQ .framer-1n8f3lk > *, .framer-7lRNQ .framer-1ebbsmj > *, .framer-7lRNQ .framer-n99ogn > *, .framer-7lRNQ .framer-1v2j9cq > *, .framer-7lRNQ .framer-14bd7gl > *, .framer-7lRNQ .framer-unb6je > *, .framer-7lRNQ .framer-12ikemm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7lRNQ .framer-9m9hpr > :first-child, .framer-7lRNQ .framer-1154v6j > :first-child, .framer-7lRNQ .framer-c1g64s > :first-child, .framer-7lRNQ .framer-1jrqj2s > :first-child, .framer-7lRNQ .framer-akx60g > :first-child, .framer-7lRNQ .framer-y2l25r > :first-child, .framer-7lRNQ .framer-1anl35l > :first-child, .framer-7lRNQ .framer-152iiy5 > :first-child, .framer-7lRNQ .framer-1jisi9p > :first-child, .framer-7lRNQ .framer-1o3lx3q > :first-child, .framer-7lRNQ .framer-1n8f3lk > :first-child, .framer-7lRNQ .framer-yg9olu > :first-child, .framer-7lRNQ .framer-1ebbsmj > :first-child, .framer-7lRNQ .framer-lhy5mx > :first-child, .framer-7lRNQ .framer-n99ogn > :first-child, .framer-7lRNQ .framer-1v2j9cq > :first-child, .framer-7lRNQ .framer-14bd7gl > :first-child, .framer-7lRNQ .framer-unb6je > :first-child, .framer-7lRNQ .framer-12ikemm > :first-child, .framer-7lRNQ .framer-aspurw > :first-child, .framer-7lRNQ .framer-3tx6qj > :first-child { margin-left: 0px; } .framer-7lRNQ .framer-9m9hpr > :last-child, .framer-7lRNQ .framer-1154v6j > :last-child, .framer-7lRNQ .framer-c1g64s > :last-child, .framer-7lRNQ .framer-1jrqj2s > :last-child, .framer-7lRNQ .framer-akx60g > :last-child, .framer-7lRNQ .framer-y2l25r > :last-child, .framer-7lRNQ .framer-1anl35l > :last-child, .framer-7lRNQ .framer-152iiy5 > :last-child, .framer-7lRNQ .framer-1jisi9p > :last-child, .framer-7lRNQ .framer-1o3lx3q > :last-child, .framer-7lRNQ .framer-1n8f3lk > :last-child, .framer-7lRNQ .framer-yg9olu > :last-child, .framer-7lRNQ .framer-1ebbsmj > :last-child, .framer-7lRNQ .framer-lhy5mx > :last-child, .framer-7lRNQ .framer-n99ogn > :last-child, .framer-7lRNQ .framer-1v2j9cq > :last-child, .framer-7lRNQ .framer-14bd7gl > :last-child, .framer-7lRNQ .framer-unb6je > :last-child, .framer-7lRNQ .framer-12ikemm > :last-child, .framer-7lRNQ .framer-aspurw > :last-child, .framer-7lRNQ .framer-3tx6qj > :last-child { margin-right: 0px; } .framer-7lRNQ .framer-1154v6j > *, .framer-7lRNQ .framer-3tx6qj > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-7lRNQ .framer-iy3avn > *, .framer-7lRNQ .framer-1oikse0 > *, .framer-7lRNQ .framer-jgq3au > *, .framer-7lRNQ .framer-1nw80dj > *, .framer-7lRNQ .framer-y3hi1l > *, .framer-7lRNQ .framer-1fqfgsi > *, .framer-7lRNQ .framer-2mkv8g > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-7lRNQ .framer-c1g64s > *, .framer-7lRNQ .framer-akx60g > *, .framer-7lRNQ .framer-1anl35l > *, .framer-7lRNQ .framer-1jisi9p > *, .framer-7lRNQ .framer-yg9olu > *, .framer-7lRNQ .framer-lhy5mx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7lRNQ .framer-1jrqj2s > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-7lRNQ .framer-1s3fmhl > *, .framer-7lRNQ .framer-154mrzw > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7lRNQ .framer-13uxhsb > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-7lRNQ .framer-m70xbq > *, .framer-7lRNQ .framer-ed3bdk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7lRNQ .framer-19kdf75 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-7lRNQ .framer-1o3lx3q > * { margin: 0px; margin-left: calc(13px / 2); margin-right: calc(13px / 2); } .framer-7lRNQ .framer-aspurw > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,'.framer-7lRNQ[data-border=\"true\"]::after, .framer-7lRNQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 992px) and (max-width: 1439px) { .framer-7lRNQ.framer-99fbz3 { width: 992px; } .framer-7lRNQ .framer-9m9hpr { padding: 50px 20px 64px 20px; } .framer-7lRNQ .framer-s6q6il { padding: 0px 30px 0px 30px; } .framer-7lRNQ .framer-1jrqj2s { gap: 30px; } .framer-7lRNQ .framer-akx60g { height: var(--framer-aspect-ratio-supported, 356px); } .framer-7lRNQ .framer-kmaceo { padding: 0px 0px 80px 0px; } .framer-7lRNQ .framer-18l4jh4 { padding: 80px 30px 0px 30px; } .framer-7lRNQ .framer-ed3bdk { max-width: 1000px; } .framer-7lRNQ .framer-3tx6qj { padding: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7lRNQ .framer-1jrqj2s { gap: 0px; } .framer-7lRNQ .framer-1jrqj2s > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-7lRNQ .framer-1jrqj2s > :first-child { margin-left: 0px; } .framer-7lRNQ .framer-1jrqj2s > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 768px) and (max-width: 991px) { .framer-7lRNQ.framer-99fbz3 { width: 768px; } .framer-7lRNQ .framer-2pyjzp-container { z-index: 10; } .framer-7lRNQ .framer-9m9hpr { padding: 30px 20px 64px 20px; } .framer-7lRNQ .framer-1154v6j { padding: 0px 30px 0px 0px; } .framer-7lRNQ .framer-s6q6il { padding: 0px 30px 70px 30px; } .framer-7lRNQ .framer-1jrqj2s { align-content: center; align-items: center; flex-direction: column; gap: 0px; } .framer-7lRNQ .framer-1s3fmhl { flex: none; padding: 0px; width: 100%; } .framer-7lRNQ .framer-akx60g { height: var(--framer-aspect-ratio-supported, 148px); } .framer-7lRNQ .framer-1oikse0 { gap: 24px; } .framer-7lRNQ .framer-13uxhsb { flex: none; max-width: unset; padding: 36px 0px 0px 0px; position: relative; top: unset; width: 100%; } .framer-7lRNQ .framer-kmaceo { padding: 0px; } .framer-7lRNQ .framer-18l4jh4 { padding: 0px 30px 30px 30px; } .framer-7lRNQ .framer-1kihmoe { flex: none; width: 57%; } .framer-7lRNQ .framer-aspurw { align-content: unset; align-items: unset; display: grid; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); justify-content: center; } .framer-7lRNQ .framer-3tx6qj { align-content: flex-start; align-items: flex-start; align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7lRNQ .framer-1jrqj2s, .framer-7lRNQ .framer-1oikse0, .framer-7lRNQ .framer-aspurw { gap: 0px; } .framer-7lRNQ .framer-1jrqj2s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7lRNQ .framer-1jrqj2s > :first-child, .framer-7lRNQ .framer-1oikse0 > :first-child { margin-top: 0px; } .framer-7lRNQ .framer-1jrqj2s > :last-child, .framer-7lRNQ .framer-1oikse0 > :last-child { margin-bottom: 0px; } .framer-7lRNQ .framer-1oikse0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-7lRNQ .framer-aspurw > *, .framer-7lRNQ .framer-aspurw > :first-child, .framer-7lRNQ .framer-aspurw > :last-child { margin: 0px; } }}\",\"@media (max-width: 767px) { .framer-7lRNQ.framer-99fbz3 { width: 390px; } .framer-7lRNQ .framer-2pyjzp-container { order: 1; z-index: 10; } .framer-7lRNQ .framer-9m9hpr { order: 2; padding: 30px 20px 48px 20px; } .framer-7lRNQ .framer-1154v6j { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 0px; } .framer-7lRNQ .framer-iy3avn, .framer-7lRNQ .framer-1kihmoe { flex: none; width: 100%; } .framer-7lRNQ .framer-kwavfj { width: 100%; } .framer-7lRNQ .framer-s6q6il { gap: 32px; max-width: unset; padding: 0px 20px 0px 20px; } .framer-7lRNQ .framer-1jrqj2s { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-7lRNQ .framer-1s3fmhl, .framer-7lRNQ .framer-3tx6qj { flex: none; padding: 0px; width: 100%; } .framer-7lRNQ .framer-akx60g { height: var(--framer-aspect-ratio-supported, 148px); } .framer-7lRNQ .framer-1oikse0 { gap: 24px; justify-content: center; } .framer-7lRNQ .framer-13uxhsb { flex: none; gap: 20px; max-width: unset; padding: 0px; position: relative; top: unset; width: 100%; } .framer-7lRNQ .framer-m70xbq { gap: 16px; padding: 20px; } .framer-7lRNQ .framer-1m6ivv4, .framer-7lRNQ .framer-sj8dl8, .framer-7lRNQ .framer-nc68r4 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-7lRNQ .framer-kmaceo { padding: 60px 0px 0px 0px; } .framer-7lRNQ .framer-18l4jh4 { padding: 20px 20px 0px 20px; } .framer-7lRNQ .framer-ed3bdk { max-width: 400px; } .framer-7lRNQ .framer-6wr5xa { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; justify-content: center; } .framer-7lRNQ .framer-aspurw { flex-direction: column; gap: 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7lRNQ .framer-1154v6j, .framer-7lRNQ .framer-s6q6il, .framer-7lRNQ .framer-1jrqj2s, .framer-7lRNQ .framer-1oikse0, .framer-7lRNQ .framer-13uxhsb, .framer-7lRNQ .framer-m70xbq, .framer-7lRNQ .framer-6wr5xa, .framer-7lRNQ .framer-aspurw { gap: 0px; } .framer-7lRNQ .framer-1154v6j > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-7lRNQ .framer-1154v6j > :first-child, .framer-7lRNQ .framer-s6q6il > :first-child, .framer-7lRNQ .framer-1jrqj2s > :first-child, .framer-7lRNQ .framer-1oikse0 > :first-child, .framer-7lRNQ .framer-13uxhsb > :first-child, .framer-7lRNQ .framer-m70xbq > :first-child, .framer-7lRNQ .framer-6wr5xa > :first-child, .framer-7lRNQ .framer-aspurw > :first-child { margin-top: 0px; } .framer-7lRNQ .framer-1154v6j > :last-child, .framer-7lRNQ .framer-s6q6il > :last-child, .framer-7lRNQ .framer-1jrqj2s > :last-child, .framer-7lRNQ .framer-1oikse0 > :last-child, .framer-7lRNQ .framer-13uxhsb > :last-child, .framer-7lRNQ .framer-m70xbq > :last-child, .framer-7lRNQ .framer-6wr5xa > :last-child, .framer-7lRNQ .framer-aspurw > :last-child { margin-bottom: 0px; } .framer-7lRNQ .framer-s6q6il > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7lRNQ .framer-1jrqj2s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7lRNQ .framer-1oikse0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-7lRNQ .framer-13uxhsb > *, .framer-7lRNQ .framer-aspurw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-7lRNQ .framer-m70xbq > *, .framer-7lRNQ .framer-6wr5xa > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2838.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fcORMTHcR\":{\"layout\":[\"fixed\",\"auto\"]},\"MYBcvCqgB\":{\"layout\":[\"fixed\",\"auto\"]},\"tlW7CmMO3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"H7yQGShu1\":{\"pattern\":\":H7yQGShu1\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FramerKATJZuasn=withCSS(Component,css,\"framer-7lRNQ\");export default FramerKATJZuasn;FramerKATJZuasn.displayName=\"Product\";FramerKATJZuasn.defaultProps={height:2838.5,width:1440};addFonts(FramerKATJZuasn,[{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:\"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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...HeaderFonts,...SlideshowFonts,...ButtonFonts,...TemplateUnlockedVariantsFonts,...TemplateCardFonts,...FooterSectionFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...componentPresets.fonts?.[\"yUGFBGq6H\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"yUGFBGq6H\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKATJZuasn\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fcORMTHcR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MYBcvCqgB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tlW7CmMO3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"H7yQGShu1\\\":{\\\"pattern\\\":\\\":H7yQGShu1\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerIntrinsicHeight\":\"2838.5\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "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", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "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", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "HeaderFonts", "getFonts", "ZAOhh_jhC_default", "SlideshowFonts", "Slideshow", "ButtonFonts", "gC1h3wI5r_default", "TemplateUnlockedVariantsFonts", "TemplateUnlockedVariants", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "TemplateCardFonts", "V5qhRoU9O_default", "FooterSectionFonts", "jYhP7G7m2_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "equals", "a", "b", "negate", "transition1", "animation", "animation1", "transition2", "animation2", "prefix", "suffix", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "xeP895O2I_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "HheIlXlAR", "j9RS5xjhE", "LPAyaO7sW", "XiZMI4pVW", "FwRQCHGPG", "luvkIvfh1", "FywgFSIOx", "JZD2SNs4k", "v3yBduRm6", "Hx0Wmj6kU", "G6bJd9x90", "wcyO2Fccr", "cHEa5hVum", "u0qa1J4adDeqTx_CMo", "JZD2SNs4kDeqTx_CMo", "N7MUJ4f73DeqTx_CMo", "HheIlXlARDeqTx_CMo", "v3yBduRm6DeqTx_CMo", "j9RS5xjhEDeqTx_CMo", "idDeqTx_CMo", "ckFTIPMxm", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "visible", "router", "useRouter", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "ZAOhh_jhC_default", "RichText2", "x", "Slideshow", "Image2", "ComponentPresetsProvider", "SVG", "MotionDivWithOptimizedAppearEffect", "ResolveLinks", "resolvedLinks", "gC1h3wI5r_default", "TemplateUnlockedVariants", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks6", "V5qhRoU9O_default", "jYhP7G7m2_default", "css", "FramerKATJZuasn", "withCSS", "KATJZuasn_default", "addFonts", "HeaderFonts", "SlideshowFonts", "ButtonFonts", "TemplateUnlockedVariantsFonts", "TemplateCardFonts", "FooterSectionFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
