{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framerusercontent.com/modules/k7peAsw5OgFZSJqZcygu/ZBN6usLMu7CFboYOzJrW/bpxmHomiU.js", "ssg:https://framerusercontent.com/modules/8k8Lw4MBlVLEUQjB8fPa/qY537OUOfo2tzUxYWmtC/N_Bjbhh5v.js", "ssg:https://framerusercontent.com/modules/YHJp06EUoyH92wgoNVXe/yQDGcdtUMSb8c0lnJHSw/RQul9RUy1.js", "ssg:https://framerusercontent.com/modules/Nf5QuOYFmXpZ9mAizhCr/hLgg5IBSqw5nxTrmTPgX/mrm3qdpjd.js", "ssg:https://framerusercontent.com/modules/s29sT90eGJ9bkjvzVbPm/nP5wk9txfdzCfhnIPMzd/VSLRf8Pwa.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (5eef525)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"vInSSugMH\",\"S8wwCIAxP\"];const serializationHash=\"framer-U5XLR\";const variantClassNames={S8wwCIAxP:\"framer-v-5hp2m5\",vInSSugMH:\"framer-v-1tlwxzq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"vInSSugMH\",\"Variant 2\":\"S8wwCIAxP\"};const getProps=({height,id,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"vInSSugMH\",yXmZ3xg9p:(_ref1=title!==null&&title!==void 0?title:props.yXmZ3xg9p)!==null&&_ref1!==void 0?_ref1:\"Home\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,yXmZ3xg9p,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vInSSugMH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1tlwxzq\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vInSSugMH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(64, 59, 81)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},variants:{S8wwCIAxP:{backgroundColor:\"var(--token-680f5157-c169-43ae-8a43-6a59750aca14, rgb(167, 94, 255))\"}},...addPropertyOverrides({S8wwCIAxP:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(204, 204, 204))\"},children:\"Home\"})}),className:\"framer-1qbylek\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BbvRS2VAp\",style:{\"--extracted-r6o4lv\":\"rgb(204, 204, 204)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yXmZ3xg9p,variants:{S8wwCIAxP:{\"--extracted-r6o4lv\":\"rgb(203, 178, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({S8wwCIAxP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(203, 178, 255))\"},children:\"Home\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-U5XLR.framer-1p1sl4x, .framer-U5XLR .framer-1p1sl4x { display: block; }\",\".framer-U5XLR.framer-1tlwxzq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-U5XLR .framer-1qbylek { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-U5XLR.framer-1tlwxzq { gap: 0px; } .framer-U5XLR.framer-1tlwxzq > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-U5XLR.framer-1tlwxzq > :first-child { margin-left: 0px; } .framer-U5XLR.framer-1tlwxzq > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 51\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"S8wwCIAxP\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"yXmZ3xg9p\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbpxmHomiU=withCSS(Component,css,\"framer-U5XLR\");export default FramerbpxmHomiU;FramerbpxmHomiU.displayName=\"category buttons\";FramerbpxmHomiU.defaultProps={height:26,width:51};addPropertyControls(FramerbpxmHomiU,{variant:{options:[\"vInSSugMH\",\"S8wwCIAxP\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},yXmZ3xg9p:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerbpxmHomiU,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbpxmHomiU\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"yXmZ3xg9p\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"S8wwCIAxP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"51\",\"framerIntrinsicHeight\":\"26\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bpxmHomiU.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"ZswieNmEV\",\"nl2XIuBGy\",\"cTl31LoIK\",\"gGgxQbhHL\"];const serializationHash=\"framer-U8C4A\";const variantClassNames={cTl31LoIK:\"framer-v-wp22wd\",gGgxQbhHL:\"framer-v-17gxo0u\",nl2XIuBGy:\"framer-v-nj30a0\",ZswieNmEV:\"framer-v-175nlbq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 3\":\"cTl31LoIK\",\"Variant 4\":\"gGgxQbhHL\",Closed:\"ZswieNmEV\",Open:\"nl2XIuBGy\"};const getProps=({answer,height,id,name1,question,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,P24TPiZmx:(_ref=name1!==null&&name1!==void 0?name1:props.P24TPiZmx)!==null&&_ref!==void 0?_ref:\"House\",T8rQFvSBR:(_ref1=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref1!==void 0?_ref1:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"ZswieNmEV\",W88zB8mIG:(_ref3=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref3!==void 0?_ref3:\"Animation & Effects\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,P24TPiZmx,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZswieNmEV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap14t31bu=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"gGgxQbhHL\");});const onTap1jcety2=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"cTl31LoIK\");});const onTaprxpkn7=activeVariantCallback(async(...args)=>{setVariant(\"nl2XIuBGy\");});const onTap1cofjzi=activeVariantCallback(async(...args)=>{setVariant(\"ZswieNmEV\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"nl2XIuBGy\",\"gGgxQbhHL\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-175nlbq\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"ZswieNmEV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({cTl31LoIK:{\"data-framer-name\":\"Variant 3\",\"data-highlight\":true,onTap:onTap14t31bu},gGgxQbhHL:{\"data-framer-name\":\"Variant 4\",\"data-highlight\":true,onTap:onTap1jcety2},nl2XIuBGy:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-27b81g\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tYB1soFtP\",onTap:onTaprxpkn7,...addPropertyOverrides({cTl31LoIK:{\"data-highlight\":undefined,onTap:undefined},gGgxQbhHL:{\"data-highlight\":undefined,onTap:undefined},nl2XIuBGy:{onTap:onTap1cofjzi}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bltk7d\",layoutDependency:layoutDependency,layoutId:\"l9B3RCuFK\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l8jxkq-container\",layoutDependency:layoutDependency,layoutId:\"A4nIo1Pim-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(204, 204, 204)\",height:\"100%\",iconSearch:\"House\",iconSelection:P24TPiZmx,id:\"A4nIo1Pim\",layoutId:\"A4nIo1Pim\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(204, 204, 204))\"},children:\"Animation & Effects\"})}),className:\"framer-6tewjn\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"p2zMK5rNA\",style:{\"--extracted-r6o4lv\":\"rgb(204, 204, 204)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cTl31LoIK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(204, 204, 204))\"},children:\"Animation & Effects\"})})},gGgxQbhHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(204, 204, 204))\"},children:\"Animation & Effects\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14p1ndm\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"wmyXzEfdr\",style:{opacity:.3,rotate:0},variants:{gGgxQbhHL:{rotate:45},nl2XIuBGy:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-swu1ab\",layoutDependency:layoutDependency,layoutId:\"bezxLUWIW\",style:{backgroundColor:\"rgb(204, 204, 204)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tnrv7p\",layoutDependency:layoutDependency,layoutId:\"AIKLwHfkc\",style:{backgroundColor:\"rgb(204, 204, 204)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fbxp2i\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"xfRX8fHoS\",style:{opacity:0},variants:{gGgxQbhHL:{opacity:1},nl2XIuBGy:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(188, 188, 188))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-pwogjv\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"GaG0GQS_L\",style:{\"--extracted-r6o4lv\":\"rgb(188, 188, 188)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{gGgxQbhHL:{opacity:1},nl2XIuBGy:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gGgxQbhHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(188, 188, 188))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-U8C4A.framer-nwonb0, .framer-U8C4A .framer-nwonb0 { display: block; }\",\".framer-U8C4A.framer-175nlbq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-U8C4A .framer-27b81g { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-U8C4A .framer-bltk7d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-U8C4A .framer-1l8jxkq-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-U8C4A .framer-6tewjn { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-U8C4A .framer-14p1ndm { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; z-index: 1; }\",\".framer-U8C4A .framer-swu1ab { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-U8C4A .framer-tnrv7p { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-U8C4A .framer-1fbxp2i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-U8C4A .framer-pwogjv { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-U8C4A.framer-175nlbq, .framer-U8C4A .framer-27b81g, .framer-U8C4A .framer-bltk7d, .framer-U8C4A .framer-1fbxp2i { gap: 0px; } .framer-U8C4A.framer-175nlbq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-U8C4A.framer-175nlbq > :first-child, .framer-U8C4A .framer-1fbxp2i > :first-child { margin-top: 0px; } .framer-U8C4A.framer-175nlbq > :last-child, .framer-U8C4A .framer-1fbxp2i > :last-child { margin-bottom: 0px; } .framer-U8C4A .framer-27b81g > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-U8C4A .framer-27b81g > :first-child, .framer-U8C4A .framer-bltk7d > :first-child { margin-left: 0px; } .framer-U8C4A .framer-27b81g > :last-child, .framer-U8C4A .framer-bltk7d > :last-child { margin-right: 0px; } .framer-U8C4A .framer-bltk7d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-U8C4A .framer-1fbxp2i > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-U8C4A.framer-v-wp22wd.framer-175nlbq, .framer-U8C4A.framer-v-17gxo0u.framer-175nlbq { cursor: pointer; }\",\".framer-U8C4A.framer-v-wp22wd .framer-27b81g, .framer-U8C4A.framer-v-17gxo0u .framer-27b81g { cursor: unset; padding: 8px; }\",\".framer-U8C4A.framer-v-17gxo0u .framer-1fbxp2i { padding: 12px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 70\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nl2XIuBGy\":{\"layout\":[\"fixed\",\"auto\"]},\"cTl31LoIK\":{\"layout\":[\"fixed\",\"auto\"]},\"gGgxQbhHL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\",\"P24TPiZmx\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerN_Bjbhh5v=withCSS(Component,css,\"framer-U8C4A\");export default FramerN_Bjbhh5v;FramerN_Bjbhh5v.displayName=\"Row\";FramerN_Bjbhh5v.defaultProps={height:70,width:400};addPropertyControls(FramerN_Bjbhh5v,{variant:{options:[\"ZswieNmEV\",\"nl2XIuBGy\",\"cTl31LoIK\",\"gGgxQbhHL\"],optionTitles:[\"Closed\",\"Open\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Animation & Effects\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String},P24TPiZmx:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Name\"}});addFonts(FramerN_Bjbhh5v,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerN_Bjbhh5v\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nl2XIuBGy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cTl31LoIK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gGgxQbhHL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"70\",\"framerIntrinsicWidth\":\"400\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\",\\\"P24TPiZmx\\\":\\\"name1\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./N_Bjbhh5v.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/8k8Lw4MBlVLEUQjB8fPa/qY537OUOfo2tzUxYWmtC/N_Bjbhh5v.js\";const RowFonts=getFonts(Row);const RowControls=getPropertyControls(Row);const cycleOrder=[\"tujdUxM2a\",\"ROt6Kxlv3\"];const serializationHash=\"framer-lqjfe\";const variantClassNames={ROt6Kxlv3:\"framer-v-15u2v53\",tujdUxM2a:\"framer-v-danvz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Closed:\"ZswieNmEV\",Open:\"nl2XIuBGy\"};const humanReadableVariantMap={\"Variant 1\":\"tujdUxM2a\",\"Variant 2\":\"ROt6Kxlv3\"};const getProps=({answer,background,height,id,name1,question,variant1,width,...props})=>{var _ref,_humanReadableEnumMap_variant1,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6;return{...props,azKE1YwRS:(_ref=question!==null&&question!==void 0?question:props.azKE1YwRS)!==null&&_ref!==void 0?_ref:\"What is Framer?\",GPtq3j4Hg:(_ref2=(_ref1=(_humanReadableEnumMap_variant1=humanReadableEnumMap[variant1])!==null&&_humanReadableEnumMap_variant1!==void 0?_humanReadableEnumMap_variant1:variant1)!==null&&_ref1!==void 0?_ref1:props.GPtq3j4Hg)!==null&&_ref2!==void 0?_ref2:\"ZswieNmEV\",jiuoPjn8W:(_ref3=background!==null&&background!==void 0?background:props.jiuoPjn8W)!==null&&_ref3!==void 0?_ref3:\"rgb(34, 34, 34)\",UjVc9DITl:(_ref4=answer!==null&&answer!==void 0?answer:props.UjVc9DITl)!==null&&_ref4!==void 0?_ref4:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\\n\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"tujdUxM2a\",ZQAlzPDJU:(_ref6=name1!==null&&name1!==void 0?name1:props.ZQAlzPDJU)!==null&&_ref6!==void 0?_ref6:\"House\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,GPtq3j4Hg,azKE1YwRS,UjVc9DITl,ZQAlzPDJU,jiuoPjn8W,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tujdUxM2a\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-danvz\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tujdUxM2a\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:jiuoPjn8W,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({ROt6Kxlv3:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dje8cn-container\",layoutDependency:layoutDependency,layoutId:\"X1CKlTWi1-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"X1CKlTWi1\",layoutId:\"X1CKlTWi1\",P24TPiZmx:ZQAlzPDJU,style:{width:\"100%\"},T8rQFvSBR:UjVc9DITl,variant:GPtq3j4Hg,W88zB8mIG:azKE1YwRS,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gcwghx\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"MI7lLLJVe\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vlop26\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"r10MIy71M\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lqjfe.framer-tmvqgx, .framer-lqjfe .framer-tmvqgx { display: block; }\",\".framer-lqjfe.framer-danvz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 0px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lqjfe .framer-1dje8cn-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-lqjfe .framer-1gcwghx { flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\",\".framer-lqjfe .framer-vlop26 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lqjfe.framer-danvz { gap: 0px; } .framer-lqjfe.framer-danvz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lqjfe.framer-danvz > :first-child { margin-top: 0px; } .framer-lqjfe.framer-danvz > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 73\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ROt6Kxlv3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"GPtq3j4Hg\":\"variant1\",\"azKE1YwRS\":\"question\",\"UjVc9DITl\":\"answer\",\"ZQAlzPDJU\":\"name1\",\"jiuoPjn8W\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRQul9RUy1=withCSS(Component,css,\"framer-lqjfe\");export default FramerRQul9RUy1;FramerRQul9RUy1.displayName=\"Accordion\";FramerRQul9RUy1.defaultProps={height:73,width:1e3};addPropertyControls(FramerRQul9RUy1,{variant:{options:[\"tujdUxM2a\",\"ROt6Kxlv3\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},GPtq3j4Hg:(RowControls===null||RowControls===void 0?void 0:RowControls[\"variant\"])&&{...RowControls[\"variant\"],defaultValue:\"ZswieNmEV\",description:undefined,hidden:undefined,title:\"Variant\"},azKE1YwRS:{defaultValue:\"What is Framer?\",displayTextArea:true,title:\"Question\",type:ControlType.String},UjVc9DITl:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\\n\",displayTextArea:true,title:\"Answer\",type:ControlType.String},ZQAlzPDJU:(RowControls===null||RowControls===void 0?void 0:RowControls[\"P24TPiZmx\"])&&{...RowControls[\"P24TPiZmx\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Name\"},jiuoPjn8W:{defaultValue:\"rgb(34, 34, 34)\",title:\"Background\",type:ControlType.Color}});addFonts(FramerRQul9RUy1,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRQul9RUy1\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1000\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"73\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ROt6Kxlv3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"GPtq3j4Hg\\\":\\\"variant1\\\",\\\"azKE1YwRS\\\":\\\"question\\\",\\\"UjVc9DITl\\\":\\\"answer\\\",\\\"ZQAlzPDJU\\\":\\\"name1\\\",\\\"jiuoPjn8W\\\":\\\"background\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c60b0a0)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Manrope Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/4KNDyWHUbnyybp4Eh1BSEGstges.woff2\"}]}];export const css=['.framer-9MdrM .framer-styles-preset-16ojtkj:not(.rich-text-wrapper), .framer-9MdrM .framer-styles-preset-16ojtkj.rich-text-wrapper p { --framer-font-family: \"Manrope Regular\", \"Manrope Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-40f45847-e498-4bb3-b3dd-e0f511d03ec9, #cccccc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-9MdrM\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (63ecd5c)\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,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import CategoryButtons from\"#framer/local/canvasComponent/bpxmHomiU/bpxmHomiU.js\";import ElementsButton from\"#framer/local/canvasComponent/E0OQVGGJ0/E0OQVGGJ0.js\";import CardsDefaultCard from\"#framer/local/canvasComponent/N_46tRfKe/N_46tRfKe.js\";import Card3 from\"#framer/local/canvasComponent/PFGudeweL/PFGudeweL.js\";import Accordion from\"#framer/local/canvasComponent/RQul9RUy1/RQul9RUy1.js\";import NavigaiontSidebarNavigation from\"#framer/local/canvasComponent/ZR9Jey8PM/ZR9Jey8PM.js\";import Tutorials,{enumToDisplayNameFunctions}from\"#framer/local/collection/mpvPWr82u/mpvPWr82u.js\";import Templates,{enumToDisplayNameFunctions as enumToDisplayNameFunctions1}from\"#framer/local/collection/Y8_D95nXM/Y8_D95nXM.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle8 from\"#framer/local/css/B6v1_FBpH/B6v1_FBpH.js\";import*as sharedStyle13 from\"#framer/local/css/CL5ZGLkLD/CL5ZGLkLD.js\";import*as sharedStyle2 from\"#framer/local/css/dZrPoyZH_/dZrPoyZH_.js\";import*as sharedStyle6 from\"#framer/local/css/GIjtjHriL/GIjtjHriL.js\";import*as sharedStyle5 from\"#framer/local/css/HvVbKjTh5/HvVbKjTh5.js\";import*as sharedStyle11 from\"#framer/local/css/mrm3qdpjd/mrm3qdpjd.js\";import*as sharedStyle10 from\"#framer/local/css/n0w2W3fO8/n0w2W3fO8.js\";import*as sharedStyle1 from\"#framer/local/css/OYrx7nyHP/OYrx7nyHP.js\";import*as sharedStyle7 from\"#framer/local/css/qQY7qerWT/qQY7qerWT.js\";import*as sharedStyle4 from\"#framer/local/css/vMjeNhHRx/vMjeNhHRx.js\";import*as sharedStyle9 from\"#framer/local/css/VnwXDQbuw/VnwXDQbuw.js\";import*as sharedStyle12 from\"#framer/local/css/VuA0i5h5Q/VuA0i5h5Q.js\";import*as sharedStyle from\"#framer/local/css/wy2VSzYWY/wy2VSzYWY.js\";import*as sharedStyle3 from\"#framer/local/css/xH1VpLDOg/xH1VpLDOg.js\";import*as sharedStyle14 from\"#framer/local/css/Y2ctfpjtK/Y2ctfpjtK.js\";import metadataProvider from\"#framer/local/webPageMetadata/VSLRf8Pwa/VSLRf8Pwa.js\";const NavigaiontSidebarNavigationFonts=getFonts(NavigaiontSidebarNavigation);const PhosphorFonts=getFonts(Phosphor);const ElementsButtonFonts=getFonts(ElementsButton);const Card3Fonts=getFonts(Card3);const SlideshowFonts=getFonts(Slideshow);const AccordionFonts=getFonts(Accordion);const CategoryButtonsFonts=getFonts(CategoryButtons);const CardsDefaultCardFonts=getFonts(CardsDefaultCard);const YouTubeFonts=getFonts(YouTube);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const breakpoints={d5ges8rMy:\"(max-width: 639px)\",E1ictNFva:\"(min-width: 640px) and (max-width: 767px)\",Ewo0Xrwj3:\"(min-width: 1440px)\",GLF7bKFOe:\"(min-width: 768px) and (max-width: 1023px)\",MrjaGJ3Zp:\"(min-width: 1280px) and (max-width: 1439px)\",pWRfhjFO_:\"(min-width: 1024px) and (max-width: 1279px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BXU4A\";const variantClassNames={d5ges8rMy:\"framer-v-6g6epq\",E1ictNFva:\"framer-v-tygz26\",Ewo0Xrwj3:\"framer-v-19ivm3c\",GLF7bKFOe:\"framer-v-11ne3oy\",MrjaGJ3Zp:\"framer-v-1mxbq62\",pWRfhjFO_:\"framer-v-1n7u191\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const 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={\"Laptop | lg\":\"MrjaGJ3Zp\",\"Mobile | 2xs\":\"d5ges8rMy\",\"Mobile | xs\":\"E1ictNFva\",\"Sureface | md\":\"pWRfhjFO_\",\"Tablet | sm\":\"GLF7bKFOe\",Desktop:\"Ewo0Xrwj3\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Ewo0Xrwj3\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"VSLRf8Pwa\",data:Templates,type:\"Collection\"},select:[{collection:\"VSLRf8Pwa\",name:\"GUoZQOPbe\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"JRrktpqT5\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"BfJHotx1u\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"HwKsg5EPJ\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"FxvXnpvz6\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"KmfoJc6m3\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"skQYAcuso\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"rSwjBR4h3\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"btu7fWpbu\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"jqvAYLMSD\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"IIVpE4OOQ\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"hQxPHG2c_\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"qXfTwiOtC\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"PCtKIA342\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"SvwJ46vGc\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"sQg0awG6W\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"NIysuDeEA\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"dn42PeSTA\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"ocZo8WVIQ\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"dnMOaAMJD\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"hfOzAgqHp\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"r4S3PcCEA\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"ehDU1cfj5\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"Uu3Far3V8\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"y7C9Iehnf\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"YZ0H2Y4r9\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"AntX5DomV\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"ffMRamhYO\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"oTG6uMMlm\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"OxQ0tlovt\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"zANulJFj1\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"Nh4xG1uey\",type:\"Identifier\"},{collection:\"VSLRf8Pwa\",name:\"Eo3hGTn5V\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"VSLRf8Pwa\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,BfJHotx1u=getFromCurrentRouteData(\"BfJHotx1u\")??\"\",GUoZQOPbe=getFromCurrentRouteData(\"GUoZQOPbe\")??\"\",qXfTwiOtC=getFromCurrentRouteData(\"qXfTwiOtC\")??\"\",JRrktpqT5=getFromCurrentRouteData(\"JRrktpqT5\")??\"\",FxvXnpvz6=getFromCurrentRouteData(\"FxvXnpvz6\")??\"\",HwKsg5EPJ=getFromCurrentRouteData(\"HwKsg5EPJ\")??\"\",jqvAYLMSD=getFromCurrentRouteData(\"jqvAYLMSD\")??\"\",IIVpE4OOQ=getFromCurrentRouteData(\"IIVpE4OOQ\")??\"\",KmfoJc6m3=getFromCurrentRouteData(\"KmfoJc6m3\"),skQYAcuso=getFromCurrentRouteData(\"skQYAcuso\"),btu7fWpbu=getFromCurrentRouteData(\"btu7fWpbu\"),rSwjBR4h3=getFromCurrentRouteData(\"rSwjBR4h3\"),hQxPHG2c_=getFromCurrentRouteData(\"hQxPHG2c_\")??\"\",PCtKIA342=getFromCurrentRouteData(\"PCtKIA342\")??\"\",SvwJ46vGc=getFromCurrentRouteData(\"SvwJ46vGc\")??\"\",sQg0awG6W=getFromCurrentRouteData(\"sQg0awG6W\")??\"\",NIysuDeEA=getFromCurrentRouteData(\"NIysuDeEA\")??\"\",dn42PeSTA=getFromCurrentRouteData(\"dn42PeSTA\")??\"\",ocZo8WVIQ=getFromCurrentRouteData(\"ocZo8WVIQ\")??\"\",dnMOaAMJD=getFromCurrentRouteData(\"dnMOaAMJD\")??\"\",hfOzAgqHp=getFromCurrentRouteData(\"hfOzAgqHp\")??\"\",r4S3PcCEA=getFromCurrentRouteData(\"r4S3PcCEA\")??\"\",ehDU1cfj5=getFromCurrentRouteData(\"ehDU1cfj5\")??\"\",Uu3Far3V8=getFromCurrentRouteData(\"Uu3Far3V8\")??\"\",y7C9Iehnf=getFromCurrentRouteData(\"y7C9Iehnf\")??\"\",YZ0H2Y4r9=getFromCurrentRouteData(\"YZ0H2Y4r9\")??\"\",AntX5DomV=getFromCurrentRouteData(\"AntX5DomV\")??\"\",ffMRamhYO=getFromCurrentRouteData(\"ffMRamhYO\")??\"\",oTG6uMMlm=getFromCurrentRouteData(\"oTG6uMMlm\")??\"\",OxQ0tlovt=getFromCurrentRouteData(\"OxQ0tlovt\")??\"\",zANulJFj1=getFromCurrentRouteData(\"zANulJFj1\")??\"\",Nh4xG1uey=getFromCurrentRouteData(\"Nh4xG1uey\")??\"\",Eo3hGTn5V=getFromCurrentRouteData(\"Eo3hGTn5V\")??\"\",kRZuc5uv3BncXihKRZ,xkPHXT2SzBncXihKRZ,Vz7yUObmfBncXihKRZ,f6Up5M2OGBncXihKRZ,z1N4cd7vKBncXihKRZ,FjAEZva52BncXihKRZ,ab1hhKxynBncXihKRZ,idBncXihKRZ,GUoZQOPbew6TmBXcCF,epqrgRHkAw6TmBXcCF,z5lX1ip6Ow6TmBXcCF,BfJHotx1uw6TmBXcCF,f6Up5M2OGw6TmBXcCF,MJ0mozLyow6TmBXcCF,idw6TmBXcCF,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const ijP_E71dh3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});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,sharedStyle14.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const visible=isSet(HwKsg5EPJ);const visible1=isSet(Uu3Far3V8);const visible2=isSet(y7C9Iehnf);const visible3=isSet(YZ0H2Y4r9);const visible4=isSet(AntX5DomV);const visible5=isSet(ffMRamhYO);const visible6=isSet(oTG6uMMlm);const visible7=isSet(OxQ0tlovt);const visible8=isSet(zANulJFj1);const visible9=isSet(Nh4xG1uey);const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Ewo0Xrwj3\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-68e8bb38-c584-4d6a-bdc9-edc8ff84d6b5, rgb(15, 13, 11)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-19ivm3c\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yr3ud9\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{height:800,width:componentViewport?.width||\"100vw\",y:undefined},E1ictNFva:{height:800,width:componentViewport?.width||\"100vw\",y:undefined},GLF7bKFOe:{height:800,width:componentViewport?.width||\"100vw\",y:undefined},pWRfhjFO_:{width:\"min(19.4444vw, 200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"min(19.4444vw, 280px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uznot9-container\",layoutScroll:true,nodeId:\"aFIGEAJhg\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{style:{width:\"100%\"},variant:\"fwoL812In\"},E1ictNFva:{style:{width:\"100%\"},variant:\"fwoL812In\"},GLF7bKFOe:{style:{width:\"100%\"},variant:\"St1KoVaVl\"}},children:/*#__PURE__*/_jsx(NavigaiontSidebarNavigation,{bWgNjTC2_:\"iPjWEy20g\",f3yvEvUEi:\"iPjWEy20g\",h4cGM0VfX:\"jH4QDhg6l\",height:\"100%\",id:\"aFIGEAJhg\",layoutId:\"aFIGEAJhg\",ldZkSvDEf:\"jH4QDhg6l\",mOnnfIJr5:\"iPjWEy20g\",oyJBDAOAn:\"jH4QDhg6l\",sl89VQnHt:\"jH4QDhg6l\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"KvNStH_sa\",width:\"100%\",XlTnmhRKT:\"jH4QDhg6l\",yoIkmKees:\"iPjWEy20g\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wyc8d1\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fk9z9\",\"data-framer-name\":\"Container\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l96e4y\",\"data-framer-name\":\"Breadcrumbs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ali5j7\",\"data-styles-preset\":\"wy2VSzYWY\",style:{\"--framer-text-color\":\"var(--token-eb8c27e0-67a7-4528-8f45-dec76405f53e, rgb(129, 123, 111))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"UBVvul3qm\",openInNewTab:false,scopeId:\"VSLRf8Pwa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1brojcv\",\"data-styles-preset\":\"OYrx7nyHP\",children:\"Home\"})})})}),className:\"framer-1ezw4n4\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7wl4zz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ph90Dol5k\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-83fec95e-4f58-458a-b5e8-a14863e4175e, rgb(94, 90, 79))\",height:\"100%\",iconSearch:\"caret-right\",iconSelection:\"House\",id:\"Ph90Dol5k\",layoutId:\"Ph90Dol5k\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ali5j7\",\"data-styles-preset\":\"wy2VSzYWY\",style:{\"--framer-text-color\":\"var(--token-eb8c27e0-67a7-4528-8f45-dec76405f53e, rgb(129, 123, 111))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qEuLwIW2n\"},motionChild:true,nodeId:\"ucNe5t9ou\",openInNewTab:false,scopeId:\"VSLRf8Pwa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1brojcv\",\"data-styles-preset\":\"OYrx7nyHP\",children:\"Templates\"})})})}),className:\"framer-gofe7p\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eebkcn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dbvadelr_\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-83fec95e-4f58-458a-b5e8-a14863e4175e, rgb(94, 90, 79))\",height:\"100%\",iconSearch:\"caret-right\",iconSelection:\"House\",id:\"dbvadelr_\",layoutId:\"dbvadelr_\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ali5j7\",\"data-styles-preset\":\"wy2VSzYWY\",style:{\"--framer-text-color\":\"var(--token-eb8c27e0-67a7-4528-8f45-dec76405f53e, rgb(129, 123, 111))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{BfJHotx1u},webPageId:\"VSLRf8Pwa\"},motionChild:true,nodeId:\"weYg6g2Au\",openInNewTab:false,scopeId:\"VSLRf8Pwa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lzp7wi\",\"data-styles-preset\":\"dZrPoyZH_\",children:\"DailyHub\"})})})}),className:\"framer-wqha1f\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],text:GUoZQOPbe,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1q7k062\",\"data-framer-appear-id\":\"1q7k062\",\"data-framer-name\":\"Content\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14oehid\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e3nwa7\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-t6k7zp\",\"data-styles-preset\":\"xH1VpLDOg\",children:\"Peach Worlds\"})}),className:\"framer-19jer9j\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],text:GUoZQOPbe,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g5arkc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:159,pixelWidth:193,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TI61HqWyIy355Q6D8o0isdSpc.png\"},className:\"framer-1x2whlx\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dUIFdhbHNoZWltIFBybyBNZWRpdW0=\",\"--framer-font-family\":'\"GT Walsheim Pro Medium\", \"GT Walsheim Pro Medium Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(250, 249, 247, 0.7)\"},children:\"PeachWeb\"})}),className:\"framer-1fjccee\",fonts:[\"CUSTOM;GT Walsheim Pro Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sraqdh\",\"data-framer-name\":\"Support\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kg1h04\",\"data-styles-preset\":\"vMjeNhHRx\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"Categories\"})}),className:\"framer-u0dc5a\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zyp5il\",\"data-framer-name\":\"List\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lkmytg\",\"data-framer-name\":\"List item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ali5j7\",\"data-styles-preset\":\"wy2VSzYWY\",children:\"Intelligence, SaaS, Startup, Business, Retail, Agencies\"})}),className:\"framer-d8ihzm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:qXfTwiOtC,verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f1k4j2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JldGhpbmsgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Rethink Sans Regular\", \"Rethink Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Introducing Lithium, a futuristic space for next-generation projects. Immerse yourself in a journey of visual storytelling, with the main centrepiece descending in the final scene, leaving a lasting impression on your visitors.\"})}),fonts:[\"CUSTOM;Rethink Sans Regular\"]},E1ictNFva:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JldGhpbmsgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Rethink Sans Regular\", \"Rethink Sans Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Introducing Lithium, a futuristic space for next-generation projects. Immerse yourself in a journey of visual storytelling, with the main centrepiece descending in the final scene, leaving a lasting impression on your visitors.\"})}),fonts:[\"CUSTOM;Rethink Sans Regular\"],text:undefined},GLF7bKFOe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JldGhpbmsgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Rethink Sans Regular\", \"Rethink Sans Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Introducing Lithium, a futuristic space for next-generation projects. Immerse yourself in a journey of visual storytelling, with the main centrepiece descending in the final scene, leaving a lasting impression on your visitors.\"})}),fonts:[\"CUSTOM;Rethink Sans Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18rz0w8\",\"data-styles-preset\":\"HvVbKjTh5\",children:\"Introducing the Elevating Cubes Template, your immersive landing page for showcasing your next-generation technology or products. It's the perfect place to create an outstanding and beautiful online presence that wows your audience. It empowers you to tell the most engaging story on the web through visual storytelling.\"})}),className:\"framer-1d6mkff\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],text:JRrktpqT5,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8bh6pu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8qk09h\",\"data-framer-name\":\"Right actions\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:FxvXnpvz6,implicitPathVariables:undefined},{href:FxvXnpvz6,implicitPathVariables:undefined},{href:FxvXnpvz6,implicitPathVariables:undefined},{href:FxvXnpvz6,implicitPathVariables:undefined},{href:FxvXnpvz6,implicitPathVariables:undefined},{href:FxvXnpvz6,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px) - 2px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r175f2-container\",nodeId:\"y19BWtclv\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{Rdy0ScC2m:resolvedLinks[5],style:{width:\"100%\"}},E1ictNFva:{Rdy0ScC2m:resolvedLinks[4]},GLF7bKFOe:{Rdy0ScC2m:resolvedLinks[3]},MrjaGJ3Zp:{Rdy0ScC2m:resolvedLinks[1]},pWRfhjFO_:{Rdy0ScC2m:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ElementsButton,{ak4OnnMcF:\"eye\",D8CfCMtHq:\"Preview\",height:\"100%\",id:\"y19BWtclv\",layoutId:\"y19BWtclv\",qLinKMxpn:8,Rdy0ScC2m:resolvedLinks[0],variant:\"yxOVf4ZAT\",vWtNHP2Sp:false,width:\"100%\",Y_AsuhKMV:false,Zo73_lntK:true})})})})})}),visible&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:HwKsg5EPJ,implicitPathVariables:undefined},{href:HwKsg5EPJ,implicitPathVariables:undefined},{href:HwKsg5EPJ,implicitPathVariables:undefined},{href:HwKsg5EPJ,implicitPathVariables:undefined},{href:HwKsg5EPJ,implicitPathVariables:undefined},{href:HwKsg5EPJ,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px) - 2px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hom7p9-container\",nodeId:\"UJKvLMHS4\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{Rdy0ScC2m:resolvedLinks1[5],style:{width:\"100%\"}},E1ictNFva:{Rdy0ScC2m:resolvedLinks1[4]},GLF7bKFOe:{Rdy0ScC2m:resolvedLinks1[3]},MrjaGJ3Zp:{Rdy0ScC2m:resolvedLinks1[1]},pWRfhjFO_:{Rdy0ScC2m:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ElementsButton,{ak4OnnMcF:\"eye\",D8CfCMtHq:\"Remix for Free\",height:\"100%\",id:\"UJKvLMHS4\",layoutId:\"UJKvLMHS4\",qLinKMxpn:8,Rdy0ScC2m:resolvedLinks1[0],variant:\"HpNtZ_fNn\",vWtNHP2Sp:false,width:\"100%\",Y_AsuhKMV:false,Zo73_lntK:true})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j2nlk5-container\",nodeId:\"CgghMyXtX\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ElementsButton,{ak4OnnMcF:\"eye\",D8CfCMtHq:\"Contact Us\",height:\"100%\",id:\"CgghMyXtX\",layoutId:\"CgghMyXtX\",qLinKMxpn:8,Rdy0ScC2m:\"https://calendly.com/peachstudios/30min\",variant:\"dMyRFi9v2\",vWtNHP2Sp:false,width:\"100%\",Y_AsuhKMV:false,Zo73_lntK:true})})})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qfuy8-container\",isModuleExternal:true,nodeId:\"UpjEZmCbj\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(218, 209, 241, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:true,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:.6,effectsPerspective:1200,effectsRotate:2,effectsScale:.9},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:24,height:\"100%\",id:\"UpjEZmCbj\",intervalControl:5,itemAmount:1,layoutId:\"UpjEZmCbj\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:325,width:\"480px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18hc3f8-container\",\"data-framer-name\":\"Video 1\",inComponentSlot:true,name:\"Video 1\",nodeId:\"cFj08VPwd\",rendersWithMotion:true,scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Card3,{Cz_IqSRge:false,eVBHgm4Cj:GUoZQOPbe,EYj1PF7wb:true,gEuhAH3Am:true,height:\"100%\",id:\"cFj08VPwd\",layoutId:\"cFj08VPwd\",name:\"Video 1\",style:{height:\"100%\",width:\"100%\"},UwTmtECuB:jqvAYLMSD,variant:\"lzI5vO1eF\",width:\"100%\",WybjiDyIW:\"Peach Worlds \"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:325,width:\"480px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bjiob3-container\",\"data-framer-name\":\"Image 1\",inComponentSlot:true,name:\"Image 1\",nodeId:\"L_Q0CM2lt\",rendersWithMotion:true,scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Card3,{Cz_IqSRge:false,eVBHgm4Cj:GUoZQOPbe,EYj1PF7wb:true,gEuhAH3Am:false,height:\"100%\",id:\"L_Q0CM2lt\",layoutId:\"L_Q0CM2lt\",MY7B3AYJk:toResponsiveImage(KmfoJc6m3),name:\"Image 1\",style:{height:\"100%\",width:\"100%\"},UwTmtECuB:IIVpE4OOQ,variant:\"FVS18KXb0\",width:\"100%\",WybjiDyIW:\"Peach Worlds \u2022 $99\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:442,width:\"653px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gcfdd6-container\",\"data-framer-name\":\"Image 2\",inComponentSlot:true,name:\"Image 2\",nodeId:\"pLl5VPeIu\",rendersWithMotion:true,scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Card3,{Cz_IqSRge:false,eVBHgm4Cj:GUoZQOPbe,EYj1PF7wb:true,gEuhAH3Am:false,height:\"100%\",id:\"pLl5VPeIu\",layoutId:\"pLl5VPeIu\",MY7B3AYJk:toResponsiveImage(skQYAcuso),name:\"Image 2\",style:{height:\"100%\",width:\"100%\"},UwTmtECuB:IIVpE4OOQ,variant:\"FVS18KXb0\",width:\"100%\",WybjiDyIW:\"Peach Worlds \u2022 $99\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:325,width:\"480px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-144c6sb-container\",\"data-framer-name\":\"Image 3\",inComponentSlot:true,name:\"Image 3\",nodeId:\"XWq2q6Fzx\",rendersWithMotion:true,scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Card3,{Cz_IqSRge:false,eVBHgm4Cj:GUoZQOPbe,EYj1PF7wb:true,gEuhAH3Am:false,height:\"100%\",id:\"XWq2q6Fzx\",layoutId:\"XWq2q6Fzx\",MY7B3AYJk:toResponsiveImage(btu7fWpbu),name:\"Image 3\",style:{height:\"100%\",width:\"100%\"},UwTmtECuB:IIVpE4OOQ,variant:\"FVS18KXb0\",width:\"100%\",WybjiDyIW:\"Peach Worlds \u2022 $99\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,width:\"480px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gkp4un-container\",\"data-framer-name\":\"Image 4\",inComponentSlot:true,name:\"Image 4\",nodeId:\"GhVkpYttf\",rendersWithMotion:true,scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Card3,{Cz_IqSRge:false,eVBHgm4Cj:GUoZQOPbe,EYj1PF7wb:false,gEuhAH3Am:false,height:\"100%\",id:\"GhVkpYttf\",layoutId:\"GhVkpYttf\",MY7B3AYJk:toResponsiveImage(rSwjBR4h3),name:\"Image 4\",style:{height:\"100%\",width:\"100%\"},UwTmtECuB:IIVpE4OOQ,variant:\"FVS18KXb0\",width:\"100%\",WybjiDyIW:\"Peach Worlds \u2022 $99\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:325,width:\"480px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ypcqg1-container\",\"data-framer-name\":\"Video 2\",inComponentSlot:true,name:\"Video 2\",nodeId:\"TOsLon7s5\",rendersWithMotion:true,scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Card3,{Cz_IqSRge:false,eVBHgm4Cj:GUoZQOPbe,EYj1PF7wb:true,gEuhAH3Am:true,height:\"100%\",id:\"TOsLon7s5\",layoutId:\"TOsLon7s5\",name:\"Video 2\",style:{height:\"100%\",width:\"100%\"},UwTmtECuB:IIVpE4OOQ,variant:\"lzI5vO1eF\",width:\"100%\",WybjiDyIW:\"Peach Worlds \u2022 $99\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y4wwzc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kj095a\",\"data-framer-name\":\"Overview\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"f22UWahBD\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E1ictNFva:{stylesPresetsClassNames:{a:\"framer-styles-preset-r79ity\",h1:\"framer-styles-preset-1cwj9u5\",h2:\"framer-styles-preset-17h5qw0\",h3:\"framer-styles-preset-1lxrjui\",h4:\"framer-styles-preset-1kg1h04\",h5:\"framer-styles-preset-1bdowkc\",h6:\"framer-styles-preset-zkdzxe\",p:\"framer-styles-preset-njcb4y\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:hQxPHG2c_,className:\"framer-2azm4e\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-r79ity\",h1:\"framer-styles-preset-1cwj9u5\",h2:\"framer-styles-preset-17h5qw0\",h3:\"framer-styles-preset-1lxrjui\",h4:\"framer-styles-preset-1kg1h04\",h5:\"framer-styles-preset-1bdowkc\",h6:\"framer-styles-preset-zkdzxe\",p:\"framer-styles-preset-16ojtkj\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{background:{alt:\"\",fit:\"fill\",sizes:`min(min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px), 700px)`,...toResponsiveImage(KmfoJc6m3)}},E1ictNFva:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px) - 328px, 1px), 700px)`,...toResponsiveImage(KmfoJc6m3)}},GLF7bKFOe:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 64px, 1280px) - 386px, 1px), 700px)`,...toResponsiveImage(KmfoJc6m3)}},MrjaGJ3Zp:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(min(min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px) - 8px, 1280px) - 64px, 1280px) - 416px, 1px), 640px)`,...toResponsiveImage(KmfoJc6m3)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`min(max(min(min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px) - 8px, 1280px) - 64px, 1280px) - 416px, 1px), 700px)`,...toResponsiveImage(KmfoJc6m3)},className:\"framer-1rd2g9s\",\"data-framer-name\":\"Image 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{background:{alt:\"\",fit:\"fill\",sizes:`min(min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px), 700px)`,...toResponsiveImage(skQYAcuso)}},E1ictNFva:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px) - 328px, 1px), 700px)`,...toResponsiveImage(skQYAcuso)}},GLF7bKFOe:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 64px, 1280px) - 386px, 1px), 700px)`,...toResponsiveImage(skQYAcuso)}},MrjaGJ3Zp:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(min(min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px) - 8px, 1280px) - 64px, 1280px) - 416px, 1px), 640px)`,...toResponsiveImage(skQYAcuso)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`min(max(min(min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px) - 8px, 1280px) - 64px, 1280px) - 416px, 1px), 700px)`,...toResponsiveImage(skQYAcuso)},className:\"framer-1wj89lx\",\"data-framer-name\":\"Image 1\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dbbqy6\",\"data-framer-name\":\"Rightbar\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-in0xou\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kg1h04\",\"data-styles-preset\":\"vMjeNhHRx\",children:\"Features\"})}),className:\"framer-10eqai1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e0omkz\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px)`},E1ictNFva:{width:\"280px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zoh2di-container\",nodeId:\"EL3so86I1\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Accordion,{azKE1YwRS:\"Animation & Effects\",GPtq3j4Hg:\"cTl31LoIK\",height:\"100%\",id:\"EL3so86I1\",jiuoPjn8W:\"var(--token-dbf32d0d-f455-4311-87ec-e8a0aec48475, rgb(23, 21, 28))\",layoutId:\"EL3so86I1\",style:{width:\"100%\"},UjVc9DITl:PCtKIA342,variant:\"ROt6Kxlv3\",width:\"100%\",ZQAlzPDJU:\"MagicWand\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px)`},E1ictNFva:{width:\"280px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uvxneb-container\",nodeId:\"jrSuu8Y5H\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Accordion,{azKE1YwRS:\"3D Scene Editor\",GPtq3j4Hg:\"cTl31LoIK\",height:\"100%\",id:\"jrSuu8Y5H\",jiuoPjn8W:\"var(--token-dbf32d0d-f455-4311-87ec-e8a0aec48475, rgb(23, 21, 28))\",layoutId:\"jrSuu8Y5H\",style:{width:\"100%\"},UjVc9DITl:SvwJ46vGc,variant:\"ROt6Kxlv3\",width:\"100%\",ZQAlzPDJU:\"CursorClick\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px)`},E1ictNFva:{width:\"280px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p2ccok-container\",nodeId:\"XVoXJpjgb\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Accordion,{azKE1YwRS:\"Color Styles\",GPtq3j4Hg:\"cTl31LoIK\",height:\"100%\",id:\"XVoXJpjgb\",jiuoPjn8W:\"var(--token-dbf32d0d-f455-4311-87ec-e8a0aec48475, rgb(23, 21, 28))\",layoutId:\"XVoXJpjgb\",style:{width:\"100%\"},UjVc9DITl:sQg0awG6W,variant:\"ROt6Kxlv3\",width:\"100%\",ZQAlzPDJU:\"Clipboard\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px)`},E1ictNFva:{width:\"280px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19569s4-container\",nodeId:\"HQnYp_N8S\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Accordion,{azKE1YwRS:\"Components\",GPtq3j4Hg:\"cTl31LoIK\",height:\"100%\",id:\"HQnYp_N8S\",jiuoPjn8W:\"var(--token-dbf32d0d-f455-4311-87ec-e8a0aec48475, rgb(23, 21, 28))\",layoutId:\"HQnYp_N8S\",style:{width:\"100%\"},UjVc9DITl:NIysuDeEA,variant:\"ROt6Kxlv3\",width:\"100%\",ZQAlzPDJU:\"Flower\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px)`},E1ictNFva:{width:\"280px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1us3lo9-container\",nodeId:\"IK9XkxKzP\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Accordion,{azKE1YwRS:\"Content Management System (CMS)\",GPtq3j4Hg:\"cTl31LoIK\",height:\"100%\",id:\"IK9XkxKzP\",jiuoPjn8W:\"var(--token-dbf32d0d-f455-4311-87ec-e8a0aec48475, rgb(23, 21, 28))\",layoutId:\"IK9XkxKzP\",style:{width:\"100%\"},UjVc9DITl:dn42PeSTA,variant:\"ROt6Kxlv3\",width:\"100%\",ZQAlzPDJU:\"Book\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px)`},E1ictNFva:{width:\"280px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-wdvzo-container\",nodeId:\"GgLiP_nbM\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Accordion,{azKE1YwRS:\"Overlays\",GPtq3j4Hg:\"cTl31LoIK\",height:\"100%\",id:\"GgLiP_nbM\",jiuoPjn8W:\"var(--token-dbf32d0d-f455-4311-87ec-e8a0aec48475, rgb(23, 21, 28))\",layoutId:\"GgLiP_nbM\",style:{width:\"100%\"},UjVc9DITl:ocZo8WVIQ,variant:\"ROt6Kxlv3\",width:\"100%\",ZQAlzPDJU:\"Wallet\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px)`},E1ictNFva:{width:\"280px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jmifq2-container\",nodeId:\"DFwo75rjk\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Accordion,{azKE1YwRS:\"Responsive Design\",GPtq3j4Hg:\"cTl31LoIK\",height:\"100%\",id:\"DFwo75rjk\",jiuoPjn8W:\"var(--token-dbf32d0d-f455-4311-87ec-e8a0aec48475, rgb(23, 21, 28))\",layoutId:\"DFwo75rjk\",style:{width:\"100%\"},UjVc9DITl:dnMOaAMJD,variant:\"ROt6Kxlv3\",width:\"100%\",ZQAlzPDJU:\"Scroll\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px)`},E1ictNFva:{width:\"280px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13rnb6d-container\",nodeId:\"RkCZp1YXG\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Accordion,{azKE1YwRS:\"SEO & Perfomance\",GPtq3j4Hg:\"cTl31LoIK\",height:\"100%\",id:\"RkCZp1YXG\",jiuoPjn8W:\"var(--token-dbf32d0d-f455-4311-87ec-e8a0aec48475, rgb(23, 21, 28))\",layoutId:\"RkCZp1YXG\",style:{width:\"100%\"},UjVc9DITl:hfOzAgqHp,variant:\"ROt6Kxlv3\",width:\"100%\",ZQAlzPDJU:\"Lightning\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px)`},E1ictNFva:{width:\"280px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pastav-container\",nodeId:\"x1FCKII4a\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Accordion,{azKE1YwRS:\"Text Styles\",GPtq3j4Hg:\"cTl31LoIK\",height:\"100%\",id:\"x1FCKII4a\",jiuoPjn8W:\"var(--token-dbf32d0d-f455-4311-87ec-e8a0aec48475, rgb(23, 21, 28))\",layoutId:\"x1FCKII4a\",style:{width:\"100%\"},UjVc9DITl:r4S3PcCEA,variant:\"ROt6Kxlv3\",width:\"100%\",ZQAlzPDJU:\"Stack\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px)`},E1ictNFva:{width:\"280px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iuu0ie-container\",nodeId:\"vP5Oz9NZp\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Accordion,{azKE1YwRS:\"Web Fonts\",GPtq3j4Hg:\"cTl31LoIK\",height:\"100%\",id:\"vP5Oz9NZp\",jiuoPjn8W:\"var(--token-dbf32d0d-f455-4311-87ec-e8a0aec48475, rgb(23, 21, 28))\",layoutId:\"vP5Oz9NZp\",style:{width:\"100%\"},UjVc9DITl:ehDU1cfj5,variant:\"ROt6Kxlv3\",width:\"100%\",ZQAlzPDJU:\"Star\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4yp4sr\",\"data-framer-name\":\"Pages\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kg1h04\",\"data-styles-preset\":\"vMjeNhHRx\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"Tags\"})}),className:\"framer-a3lgbr\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nvakm4\",children:[visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18g8tqo-container\",nodeId:\"WLRdktjT2\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(CategoryButtons,{height:\"100%\",id:\"WLRdktjT2\",layoutId:\"WLRdktjT2\",variant:\"vInSSugMH\",width:\"100%\",yXmZ3xg9p:Uu3Far3V8})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3vbavi-container\",nodeId:\"c9GG1bQkn\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(CategoryButtons,{height:\"100%\",id:\"c9GG1bQkn\",layoutId:\"c9GG1bQkn\",variant:\"vInSSugMH\",width:\"100%\",yXmZ3xg9p:y7C9Iehnf})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e1dy8z-container\",nodeId:\"JWAKVMnPi\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(CategoryButtons,{height:\"100%\",id:\"JWAKVMnPi\",layoutId:\"JWAKVMnPi\",variant:\"vInSSugMH\",width:\"100%\",yXmZ3xg9p:YZ0H2Y4r9})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d4p41o-container\",nodeId:\"kxoTuaWfQ\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(CategoryButtons,{height:\"100%\",id:\"kxoTuaWfQ\",layoutId:\"kxoTuaWfQ\",variant:\"vInSSugMH\",width:\"100%\",yXmZ3xg9p:AntX5DomV})})}),visible5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1al15mo-container\",nodeId:\"jMRiBpi_w\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(CategoryButtons,{height:\"100%\",id:\"jMRiBpi_w\",layoutId:\"jMRiBpi_w\",variant:\"vInSSugMH\",width:\"100%\",yXmZ3xg9p:ffMRamhYO})})}),visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x5vl43-container\",nodeId:\"Q0pte4SN0\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(CategoryButtons,{height:\"100%\",id:\"Q0pte4SN0\",layoutId:\"Q0pte4SN0\",variant:\"vInSSugMH\",width:\"100%\",yXmZ3xg9p:oTG6uMMlm})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f9s84t-container\",nodeId:\"VwkgOWQ3H\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(CategoryButtons,{height:\"100%\",id:\"VwkgOWQ3H\",layoutId:\"VwkgOWQ3H\",variant:\"vInSSugMH\",width:\"100%\",yXmZ3xg9p:OxQ0tlovt})})}),visible8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i93kwk-container\",nodeId:\"bb2NT4smR\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(CategoryButtons,{height:\"100%\",id:\"bb2NT4smR\",layoutId:\"bb2NT4smR\",variant:\"vInSSugMH\",width:\"100%\",yXmZ3xg9p:zANulJFj1})})}),visible9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a17bu5-container\",nodeId:\"qU0dIaRLF\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(CategoryButtons,{height:\"100%\",id:\"qU0dIaRLF\",layoutId:\"qU0dIaRLF\",variant:\"vInSSugMH\",width:\"100%\",yXmZ3xg9p:Nh4xG1uey})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h4wjvd-container\",nodeId:\"ENkjV25Q1\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(CategoryButtons,{height:\"100%\",id:\"ENkjV25Q1\",layoutId:\"ENkjV25Q1\",variant:\"vInSSugMH\",width:\"100%\",yXmZ3xg9p:Eo3hGTn5V})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e8mxa1\",\"data-framer-name\":\"Also like\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-mi3f4m\",\"data-styles-preset\":\"Y2ctfpjtK\",children:\"Template Tutorials\"})}),className:\"framer-dxil8p\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wvlmrr\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BncXihKRZ\",data:Tutorials,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"BncXihKRZ\",name:\"kRZuc5uv3\",type:\"Identifier\"},{collection:\"BncXihKRZ\",name:\"xkPHXT2Sz\",type:\"Identifier\"},{collection:\"BncXihKRZ\",name:\"Vz7yUObmf\",type:\"Identifier\"},{collection:\"BncXihKRZ\",name:\"f6Up5M2OG\",type:\"Identifier\"},{collection:\"BncXihKRZ\",name:\"z1N4cd7vK\",type:\"Identifier\"},{collection:\"BncXihKRZ\",name:\"FjAEZva52\",type:\"Identifier\"},{collection:\"BncXihKRZ\",name:\"ab1hhKxyn\",type:\"Identifier\"},{collection:\"BncXihKRZ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"BncXihKRZ\",name:\"Vz7yUObmf\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"edxNBGZ2I\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({ab1hhKxyn:ab1hhKxynBncXihKRZ,f6Up5M2OG:f6Up5M2OGBncXihKRZ,FjAEZva52:FjAEZva52BncXihKRZ,id:idBncXihKRZ,kRZuc5uv3:kRZuc5uv3BncXihKRZ,Vz7yUObmf:Vz7yUObmfBncXihKRZ,xkPHXT2Sz:xkPHXT2SzBncXihKRZ,z1N4cd7vK:z1N4cd7vKBncXihKRZ},index)=>{kRZuc5uv3BncXihKRZ??=\"\";z1N4cd7vKBncXihKRZ??=true;FjAEZva52BncXihKRZ??=\"\";ab1hhKxynBncXihKRZ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BncXihKRZ-${idBncXihKRZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ab1hhKxyn:ab1hhKxynBncXihKRZ},children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px), 200px)`},E1ictNFva:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 1280px) - 16px) / 2, 200px)`},GLF7bKFOe:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 64px, 1280px) - 16px) / 2, 200px)`},pWRfhjFO_:{width:`max((min(min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px) - 8px, 1280px) - 64px, 1280px) - 32px) / 3, 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:161,width:`max((min(min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px) - 8px, 1280px) - 64px, 1280px) - 48px) / 3, 200px)`,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-w41wcv-container\",id:`${ab1hhKxynBncXihKRZ}-w41wcv`,nodeId:\"cdot9rvnx\",scopeId:\"VSLRf8Pwa\",children:[/*#__PURE__*/_jsx(CardsDefaultCard,{Arx2Qnybp:enumToDisplayNameFunctions[\"Vz7yUObmf\"]?.(Vz7yUObmfBncXihKRZ,activeLocale),BP0C7oO5m:kRZuc5uv3BncXihKRZ,f_17DpIz7:FjAEZva52BncXihKRZ,height:\"100%\",id:\"cdot9rvnx\",ijP_E71dh:ijP_E71dh3bnx0g({overlay}),layoutId:\"cdot9rvnx\",N3TYMpmBc:numberToString(f6Up5M2OGBncXihKRZ,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),oRc8Zscpl:z1N4cd7vKBncXihKRZ,pR_EWmE63:toResponsiveImage(xkPHXT2SzBncXihKRZ),style:{width:\"100%\"},UYU4kIAp5:\"var(--token-cc7207b5-20d8-4524-843a-150380cf0cc0, rgb(173, 168, 159))\",variant:\"aso_rTSyb\",width:\"100%\",WtAuMlUfp:false}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-mz8zqt\"),\"data-framer-portal-id\":`${ab1hhKxynBncXihKRZ}-w41wcv`,exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"iywBAP_4E\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation,className:cx(scopingClassNames,\"framer-jkz7gj-container\"),\"data-framer-portal-id\":`${ab1hhKxynBncXihKRZ}-w41wcv`,exit:animation2,inComponentSlot:true,initial:animation3,isModuleExternal:true,nodeId:\"nXjqH8R_g\",rendersWithMotion:true,scopeId:\"VSLRf8Pwa\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:36,bottomLeftRadius:36,bottomRightRadius:36,height:\"100%\",id:\"nXjqH8R_g\",isMixedBorderRadius:false,isRed:true,layoutId:\"nXjqH8R_g\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:36,topRightRadius:36,url:FjAEZva52BncXihKRZ,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation,className:cx(scopingClassNames,\"framer-eihmja-container\"),\"data-framer-portal-id\":`${ab1hhKxynBncXihKRZ}-w41wcv`,exit:animation2,inComponentSlot:true,initial:animation3,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"v3WH_UWHw\",rendersWithMotion:true,scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"v3WH_UWHw\",layoutId:\"v3WH_UWHw\",mirrored:false,onClick:onClick1wnntms({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),getContainer())})})]})})})})})})},idBncXihKRZ);})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-slfbqx\",\"data-framer-name\":\"Also like\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-mi3f4m\",\"data-styles-preset\":\"Y2ctfpjtK\",children:\"You May Also Like\"})}),className:\"framer-ojfe4t\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c2suon\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"w6TmBXcCF\",data:Templates,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"w6TmBXcCF\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"w6TmBXcCF\",name:\"GUoZQOPbe\",type:\"Identifier\"},{collection:\"w6TmBXcCF\",name:\"epqrgRHkA\",type:\"Identifier\"},{collection:\"w6TmBXcCF\",name:\"z5lX1ip6O\",type:\"Identifier\"},{collection:\"w6TmBXcCF\",name:\"BfJHotx1u\",type:\"Identifier\"},{collection:\"w6TmBXcCF\",name:\"f6Up5M2OG\",type:\"Identifier\"},{collection:\"w6TmBXcCF\",name:\"MJ0mozLyo\",type:\"Identifier\"},{collection:\"w6TmBXcCF\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"w6TmBXcCF\",name:\"GUoZQOPbe\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:GUoZQOPbe},type:\"BinaryOperation\"}}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({BfJHotx1u:BfJHotx1uw6TmBXcCF,epqrgRHkA:epqrgRHkAw6TmBXcCF,f6Up5M2OG:f6Up5M2OGw6TmBXcCF,GUoZQOPbe:GUoZQOPbew6TmBXcCF,id:idw6TmBXcCF,MJ0mozLyo:MJ0mozLyow6TmBXcCF,z5lX1ip6O:z5lX1ip6Ow6TmBXcCF},index1)=>{GUoZQOPbew6TmBXcCF??=\"\";BfJHotx1uw6TmBXcCF??=\"\";f6Up5M2OGw6TmBXcCF??=0;MJ0mozLyow6TmBXcCF??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`w6TmBXcCF-${idw6TmBXcCF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BfJHotx1u:BfJHotx1uw6TmBXcCF},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{BfJHotx1u:BfJHotx1uw6TmBXcCF},webPageId:\"VSLRf8Pwa\"},implicitPathVariables:undefined},{href:{pathVariables:{BfJHotx1u:BfJHotx1uw6TmBXcCF},webPageId:\"VSLRf8Pwa\"},implicitPathVariables:undefined},{href:{pathVariables:{BfJHotx1u:BfJHotx1uw6TmBXcCF},webPageId:\"VSLRf8Pwa\"},implicitPathVariables:undefined},{href:{pathVariables:{BfJHotx1u:BfJHotx1uw6TmBXcCF},webPageId:\"VSLRf8Pwa\"},implicitPathVariables:undefined},{href:{pathVariables:{BfJHotx1u:BfJHotx1uw6TmBXcCF},webPageId:\"VSLRf8Pwa\"},implicitPathVariables:undefined},{href:{pathVariables:{BfJHotx1u:BfJHotx1uw6TmBXcCF},webPageId:\"VSLRf8Pwa\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px, 200px)`},E1ictNFva:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 48px) / 2, 200px)`},GLF7bKFOe:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 80px) / 2, 200px)`},pWRfhjFO_:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px) - 8px, 1280px) - 96px) / 3, 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:161,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px) - 8px, 1280px) - 112px) / 3, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pkkb5t-container\",nodeId:\"mPAp240YP\",scopeId:\"VSLRf8Pwa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d5ges8rMy:{MoZvXlqWH:resolvedLinks2[5]},E1ictNFva:{MoZvXlqWH:resolvedLinks2[4]},GLF7bKFOe:{MoZvXlqWH:resolvedLinks2[3]},MrjaGJ3Zp:{MoZvXlqWH:resolvedLinks2[1]},pWRfhjFO_:{MoZvXlqWH:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(CardsDefaultCard,{Arx2Qnybp:enumToDisplayNameFunctions1[\"z5lX1ip6O\"]?.(z5lX1ip6Ow6TmBXcCF,activeLocale),BP0C7oO5m:GUoZQOPbew6TmBXcCF,f_17DpIz7:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",height:\"100%\",id:\"mPAp240YP\",layoutId:\"mPAp240YP\",MoZvXlqWH:resolvedLinks2[0],N3TYMpmBc:numberToString(f6Up5M2OGw6TmBXcCF,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),oRc8Zscpl:MJ0mozLyow6TmBXcCF,pR_EWmE63:toResponsiveImage(epqrgRHkAw6TmBXcCF),style:{width:\"100%\"},UYU4kIAp5:\"var(--token-cc7207b5-20d8-4524-843a-150380cf0cc0, rgb(173, 168, 159))\",variant:\"zd7isKd9Y\",width:\"100%\",WtAuMlUfp:false})})})})})})})},idw6TmBXcCF);})})})})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BXU4A.framer-wyldk1, .framer-BXU4A .framer-wyldk1 { display: block; }\",\".framer-BXU4A.framer-19ivm3c { align-content: flex-start; align-items: flex-start; background-color: var(--token-68e8bb38-c584-4d6a-bdc9-edc8ff84d6b5, #0f0d0b); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-BXU4A .framer-yr3ud9 { flex: none; height: 1px; overflow: hidden; position: relative; width: 280px; }\",\".framer-BXU4A .framer-uznot9-container { flex: none; height: 100vh; left: 0px; max-width: 280px; position: fixed; top: 0px; width: 19%; z-index: 4; }\",\".framer-BXU4A .framer-1wyc8d1 { align-content: center; align-items: center; background-color: var(--token-5ee85e4e-038c-4523-bd1d-3fc8cd597d76, rgba(32, 30, 24, 0)); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 8px 8px 0px; position: relative; width: 1px; }\",\".framer-BXU4A .framer-1fk9z9 { align-content: center; align-items: center; background-color: var(--token-7508eb6d-f1cf-4af0-a70c-30216d788a33, rgba(0, 0, 0, 0.05)); 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: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; overflow-y: auto; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BXU4A .framer-1l96e4y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-1ezw4n4, .framer-BXU4A .framer-gofe7p, .framer-BXU4A .framer-wqha1f { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BXU4A .framer-7wl4zz-container, .framer-BXU4A .framer-1eebkcn-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-BXU4A .framer-1q7k062 { 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; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-BXU4A .framer-14oehid { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-1e3nwa7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BXU4A .framer-19jer9j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-BXU4A .framer-g5arkc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BXU4A .framer-1x2whlx { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-BXU4A .framer-1fjccee, .framer-BXU4A .framer-dxil8p, .framer-BXU4A .framer-ojfe4t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BXU4A .framer-sraqdh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-u0dc5a, .framer-BXU4A .framer-1d6mkff { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BXU4A .framer-zyp5il { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-1lkmytg { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-d8ihzm { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BXU4A .framer-f1k4j2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BXU4A .framer-8bh6pu { align-content: center; align-items: center; 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-BXU4A .framer-8qk09h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 1px; position: relative; width: min-content; }\",\".framer-BXU4A .framer-r175f2-container, .framer-BXU4A .framer-hom7p9-container, .framer-BXU4A .framer-1j2nlk5-container, .framer-BXU4A .framer-18g8tqo-container, .framer-BXU4A .framer-3vbavi-container, .framer-BXU4A .framer-1e1dy8z-container, .framer-BXU4A .framer-d4p41o-container, .framer-BXU4A .framer-1al15mo-container, .framer-BXU4A .framer-1x5vl43-container, .framer-BXU4A .framer-f9s84t-container, .framer-BXU4A .framer-1i93kwk-container, .framer-BXU4A .framer-1a17bu5-container, .framer-BXU4A .framer-1h4wjvd-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-BXU4A .framer-1qfuy8-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 433px); position: relative; width: 770px; }\",\".framer-BXU4A .framer-18hc3f8-container, .framer-BXU4A .framer-bjiob3-container, .framer-BXU4A .framer-144c6sb-container, .framer-BXU4A .framer-ypcqg1-container { height: 325px; position: relative; width: 480px; }\",\".framer-BXU4A .framer-1gcfdd6-container { height: 442px; position: relative; width: 653px; }\",\".framer-BXU4A .framer-1gkp4un-container { height: 404px; position: relative; width: 480px; }\",\".framer-BXU4A .framer-y4wwzc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-1kj095a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BXU4A .framer-2azm4e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BXU4A .framer-1rd2g9s, .framer-BXU4A .framer-1wj89lx { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-dbbqy6 { align-content: flex-start; align-items: flex-start; 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: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 320px; }\",\".framer-BXU4A .framer-in0xou { align-content: flex-start; align-items: flex-start; 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-BXU4A .framer-10eqai1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-BXU4A .framer-e0omkz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-zoh2di-container, .framer-BXU4A .framer-uvxneb-container, .framer-BXU4A .framer-1p2ccok-container, .framer-BXU4A .framer-19569s4-container, .framer-BXU4A .framer-1us3lo9-container, .framer-BXU4A .framer-wdvzo-container, .framer-BXU4A .framer-1jmifq2-container, .framer-BXU4A .framer-13rnb6d-container, .framer-BXU4A .framer-pastav-container, .framer-BXU4A .framer-1iuu0ie-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-BXU4A .framer-4yp4sr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-a3lgbr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 232px; word-break: break-word; word-wrap: break-word; }\",\".framer-BXU4A .framer-1nvakm4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-e8mxa1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-1wvlmrr, .framer-BXU4A .framer-c2suon { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-BXU4A .framer-w41wcv-container, .framer-BXU4A .framer-pkkb5t-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-BXU4A.framer-mz8zqt { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-BXU4A.framer-jkz7gj-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 80%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-BXU4A.framer-eihmja-container { cursor: pointer; flex: none; height: 36px; position: fixed; right: 15px; top: 15px; width: 36px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-BXU4A .framer-slfbqx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 0px 0px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BXU4A.framer-19ivm3c, .framer-BXU4A .framer-1wyc8d1, .framer-BXU4A .framer-1fk9z9, .framer-BXU4A .framer-1l96e4y, .framer-BXU4A .framer-1q7k062, .framer-BXU4A .framer-14oehid, .framer-BXU4A .framer-1e3nwa7, .framer-BXU4A .framer-g5arkc, .framer-BXU4A .framer-sraqdh, .framer-BXU4A .framer-zyp5il, .framer-BXU4A .framer-1lkmytg, .framer-BXU4A .framer-f1k4j2, .framer-BXU4A .framer-8qk09h, .framer-BXU4A .framer-1kj095a, .framer-BXU4A .framer-dbbqy6, .framer-BXU4A .framer-in0xou, .framer-BXU4A .framer-e0omkz, .framer-BXU4A .framer-4yp4sr, .framer-BXU4A .framer-1nvakm4, .framer-BXU4A .framer-e8mxa1, .framer-BXU4A .framer-slfbqx { gap: 0px; } .framer-BXU4A.framer-19ivm3c > *, .framer-BXU4A .framer-1lkmytg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BXU4A.framer-19ivm3c > :first-child, .framer-BXU4A .framer-1l96e4y > :first-child, .framer-BXU4A .framer-14oehid > :first-child, .framer-BXU4A .framer-g5arkc > :first-child, .framer-BXU4A .framer-1lkmytg > :first-child, .framer-BXU4A .framer-8qk09h > :first-child, .framer-BXU4A .framer-1nvakm4 > :first-child { margin-left: 0px; } .framer-BXU4A.framer-19ivm3c > :last-child, .framer-BXU4A .framer-1l96e4y > :last-child, .framer-BXU4A .framer-14oehid > :last-child, .framer-BXU4A .framer-g5arkc > :last-child, .framer-BXU4A .framer-1lkmytg > :last-child, .framer-BXU4A .framer-8qk09h > :last-child, .framer-BXU4A .framer-1nvakm4 > :last-child { margin-right: 0px; } .framer-BXU4A .framer-1wyc8d1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BXU4A .framer-1wyc8d1 > :first-child, .framer-BXU4A .framer-1fk9z9 > :first-child, .framer-BXU4A .framer-1q7k062 > :first-child, .framer-BXU4A .framer-1e3nwa7 > :first-child, .framer-BXU4A .framer-sraqdh > :first-child, .framer-BXU4A .framer-zyp5il > :first-child, .framer-BXU4A .framer-f1k4j2 > :first-child, .framer-BXU4A .framer-1kj095a > :first-child, .framer-BXU4A .framer-dbbqy6 > :first-child, .framer-BXU4A .framer-in0xou > :first-child, .framer-BXU4A .framer-e0omkz > :first-child, .framer-BXU4A .framer-4yp4sr > :first-child, .framer-BXU4A .framer-e8mxa1 > :first-child, .framer-BXU4A .framer-slfbqx > :first-child { margin-top: 0px; } .framer-BXU4A .framer-1wyc8d1 > :last-child, .framer-BXU4A .framer-1fk9z9 > :last-child, .framer-BXU4A .framer-1q7k062 > :last-child, .framer-BXU4A .framer-1e3nwa7 > :last-child, .framer-BXU4A .framer-sraqdh > :last-child, .framer-BXU4A .framer-zyp5il > :last-child, .framer-BXU4A .framer-f1k4j2 > :last-child, .framer-BXU4A .framer-1kj095a > :last-child, .framer-BXU4A .framer-dbbqy6 > :last-child, .framer-BXU4A .framer-in0xou > :last-child, .framer-BXU4A .framer-e0omkz > :last-child, .framer-BXU4A .framer-4yp4sr > :last-child, .framer-BXU4A .framer-e8mxa1 > :last-child, .framer-BXU4A .framer-slfbqx > :last-child { margin-bottom: 0px; } .framer-BXU4A .framer-1fk9z9 > *, .framer-BXU4A .framer-in0xou > *, .framer-BXU4A .framer-e8mxa1 > *, .framer-BXU4A .framer-slfbqx > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-BXU4A .framer-1l96e4y > *, .framer-BXU4A .framer-1nvakm4 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-BXU4A .framer-1q7k062 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BXU4A .framer-14oehid > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-BXU4A .framer-1e3nwa7 > *, .framer-BXU4A .framer-f1k4j2 > *, .framer-BXU4A .framer-dbbqy6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BXU4A .framer-g5arkc > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-BXU4A .framer-sraqdh > *, .framer-BXU4A .framer-4yp4sr > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-BXU4A .framer-zyp5il > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BXU4A .framer-8qk09h > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-BXU4A .framer-1kj095a > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BXU4A .framer-e0omkz > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 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,...sharedStyle14.css,'.framer-BXU4A[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-BXU4A [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-BXU4A[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-BXU4A [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-BXU4A[data-hide-scrollbars=\"true\"], .framer-BXU4A [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 1280px) and (max-width: 1439px) { .framer-BXU4A.framer-19ivm3c { width: 1280px; } .framer-BXU4A .framer-y4wwzc { gap: 96px; justify-content: flex-start; } .framer-BXU4A .framer-1kj095a { max-width: 640px; } .framer-BXU4A .framer-1rd2g9s, .framer-BXU4A .framer-1wj89lx { height: 300px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BXU4A .framer-y4wwzc { gap: 0px; } .framer-BXU4A .framer-y4wwzc > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-BXU4A .framer-y4wwzc > :first-child { margin-left: 0px; } .framer-BXU4A .framer-y4wwzc > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 1024px) and (max-width: 1279px) { .framer-BXU4A.framer-19ivm3c { width: 1024px; } .framer-BXU4A .framer-uznot9-container { max-width: 200px; } .framer-BXU4A .framer-8bh6pu { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; justify-content: flex-start; } .framer-BXU4A .framer-1qfuy8-container { height: var(--framer-aspect-ratio-supported, 423px); width: 752px; } .framer-BXU4A .framer-y4wwzc { gap: 96px; justify-content: flex-start; } .framer-BXU4A .framer-1rd2g9s, .framer-BXU4A .framer-1wj89lx { height: 200px; } .framer-BXU4A .framer-1wvlmrr, .framer-BXU4A .framer-c2suon { gap: 16px; grid-template-columns: repeat(3, minmax(96px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BXU4A .framer-8bh6pu, .framer-BXU4A .framer-y4wwzc, .framer-BXU4A .framer-1wvlmrr, .framer-BXU4A .framer-c2suon { gap: 0px; } .framer-BXU4A .framer-8bh6pu > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BXU4A .framer-8bh6pu > :first-child { margin-top: 0px; } .framer-BXU4A .framer-8bh6pu > :last-child { margin-bottom: 0px; } .framer-BXU4A .framer-y4wwzc > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-BXU4A .framer-y4wwzc > :first-child { margin-left: 0px; } .framer-BXU4A .framer-y4wwzc > :last-child { margin-right: 0px; } .framer-BXU4A .framer-1wvlmrr > *, .framer-BXU4A .framer-1wvlmrr > :first-child, .framer-BXU4A .framer-1wvlmrr > :last-child, .framer-BXU4A .framer-c2suon > *, .framer-BXU4A .framer-c2suon > :first-child, .framer-BXU4A .framer-c2suon > :last-child { margin: 0px; } }}\",\"@media (min-width: 768px) and (max-width: 1023px) { .framer-BXU4A.framer-19ivm3c { flex-direction: column; overflow: visible; width: 768px; } .framer-BXU4A .framer-uznot9-container { height: auto; left: unset; max-width: unset; position: sticky; width: 100%; } .framer-BXU4A .framer-1wyc8d1 { flex: none; padding: 0px; width: 100%; } .framer-BXU4A .framer-1fk9z9 { background-color: unset; } .framer-BXU4A .framer-8bh6pu { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; justify-content: flex-start; } .framer-BXU4A .framer-1qfuy8-container { height: var(--framer-aspect-ratio-supported, 398px); width: 707px; } .framer-BXU4A .framer-y4wwzc { gap: 66px; justify-content: flex-start; } .framer-BXU4A .framer-1rd2g9s, .framer-BXU4A .framer-1wj89lx { height: 200px; } .framer-BXU4A .framer-e8mxa1 { padding: 48px 0px 0px 0px; } .framer-BXU4A .framer-1wvlmrr, .framer-BXU4A .framer-c2suon { gap: 16px; grid-template-columns: repeat(2, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BXU4A.framer-19ivm3c, .framer-BXU4A .framer-8bh6pu, .framer-BXU4A .framer-y4wwzc, .framer-BXU4A .framer-1wvlmrr, .framer-BXU4A .framer-c2suon { gap: 0px; } .framer-BXU4A.framer-19ivm3c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BXU4A.framer-19ivm3c > :first-child, .framer-BXU4A .framer-8bh6pu > :first-child { margin-top: 0px; } .framer-BXU4A.framer-19ivm3c > :last-child, .framer-BXU4A .framer-8bh6pu > :last-child { margin-bottom: 0px; } .framer-BXU4A .framer-8bh6pu > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BXU4A .framer-y4wwzc > * { margin: 0px; margin-left: calc(66px / 2); margin-right: calc(66px / 2); } .framer-BXU4A .framer-y4wwzc > :first-child { margin-left: 0px; } .framer-BXU4A .framer-y4wwzc > :last-child { margin-right: 0px; } .framer-BXU4A .framer-1wvlmrr > *, .framer-BXU4A .framer-1wvlmrr > :first-child, .framer-BXU4A .framer-1wvlmrr > :last-child, .framer-BXU4A .framer-c2suon > *, .framer-BXU4A .framer-c2suon > :first-child, .framer-BXU4A .framer-c2suon > :last-child { margin: 0px; } }}\",\"@media (min-width: 640px) and (max-width: 767px) { .framer-BXU4A.framer-19ivm3c { flex-direction: column; overflow: visible; width: 640px; } .framer-BXU4A .framer-uznot9-container { height: auto; left: unset; max-width: unset; position: sticky; width: 100%; z-index: 10; } .framer-BXU4A .framer-1wyc8d1 { flex: none; padding: 0px; width: 100%; } .framer-BXU4A .framer-1fk9z9 { background-color: unset; border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; gap: 24px; padding: 16px; will-change: unset; } .framer-BXU4A .framer-8bh6pu { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; justify-content: flex-start; } .framer-BXU4A .framer-1qfuy8-container { height: var(--framer-aspect-ratio-supported, 342px); width: 608px; } .framer-BXU4A .framer-y4wwzc { gap: 48px; justify-content: flex-start; } .framer-BXU4A .framer-2azm4e { order: 0; } .framer-BXU4A .framer-1rd2g9s { height: 200px; order: 1; } .framer-BXU4A .framer-1wj89lx { height: 200px; order: 3; } .framer-BXU4A .framer-dbbqy6 { width: 280px; } .framer-BXU4A .framer-e8mxa1 { padding: 48px 0px 0px 0px; } .framer-BXU4A .framer-1wvlmrr, .framer-BXU4A .framer-c2suon { gap: 16px; grid-template-columns: repeat(2, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BXU4A.framer-19ivm3c, .framer-BXU4A .framer-1fk9z9, .framer-BXU4A .framer-8bh6pu, .framer-BXU4A .framer-y4wwzc, .framer-BXU4A .framer-1wvlmrr, .framer-BXU4A .framer-c2suon { gap: 0px; } .framer-BXU4A.framer-19ivm3c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BXU4A.framer-19ivm3c > :first-child, .framer-BXU4A .framer-1fk9z9 > :first-child, .framer-BXU4A .framer-8bh6pu > :first-child { margin-top: 0px; } .framer-BXU4A.framer-19ivm3c > :last-child, .framer-BXU4A .framer-1fk9z9 > :last-child, .framer-BXU4A .framer-8bh6pu > :last-child { margin-bottom: 0px; } .framer-BXU4A .framer-1fk9z9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BXU4A .framer-8bh6pu > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BXU4A .framer-y4wwzc > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-BXU4A .framer-y4wwzc > :first-child { margin-left: 0px; } .framer-BXU4A .framer-y4wwzc > :last-child { margin-right: 0px; } .framer-BXU4A .framer-1wvlmrr > *, .framer-BXU4A .framer-1wvlmrr > :first-child, .framer-BXU4A .framer-1wvlmrr > :last-child, .framer-BXU4A .framer-c2suon > *, .framer-BXU4A .framer-c2suon > :first-child, .framer-BXU4A .framer-c2suon > :last-child { margin: 0px; } }}\",\"@media (max-width: 639px) { .framer-BXU4A.framer-19ivm3c { flex-direction: column; overflow: visible; width: 375px; } .framer-BXU4A .framer-uznot9-container { height: auto; left: unset; max-width: unset; position: sticky; width: 100%; } .framer-BXU4A .framer-1wyc8d1 { flex: none; padding: 0px; width: 100%; } .framer-BXU4A .framer-1fk9z9 { background-color: unset; gap: 24px; padding: 16px; } .framer-BXU4A .framer-1q7k062 { gap: 30px; } .framer-BXU4A .framer-14oehid { flex-direction: column; } .framer-BXU4A .framer-1e3nwa7, .framer-BXU4A .framer-f1k4j2, .framer-BXU4A .framer-1kj095a { flex: none; width: 100%; } .framer-BXU4A .framer-8bh6pu { flex-direction: column; gap: 12px; justify-content: flex-start; } .framer-BXU4A .framer-8qk09h { flex-direction: column; width: 100%; } .framer-BXU4A .framer-r175f2-container, .framer-BXU4A .framer-hom7p9-container, .framer-BXU4A .framer-1j2nlk5-container, .framer-BXU4A .framer-dbbqy6 { width: 100%; } .framer-BXU4A .framer-1qfuy8-container { height: var(--framer-aspect-ratio-supported, 193px); width: 343px; } .framer-BXU4A .framer-y4wwzc { flex-direction: column; gap: 30px; justify-content: flex-start; } .framer-BXU4A .framer-1rd2g9s, .framer-BXU4A .framer-1wj89lx { height: 200px; } .framer-BXU4A .framer-in0xou, .framer-BXU4A .framer-e8mxa1, .framer-BXU4A .framer-slfbqx { padding: 38px 0px 0px 0px; } .framer-BXU4A .framer-1wvlmrr, .framer-BXU4A .framer-c2suon { gap: 16px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BXU4A.framer-19ivm3c, .framer-BXU4A .framer-1fk9z9, .framer-BXU4A .framer-1q7k062, .framer-BXU4A .framer-14oehid, .framer-BXU4A .framer-8bh6pu, .framer-BXU4A .framer-8qk09h, .framer-BXU4A .framer-y4wwzc, .framer-BXU4A .framer-1wvlmrr, .framer-BXU4A .framer-c2suon { gap: 0px; } .framer-BXU4A.framer-19ivm3c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BXU4A.framer-19ivm3c > :first-child, .framer-BXU4A .framer-1fk9z9 > :first-child, .framer-BXU4A .framer-1q7k062 > :first-child, .framer-BXU4A .framer-14oehid > :first-child, .framer-BXU4A .framer-8bh6pu > :first-child, .framer-BXU4A .framer-8qk09h > :first-child, .framer-BXU4A .framer-y4wwzc > :first-child { margin-top: 0px; } .framer-BXU4A.framer-19ivm3c > :last-child, .framer-BXU4A .framer-1fk9z9 > :last-child, .framer-BXU4A .framer-1q7k062 > :last-child, .framer-BXU4A .framer-14oehid > :last-child, .framer-BXU4A .framer-8bh6pu > :last-child, .framer-BXU4A .framer-8qk09h > :last-child, .framer-BXU4A .framer-y4wwzc > :last-child { margin-bottom: 0px; } .framer-BXU4A .framer-1fk9z9 > *, .framer-BXU4A .framer-14oehid > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BXU4A .framer-1q7k062 > *, .framer-BXU4A .framer-y4wwzc > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BXU4A .framer-8bh6pu > *, .framer-BXU4A .framer-8qk09h > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BXU4A .framer-1wvlmrr > *, .framer-BXU4A .framer-1wvlmrr > :first-child, .framer-BXU4A .framer-1wvlmrr > :last-child, .framer-BXU4A .framer-c2suon > *, .framer-BXU4A .framer-c2suon > :first-child, .framer-BXU4A .framer-c2suon > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2548\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MrjaGJ3Zp\":{\"layout\":[\"fixed\",\"auto\"]},\"pWRfhjFO_\":{\"layout\":[\"fixed\",\"auto\"]},\"GLF7bKFOe\":{\"layout\":[\"fixed\",\"auto\"]},\"E1ictNFva\":{\"layout\":[\"fixed\",\"auto\"]},\"d5ges8rMy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate false\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerVSLRf8Pwa=withCSS(Component,css,\"framer-BXU4A\");export default FramerVSLRf8Pwa;FramerVSLRf8Pwa.displayName=\"Page\";FramerVSLRf8Pwa.defaultProps={height:2548,width:1440};addFonts(FramerVSLRf8Pwa,[{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:\"GT Walsheim Pro Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/NdbiPWu9gbJiOscsVzwYivFmdaM.woff2\"},{family:\"Rethink Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/D89RM8Nk5iIvA8y2QlxB94YWnA.woff2\"}]},...NavigaiontSidebarNavigationFonts,...PhosphorFonts,...ElementsButtonFonts,...Card3Fonts,...SlideshowFonts,...AccordionFonts,...CategoryButtonsFonts,...CardsDefaultCardFonts,...YouTubeFonts,...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),...getFontsFromSharedStyle(sharedStyle14.fonts),...componentPresets.fonts?.[\"f22UWahBD\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"f22UWahBD\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVSLRf8Pwa\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"false\",\"framerIntrinsicHeight\":\"2548\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MrjaGJ3Zp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pWRfhjFO_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GLF7bKFOe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E1ictNFva\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d5ges8rMy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "yXmZ3xg9p", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerbpxmHomiU", "withCSS", "bpxmHomiU_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "name1", "question", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "P24TPiZmx", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap14t31bu", "args", "onTap1jcety2", "onTaprxpkn7", "onTap1cofjzi", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerN_Bjbhh5v", "withCSS", "N_Bjbhh5v_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "N_Bjbhh5v_default", "RowControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "answer", "background", "height", "id", "name1", "question", "variant1", "width", "props", "_ref", "_humanReadableEnumMap_variant1", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GPtq3j4Hg", "azKE1YwRS", "UjVc9DITl", "ZQAlzPDJU", "jiuoPjn8W", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerRQul9RUy1", "withCSS", "RQul9RUy1_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "NavigaiontSidebarNavigationFonts", "getFonts", "ZR9Jey8PM_default", "PhosphorFonts", "Icon", "ElementsButtonFonts", "E0OQVGGJ0_default", "Card3Fonts", "PFGudeweL_default", "SlideshowFonts", "Slideshow", "AccordionFonts", "RQul9RUy1_default", "CategoryButtonsFonts", "bpxmHomiU_default", "CardsDefaultCardFonts", "N_46tRfKe_default", "YouTubeFonts", "Youtube", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "isSet", "value", "toResponsiveImage", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "animation2", "transformTemplate1", "_", "animation3", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "Y8_D95nXM_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "className", "layoutId", "variant", "BfJHotx1u", "GUoZQOPbe", "qXfTwiOtC", "JRrktpqT5", "FxvXnpvz6", "HwKsg5EPJ", "jqvAYLMSD", "IIVpE4OOQ", "KmfoJc6m3", "skQYAcuso", "btu7fWpbu", "rSwjBR4h3", "hQxPHG2c_", "PCtKIA342", "SvwJ46vGc", "sQg0awG6W", "NIysuDeEA", "dn42PeSTA", "ocZo8WVIQ", "dnMOaAMJD", "hfOzAgqHp", "r4S3PcCEA", "ehDU1cfj5", "Uu3Far3V8", "y7C9Iehnf", "YZ0H2Y4r9", "AntX5DomV", "ffMRamhYO", "oTG6uMMlm", "OxQ0tlovt", "zANulJFj1", "Nh4xG1uey", "Eo3hGTn5V", "kRZuc5uv3BncXihKRZ", "xkPHXT2SzBncXihKRZ", "Vz7yUObmfBncXihKRZ", "f6Up5M2OGBncXihKRZ", "z1N4cd7vKBncXihKRZ", "FjAEZva52BncXihKRZ", "ab1hhKxynBncXihKRZ", "idBncXihKRZ", "GUoZQOPbew6TmBXcCF", "epqrgRHkAw6TmBXcCF", "z5lX1ip6Ow6TmBXcCF", "BfJHotx1uw6TmBXcCF", "f6Up5M2OGw6TmBXcCF", "MJ0mozLyow6TmBXcCF", "idw6TmBXcCF", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "ijP_E71dh3bnx0g", "overlay", "loadMore", "args", "onClick1wnntms", "scopingClassNames", "cx", "router", "useRouter", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "ZR9Jey8PM_default", "RichText2", "x", "Link", "Icon", "MotionDivWithOptimizedAppearEffect", "Image2", "ResolveLinks", "resolvedLinks", "E0OQVGGJ0_default", "resolvedLinks1", "Slideshow", "PFGudeweL_default", "ComponentPresetsProvider", "RQul9RUy1_default", "bpxmHomiU_default", "ChildrenCanSuspend", "mpvPWr82u_default", "collection", "paginationInfo", "l", "index", "PathVariablesContext", "N_46tRfKe_default", "enumToDisplayNameFunctions", "AnimatePresence", "Ga", "Youtube", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks2", "css", "FramerVSLRf8Pwa", "withCSS", "VSLRf8Pwa_default", "addFonts", "NavigaiontSidebarNavigationFonts", "PhosphorFonts", "ElementsButtonFonts", "Card3Fonts", "SlideshowFonts", "AccordionFonts", "CategoryButtonsFonts", "CardsDefaultCardFonts", "YouTubeFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
