{
  "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/3ke8FXgr9rKFR83IDgV2/EIYttIXFJRgRdV2dgAQk/Hizkjx9bs.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 (af04cc1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import ScrollToTopButton from\"#framer/local/canvasComponent/A6CEGSP5X/A6CEGSP5X.js\";import Footer from\"#framer/local/canvasComponent/EFt8j0AFn/EFt8j0AFn.js\";import Nav from\"#framer/local/canvasComponent/XP9PKE78G/XP9PKE78G.js\";import Button from\"#framer/local/canvasComponent/zIwM3GZOC/zIwM3GZOC.js\";import Product from\"#framer/local/collection/j01HyGSYA/j01HyGSYA.js\";import*as sharedStyle4 from\"#framer/local/css/CQ4LJEFCY/CQ4LJEFCY.js\";import*as sharedStyle from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle3 from\"#framer/local/css/TdPIFrOmc/TdPIFrOmc.js\";import*as sharedStyle2 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import*as sharedStyle1 from\"#framer/local/css/Zq2I6ukW1/Zq2I6ukW1.js\";import metadataProvider from\"#framer/local/webPageMetadata/Hizkjx9bs/Hizkjx9bs.js\";const NavFonts=getFonts(Nav);const NavWithVariantAppearEffect=withVariantAppearEffect(Nav);const ButtonFonts=getFonts(Button);const SlideshowFonts=getFonts(Slideshow);const FooterFonts=getFonts(Footer);const ScrollToTopButtonFonts=getFonts(ScrollToTopButton);const ContainerWithFX=withFX(Container);const breakpoints={f6h2XQlAm:\"(max-width: 809px)\",PZWsH4VOm:\"(min-width: 810px) and (max-width: 1199px)\",vQrRYghA5:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-WKBNw\";const variantClassNames={f6h2XQlAm:\"framer-v-mggfpd\",PZWsH4VOm:\"framer-v-28x0ks\",vQrRYghA5:\"framer-v-1cg6c0i\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"vQrRYghA5\",Phone:\"f6h2XQlAm\",Tablet:\"PZWsH4VOm\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;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:\"vQrRYghA5\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Hizkjx9bs\",data:Product,type:\"Collection\"},select:[{collection:\"Hizkjx9bs\",name:\"kYzfAXXor\",type:\"Identifier\"},{collection:\"Hizkjx9bs\",name:\"oXocv0fdr\",type:\"Identifier\"},{collection:\"Hizkjx9bs\",name:\"OBNOyOMho\",type:\"Identifier\"},{collection:\"Hizkjx9bs\",name:\"g37rJrJPr\",type:\"Identifier\"},{collection:\"Hizkjx9bs\",name:\"WzXdmESth\",type:\"Identifier\"},{collection:\"Hizkjx9bs\",name:\"Di9WLvI6v\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Hizkjx9bs\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4;const{style,className,layoutId,variant,oXocv0fdr=(_getFromCurrentRouteData=getFromCurrentRouteData(\"oXocv0fdr\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",g37rJrJPr=getFromCurrentRouteData(\"g37rJrJPr\"),kYzfAXXor=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"kYzfAXXor\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",Di9WLvI6v=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"Di9WLvI6v\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",OBNOyOMho=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"OBNOyOMho\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",WzXdmESth=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"WzXdmESth\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",kYzfAXXorWCPUbpp8j,OBNOyOMhoWCPUbpp8j,g37rJrJPrWCPUbpp8j,oXocv0fdrWCPUbpp8j,idWCPUbpp8j,kYzfAXXorlMTX8kj8b,OBNOyOMholMTX8kj8b,g37rJrJPrlMTX8kj8b,oXocv0fdrlMTX8kj8b,idlMTX8kj8b,kYzfAXXorSgQaFlERZ,OBNOyOMhoSgQaFlERZ,g37rJrJPrSgQaFlERZ,oXocv0fdrSgQaFlERZ,idSgQaFlERZ,kYzfAXXorkfyvyYHZf,OBNOyOMhokfyvyYHZf,g37rJrJPrkfyvyYHZf,oXocv0fdrkfyvyYHZf,idkfyvyYHZf,kYzfAXXorhlMNtbtYQ,OBNOyOMhohlMNtbtYQ,g37rJrJPrhlMNtbtYQ,oXocv0fdrhlMNtbtYQ,idhlMNtbtYQ,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-WKBNw`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-WKBNw`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const ref2=React.useRef(null);const elementId=useRouteElementId(\"WRoJO9SLR\");const elementId1=useRouteElementId(\"B8OOdoOIB\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"vQrRYghA5\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1cg6c0i\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":B8OOdoOIB\",pathVariables:{oXocv0fdr},webPageId:\"Hizkjx9bs\"},implicitPathVariables:undefined},{href:{hash:\":B8OOdoOIB\",pathVariables:{oXocv0fdr},webPageId:\"Hizkjx9bs\"},implicitPathVariables:undefined},{href:{hash:\":B8OOdoOIB\",pathVariables:{oXocv0fdr},webPageId:\"Hizkjx9bs\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oh6a9r-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f6h2XQlAm:{__framer__targets:[{ref:ref2,target:\"KJbiIXQsr\"}],variant:\"twn0QikEF\",wrxZ9cgl7:resolvedLinks[2]},PZWsH4VOm:{__framer__targets:[{ref:ref2,target:\"KJbiIXQsr\"}],variant:\"twn0QikEF\",wrxZ9cgl7:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(NavWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"PZDNyIBFk\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"mfL6icKOY\",layoutId:\"mfL6icKOY\",RT3vWdZw2:\"rgb(255, 255, 255)\",style:{width:\"100%\"},variant:\"wCYyvqhA0\",width:\"100%\",wrxZ9cgl7:resolvedLinks[0]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gdxih2\",\"data-framer-name\":\"Product Information\",name:\"Product Information\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tq852h\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ne481z\",\"data-framer-name\":\"Product\",name:\"Product\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wvnrgy\",\"data-framer-name\":\"Row\",name:\"Row\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f6h2XQlAm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(96),sizes:\"max(min(100vw - 40px, 1000px), 1px)\",...toResponsiveImage(g37rJrJPr)}},PZWsH4VOm:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(112),sizes:\"max(min(100vw - 64px, 1000px), 1px)\",...toResponsiveImage(g37rJrJPr),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(192),sizes:\"483px\",...toResponsiveImage(g37rJrJPr)},className:\"framer-h2nhrn\",\"data-framer-name\":\"Banner\",name:\"Banner\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n4rdg\",\"data-framer-name\":\"Column\",name:\"Column\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ucq9e\",\"data-framer-name\":\"Product Description\",name:\"Product Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Radiant Lip Treatment\"})}),className:\"framer-1cqdukl\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:kYzfAXXor,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Di9WLvI6v,className:\"framer-4dyhex\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-ci2ngw\",p:\"framer-styles-preset-1uqp2xw\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35))\"},children:\"$25.00\"})}),className:\"framer-128i16i\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],name:\"Price\",text:OBNOyOMho,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hdg6hu\",\"data-framer-name\":\"Form Submit\",name:\"Form Submit\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:WzXdmESth,implicitPathVariables:undefined},{href:WzXdmESth,implicitPathVariables:undefined},{href:WzXdmESth,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f6h2XQlAm:{y:672},PZWsH4VOm:{y:728}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"130px\",y:486,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n5cg8f-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f6h2XQlAm:{aWw_6KcCZ:resolvedLinks1[2]},PZWsH4VOm:{aWw_6KcCZ:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolvedLinks1[0],cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"NnZ2WSJIj\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:true,layoutId:\"NnZ2WSJIj\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{width:\"100%\"},t9X5DFqyQ:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",tQqXqVioD:false,TTxnyLF_5:\"Buy now\",variant:\"gkzTNVciA\",VqIbSwMW5:24,width:\"100%\"})})})})})})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ovv1a2\",\"data-framer-name\":\"Addtional Products\",id:elementId,name:\"Addtional Products\",ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c4q5od\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\"},children:\"Additional products\"})}),className:\"framer-mf0hj1\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p4d3t3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f6h2XQlAm:{arrowOptions:{arrowFill:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35))\",arrowGap:8,arrowPadding:100,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"top-right\",arrowRadius:32,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:24,showMouseControls:true},direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},itemAmount:1},PZWsH4VOm:{arrowOptions:{arrowFill:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35))\",arrowGap:8,arrowPadding:100,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"top-right\",arrowRadius:24,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:24,showMouseControls:true},itemAmount:2}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35))\",arrowGap:8,arrowPadding:100,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"top-right\",arrowRadius:32,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:32,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",id:\"cqak0c49I\",intervalControl:1.5,itemAmount:3,layoutId:\"cqak0c49I\",padding:0,paddingBottom:80,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:70,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(motion.div,{className:\"framer-1ablm1k\",\"data-framer-name\":\"Products CMS - 0\",name:\"Products CMS - 0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"WCPUbpp8j\",data:Product,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"WCPUbpp8j\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"WCPUbpp8j\",name:\"kYzfAXXor\",type:\"Identifier\"},{collection:\"WCPUbpp8j\",name:\"OBNOyOMho\",type:\"Identifier\"},{collection:\"WCPUbpp8j\",name:\"g37rJrJPr\",type:\"Identifier\"},{collection:\"WCPUbpp8j\",name:\"oXocv0fdr\",type:\"Identifier\"},{collection:\"WCPUbpp8j\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({g37rJrJPr:g37rJrJPrWCPUbpp8j,id:idWCPUbpp8j,kYzfAXXor:kYzfAXXorWCPUbpp8j,OBNOyOMho:OBNOyOMhoWCPUbpp8j,oXocv0fdr:oXocv0fdrWCPUbpp8j},i)=>{kYzfAXXorWCPUbpp8j!==null&&kYzfAXXorWCPUbpp8j!==void 0?kYzfAXXorWCPUbpp8j:kYzfAXXorWCPUbpp8j=\"\";OBNOyOMhoWCPUbpp8j!==null&&OBNOyOMhoWCPUbpp8j!==void 0?OBNOyOMhoWCPUbpp8j:OBNOyOMhoWCPUbpp8j=\"\";oXocv0fdrWCPUbpp8j!==null&&oXocv0fdrWCPUbpp8j!==void 0?oXocv0fdrWCPUbpp8j:oXocv0fdrWCPUbpp8j=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WCPUbpp8j-${idWCPUbpp8j}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oXocv0fdr:oXocv0fdrWCPUbpp8j},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6e64nc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kib8rp\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",children:\"Radiant Eye Cream\"})}),className:\"framer-4c5ohw\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:kYzfAXXorWCPUbpp8j,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e21h0x\",\"data-styles-preset\":\"CQ4LJEFCY\",style:{\"--framer-text-color\":\"var(--token-d1d09a71-62b2-422a-84b5-fafafe0e77c9, rgb(227, 213, 202))\"},children:\"$40\"})}),className:\"framer-1ydl7s8\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],name:\"Price\",text:OBNOyOMhoWCPUbpp8j,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"242px\",...toResponsiveImage(g37rJrJPrWCPUbpp8j)},className:\"framer-cbp4ii\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q38w6m\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oXocv0fdr:oXocv0fdrWCPUbpp8j},webPageId:\"Hizkjx9bs\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cipwx0-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolvedLinks2[0],cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"kfZ8DPiAM\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"kfZ8DPiAM\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"j66KskKjI\",VqIbSwMW5:24,width:\"100%\"})})})})})]})})},idWCPUbpp8j);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dzedj6\",\"data-framer-name\":\"Products CMS - 1\",name:\"Products CMS - 1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lMTX8kj8b\",data:Product,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"lMTX8kj8b\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"lMTX8kj8b\",name:\"kYzfAXXor\",type:\"Identifier\"},{collection:\"lMTX8kj8b\",name:\"OBNOyOMho\",type:\"Identifier\"},{collection:\"lMTX8kj8b\",name:\"g37rJrJPr\",type:\"Identifier\"},{collection:\"lMTX8kj8b\",name:\"oXocv0fdr\",type:\"Identifier\"},{collection:\"lMTX8kj8b\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({g37rJrJPr:g37rJrJPrlMTX8kj8b,id:idlMTX8kj8b,kYzfAXXor:kYzfAXXorlMTX8kj8b,OBNOyOMho:OBNOyOMholMTX8kj8b,oXocv0fdr:oXocv0fdrlMTX8kj8b},i)=>{kYzfAXXorlMTX8kj8b!==null&&kYzfAXXorlMTX8kj8b!==void 0?kYzfAXXorlMTX8kj8b:kYzfAXXorlMTX8kj8b=\"\";OBNOyOMholMTX8kj8b!==null&&OBNOyOMholMTX8kj8b!==void 0?OBNOyOMholMTX8kj8b:OBNOyOMholMTX8kj8b=\"\";oXocv0fdrlMTX8kj8b!==null&&oXocv0fdrlMTX8kj8b!==void 0?oXocv0fdrlMTX8kj8b:oXocv0fdrlMTX8kj8b=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lMTX8kj8b-${idlMTX8kj8b}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oXocv0fdr:oXocv0fdrlMTX8kj8b},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8jg1os\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19hailu\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",children:\"Radiant Renewal Night Cream\"})}),className:\"framer-10huyev\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:kYzfAXXorlMTX8kj8b,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e21h0x\",\"data-styles-preset\":\"CQ4LJEFCY\",style:{\"--framer-text-color\":\"var(--token-d1d09a71-62b2-422a-84b5-fafafe0e77c9, rgb(227, 213, 202))\"},children:\"$50\"})}),className:\"framer-2t68wm\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],name:\"Price\",text:OBNOyOMholMTX8kj8b,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"242px\",...toResponsiveImage(g37rJrJPrlMTX8kj8b)},className:\"framer-rblqfo\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ptlbku\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oXocv0fdr:oXocv0fdrlMTX8kj8b},webPageId:\"Hizkjx9bs\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lttisq-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolvedLinks3[0],cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"DmuKmbs_j\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"DmuKmbs_j\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"j66KskKjI\",VqIbSwMW5:24,width:\"100%\"})})})})})]})})},idlMTX8kj8b);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tcne8r\",\"data-framer-name\":\"Products CMS - 2\",name:\"Products CMS - 2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SgQaFlERZ\",data:Product,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"SgQaFlERZ\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"SgQaFlERZ\",name:\"kYzfAXXor\",type:\"Identifier\"},{collection:\"SgQaFlERZ\",name:\"OBNOyOMho\",type:\"Identifier\"},{collection:\"SgQaFlERZ\",name:\"g37rJrJPr\",type:\"Identifier\"},{collection:\"SgQaFlERZ\",name:\"oXocv0fdr\",type:\"Identifier\"},{collection:\"SgQaFlERZ\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({g37rJrJPr:g37rJrJPrSgQaFlERZ,id:idSgQaFlERZ,kYzfAXXor:kYzfAXXorSgQaFlERZ,OBNOyOMho:OBNOyOMhoSgQaFlERZ,oXocv0fdr:oXocv0fdrSgQaFlERZ},i)=>{kYzfAXXorSgQaFlERZ!==null&&kYzfAXXorSgQaFlERZ!==void 0?kYzfAXXorSgQaFlERZ:kYzfAXXorSgQaFlERZ=\"\";OBNOyOMhoSgQaFlERZ!==null&&OBNOyOMhoSgQaFlERZ!==void 0?OBNOyOMhoSgQaFlERZ:OBNOyOMhoSgQaFlERZ=\"\";oXocv0fdrSgQaFlERZ!==null&&oXocv0fdrSgQaFlERZ!==void 0?oXocv0fdrSgQaFlERZ:oXocv0fdrSgQaFlERZ=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SgQaFlERZ-${idSgQaFlERZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oXocv0fdr:oXocv0fdrSgQaFlERZ},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16p3jnd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h4kuu7\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",children:\"Radiant Glow Moisturizing Cream\"})}),className:\"framer-1w0xhx8\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:kYzfAXXorSgQaFlERZ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e21h0x\",\"data-styles-preset\":\"CQ4LJEFCY\",style:{\"--framer-text-color\":\"var(--token-d1d09a71-62b2-422a-84b5-fafafe0e77c9, rgb(227, 213, 202))\"},children:\"$30\"})}),className:\"framer-1xzoccf\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],name:\"Price\",text:OBNOyOMhoSgQaFlERZ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"242px\",...toResponsiveImage(g37rJrJPrSgQaFlERZ)},className:\"framer-49u0ge\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17of2m9\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oXocv0fdr:oXocv0fdrSgQaFlERZ},webPageId:\"Hizkjx9bs\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tozjq5-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolvedLinks4[0],cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"AGn4QdFUy\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"AGn4QdFUy\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"j66KskKjI\",VqIbSwMW5:24,width:\"100%\"})})})})})]})})},idSgQaFlERZ);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2oiw99\",\"data-framer-name\":\"Products CMS - 3\",name:\"Products CMS - 3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kfyvyYHZf\",data:Product,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"kfyvyYHZf\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"kfyvyYHZf\",name:\"kYzfAXXor\",type:\"Identifier\"},{collection:\"kfyvyYHZf\",name:\"OBNOyOMho\",type:\"Identifier\"},{collection:\"kfyvyYHZf\",name:\"g37rJrJPr\",type:\"Identifier\"},{collection:\"kfyvyYHZf\",name:\"oXocv0fdr\",type:\"Identifier\"},{collection:\"kfyvyYHZf\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({g37rJrJPr:g37rJrJPrkfyvyYHZf,id:idkfyvyYHZf,kYzfAXXor:kYzfAXXorkfyvyYHZf,OBNOyOMho:OBNOyOMhokfyvyYHZf,oXocv0fdr:oXocv0fdrkfyvyYHZf},i)=>{kYzfAXXorkfyvyYHZf!==null&&kYzfAXXorkfyvyYHZf!==void 0?kYzfAXXorkfyvyYHZf:kYzfAXXorkfyvyYHZf=\"\";OBNOyOMhokfyvyYHZf!==null&&OBNOyOMhokfyvyYHZf!==void 0?OBNOyOMhokfyvyYHZf:OBNOyOMhokfyvyYHZf=\"\";oXocv0fdrkfyvyYHZf!==null&&oXocv0fdrkfyvyYHZf!==void 0?oXocv0fdrkfyvyYHZf:oXocv0fdrkfyvyYHZf=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kfyvyYHZf-${idkfyvyYHZf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oXocv0fdr:oXocv0fdrkfyvyYHZf},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j7p3d3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bjyj3m\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",children:\"Radiant Hydrating Serum\"})}),className:\"framer-tcf327\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:kYzfAXXorkfyvyYHZf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e21h0x\",\"data-styles-preset\":\"CQ4LJEFCY\",style:{\"--framer-text-color\":\"var(--token-d1d09a71-62b2-422a-84b5-fafafe0e77c9, rgb(227, 213, 202))\"},children:\"$45\"})}),className:\"framer-14kqbss\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],name:\"Price\",text:OBNOyOMhokfyvyYHZf,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"242px\",...toResponsiveImage(g37rJrJPrkfyvyYHZf)},className:\"framer-40ukhx\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u8apww\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oXocv0fdr:oXocv0fdrkfyvyYHZf},webPageId:\"Hizkjx9bs\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x3qdgz-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolvedLinks5[0],cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"oEQGORHE2\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"oEQGORHE2\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"j66KskKjI\",VqIbSwMW5:24,width:\"100%\"})})})})})]})})},idkfyvyYHZf);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14k4mms\",\"data-framer-name\":\"Products CMS - 4\",name:\"Products CMS - 4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"hlMNtbtYQ\",data:Product,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},orderBy:[{collection:\"hlMNtbtYQ\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"hlMNtbtYQ\",name:\"kYzfAXXor\",type:\"Identifier\"},{collection:\"hlMNtbtYQ\",name:\"OBNOyOMho\",type:\"Identifier\"},{collection:\"hlMNtbtYQ\",name:\"g37rJrJPr\",type:\"Identifier\"},{collection:\"hlMNtbtYQ\",name:\"oXocv0fdr\",type:\"Identifier\"},{collection:\"hlMNtbtYQ\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({g37rJrJPr:g37rJrJPrhlMNtbtYQ,id:idhlMNtbtYQ,kYzfAXXor:kYzfAXXorhlMNtbtYQ,OBNOyOMho:OBNOyOMhohlMNtbtYQ,oXocv0fdr:oXocv0fdrhlMNtbtYQ},i)=>{kYzfAXXorhlMNtbtYQ!==null&&kYzfAXXorhlMNtbtYQ!==void 0?kYzfAXXorhlMNtbtYQ:kYzfAXXorhlMNtbtYQ=\"\";OBNOyOMhohlMNtbtYQ!==null&&OBNOyOMhohlMNtbtYQ!==void 0?OBNOyOMhohlMNtbtYQ:OBNOyOMhohlMNtbtYQ=\"\";oXocv0fdrhlMNtbtYQ!==null&&oXocv0fdrhlMNtbtYQ!==void 0?oXocv0fdrhlMNtbtYQ:oXocv0fdrhlMNtbtYQ=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hlMNtbtYQ-${idhlMNtbtYQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oXocv0fdr:oXocv0fdrhlMNtbtYQ},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ubfaa7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x0jqwp\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",children:\"Radiant Firming Mask\"})}),className:\"framer-jirbml\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:kYzfAXXorhlMNtbtYQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e21h0x\",\"data-styles-preset\":\"CQ4LJEFCY\",style:{\"--framer-text-color\":\"var(--token-d1d09a71-62b2-422a-84b5-fafafe0e77c9, rgb(227, 213, 202))\"},children:\"$35\"})}),className:\"framer-n1cd9f\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],name:\"Price\",text:OBNOyOMhohlMNtbtYQ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"242px\",...toResponsiveImage(g37rJrJPrhlMNtbtYQ)},className:\"framer-1kto67i\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-61nob6\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oXocv0fdr:oXocv0fdrhlMNtbtYQ},webPageId:\"Hizkjx9bs\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19w3l82-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolvedLinks6[0],cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"eudVca6bj\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"eudVca6bj\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"j66KskKjI\",VqIbSwMW5:24,width:\"100%\"})})})})})]})})},idhlMNtbtYQ);})})})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f6h2XQlAm:{y:1443},PZWsH4VOm:{y:1508}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:952,width:\"100vw\",y:1266,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x2jsgn-container\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f6h2XQlAm:{variant:\"b1zf7R3hQ\"},PZWsH4VOm:{variant:\"uvSGLtcLb\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"B8OOdoOIB\",layoutId:\"B8OOdoOIB\",style:{width:\"100%\"},variant:\"FzBEdusPy\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f6h2XQlAm:{y:882},PZWsH4VOm:{y:646}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",y:926,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5xcoyk-container\",layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ScrollToTopButton,{DxFECmhqH:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35))\",height:\"100%\",id:\"oLMe5WKgE\",iJ_vf1x3s:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",layoutId:\"oLMe5WKgE\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-WKBNw { background: var(--token-e0bc5bc7-8344-43aa-b9e1-84cca4024d64, rgb(254, 249, 240)) /* {\"name\":\"1\"} */; }`,\".framer-WKBNw.framer-1a2g7k2, .framer-WKBNw .framer-1a2g7k2 { display: block; }\",\".framer-WKBNw.framer-1cg6c0i { align-content: center; align-items: center; background-color: var(--token-e0bc5bc7-8344-43aa-b9e1-84cca4024d64, #fef9f0); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-WKBNw .framer-1oh6a9r-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-WKBNw .framer-1gdxih2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 112px 64px 112px 64px; position: sticky; top: 0px; width: 100%; will-change: transform; }\",\".framer-WKBNw .framer-1tq852h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WKBNw .framer-1ne481z { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 483px; }\",\".framer-WKBNw .framer-1wvnrgy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WKBNw .framer-h2nhrn { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: 1 0 0px; height: 100%; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-WKBNw .framer-1n4rdg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WKBNw .framer-17ucq9e { 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: 0px; position: relative; width: 100%; }\",\".framer-WKBNw .framer-1cqdukl, .framer-WKBNw .framer-4dyhex, .framer-WKBNw .framer-1ydl7s8, .framer-WKBNw .framer-2t68wm, .framer-WKBNw .framer-1xzoccf, .framer-WKBNw .framer-14kqbss, .framer-WKBNw .framer-n1cd9f { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WKBNw .framer-128i16i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WKBNw .framer-1hdg6hu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-WKBNw .framer-1n5cg8f-container { flex: none; height: auto; position: relative; width: 130px; }\",\".framer-WKBNw .framer-1ovv1a2 { align-content: center; align-items: center; background-color: var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; z-index: 10; }\",\".framer-WKBNw .framer-c4q5od { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; left: calc(50.00000000000002% - min(1000px, 100%) / 2); max-width: 1000px; overflow: hidden; padding: 0px; position: absolute; top: 64px; width: 100%; }\",\".framer-WKBNw .framer-mf0hj1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 0; }\",\".framer-WKBNw .framer-1p4d3t3-container { flex: none; height: 490px; max-width: 1000px; position: relative; width: 1000px; }\",\".framer-WKBNw .framer-1ablm1k, .framer-WKBNw .framer-1dzedj6, .framer-WKBNw .framer-tcne8r, .framer-WKBNw .framer-2oiw99, .framer-WKBNw .framer-14k4mms { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 306px; }\",\".framer-WKBNw .framer-6e64nc, .framer-WKBNw .framer-8jg1os, .framer-WKBNw .framer-16p3jnd, .framer-WKBNw .framer-j7p3d3, .framer-WKBNw .framer-ubfaa7 { align-content: center; align-items: center; background-color: var(--token-e0bc5bc7-8344-43aa-b9e1-84cca4024d64, #fef9f0); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 400px; justify-content: flex-start; padding: 32px; position: relative; width: 1px; }\",\".framer-WKBNw .framer-1kib8rp, .framer-WKBNw .framer-19hailu, .framer-WKBNw .framer-h4kuu7, .framer-WKBNw .framer-bjyj3m, .framer-WKBNw .framer-1x0jqwp { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-WKBNw .framer-4c5ohw, .framer-WKBNw .framer-10huyev, .framer-WKBNw .framer-1w0xhx8, .framer-WKBNw .framer-tcf327, .framer-WKBNw .framer-jirbml { flex: none; height: 40px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WKBNw .framer-cbp4ii, .framer-WKBNw .framer-rblqfo, .framer-WKBNw .framer-49u0ge, .framer-WKBNw .framer-40ukhx, .framer-WKBNw .framer-1kto67i { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-WKBNw .framer-1q38w6m, .framer-WKBNw .framer-ptlbku, .framer-WKBNw .framer-17of2m9, .framer-WKBNw .framer-u8apww, .framer-WKBNw .framer-61nob6 { 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-WKBNw .framer-cipwx0-container, .framer-WKBNw .framer-1lttisq-container, .framer-WKBNw .framer-1tozjq5-container, .framer-WKBNw .framer-1x3qdgz-container, .framer-WKBNw .framer-19w3l82-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-WKBNw .framer-1x2jsgn-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-WKBNw .framer-5xcoyk-container { aspect-ratio: 1 / 1; bottom: 34px; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: fixed; right: 34px; width: 40px; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WKBNw.framer-1cg6c0i, .framer-WKBNw .framer-1gdxih2, .framer-WKBNw .framer-1tq852h, .framer-WKBNw .framer-1ne481z, .framer-WKBNw .framer-1wvnrgy, .framer-WKBNw .framer-1n4rdg, .framer-WKBNw .framer-17ucq9e, .framer-WKBNw .framer-1hdg6hu, .framer-WKBNw .framer-1ovv1a2, .framer-WKBNw .framer-c4q5od, .framer-WKBNw .framer-1ablm1k, .framer-WKBNw .framer-6e64nc, .framer-WKBNw .framer-1kib8rp, .framer-WKBNw .framer-1dzedj6, .framer-WKBNw .framer-8jg1os, .framer-WKBNw .framer-19hailu, .framer-WKBNw .framer-tcne8r, .framer-WKBNw .framer-16p3jnd, .framer-WKBNw .framer-h4kuu7, .framer-WKBNw .framer-2oiw99, .framer-WKBNw .framer-j7p3d3, .framer-WKBNw .framer-bjyj3m, .framer-WKBNw .framer-14k4mms, .framer-WKBNw .framer-ubfaa7, .framer-WKBNw .framer-1x0jqwp { gap: 0px; } .framer-WKBNw.framer-1cg6c0i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WKBNw.framer-1cg6c0i > :first-child, .framer-WKBNw .framer-1gdxih2 > :first-child, .framer-WKBNw .framer-1ne481z > :first-child, .framer-WKBNw .framer-1n4rdg > :first-child, .framer-WKBNw .framer-17ucq9e > :first-child, .framer-WKBNw .framer-1hdg6hu > :first-child, .framer-WKBNw .framer-1ovv1a2 > :first-child, .framer-WKBNw .framer-6e64nc > :first-child, .framer-WKBNw .framer-1kib8rp > :first-child, .framer-WKBNw .framer-8jg1os > :first-child, .framer-WKBNw .framer-19hailu > :first-child, .framer-WKBNw .framer-16p3jnd > :first-child, .framer-WKBNw .framer-h4kuu7 > :first-child, .framer-WKBNw .framer-j7p3d3 > :first-child, .framer-WKBNw .framer-bjyj3m > :first-child, .framer-WKBNw .framer-ubfaa7 > :first-child, .framer-WKBNw .framer-1x0jqwp > :first-child { margin-top: 0px; } .framer-WKBNw.framer-1cg6c0i > :last-child, .framer-WKBNw .framer-1gdxih2 > :last-child, .framer-WKBNw .framer-1ne481z > :last-child, .framer-WKBNw .framer-1n4rdg > :last-child, .framer-WKBNw .framer-17ucq9e > :last-child, .framer-WKBNw .framer-1hdg6hu > :last-child, .framer-WKBNw .framer-1ovv1a2 > :last-child, .framer-WKBNw .framer-6e64nc > :last-child, .framer-WKBNw .framer-1kib8rp > :last-child, .framer-WKBNw .framer-8jg1os > :last-child, .framer-WKBNw .framer-19hailu > :last-child, .framer-WKBNw .framer-16p3jnd > :last-child, .framer-WKBNw .framer-h4kuu7 > :last-child, .framer-WKBNw .framer-j7p3d3 > :last-child, .framer-WKBNw .framer-bjyj3m > :last-child, .framer-WKBNw .framer-ubfaa7 > :last-child, .framer-WKBNw .framer-1x0jqwp > :last-child { margin-bottom: 0px; } .framer-WKBNw .framer-1gdxih2 > * { margin: 0px; margin-bottom: calc(128px / 2); margin-top: calc(128px / 2); } .framer-WKBNw .framer-1tq852h > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-WKBNw .framer-1tq852h > :first-child, .framer-WKBNw .framer-1wvnrgy > :first-child, .framer-WKBNw .framer-c4q5od > :first-child, .framer-WKBNw .framer-1ablm1k > :first-child, .framer-WKBNw .framer-1dzedj6 > :first-child, .framer-WKBNw .framer-tcne8r > :first-child, .framer-WKBNw .framer-2oiw99 > :first-child, .framer-WKBNw .framer-14k4mms > :first-child { margin-left: 0px; } .framer-WKBNw .framer-1tq852h > :last-child, .framer-WKBNw .framer-1wvnrgy > :last-child, .framer-WKBNw .framer-c4q5od > :last-child, .framer-WKBNw .framer-1ablm1k > :last-child, .framer-WKBNw .framer-1dzedj6 > :last-child, .framer-WKBNw .framer-tcne8r > :last-child, .framer-WKBNw .framer-2oiw99 > :last-child, .framer-WKBNw .framer-14k4mms > :last-child { margin-right: 0px; } .framer-WKBNw .framer-1ne481z > *, .framer-WKBNw .framer-1hdg6hu > *, .framer-WKBNw .framer-6e64nc > *, .framer-WKBNw .framer-8jg1os > *, .framer-WKBNw .framer-16p3jnd > *, .framer-WKBNw .framer-j7p3d3 > *, .framer-WKBNw .framer-ubfaa7 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WKBNw .framer-1wvnrgy > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-WKBNw .framer-1n4rdg > *, .framer-WKBNw .framer-17ucq9e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-WKBNw .framer-1ovv1a2 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-WKBNw .framer-c4q5od > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WKBNw .framer-1ablm1k > *, .framer-WKBNw .framer-1dzedj6 > *, .framer-WKBNw .framer-tcne8r > *, .framer-WKBNw .framer-2oiw99 > *, .framer-WKBNw .framer-14k4mms > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-WKBNw .framer-1kib8rp > *, .framer-WKBNw .framer-19hailu > *, .framer-WKBNw .framer-h4kuu7 > *, .framer-WKBNw .framer-bjyj3m > *, .framer-WKBNw .framer-1x0jqwp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-WKBNw { background: var(--token-e0bc5bc7-8344-43aa-b9e1-84cca4024d64, rgb(254, 249, 240)) /* {\"name\":\"1\"} */; } .framer-WKBNw.framer-1cg6c0i { width: 810px; } .framer-WKBNw .framer-1gdxih2 { padding: 32px 32px 112px 32px; } .framer-WKBNw .framer-1tq852h { flex-direction: column; gap: 32px; } .framer-WKBNw .framer-1ne481z { align-self: unset; height: 290px; width: 100%; } .framer-WKBNw .framer-1n4rdg { flex: none; width: 100%; } .framer-WKBNw .framer-1ovv1a2 { padding: 64px 32px 64px 32px; } .framer-WKBNw .framer-c4q5od { left: 32px; width: 92%; } .framer-WKBNw .framer-1p4d3t3-container { width: 100%; } .framer-WKBNw .framer-5xcoyk-container { bottom: 314px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WKBNw .framer-1tq852h { gap: 0px; } .framer-WKBNw .framer-1tq852h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-WKBNw .framer-1tq852h > :first-child { margin-top: 0px; } .framer-WKBNw .framer-1tq852h > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-WKBNw { background: var(--token-e0bc5bc7-8344-43aa-b9e1-84cca4024d64, rgb(254, 249, 240)) /* {\"name\":\"1\"} */; } .framer-WKBNw.framer-1cg6c0i { width: 390px; } .framer-WKBNw .framer-1gdxih2 { padding: 16px 20px 112px 20px; } .framer-WKBNw .framer-1tq852h { flex-direction: column; gap: 32px; } .framer-WKBNw .framer-1ne481z { align-self: unset; height: 250px; width: 100%; } .framer-WKBNw .framer-1n4rdg { flex: none; width: 100%; } .framer-WKBNw .framer-1ovv1a2 { gap: 32px; padding: 64px 20px 64px 20px; } .framer-WKBNw .framer-c4q5od { left: 20px; width: min-content; } .framer-WKBNw .framer-1p4d3t3-container { height: 481px; width: 100%; } .framer-WKBNw .framer-5xcoyk-container { bottom: 78px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WKBNw .framer-1tq852h, .framer-WKBNw .framer-1ovv1a2 { gap: 0px; } .framer-WKBNw .framer-1tq852h > *, .framer-WKBNw .framer-1ovv1a2 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-WKBNw .framer-1tq852h > :first-child, .framer-WKBNw .framer-1ovv1a2 > :first-child { margin-top: 0px; } .framer-WKBNw .framer-1tq852h > :last-child, .framer-WKBNw .framer-1ovv1a2 > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2433\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PZWsH4VOm\":{\"layout\":[\"fixed\",\"auto\"]},\"f6h2XQlAm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerHizkjx9bs=withCSS(Component,css,\"framer-WKBNw\");export default FramerHizkjx9bs;FramerHizkjx9bs.displayName=\"Products\";FramerHizkjx9bs.defaultProps={height:2433,width:1200};addFonts(FramerHizkjx9bs,[{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\"}]},...NavFonts,...ButtonFonts,...SlideshowFonts,...FooterFonts,...ScrollToTopButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHizkjx9bs\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"2433\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PZWsH4VOm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f6h2XQlAm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"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", "NavFonts", "getFonts", "XP9PKE78G_default", "NavWithVariantAppearEffect", "withVariantAppearEffect", "ButtonFonts", "zIwM3GZOC_default", "SlideshowFonts", "Slideshow", "FooterFonts", "EFt8j0AFn_default", "ScrollToTopButtonFonts", "A6CEGSP5X_default", "ContainerWithFX", "withFX", "Container", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "j01HyGSYA_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "style", "className", "layoutId", "variant", "oXocv0fdr", "g37rJrJPr", "kYzfAXXor", "Di9WLvI6v", "OBNOyOMho", "WzXdmESth", "kYzfAXXorWCPUbpp8j", "OBNOyOMhoWCPUbpp8j", "g37rJrJPrWCPUbpp8j", "oXocv0fdrWCPUbpp8j", "idWCPUbpp8j", "kYzfAXXorlMTX8kj8b", "OBNOyOMholMTX8kj8b", "g37rJrJPrlMTX8kj8b", "oXocv0fdrlMTX8kj8b", "idlMTX8kj8b", "kYzfAXXorSgQaFlERZ", "OBNOyOMhoSgQaFlERZ", "g37rJrJPrSgQaFlERZ", "oXocv0fdrSgQaFlERZ", "idSgQaFlERZ", "kYzfAXXorkfyvyYHZf", "OBNOyOMhokfyvyYHZf", "g37rJrJPrkfyvyYHZf", "oXocv0fdrkfyvyYHZf", "idkfyvyYHZf", "kYzfAXXorhlMNtbtYQ", "OBNOyOMhohlMNtbtYQ", "g37rJrJPrhlMNtbtYQ", "oXocv0fdrhlMNtbtYQ", "idhlMNtbtYQ", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "ref2", "elementId", "useRouteElementId", "elementId1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "NavWithVariantAppearEffect", "getLoadingLazyAtYPosition", "Image2", "RichText2", "x", "resolvedLinks1", "zIwM3GZOC_default", "Slideshow", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "resolvedLinks2", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks3", "collection2", "paginationInfo2", "loadMore2", "resolvedLinks4", "collection3", "paginationInfo3", "loadMore3", "resolvedLinks5", "collection4", "paginationInfo4", "loadMore4", "resolvedLinks6", "EFt8j0AFn_default", "ContainerWithFX", "A6CEGSP5X_default", "css", "FramerHizkjx9bs", "withCSS", "Hizkjx9bs_default", "addFonts", "NavFonts", "ButtonFonts", "SlideshowFonts", "FooterFonts", "ScrollToTopButtonFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
