{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js", "ssg:https://framerusercontent.com/modules/CMWMGFKCzDCPO2q7ZGat/jhRPQ3Q5nK43MwqcTOpl/f7BGJ3TyB.js", "ssg:https://framerusercontent.com/modules/YObOgE5zPfWZEBcB4cCE/jQSntNahkAB2UVGcWhTT/cX_jqEroR.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(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?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){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?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (295c121)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/SzGu9Kkk32anXOGhHhJg/AwxXulGTp9AJnIplmltk/AQEzRM546.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/qwlHC0wvRRawyG1CNryo/tQKAzfSYhfcfTN73MVME/owhHK06SB.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/mJAu3VbjyPLFmYSntx88/2q2KwfcxxGzhzEUyDqIz/TwPbgrA1w.js\";const cycleOrder=[\"nl1ms9M5i\",\"Rh8vq7SEF\",\"fC5ht3fLu\",\"GB1amJWD3\",\"ybSr55toH\",\"ss8PvHJwv\",\"cHnhn4MEw\",\"cHAY6eA9B\",\"A7334OqUE\",\"hLNhFtV3o\",\"ihPHuCo1a\",\"okDHuYsBb\"];const serializationHash=\"framer-E7Fy8\";const variantClassNames={A7334OqUE:\"framer-v-1hl00fg\",cHAY6eA9B:\"framer-v-1mfr5zl\",cHnhn4MEw:\"framer-v-5tikxx\",fC5ht3fLu:\"framer-v-1jhswdg\",GB1amJWD3:\"framer-v-kkq7yb\",hLNhFtV3o:\"framer-v-1dgjehj\",ihPHuCo1a:\"framer-v-rljtlt\",nl1ms9M5i:\"framer-v-2dg1ip\",okDHuYsBb:\"framer-v-1m6kxqz\",Rh8vq7SEF:\"framer-v-1axa7a6\",ss8PvHJwv:\"framer-v-baxwjf\",ybSr55toH:\"framer-v-5i2d1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Craftsmen Desktop\":\"nl1ms9M5i\",\"Craftsmen mobile\":\"A7334OqUE\",\"Craftsmen Tablet\":\"ybSr55toH\",\"Designer Desktop\":\"Rh8vq7SEF\",\"Designer mobile\":\"hLNhFtV3o\",\"Designer Tablet\":\"ss8PvHJwv\",\"Experience Specialists Desktop\":\"fC5ht3fLu\",\"Experience Specialists Mobile\":\"ihPHuCo1a\",\"Experience Specialists Tablet\":\"cHnhn4MEw\",\"Sustainability experts Desktop\":\"GB1amJWD3\",\"Sustainability Experts mobile\":\"okDHuYsBb\",\"Sustainability Experts Tablet\":\"cHAY6eA9B\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nl1ms9M5i\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nl1ms9M5i\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1c6nooc=activeVariantCallback(async(...args)=>{setVariant(\"nl1ms9M5i\");});const onTapmwi8rv=activeVariantCallback(async(...args)=>{setVariant(\"ybSr55toH\");});const onTapgf1947=activeVariantCallback(async(...args)=>{setVariant(\"A7334OqUE\");});const onTapey97xa=activeVariantCallback(async(...args)=>{setVariant(\"Rh8vq7SEF\");});const onTapb9gh20=activeVariantCallback(async(...args)=>{setVariant(\"ss8PvHJwv\");});const onTap157dhce=activeVariantCallback(async(...args)=>{setVariant(\"hLNhFtV3o\");});const onTap1btgdk6=activeVariantCallback(async(...args)=>{setVariant(\"fC5ht3fLu\");});const onTap2fpzej=activeVariantCallback(async(...args)=>{setVariant(\"cHnhn4MEw\");});const onTapvn933s=activeVariantCallback(async(...args)=>{setVariant(\"ihPHuCo1a\");});const onTap1yxvjwg=activeVariantCallback(async(...args)=>{setVariant(\"GB1amJWD3\");});const onTaps4f7em=activeVariantCallback(async(...args)=>{setVariant(\"cHAY6eA9B\");});const onTap7xn8bi=activeVariantCallback(async(...args)=>{setVariant(\"okDHuYsBb\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-2dg1ip\",className,classNames),\"data-framer-name\":\"Craftsmen Desktop\",layoutDependency:layoutDependency,layoutId:\"nl1ms9M5i\",ref:ref??ref1,style:{...style},...addPropertyOverrides({A7334OqUE:{\"data-framer-name\":\"Craftsmen mobile\"},cHAY6eA9B:{\"data-framer-name\":\"Sustainability Experts Tablet\"},cHnhn4MEw:{\"data-framer-name\":\"Experience Specialists Tablet\"},fC5ht3fLu:{\"data-framer-name\":\"Experience Specialists Desktop\"},GB1amJWD3:{\"data-framer-name\":\"Sustainability experts Desktop\"},hLNhFtV3o:{\"data-framer-name\":\"Designer mobile\"},ihPHuCo1a:{\"data-framer-name\":\"Experience Specialists Mobile\"},okDHuYsBb:{\"data-framer-name\":\"Sustainability Experts mobile\"},Rh8vq7SEF:{\"data-framer-name\":\"Designer Desktop\"},ss8PvHJwv:{\"data-framer-name\":\"Designer Tablet\"},ybSr55toH:{\"data-framer-name\":\"Craftsmen Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gempkx\",\"data-framer-name\":\"Image  wrapper\",layoutDependency:layoutDependency,layoutId:\"yxq7IcLk4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pvrsfw\",\"data-framer-name\":\"selective image\",layoutDependency:layoutDependency,layoutId:\"h3fe_grYb\",...addPropertyOverrides({A7334OqUE:{transformTemplate:transformTemplate1},hLNhFtV3o:{transformTemplate:transformTemplate1},ihPHuCo1a:{transformTemplate:transformTemplate1},okDHuYsBb:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18gw30d\",\"data-framer-name\":\"Image wrapper 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Je6durCJt\",onTap:onTap1c6nooc,...addPropertyOverrides({A7334OqUE:{onTap:onTapgf1947},cHAY6eA9B:{onTap:onTapmwi8rv},cHnhn4MEw:{onTap:onTapmwi8rv},hLNhFtV3o:{onTap:onTapgf1947},ihPHuCo1a:{onTap:onTapgf1947},okDHuYsBb:{onTap:onTapgf1947},ss8PvHJwv:{onTap:onTapmwi8rv},ybSr55toH:{onTap:onTapmwi8rv}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||875)-0-821)/2)+821-136+0+0),pixelHeight:1280,pixelWidth:1920,sizes:\"86px\",src:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg\",srcSet:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg 1920w\"},className:\"framer-1m33zw4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"higxG5V3e\",style:{filter:\"brightness(0.46)\",WebkitFilter:\"brightness(0.46)\"},variants:{cHAY6eA9B:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},cHnhn4MEw:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},fC5ht3fLu:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},GB1amJWD3:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},hLNhFtV3o:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},ihPHuCo1a:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},okDHuYsBb:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},Rh8vq7SEF:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},ss8PvHJwv:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"}},...addPropertyOverrides({A7334OqUE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),pixelHeight:1280,pixelWidth:1920,sizes:\"74px\",src:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg\",srcSet:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg 1920w\"}},cHAY6eA9B:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),pixelHeight:1280,pixelWidth:1920,sizes:\"86px\",src:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg\",srcSet:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg 1920w\"}},cHnhn4MEw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),pixelHeight:1280,pixelWidth:1920,sizes:\"86px\",src:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg\",srcSet:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg 1920w\"}},fC5ht3fLu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-821)/2)+821-136+0+0),pixelHeight:1280,pixelWidth:1920,sizes:\"86px\",src:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg\",srcSet:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg 1920w\"}},GB1amJWD3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-821)/2)+821-136+0+0),pixelHeight:1280,pixelWidth:1920,sizes:\"86px\",src:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg\",srcSet:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg 1920w\"}},hLNhFtV3o:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),pixelHeight:1280,pixelWidth:1920,sizes:\"74px\",src:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg\",srcSet:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg 1920w\"}},ihPHuCo1a:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),pixelHeight:1280,pixelWidth:1920,sizes:\"74px\",src:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg\",srcSet:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg 1920w\"}},okDHuYsBb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),pixelHeight:1280,pixelWidth:1920,sizes:\"74px\",src:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg\",srcSet:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg 1920w\"}},ss8PvHJwv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),pixelHeight:1280,pixelWidth:1920,sizes:\"86px\",src:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg\",srcSet:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg 1920w\"}},ybSr55toH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),pixelHeight:1280,pixelWidth:1920,sizes:\"86px\",src:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg\",srcSet:\"https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6K2aAc4f8HXULLZ7hN8E8RfcMY.jpg 1920w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-98rq8k\",\"data-framer-name\":\"Image wrapper 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"X4yclE1fM\",onTap:onTapey97xa,...addPropertyOverrides({A7334OqUE:{onTap:onTap157dhce},cHAY6eA9B:{onTap:onTapb9gh20},cHnhn4MEw:{onTap:onTapb9gh20},hLNhFtV3o:{onTap:onTap157dhce},ihPHuCo1a:{onTap:onTap157dhce},okDHuYsBb:{onTap:onTap157dhce},ss8PvHJwv:{onTap:onTapb9gh20},ybSr55toH:{onTap:onTapb9gh20}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||875)-0-821)/2)+821-136+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AAW616lgUcxmfesoeuTxZAOnw.png\"},className:\"framer-qedyfu\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"vWdDrIYvY\",style:{filter:\"none\",WebkitFilter:\"none\"},variants:{A7334OqUE:{filter:\"none\",WebkitFilter:\"none\"},cHAY6eA9B:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},cHnhn4MEw:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},fC5ht3fLu:{filter:\"none\",WebkitFilter:\"none\"},GB1amJWD3:{filter:\"none\",WebkitFilter:\"none\"},hLNhFtV3o:{filter:\"brightness(0.46)\",WebkitFilter:\"brightness(0.46)\"},ihPHuCo1a:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},okDHuYsBb:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},Rh8vq7SEF:{filter:\"brightness(0.46)\",WebkitFilter:\"brightness(0.46)\"},ss8PvHJwv:{filter:\"brightness(0.46)\",WebkitFilter:\"brightness(0.46)\"},ybSr55toH:{filter:\"none\",WebkitFilter:\"none\"}},...addPropertyOverrides({A7334OqUE:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AAW616lgUcxmfesoeuTxZAOnw.png\"}},cHAY6eA9B:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AAW616lgUcxmfesoeuTxZAOnw.png\"}},cHnhn4MEw:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AAW616lgUcxmfesoeuTxZAOnw.png\"}},fC5ht3fLu:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-821)/2)+821-136+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AAW616lgUcxmfesoeuTxZAOnw.png\"}},GB1amJWD3:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-821)/2)+821-136+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AAW616lgUcxmfesoeuTxZAOnw.png\"}},hLNhFtV3o:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AAW616lgUcxmfesoeuTxZAOnw.png\"}},ihPHuCo1a:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AAW616lgUcxmfesoeuTxZAOnw.png\"}},okDHuYsBb:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AAW616lgUcxmfesoeuTxZAOnw.png\"}},ss8PvHJwv:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AAW616lgUcxmfesoeuTxZAOnw.png\"}},ybSr55toH:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AAW616lgUcxmfesoeuTxZAOnw.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x3hdgl\",\"data-framer-name\":\"Image wrapper 3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"a8QSbcUJw\",onTap:onTap1btgdk6,...addPropertyOverrides({A7334OqUE:{onTap:onTap157dhce},cHAY6eA9B:{onTap:onTap2fpzej},cHnhn4MEw:{onTap:onTap2fpzej},hLNhFtV3o:{onTap:onTapvn933s},ihPHuCo1a:{onTap:onTapvn933s},okDHuYsBb:{onTap:onTapvn933s},ss8PvHJwv:{\"data-highlight\":undefined,onTap:undefined},ybSr55toH:{onTap:onTap2fpzej}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||875)-0-821)/2)+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"},className:\"framer-1dk20f9\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"qYNUgdANJ\",style:{filter:\"none\",WebkitFilter:\"none\"},variants:{A7334OqUE:{filter:\"none\",WebkitFilter:\"none\"},cHAY6eA9B:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},cHnhn4MEw:{filter:\"brightness(0.46)\",WebkitFilter:\"brightness(0.46)\"},fC5ht3fLu:{filter:\"brightness(0.46)\",WebkitFilter:\"brightness(0.46)\"},GB1amJWD3:{filter:\"none\",WebkitFilter:\"none\"},hLNhFtV3o:{filter:\"none\",WebkitFilter:\"none\"},ihPHuCo1a:{filter:\"brightness(0.46)\",WebkitFilter:\"brightness(0.46)\"},okDHuYsBb:{filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},ss8PvHJwv:{filter:\"none\",WebkitFilter:\"none\"},ybSr55toH:{filter:\"none\",WebkitFilter:\"none\"}},...addPropertyOverrides({A7334OqUE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),sizes:\"74px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},cHAY6eA9B:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},cHnhn4MEw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},fC5ht3fLu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-821)/2)+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},GB1amJWD3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-821)/2)+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},hLNhFtV3o:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),sizes:\"74px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},ihPHuCo1a:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),sizes:\"74px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},okDHuYsBb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),sizes:\"74px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},ss8PvHJwv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},ybSr55toH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xkd7a\",\"data-framer-name\":\"Image wrapper 4\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XL7URoHVw\",onTap:onTap1yxvjwg,...addPropertyOverrides({A7334OqUE:{onTap:onTap157dhce},cHAY6eA9B:{onTap:onTaps4f7em},cHnhn4MEw:{\"data-highlight\":undefined,onTap:undefined},hLNhFtV3o:{onTap:onTap7xn8bi},ihPHuCo1a:{onTap:onTap7xn8bi},okDHuYsBb:{onTap:onTap7xn8bi},ss8PvHJwv:{onTap:onTaps4f7em},ybSr55toH:{onTap:onTaps4f7em}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||875)-0-821)/2)+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"},className:\"framer-9pzl3s\",\"data-framer-name\":\"Image 4\",layoutDependency:layoutDependency,layoutId:\"gZ6ERCXiW\",style:{filter:\"none\",WebkitFilter:\"none\"},variants:{A7334OqUE:{filter:\"none\",WebkitFilter:\"none\"},cHAY6eA9B:{filter:\"brightness(0.46)\",WebkitFilter:\"brightness(0.46)\"},cHnhn4MEw:{filter:\"none\",WebkitFilter:\"none\"},GB1amJWD3:{filter:\"brightness(0.46)\",WebkitFilter:\"brightness(0.46)\"},hLNhFtV3o:{filter:\"none\",WebkitFilter:\"none\"},ihPHuCo1a:{filter:\"none\",WebkitFilter:\"none\"},okDHuYsBb:{filter:\"brightness(0.46)\",WebkitFilter:\"brightness(0.46)\"},ss8PvHJwv:{filter:\"none\",WebkitFilter:\"none\"},ybSr55toH:{filter:\"none\",WebkitFilter:\"none\"}},...addPropertyOverrides({A7334OqUE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),sizes:\"74px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},cHAY6eA9B:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},cHnhn4MEw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},fC5ht3fLu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-821)/2)+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},GB1amJWD3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-821)/2)+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},hLNhFtV3o:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),sizes:\"74px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},ihPHuCo1a:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),sizes:\"74px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},okDHuYsBb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+821-104+0+0),sizes:\"74px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},ss8PvHJwv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},ybSr55toH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+821-136+0+0),sizes:\"86px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fkl783\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"ra0T0ppCz\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||875)-0-821)/2)+0+0),positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 114px) * 0.5905, 1px)`,src:\"https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png\",srcSet:\"https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png?scale-down-to=1024 883w,https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png?scale-down-to=2048 1766w,https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png 2832w\"},className:\"framer-1yww4jh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"bWT9vC3Sc\",style:{filter:\"brightness(0.64)\",WebkitFilter:\"brightness(0.64)\"},...addPropertyOverrides({A7334OqUE:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+0+0),positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png\",srcSet:\"https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png?scale-down-to=1024 883w,https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png?scale-down-to=2048 1766w,https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png 2832w\"}},cHAY6eA9B:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+0+0),pixelHeight:1280,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},cHnhn4MEw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+0+0),pixelHeight:1280,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},fC5ht3fLu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-821)/2)+0+0),pixelHeight:1280,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 114px) * 0.5905, 1px)`,src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},GB1amJWD3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-821)/2)+0+0),pixelHeight:1280,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 114px) * 0.5905, 1px)`,src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},hLNhFtV3o:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+0+0),pixelHeight:1280,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg\",srcSet:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg 1920w\"}},ihPHuCo1a:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+0+0),pixelHeight:1280,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},okDHuYsBb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+0+0),pixelHeight:1280,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},Rh8vq7SEF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||875)-0-821)/2)+0+0),pixelHeight:1280,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 114px) * 0.5905, 1px)`,src:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg\",srcSet:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg 1920w\"}},ss8PvHJwv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+0+0),pixelHeight:1280,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg\",srcSet:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg 1920w\"}},ybSr55toH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+823+0+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png\",srcSet:\"https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png?scale-down-to=1024 883w,https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png?scale-down-to=2048 1766w,https://framerusercontent.com/images/TfWGm9sDC7hlgosmOva2QhOtQg.png 2832w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8r4c3o\",\"data-framer-name\":\"Postion display\",layoutDependency:layoutDependency,layoutId:\"cI8ONhfFy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dcxvsw\",\"data-framer-name\":\"Text / Image\",layoutDependency:layoutDependency,layoutId:\"jnx_f_94C\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-iv09tc\",\"data-styles-preset\":\"AQEzRM546\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29)))\"},children:\"Craftsmen\"})}),className:\"framer-sq8f5v\",\"data-framer-name\":\"Sustainability Experts\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TdGGEjP4P\",style:{\"--extracted-a0htzi\":\"var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{A7334OqUE:{\"--extracted-1lwpl3i\":\"var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29))\"},hLNhFtV3o:{\"--extracted-1lwpl3i\":\"var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29))\"},ihPHuCo1a:{\"--extracted-1lwpl3i\":\"var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29))\"},okDHuYsBb:{\"--extracted-1lwpl3i\":\"var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A7334OqUE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1atahap\",\"data-styles-preset\":\"TwPbgrA1w\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29)))\"},children:\"Craftsmen\"})})},cHAY6eA9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-iv09tc\",\"data-styles-preset\":\"AQEzRM546\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29)))\"},children:\"Sustainability Experts\"})})},cHnhn4MEw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-iv09tc\",\"data-styles-preset\":\"AQEzRM546\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29)))\"},children:\"Experience Specialists\"})})},fC5ht3fLu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-iv09tc\",\"data-styles-preset\":\"AQEzRM546\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29)))\"},children:\"Experience Specialists\"})})},GB1amJWD3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-iv09tc\",\"data-styles-preset\":\"AQEzRM546\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29)))\"},children:\"Sustainability Experts\"})})},hLNhFtV3o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1atahap\",\"data-styles-preset\":\"TwPbgrA1w\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29)))\"},children:\"Designer\"})})},ihPHuCo1a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1atahap\",\"data-styles-preset\":\"TwPbgrA1w\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29)))\"},children:\"Experience Specialists\"})})},okDHuYsBb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1atahap\",\"data-styles-preset\":\"TwPbgrA1w\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29)))\"},children:\"Sustainability Experts\"})})},Rh8vq7SEF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-iv09tc\",\"data-styles-preset\":\"AQEzRM546\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29)))\"},children:\"Designers\"})})},ss8PvHJwv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-iv09tc\",\"data-styles-preset\":\"AQEzRM546\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29)))\"},children:\"Designer\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6jjpe1\",\"data-framer-name\":\"Image wrapper\",layoutDependency:layoutDependency,layoutId:\"vnY4esIlK\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||875)-0-743)/2)+0+0+0+88+0),positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 114px) * 0.338, 1px)`,src:\"https://framerusercontent.com/images/Aw21B1nxfsvB4rIuYxBdZUA.png\",srcSet:\"https://framerusercontent.com/images/Aw21B1nxfsvB4rIuYxBdZUA.png?scale-down-to=1024 865w,https://framerusercontent.com/images/Aw21B1nxfsvB4rIuYxBdZUA.png 1728w\"},className:\"framer-1nk8029\",\"data-framer-name\":\"Frame 36\",layoutDependency:layoutDependency,layoutId:\"msJa9kWKE\",...addPropertyOverrides({A7334OqUE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+60+0),positionX:\"51.8%\",positionY:\"3.5%\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/Aw21B1nxfsvB4rIuYxBdZUA.png\",srcSet:\"https://framerusercontent.com/images/Aw21B1nxfsvB4rIuYxBdZUA.png?scale-down-to=1024 865w,https://framerusercontent.com/images/Aw21B1nxfsvB4rIuYxBdZUA.png 1728w\"}},cHAY6eA9B:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+88+0),pixelHeight:1280,pixelWidth:1920,sizes:\"432px\",src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},cHnhn4MEw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+88+0),pixelHeight:1280,pixelWidth:1920,sizes:\"432px\",src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},fC5ht3fLu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-743)/2)+0+0+0+88+0),pixelHeight:1280,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 114px) * 0.338, 1px)`,src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},GB1amJWD3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-743)/2)+0+0+0+88+0),pixelHeight:1280,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 114px) * 0.338, 1px)`,src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},hLNhFtV3o:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+60+0),pixelHeight:1280,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg\",srcSet:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg 1920w\"}},ihPHuCo1a:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+60+0),pixelHeight:1280,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg\",srcSet:\"https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NrZ9DUbD5D8nFAUkAAtfl90eAA.jpg 1920w\"}},okDHuYsBb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+60+0),pixelHeight:1280,pixelWidth:1920,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg\",srcSet:\"https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjJIdpWRd5z1Ah9Qf45wx1Wo.jpg 1920w\"}},Rh8vq7SEF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||875)-0-743)/2)+0+0+0+88+0),pixelHeight:1280,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 114px) * 0.338, 1px)`,src:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg\",srcSet:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg 1920w\"}},ss8PvHJwv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+88+0),pixelHeight:1280,pixelWidth:1920,sizes:\"432px\",src:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg\",srcSet:\"https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gu9RvTeCOfNjmsGNNYrS4BBzo.jpg 1920w\"}},ybSr55toH:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+88+0),positionX:\"center\",positionY:\"center\",sizes:\"432px\",src:\"https://framerusercontent.com/images/Aw21B1nxfsvB4rIuYxBdZUA.png\",srcSet:\"https://framerusercontent.com/images/Aw21B1nxfsvB4rIuYxBdZUA.png?scale-down-to=1024 865w,https://framerusercontent.com/images/Aw21B1nxfsvB4rIuYxBdZUA.png 1728w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74)))\"},children:\"The backbone of our production, our skilled artisans bring decades of experience and unmatched expertise to every piece they create, ensuring attention to detail and unparalleled quality\"})}),className:\"framer-1j51n5q\",\"data-framer-name\":\"The backbone of our production, our skilled artisans bring decades of experience and unmatched expertise to every piece they create, ensuring attention to detail and unparalleled quality\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pu6CdsyMZ\",style:{\"--extracted-r6o4lv\":\"var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cHAY6eA9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74)))\"},children:\"Dedicated to eco-friendly practices, this team ensures that all materials and processes align with our commitment to the environment\"})})},cHnhn4MEw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74)))\"},children:\"Passionate about connecting with our customers, they work tirelessly to make every interaction smooth and enjoyable.\"})})},fC5ht3fLu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74)))\"},children:\"Passionate about connecting with our customers, they work tirelessly to make every interaction smooth and enjoyable.\"})})},GB1amJWD3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74)))\"},children:\"Dedicated to eco-friendly practices, this team ensures that all materials and processes align with our commitment to the environment\"})})},hLNhFtV3o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74)))\"},children:\"Our creative minds are constantly exploring new trends and styles to ensure our products resonate with modern aesthetics while remaining functional\"})})},ihPHuCo1a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74)))\"},children:\"Passionate about connecting with our customers, they work tirelessly to make every interaction smooth and enjoyable.\"})})},okDHuYsBb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74)))\"},children:\"Dedicated to eco-friendly practices, this team ensures that all materials and processes align with our commitment to the environment\"})})},Rh8vq7SEF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74)))\"},children:\"Our creative minds are constantly exploring new trends and styles to ensure our products resonate with modern aesthetics while remaining functional\"})})},ss8PvHJwv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74)))\"},children:\"Our creative minds are constantly exploring new trends and styles to ensure our products resonate with modern aesthetics while remaining functional\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-E7Fy8.framer-13jcqkx, .framer-E7Fy8 .framer-13jcqkx { display: block; }\",\".framer-E7Fy8.framer-2dg1ip { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 114px 0px 0px; position: relative; width: 1392px; }\",\".framer-E7Fy8 .framer-1gempkx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 59%; }\",\".framer-E7Fy8 .framer-1pvrsfw { align-content: center; align-items: center; bottom: 48px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; left: 48px; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\".framer-E7Fy8 .framer-18gw30d, .framer-E7Fy8 .framer-98rq8k, .framer-E7Fy8 .framer-1x3hdgl, .framer-E7Fy8 .framer-xkd7a { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 86px; }\",\".framer-E7Fy8 .framer-1m33zw4, .framer-E7Fy8 .framer-qedyfu, .framer-E7Fy8 .framer-1dk20f9, .framer-E7Fy8 .framer-9pzl3s { aspect-ratio: 0.9772727272727273 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 88px); overflow: hidden; position: relative; width: 1px; }\",\".framer-E7Fy8 .framer-1fkl783 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-E7Fy8 .framer-1yww4jh { aspect-ratio: 0.8623629719853837 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 875px); overflow: hidden; position: relative; width: 1px; }\",\".framer-E7Fy8 .framer-8r4c3o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 34%; }\",\".framer-E7Fy8 .framer-dcxvsw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E7Fy8 .framer-sq8f5v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-E7Fy8 .framer-6jjpe1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-E7Fy8 .framer-1nk8029 { aspect-ratio: 0.8454011741682974 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 511px); overflow: hidden; position: relative; width: 1px; }\",\".framer-E7Fy8 .framer-1j51n5q { flex: none; height: 120px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E7Fy8 .framer-1gempkx, .framer-E7Fy8 .framer-1pvrsfw, .framer-E7Fy8 .framer-18gw30d, .framer-E7Fy8 .framer-98rq8k, .framer-E7Fy8 .framer-1x3hdgl, .framer-E7Fy8 .framer-xkd7a, .framer-E7Fy8 .framer-1fkl783, .framer-E7Fy8 .framer-8r4c3o, .framer-E7Fy8 .framer-dcxvsw, .framer-E7Fy8 .framer-6jjpe1 { gap: 0px; } .framer-E7Fy8 .framer-1gempkx > *, .framer-E7Fy8 .framer-18gw30d > *, .framer-E7Fy8 .framer-98rq8k > *, .framer-E7Fy8 .framer-1x3hdgl > *, .framer-E7Fy8 .framer-xkd7a > *, .framer-E7Fy8 .framer-1fkl783 > *, .framer-E7Fy8 .framer-6jjpe1 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-E7Fy8 .framer-1gempkx > :first-child, .framer-E7Fy8 .framer-1pvrsfw > :first-child, .framer-E7Fy8 .framer-18gw30d > :first-child, .framer-E7Fy8 .framer-98rq8k > :first-child, .framer-E7Fy8 .framer-1x3hdgl > :first-child, .framer-E7Fy8 .framer-xkd7a > :first-child, .framer-E7Fy8 .framer-1fkl783 > :first-child, .framer-E7Fy8 .framer-6jjpe1 > :first-child { margin-left: 0px; } .framer-E7Fy8 .framer-1gempkx > :last-child, .framer-E7Fy8 .framer-1pvrsfw > :last-child, .framer-E7Fy8 .framer-18gw30d > :last-child, .framer-E7Fy8 .framer-98rq8k > :last-child, .framer-E7Fy8 .framer-1x3hdgl > :last-child, .framer-E7Fy8 .framer-xkd7a > :last-child, .framer-E7Fy8 .framer-1fkl783 > :last-child, .framer-E7Fy8 .framer-6jjpe1 > :last-child { margin-right: 0px; } .framer-E7Fy8 .framer-1pvrsfw > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-E7Fy8 .framer-8r4c3o > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-E7Fy8 .framer-8r4c3o > :first-child, .framer-E7Fy8 .framer-dcxvsw > :first-child { margin-top: 0px; } .framer-E7Fy8 .framer-8r4c3o > :last-child, .framer-E7Fy8 .framer-dcxvsw > :last-child { margin-bottom: 0px; } .framer-E7Fy8 .framer-dcxvsw > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\",\".framer-E7Fy8.framer-v-1axa7a6 .framer-1j51n5q, .framer-E7Fy8.framer-v-1jhswdg .framer-1j51n5q, .framer-E7Fy8.framer-v-kkq7yb .framer-1j51n5q, .framer-E7Fy8.framer-v-5i2d1 .framer-1j51n5q, .framer-E7Fy8.framer-v-baxwjf .framer-1j51n5q, .framer-E7Fy8.framer-v-5tikxx .framer-1j51n5q, .framer-E7Fy8.framer-v-1mfr5zl .framer-1j51n5q { --framer-text-wrap-override: none; }\",\".framer-E7Fy8.framer-v-1jhswdg .framer-1m33zw4, .framer-E7Fy8.framer-v-1jhswdg .framer-qedyfu, .framer-E7Fy8.framer-v-1jhswdg .framer-1dk20f9, .framer-E7Fy8.framer-v-1jhswdg .framer-9pzl3s, .framer-E7Fy8.framer-v-kkq7yb .framer-1m33zw4, .framer-E7Fy8.framer-v-kkq7yb .framer-qedyfu, .framer-E7Fy8.framer-v-kkq7yb .framer-1dk20f9, .framer-E7Fy8.framer-v-kkq7yb .framer-9pzl3s { height: var(--framer-aspect-ratio-supported, 205px); }\",\".framer-E7Fy8.framer-v-1jhswdg .framer-1yww4jh, .framer-E7Fy8.framer-v-kkq7yb .framer-1yww4jh, .framer-E7Fy8.framer-v-1hl00fg .framer-1yww4jh, .framer-E7Fy8.framer-v-1dgjehj .framer-1yww4jh, .framer-E7Fy8.framer-v-rljtlt .framer-1yww4jh, .framer-E7Fy8.framer-v-1m6kxqz .framer-1yww4jh { height: var(--framer-aspect-ratio-supported, 232px); }\",\".framer-E7Fy8.framer-v-1jhswdg .framer-1nk8029, .framer-E7Fy8.framer-v-kkq7yb .framer-1nk8029 { height: var(--framer-aspect-ratio-supported, 237px); }\",\".framer-E7Fy8.framer-v-5i2d1.framer-2dg1ip, .framer-E7Fy8.framer-v-baxwjf.framer-2dg1ip, .framer-E7Fy8.framer-v-5tikxx.framer-2dg1ip, .framer-E7Fy8.framer-v-1mfr5zl.framer-2dg1ip { flex-direction: column; gap: 80px; justify-content: flex-start; padding: 0px; width: 720px; }\",\".framer-E7Fy8.framer-v-5i2d1 .framer-1gempkx, .framer-E7Fy8.framer-v-baxwjf .framer-1gempkx, .framer-E7Fy8.framer-v-5tikxx .framer-1gempkx, .framer-E7Fy8.framer-v-1mfr5zl .framer-1gempkx, .framer-E7Fy8.framer-v-1hl00fg .framer-1gempkx, .framer-E7Fy8.framer-v-1dgjehj .framer-1gempkx, .framer-E7Fy8.framer-v-rljtlt .framer-1gempkx, .framer-E7Fy8.framer-v-1m6kxqz .framer-1gempkx { order: 1; width: 100%; }\",\".framer-E7Fy8.framer-v-5i2d1 .framer-1yww4jh, .framer-E7Fy8.framer-v-baxwjf .framer-1yww4jh, .framer-E7Fy8.framer-v-5tikxx .framer-1yww4jh, .framer-E7Fy8.framer-v-1mfr5zl .framer-1yww4jh { height: var(--framer-aspect-ratio-supported, 835px); }\",\".framer-E7Fy8.framer-v-5i2d1 .framer-8r4c3o, .framer-E7Fy8.framer-v-baxwjf .framer-8r4c3o, .framer-E7Fy8.framer-v-5tikxx .framer-8r4c3o, .framer-E7Fy8.framer-v-1mfr5zl .framer-8r4c3o { order: 0; width: 432px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E7Fy8.framer-v-5i2d1.framer-2dg1ip { gap: 0px; } .framer-E7Fy8.framer-v-5i2d1.framer-2dg1ip > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-E7Fy8.framer-v-5i2d1.framer-2dg1ip > :first-child { margin-top: 0px; } .framer-E7Fy8.framer-v-5i2d1.framer-2dg1ip > :last-child { margin-bottom: 0px; } }\",\".framer-E7Fy8.framer-v-baxwjf .framer-1x3hdgl, .framer-E7Fy8.framer-v-5tikxx .framer-xkd7a { cursor: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E7Fy8.framer-v-baxwjf.framer-2dg1ip { gap: 0px; } .framer-E7Fy8.framer-v-baxwjf.framer-2dg1ip > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-E7Fy8.framer-v-baxwjf.framer-2dg1ip > :first-child { margin-top: 0px; } .framer-E7Fy8.framer-v-baxwjf.framer-2dg1ip > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E7Fy8.framer-v-5tikxx.framer-2dg1ip { gap: 0px; } .framer-E7Fy8.framer-v-5tikxx.framer-2dg1ip > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-E7Fy8.framer-v-5tikxx.framer-2dg1ip > :first-child { margin-top: 0px; } .framer-E7Fy8.framer-v-5tikxx.framer-2dg1ip > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E7Fy8.framer-v-1mfr5zl.framer-2dg1ip { gap: 0px; } .framer-E7Fy8.framer-v-1mfr5zl.framer-2dg1ip > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-E7Fy8.framer-v-1mfr5zl.framer-2dg1ip > :first-child { margin-top: 0px; } .framer-E7Fy8.framer-v-1mfr5zl.framer-2dg1ip > :last-child { margin-bottom: 0px; } }\",\".framer-E7Fy8.framer-v-1hl00fg.framer-2dg1ip, .framer-E7Fy8.framer-v-1dgjehj.framer-2dg1ip, .framer-E7Fy8.framer-v-rljtlt.framer-2dg1ip, .framer-E7Fy8.framer-v-1m6kxqz.framer-2dg1ip { flex-direction: column; gap: 64px; justify-content: flex-start; padding: 0px; width: 343px; }\",\".framer-E7Fy8.framer-v-1hl00fg .framer-1pvrsfw, .framer-E7Fy8.framer-v-1dgjehj .framer-1pvrsfw, .framer-E7Fy8.framer-v-rljtlt .framer-1pvrsfw, .framer-E7Fy8.framer-v-1m6kxqz .framer-1pvrsfw { bottom: 32px; gap: 8px; left: 50%; }\",\".framer-E7Fy8.framer-v-1hl00fg .framer-18gw30d, .framer-E7Fy8.framer-v-1hl00fg .framer-98rq8k, .framer-E7Fy8.framer-v-1hl00fg .framer-1x3hdgl, .framer-E7Fy8.framer-v-1hl00fg .framer-xkd7a, .framer-E7Fy8.framer-v-1dgjehj .framer-18gw30d, .framer-E7Fy8.framer-v-1dgjehj .framer-98rq8k, .framer-E7Fy8.framer-v-1dgjehj .framer-1x3hdgl, .framer-E7Fy8.framer-v-1dgjehj .framer-xkd7a, .framer-E7Fy8.framer-v-rljtlt .framer-18gw30d, .framer-E7Fy8.framer-v-rljtlt .framer-98rq8k, .framer-E7Fy8.framer-v-rljtlt .framer-1x3hdgl, .framer-E7Fy8.framer-v-rljtlt .framer-xkd7a, .framer-E7Fy8.framer-v-1m6kxqz .framer-18gw30d, .framer-E7Fy8.framer-v-1m6kxqz .framer-98rq8k, .framer-E7Fy8.framer-v-1m6kxqz .framer-1x3hdgl, .framer-E7Fy8.framer-v-1m6kxqz .framer-xkd7a { width: min-content; }\",\".framer-E7Fy8.framer-v-1hl00fg .framer-1m33zw4, .framer-E7Fy8.framer-v-1hl00fg .framer-qedyfu, .framer-E7Fy8.framer-v-1hl00fg .framer-1dk20f9, .framer-E7Fy8.framer-v-1hl00fg .framer-9pzl3s, .framer-E7Fy8.framer-v-1dgjehj .framer-1m33zw4, .framer-E7Fy8.framer-v-1dgjehj .framer-qedyfu, .framer-E7Fy8.framer-v-1dgjehj .framer-1dk20f9, .framer-E7Fy8.framer-v-1dgjehj .framer-9pzl3s, .framer-E7Fy8.framer-v-rljtlt .framer-1m33zw4, .framer-E7Fy8.framer-v-rljtlt .framer-qedyfu, .framer-E7Fy8.framer-v-rljtlt .framer-1dk20f9, .framer-E7Fy8.framer-v-rljtlt .framer-9pzl3s, .framer-E7Fy8.framer-v-1m6kxqz .framer-1m33zw4, .framer-E7Fy8.framer-v-1m6kxqz .framer-qedyfu, .framer-E7Fy8.framer-v-1m6kxqz .framer-1dk20f9, .framer-E7Fy8.framer-v-1m6kxqz .framer-9pzl3s { aspect-ratio: unset; flex: none; height: 72px; width: 74px; }\",\".framer-E7Fy8.framer-v-1hl00fg .framer-8r4c3o, .framer-E7Fy8.framer-v-1dgjehj .framer-8r4c3o, .framer-E7Fy8.framer-v-rljtlt .framer-8r4c3o, .framer-E7Fy8.framer-v-1m6kxqz .framer-8r4c3o { order: 0; width: 100%; }\",\".framer-E7Fy8.framer-v-1hl00fg .framer-dcxvsw, .framer-E7Fy8.framer-v-1dgjehj .framer-dcxvsw, .framer-E7Fy8.framer-v-rljtlt .framer-dcxvsw, .framer-E7Fy8.framer-v-1m6kxqz .framer-dcxvsw { gap: 32px; }\",\".framer-E7Fy8.framer-v-1hl00fg .framer-1nk8029, .framer-E7Fy8.framer-v-1dgjehj .framer-1nk8029, .framer-E7Fy8.framer-v-rljtlt .framer-1nk8029, .framer-E7Fy8.framer-v-1m6kxqz .framer-1nk8029 { aspect-ratio: 0.98 / 1; height: var(--framer-aspect-ratio-supported, 204px); }\",\".framer-E7Fy8.framer-v-1hl00fg .framer-1j51n5q, .framer-E7Fy8.framer-v-1dgjehj .framer-1j51n5q, .framer-E7Fy8.framer-v-rljtlt .framer-1j51n5q, .framer-E7Fy8.framer-v-1m6kxqz .framer-1j51n5q { --framer-text-wrap-override: none; height: 144px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E7Fy8.framer-v-1hl00fg.framer-2dg1ip, .framer-E7Fy8.framer-v-1hl00fg .framer-1pvrsfw, .framer-E7Fy8.framer-v-1hl00fg .framer-dcxvsw { gap: 0px; } .framer-E7Fy8.framer-v-1hl00fg.framer-2dg1ip > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-E7Fy8.framer-v-1hl00fg.framer-2dg1ip > :first-child, .framer-E7Fy8.framer-v-1hl00fg .framer-dcxvsw > :first-child { margin-top: 0px; } .framer-E7Fy8.framer-v-1hl00fg.framer-2dg1ip > :last-child, .framer-E7Fy8.framer-v-1hl00fg .framer-dcxvsw > :last-child { margin-bottom: 0px; } .framer-E7Fy8.framer-v-1hl00fg .framer-1pvrsfw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-E7Fy8.framer-v-1hl00fg .framer-1pvrsfw > :first-child { margin-left: 0px; } .framer-E7Fy8.framer-v-1hl00fg .framer-1pvrsfw > :last-child { margin-right: 0px; } .framer-E7Fy8.framer-v-1hl00fg .framer-dcxvsw > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E7Fy8.framer-v-1dgjehj.framer-2dg1ip, .framer-E7Fy8.framer-v-1dgjehj .framer-1pvrsfw, .framer-E7Fy8.framer-v-1dgjehj .framer-dcxvsw { gap: 0px; } .framer-E7Fy8.framer-v-1dgjehj.framer-2dg1ip > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-E7Fy8.framer-v-1dgjehj.framer-2dg1ip > :first-child, .framer-E7Fy8.framer-v-1dgjehj .framer-dcxvsw > :first-child { margin-top: 0px; } .framer-E7Fy8.framer-v-1dgjehj.framer-2dg1ip > :last-child, .framer-E7Fy8.framer-v-1dgjehj .framer-dcxvsw > :last-child { margin-bottom: 0px; } .framer-E7Fy8.framer-v-1dgjehj .framer-1pvrsfw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-E7Fy8.framer-v-1dgjehj .framer-1pvrsfw > :first-child { margin-left: 0px; } .framer-E7Fy8.framer-v-1dgjehj .framer-1pvrsfw > :last-child { margin-right: 0px; } .framer-E7Fy8.framer-v-1dgjehj .framer-dcxvsw > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-E7Fy8.framer-v-rljtlt .framer-sq8f5v, .framer-E7Fy8.framer-v-1m6kxqz .framer-sq8f5v { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E7Fy8.framer-v-rljtlt.framer-2dg1ip, .framer-E7Fy8.framer-v-rljtlt .framer-1pvrsfw, .framer-E7Fy8.framer-v-rljtlt .framer-dcxvsw { gap: 0px; } .framer-E7Fy8.framer-v-rljtlt.framer-2dg1ip > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-E7Fy8.framer-v-rljtlt.framer-2dg1ip > :first-child, .framer-E7Fy8.framer-v-rljtlt .framer-dcxvsw > :first-child { margin-top: 0px; } .framer-E7Fy8.framer-v-rljtlt.framer-2dg1ip > :last-child, .framer-E7Fy8.framer-v-rljtlt .framer-dcxvsw > :last-child { margin-bottom: 0px; } .framer-E7Fy8.framer-v-rljtlt .framer-1pvrsfw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-E7Fy8.framer-v-rljtlt .framer-1pvrsfw > :first-child { margin-left: 0px; } .framer-E7Fy8.framer-v-rljtlt .framer-1pvrsfw > :last-child { margin-right: 0px; } .framer-E7Fy8.framer-v-rljtlt .framer-dcxvsw > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E7Fy8.framer-v-1m6kxqz.framer-2dg1ip, .framer-E7Fy8.framer-v-1m6kxqz .framer-1pvrsfw, .framer-E7Fy8.framer-v-1m6kxqz .framer-dcxvsw { gap: 0px; } .framer-E7Fy8.framer-v-1m6kxqz.framer-2dg1ip > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-E7Fy8.framer-v-1m6kxqz.framer-2dg1ip > :first-child, .framer-E7Fy8.framer-v-1m6kxqz .framer-dcxvsw > :first-child { margin-top: 0px; } .framer-E7Fy8.framer-v-1m6kxqz.framer-2dg1ip > :last-child, .framer-E7Fy8.framer-v-1m6kxqz .framer-dcxvsw > :last-child { margin-bottom: 0px; } .framer-E7Fy8.framer-v-1m6kxqz .framer-1pvrsfw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-E7Fy8.framer-v-1m6kxqz .framer-1pvrsfw > :first-child { margin-left: 0px; } .framer-E7Fy8.framer-v-1m6kxqz .framer-1pvrsfw > :last-child { margin-right: 0px; } .framer-E7Fy8.framer-v-1m6kxqz .framer-dcxvsw > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 875\n * @framerIntrinsicWidth 1392\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Rh8vq7SEF\":{\"layout\":[\"fixed\",\"auto\"]},\"fC5ht3fLu\":{\"layout\":[\"fixed\",\"auto\"]},\"GB1amJWD3\":{\"layout\":[\"fixed\",\"auto\"]},\"ybSr55toH\":{\"layout\":[\"fixed\",\"auto\"]},\"ss8PvHJwv\":{\"layout\":[\"fixed\",\"auto\"]},\"cHnhn4MEw\":{\"layout\":[\"fixed\",\"auto\"]},\"cHAY6eA9B\":{\"layout\":[\"fixed\",\"auto\"]},\"A7334OqUE\":{\"layout\":[\"fixed\",\"auto\"]},\"hLNhFtV3o\":{\"layout\":[\"fixed\",\"auto\"]},\"ihPHuCo1a\":{\"layout\":[\"fixed\",\"auto\"]},\"okDHuYsBb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerf7BGJ3TyB=withCSS(Component,css,\"framer-E7Fy8\");export default Framerf7BGJ3TyB;Framerf7BGJ3TyB.displayName=\"About us - Image intractions\";Framerf7BGJ3TyB.defaultProps={height:875,width:1392};addPropertyControls(Framerf7BGJ3TyB,{variant:{options:[\"nl1ms9M5i\",\"Rh8vq7SEF\",\"fC5ht3fLu\",\"GB1amJWD3\",\"ybSr55toH\",\"ss8PvHJwv\",\"cHnhn4MEw\",\"cHAY6eA9B\",\"A7334OqUE\",\"hLNhFtV3o\",\"ihPHuCo1a\",\"okDHuYsBb\"],optionTitles:[\"Craftsmen Desktop\",\"Designer Desktop\",\"Experience Specialists Desktop\",\"Sustainability experts Desktop\",\"Craftsmen Tablet\",\"Designer Tablet\",\"Experience Specialists Tablet\",\"Sustainability Experts Tablet\",\"Craftsmen mobile\",\"Designer mobile\",\"Experience Specialists Mobile\",\"Sustainability Experts mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerf7BGJ3TyB,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerf7BGJ3TyB\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rh8vq7SEF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fC5ht3fLu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GB1amJWD3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ybSr55toH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ss8PvHJwv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cHnhn4MEw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cHAY6eA9B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A7334OqUE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hLNhFtV3o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ihPHuCo1a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"okDHuYsBb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"875\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1392\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./f7BGJ3TyB.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import LemonSqueezy from\"https://framerusercontent.com/modules/1mkt2plloPEOvoe16UUK/EUmeSZzQepu1cHilAvr7/LemonSqueezy.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import AboutUsImageIntractions from\"#framer/local/canvasComponent/f7BGJ3TyB/f7BGJ3TyB.js\";import*as sharedStyle1 from\"#framer/local/css/AKOhWRKmV/AKOhWRKmV.js\";import*as sharedStyle2 from\"#framer/local/css/AQEzRM546/AQEzRM546.js\";import*as sharedStyle4 from\"#framer/local/css/GOAQiyPxu/GOAQiyPxu.js\";import*as sharedStyle from\"#framer/local/css/owhHK06SB/owhHK06SB.js\";import*as sharedStyle3 from\"#framer/local/css/TwPbgrA1w/TwPbgrA1w.js\";import metadataProvider from\"#framer/local/webPageMetadata/cX_jqEroR/cX_jqEroR.js\";const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const AboutUsImageIntractionsFonts=getFonts(AboutUsImageIntractions);const SlideshowFonts=getFonts(Slideshow);const LemonSqueezyFonts=getFonts(LemonSqueezy);const breakpoints={pj8EET_zv:\"(min-width: 768px) and (max-width: 1199px)\",TOMecryH5:\"(max-width: 767px)\",UFG5SLBVJ:\"(min-width: 1200px) and (max-width: 1439px)\",WZqPfcCRZ:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-CBWKY\";const variantClassNames={pj8EET_zv:\"framer-v-ffao1\",TOMecryH5:\"framer-v-1uxu8e7\",UFG5SLBVJ:\"framer-v-1ityom7\",WZqPfcCRZ:\"framer-v-bbqo16\"};const transition1={damping:40,delay:.2,mass:1,stiffness:100,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-100,y:0};const transition2={damping:40,delay:.4,mass:1,stiffness:100,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-100,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:160};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop large\":\"WZqPfcCRZ\",\"Desktop Small\":\"UFG5SLBVJ\",Phone:\"TOMecryH5\",Tablet:\"pj8EET_zv\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WZqPfcCRZ\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WZqPfcCRZ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-69c8d7a8-e73f-4bd9-9f82-c978241d0940, rgb(253, 253, 253)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-bbqo16\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1842nx8\",\"data-framer-name\":\"Our Story\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qz70jy\",\"data-framer-name\":\"Container wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1so30gi\",\"data-framer-name\":\"image / text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dq63a9\",\"data-framer-name\":\"Image wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-h2lpgx\",\"data-framer-appear-id\":\"h2lpgx\",\"data-framer-name\":\"Image / text\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xrnk3z\",\"data-framer-name\":\"Image wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pj8EET_zv:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+0+0+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"318px\",src:\"https://framerusercontent.com/images/q3RS60B2gVhe8aZZMKEcLSCuAU.png\",srcSet:\"https://framerusercontent.com/images/q3RS60B2gVhe8aZZMKEcLSCuAU.png?scale-down-to=1024 861w,https://framerusercontent.com/images/q3RS60B2gVhe8aZZMKEcLSCuAU.png 1272w\"}},TOMecryH5:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+0+0+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/q3RS60B2gVhe8aZZMKEcLSCuAU.png\",srcSet:\"https://framerusercontent.com/images/q3RS60B2gVhe8aZZMKEcLSCuAU.png?scale-down-to=1024 861w,https://framerusercontent.com/images/q3RS60B2gVhe8aZZMKEcLSCuAU.png 1272w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+0+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 96px) * 0.2366, 1px)`,src:\"https://framerusercontent.com/images/q3RS60B2gVhe8aZZMKEcLSCuAU.png\",srcSet:\"https://framerusercontent.com/images/q3RS60B2gVhe8aZZMKEcLSCuAU.png?scale-down-to=1024 861w,https://framerusercontent.com/images/q3RS60B2gVhe8aZZMKEcLSCuAU.png 1272w\"},className:\"framer-2ciih2\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74))\"},children:\"Redefining Comfort and Style, One Chair at a Time\"})}),className:\"framer-17vv3hz\",\"data-framer-name\":\"Redefining Comfort and Style, One Chair at a Time\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-17986ix\",\"data-framer-appear-id\":\"17986ix\",\"data-framer-name\":\"Image wrapper\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17so4y6\",\"data-framer-name\":\"image wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pj8EET_zv:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+0+0+582+0+0),positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 72px) / 2, 1px)`,src:\"https://framerusercontent.com/images/PU0e35jl7CJeRxeQhs4uPfi7k.png\",srcSet:\"https://framerusercontent.com/images/PU0e35jl7CJeRxeQhs4uPfi7k.png 816w\"}},TOMecryH5:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+0+0+582+0+0+0),positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/PU0e35jl7CJeRxeQhs4uPfi7k.png\",srcSet:\"https://framerusercontent.com/images/PU0e35jl7CJeRxeQhs4uPfi7k.png 816w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+0+582+0+0),positionX:\"center\",positionY:\"center\",sizes:`max(((min(${componentViewport?.width||\"100vw\"}, 1600px) - 96px) * 0.3214 - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/PU0e35jl7CJeRxeQhs4uPfi7k.png\",srcSet:\"https://framerusercontent.com/images/PU0e35jl7CJeRxeQhs4uPfi7k.png 816w\"},className:\"framer-3hjfoj\",\"data-framer-name\":\"image left\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mdgrya\",\"data-framer-name\":\"Image wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pj8EET_zv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+0+0+582+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 72px) / 2, 1px)`,src:\"https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg\",srcSet:\"https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg 1920w\"}},TOMecryH5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+0+0+582+0+256+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg\",srcSet:\"https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+0+582+0+0),sizes:`max(((min(${componentViewport?.width||\"100vw\"}, 1600px) - 96px) * 0.3214 - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg\",srcSet:\"https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/eJJxaCeZEgYkZmipjpnrqIVO90.jpg 1920w\"},className:\"framer-16nblyi\",\"data-framer-name\":\"image right\"})})})]})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-878amq\",\"data-framer-appear-id\":\"878amq\",\"data-framer-name\":\"Image wrapper\",initial:animation4,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pj8EET_zv:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+886+0),positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png\",srcSet:\"https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png?scale-down-to=1024 920w,https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png?scale-down-to=2048 1841w,https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png 3096w\"}},TOMecryH5:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+1134+0),positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png\",srcSet:\"https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png?scale-down-to=1024 920w,https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png?scale-down-to=2048 1841w,https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png 3096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 96px) * 0.5759, 1px)`,src:\"https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png\",srcSet:\"https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png?scale-down-to=1024 920w,https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png?scale-down-to=2048 1841w,https://framerusercontent.com/images/UuoSwVRIekzgYQ2q4qNHz1vjg.png 3096w\"},className:\"framer-1axank\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1njp82h\",\"data-framer-name\":\"story text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TOMecryH5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-iv09tc\",\"data-styles-preset\":\"AQEzRM546\",style:{\"--framer-text-color\":\"var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29))\"},children:\"Our Story\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1cvd5yo\",\"data-styles-preset\":\"AKOhWRKmV\",style:{\"--framer-text-color\":\"var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29))\"},children:\"Our Story\"})}),className:\"framer-1jiy9bl\",\"data-framer-name\":\"Our Story\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74))\"},children:\"we believe that a chair is more than just a piece of furniture \u2013 it\u2019s a part of your story. Founded with a passion for exceptional craftsmanship and modern design, Euimerce strives to redefine comfort and style in every home\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74))\"},children:\"Our journey began with a simple goal: to create chairs that are not only beautiful but also functional and durable. With roots in traditional craftsmanship and a vision for contemporary innovation, our team of designers and artisans collaborates to produce pieces that stand the test of time.\"})]}),className:\"framer-1jec6yj\",\"data-framer-name\":\"we believe that a chair is more than just a piece of furniture \u2013 it\u2019s a part of your story. Founded with a passion for exceptional craftsmanship and modern design, Euimerce strives to redefine comfort and style in every home Our journey began with a simple goal: to create chairs that are not only beautiful but also functional and durable. With roots in traditional craftsmanship and a vision for contemporary innovation, our team of designers and artisans collaborates to produce pieces that stand the test of time.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ucpb3g\",\"data-framer-name\":\"brand image display\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mo1v1o\",\"data-framer-name\":\"Container wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w20i9m\",\"data-framer-name\":\"heading / Subheading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1atahap\",\"data-styles-preset\":\"TwPbgrA1w\",style:{\"--framer-text-color\":\"var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29))\"},children:\"we deliver premium, stylish, and sustainable furniture that enhances every space\"})}),className:\"framer-1mhoo3i\",\"data-framer-name\":\"we deliver premium, stylish, and sustainable furniture that enhances every space\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1418hs8\",\"data-styles-preset\":\"owhHK06SB\",style:{\"--framer-text-color\":\"var(--token-74d45a78-b0ad-4378-9145-13afe820ad59, rgb(74, 74, 74))\"},children:\"we take our responsibility to the environment seriously. We prioritize eco-friendly practices, from using recycled and renewable materials to minimizing waste in our production processes\"})}),className:\"framer-10yn9ov\",\"data-framer-name\":\"we take our responsibility to the environment seriously. We prioritize eco-friendly practices, from using recycled and renewable materials to minimizing waste in our production processes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gxz5ao\",\"data-framer-name\":\"Image wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17ibpk\",\"data-framer-name\":\"Image wrapper 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pj8EET_zv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2468+72+0+0+244+0+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png\",srcSet:\"https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png?scale-down-to=1024 878w,https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png?scale-down-to=2048 1757w,https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png 1792w\"}},TOMecryH5:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668+56+0+0+244+0+0+0),positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png\",srcSet:\"https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png?scale-down-to=1024 878w,https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png?scale-down-to=2048 1757w,https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png 1792w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1518+72+0+0+184+0+0),positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 96px) / 3, 1px)`,src:\"https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png\",srcSet:\"https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png?scale-down-to=1024 878w,https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png?scale-down-to=2048 1757w,https://framerusercontent.com/images/qHBMmhRciXuHu41pl0b8Af4LmeE.png 1792w\"},className:\"framer-qygwa2\",\"data-framer-name\":\"Image 1\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l67ylf\",\"data-framer-name\":\"Image wrapper 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pj8EET_zv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2468+72+0+0+244+0+522+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png\",srcSet:\"https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png?scale-down-to=1024 878w,https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png?scale-down-to=2048 1757w,https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png 1792w\"}},TOMecryH5:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668+56+0+0+244+0+522+0),positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png\",srcSet:\"https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png?scale-down-to=1024 878w,https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png?scale-down-to=2048 1757w,https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png 1792w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1518+72+0+0+184+0+0),positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 96px) / 3, 1px)`,src:\"https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png\",srcSet:\"https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png?scale-down-to=1024 878w,https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png?scale-down-to=2048 1757w,https://framerusercontent.com/images/4wQXYNyyzIM78rLp7x2opYLJj70.png 1792w\"},className:\"framer-76j7vs\",\"data-framer-name\":\"Image 2\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pkgj6o\",\"data-framer-name\":\"Image wrapper 3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pj8EET_zv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2468+72+0+0+244+0+1044+0),positionX:\"center\",positionY:\"top\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png\",srcSet:\"https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png?scale-down-to=1024 878w,https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png?scale-down-to=2048 1757w,https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png 1792w\"}},TOMecryH5:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668+56+0+0+244+0+1044+0),positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png\",srcSet:\"https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png?scale-down-to=1024 878w,https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png?scale-down-to=2048 1757w,https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png 1792w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1518+72+0+0+184+0+0),positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 96px) / 3, 1px)`,src:\"https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png\",srcSet:\"https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png?scale-down-to=1024 878w,https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png?scale-down-to=2048 1757w,https://framerusercontent.com/images/d2azcApeUxXyavAFzn1frr62qM.png 1792w\"},className:\"framer-1il4bg9\",\"data-framer-name\":\"Image\"})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8zz7tu\",\"data-framer-name\":\"Postions\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mnmvu3\",\"data-framer-name\":\"Container wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15zngvk\",\"data-styles-preset\":\"GOAQiyPxu\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a73982d7-8b96-474a-aa5a-501c3f53d520, rgb(29, 29, 29))\"},children:\"Our team is a blend of visionary designers, skilled artisans, and passionate individuals who share a common goals to create furniture that inspires. From our hands to your home, we take pride in every step of the journey\"})}),className:\"framer-l9t0fb\",\"data-framer-name\":\"Our team is a blend of visionary designers, skilled artisans, and passionate individuals who share a common goals to create furniture that inspires. From our hands to your home, we take pride in every step of the journey\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pj8EET_zv:{y:(componentViewport?.y||0)+0+4422+72+0+0+92},TOMecryH5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px)`,y:(componentViewport?.y||0)+0+4590+56+0+0+92}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:875,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 48px)`,y:(componentViewport?.y||0)+0+2368+72+0+0+92,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1778m37-container\",nodeId:\"ej6GGstMU\",scopeId:\"cX_jqEroR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pj8EET_zv:{variant:\"ybSr55toH\"},TOMecryH5:{variant:\"A7334OqUE\"}},children:/*#__PURE__*/_jsx(AboutUsImageIntractions,{height:\"100%\",id:\"ej6GGstMU\",layoutId:\"ej6GGstMU\",style:{width:\"100%\"},variant:\"nl1ms9M5i\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-181ohk0\",\"data-framer-name\":\"Image display\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rd4b0c-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KvX5BLhyv\",scopeId:\"cX_jqEroR\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1107,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"KvX5BLhyv\",intervalControl:1.5,itemAmount:1,layoutId:\"KvX5BLhyv\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f7f1o4\",\"data-framer-name\":\"SlideShow\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5jqyvm\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"144px\",src:\"https://framerusercontent.com/images/1RKkIv1IV4CRq3Z45jf0KpW9Oe0.jpg\",srcSet:\"https://framerusercontent.com/images/1RKkIv1IV4CRq3Z45jf0KpW9Oe0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1RKkIv1IV4CRq3Z45jf0KpW9Oe0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1RKkIv1IV4CRq3Z45jf0KpW9Oe0.jpg 1920w\"},className:\"framer-1wyjrrh\",\"data-framer-name\":\"Frame 37\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h8k6kd\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"144px\",src:\"https://framerusercontent.com/images/iRzlumGmm7JrIGUmcQSyV8wQk.jpg\",srcSet:\"https://framerusercontent.com/images/iRzlumGmm7JrIGUmcQSyV8wQk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/iRzlumGmm7JrIGUmcQSyV8wQk.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/iRzlumGmm7JrIGUmcQSyV8wQk.jpg 1920w\"},className:\"framer-nxblyj\",\"data-framer-name\":\"Frame 38\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1prtr83\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"144px\",src:\"https://framerusercontent.com/images/abyCXByngxjmANi3llEw8FgtPU.jpg\",srcSet:\"https://framerusercontent.com/images/abyCXByngxjmANi3llEw8FgtPU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/abyCXByngxjmANi3llEw8FgtPU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/abyCXByngxjmANi3llEw8FgtPU.jpg 1920w\"},className:\"framer-1oil6i3\",\"data-framer-name\":\"Frame 39\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g57ocz\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"144px\",src:\"https://framerusercontent.com/images/Je8cgBpW8k0fSOhjvYNTBpbjw.jpg\",srcSet:\"https://framerusercontent.com/images/Je8cgBpW8k0fSOhjvYNTBpbjw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Je8cgBpW8k0fSOhjvYNTBpbjw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Je8cgBpW8k0fSOhjvYNTBpbjw.jpg 1920w\"},className:\"framer-1ff52lp\",\"data-framer-name\":\"Frame 40\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k2o2h\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"144px\",src:\"https://framerusercontent.com/images/RRD9PsbQzq1zz47uE2NS5BS4.jpg\",srcSet:\"https://framerusercontent.com/images/RRD9PsbQzq1zz47uE2NS5BS4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/RRD9PsbQzq1zz47uE2NS5BS4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/RRD9PsbQzq1zz47uE2NS5BS4.jpg 1920w\"},className:\"framer-cvqf4v\",\"data-framer-name\":\"Frame 41\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xx0hlk\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"144px\",src:\"https://framerusercontent.com/images/lLmVLBSEYAkgBCmPUz24S6olAaA.jpg\",srcSet:\"https://framerusercontent.com/images/lLmVLBSEYAkgBCmPUz24S6olAaA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lLmVLBSEYAkgBCmPUz24S6olAaA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/lLmVLBSEYAkgBCmPUz24S6olAaA.jpg 1920w\"},className:\"framer-1xfdnw1\",\"data-framer-name\":\"Frame 42\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sbce15\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"144px\",src:\"https://framerusercontent.com/images/lyqtQ7sc9yfs6k0Xf0w16QMU.jpg\",srcSet:\"https://framerusercontent.com/images/lyqtQ7sc9yfs6k0Xf0w16QMU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lyqtQ7sc9yfs6k0Xf0w16QMU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/lyqtQ7sc9yfs6k0Xf0w16QMU.jpg 1920w\"},className:\"framer-ko9398\",\"data-framer-name\":\"Frame 43\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b8dm7\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"144px\",src:\"https://framerusercontent.com/images/5gZ6uuQ6mQKKpOOC5CBE8pssE.jpg\",srcSet:\"https://framerusercontent.com/images/5gZ6uuQ6mQKKpOOC5CBE8pssE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/5gZ6uuQ6mQKKpOOC5CBE8pssE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/5gZ6uuQ6mQKKpOOC5CBE8pssE.jpg 1920w\"},className:\"framer-1mgcms9\",\"data-framer-name\":\"Frame 44\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vwv95u\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"144px\",src:\"https://framerusercontent.com/images/uLFqSSO4G3gjty7GT2NHXiv0.jpg\",srcSet:\"https://framerusercontent.com/images/uLFqSSO4G3gjty7GT2NHXiv0.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/uLFqSSO4G3gjty7GT2NHXiv0.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/uLFqSSO4G3gjty7GT2NHXiv0.jpg 1920w\"},className:\"framer-fuz0bx\",\"data-framer-name\":\"Frame 45\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r3y0k1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"144px\",src:\"https://framerusercontent.com/images/b6pPf1MpyQ9C0yDp0oM0O4qN5Xg.jpg\",srcSet:\"https://framerusercontent.com/images/b6pPf1MpyQ9C0yDp0oM0O4qN5Xg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/b6pPf1MpyQ9C0yDp0oM0O4qN5Xg.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/b6pPf1MpyQ9C0yDp0oM0O4qN5Xg.jpg 1920w\"},className:\"framer-4obyq6\",\"data-framer-name\":\"Frame 46\"})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y6sa16-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"qGRx7Um67\",scopeId:\"cX_jqEroR\",children:/*#__PURE__*/_jsx(LemonSqueezy,{fontControl:{fontFamily:'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0.1em\",lineHeight:\"24px\"},height:\"100%\",id:\"qGRx7Um67\",isRedirect:true,layoutId:\"qGRx7Um67\",style:{height:\"100%\",width:\"100%\"},styleOptions:{backgroundColor:\"rgb(12, 12, 12)\",borderRadius:32,color:\"rgb(255, 255, 255)\",padding:10,paddingBottom:16,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:16},text:\"Buy Template\",url:\"https://decraftvisual.lemonsqueezy.com/buy/b8cb0c4a-563c-403a-b1f5-374936fcca00\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CBWKY.framer-x9m6h0, .framer-CBWKY .framer-x9m6h0 { display: block; }\",\".framer-CBWKY.framer-bbqo16 { align-content: center; align-items: center; background-color: var(--token-69c8d7a8-e73f-4bd9-9f82-c978241d0940, #fdfdfd); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-CBWKY .framer-1842nx8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 81px 48px 72px 48px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-1qz70jy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-1so30gi, .framer-CBWKY .framer-w20i9m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-dq63a9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 32%; }\",\".framer-CBWKY .framer-h2lpgx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 74%; }\",\".framer-CBWKY .framer-xrnk3z { align-content: center; align-items: center; aspect-ratio: 0.8412698412698413 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 378px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-2ciih2 { aspect-ratio: 0.8412698412698413 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 378px); overflow: hidden; position: relative; width: 1px; }\",\".framer-CBWKY .framer-17vv3hz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CBWKY .framer-17986ix { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-17so4y6, .framer-CBWKY .framer-mdgrya, .framer-CBWKY .framer-17ibpk, .framer-CBWKY .framer-1l67ylf, .framer-CBWKY .framer-1pkgj6o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-CBWKY .framer-3hjfoj, .framer-CBWKY .framer-16nblyi { aspect-ratio: 0.8793103448275862 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 232px); overflow: hidden; position: relative; width: 1px; }\",\".framer-CBWKY .framer-878amq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 58%; }\",\".framer-CBWKY .framer-1axank { aspect-ratio: 0.8989547038327527 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 861px); overflow: hidden; position: relative; width: 1px; }\",\".framer-CBWKY .framer-1njp82h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CBWKY .framer-1jiy9bl, .framer-CBWKY .framer-1jec6yj, .framer-CBWKY .framer-10yn9ov { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 644px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBWKY .framer-1ucpb3g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 72px 48px 72px 48px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-mo1v1o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-1mhoo3i { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 485px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBWKY .framer-gxz5ao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-qygwa2, .framer-CBWKY .framer-76j7vs, .framer-CBWKY .framer-1il4bg9 { aspect-ratio: 0.8582375478927203 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 522px); overflow: hidden; position: relative; width: 1px; }\",\".framer-CBWKY .framer-8zz7tu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 72px 48px 72px 0px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-1mnmvu3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-l9t0fb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 665px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBWKY .framer-1778m37-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-CBWKY .framer-181ohk0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-1rd4b0c-container { aspect-ratio: 8.323699421965317 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 173px); position: relative; width: 100%; }\",\".framer-CBWKY .framer-f7f1o4 { display: grid; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(10, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-CBWKY .framer-5jqyvm, .framer-CBWKY .framer-1h8k6kd, .framer-CBWKY .framer-1prtr83, .framer-CBWKY .framer-1g57ocz, .framer-CBWKY .framer-1k2o2h, .framer-CBWKY .framer-1xx0hlk, .framer-CBWKY .framer-1sbce15, .framer-CBWKY .framer-b8dm7, .framer-CBWKY .framer-1vwv95u, .framer-CBWKY .framer-1r3y0k1 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CBWKY .framer-1wyjrrh, .framer-CBWKY .framer-nxblyj, .framer-CBWKY .framer-1oil6i3, .framer-CBWKY .framer-1ff52lp, .framer-CBWKY .framer-cvqf4v, .framer-CBWKY .framer-1xfdnw1, .framer-CBWKY .framer-ko9398, .framer-CBWKY .framer-1mgcms9, .framer-CBWKY .framer-fuz0bx, .framer-CBWKY .framer-4obyq6 { aspect-ratio: 0.8323699421965318 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 1px; }\",\".framer-CBWKY .framer-y6sa16-container { flex: none; height: 46px; position: fixed; right: 20px; top: calc(88.43159065628478% - 46px / 2); width: 142px; z-index: 6; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CBWKY.framer-bbqo16, .framer-CBWKY .framer-1842nx8, .framer-CBWKY .framer-1qz70jy, .framer-CBWKY .framer-dq63a9, .framer-CBWKY .framer-h2lpgx, .framer-CBWKY .framer-xrnk3z, .framer-CBWKY .framer-17986ix, .framer-CBWKY .framer-17so4y6, .framer-CBWKY .framer-mdgrya, .framer-CBWKY .framer-878amq, .framer-CBWKY .framer-1njp82h, .framer-CBWKY .framer-1ucpb3g, .framer-CBWKY .framer-mo1v1o, .framer-CBWKY .framer-gxz5ao, .framer-CBWKY .framer-17ibpk, .framer-CBWKY .framer-1l67ylf, .framer-CBWKY .framer-1pkgj6o, .framer-CBWKY .framer-8zz7tu, .framer-CBWKY .framer-1mnmvu3, .framer-CBWKY .framer-181ohk0, .framer-CBWKY .framer-5jqyvm, .framer-CBWKY .framer-1h8k6kd, .framer-CBWKY .framer-1prtr83, .framer-CBWKY .framer-1g57ocz, .framer-CBWKY .framer-1k2o2h, .framer-CBWKY .framer-1xx0hlk, .framer-CBWKY .framer-1sbce15, .framer-CBWKY .framer-b8dm7, .framer-CBWKY .framer-1vwv95u, .framer-CBWKY .framer-1r3y0k1 { gap: 0px; } .framer-CBWKY.framer-bbqo16 > *, .framer-CBWKY .framer-1842nx8 > *, .framer-CBWKY .framer-1qz70jy > *, .framer-CBWKY .framer-8zz7tu > *, .framer-CBWKY .framer-181ohk0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CBWKY.framer-bbqo16 > :first-child, .framer-CBWKY .framer-1842nx8 > :first-child, .framer-CBWKY .framer-1qz70jy > :first-child, .framer-CBWKY .framer-dq63a9 > :first-child, .framer-CBWKY .framer-h2lpgx > :first-child, .framer-CBWKY .framer-1njp82h > :first-child, .framer-CBWKY .framer-1ucpb3g > :first-child, .framer-CBWKY .framer-mo1v1o > :first-child, .framer-CBWKY .framer-8zz7tu > :first-child, .framer-CBWKY .framer-1mnmvu3 > :first-child, .framer-CBWKY .framer-181ohk0 > :first-child { margin-top: 0px; } .framer-CBWKY.framer-bbqo16 > :last-child, .framer-CBWKY .framer-1842nx8 > :last-child, .framer-CBWKY .framer-1qz70jy > :last-child, .framer-CBWKY .framer-dq63a9 > :last-child, .framer-CBWKY .framer-h2lpgx > :last-child, .framer-CBWKY .framer-1njp82h > :last-child, .framer-CBWKY .framer-1ucpb3g > :last-child, .framer-CBWKY .framer-mo1v1o > :last-child, .framer-CBWKY .framer-8zz7tu > :last-child, .framer-CBWKY .framer-1mnmvu3 > :last-child, .framer-CBWKY .framer-181ohk0 > :last-child { margin-bottom: 0px; } .framer-CBWKY .framer-dq63a9 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-CBWKY .framer-h2lpgx > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-CBWKY .framer-xrnk3z > *, .framer-CBWKY .framer-17so4y6 > *, .framer-CBWKY .framer-mdgrya > *, .framer-CBWKY .framer-878amq > *, .framer-CBWKY .framer-17ibpk > *, .framer-CBWKY .framer-1l67ylf > *, .framer-CBWKY .framer-1pkgj6o > *, .framer-CBWKY .framer-5jqyvm > *, .framer-CBWKY .framer-1h8k6kd > *, .framer-CBWKY .framer-1prtr83 > *, .framer-CBWKY .framer-1g57ocz > *, .framer-CBWKY .framer-1k2o2h > *, .framer-CBWKY .framer-1xx0hlk > *, .framer-CBWKY .framer-1sbce15 > *, .framer-CBWKY .framer-b8dm7 > *, .framer-CBWKY .framer-1vwv95u > *, .framer-CBWKY .framer-1r3y0k1 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-CBWKY .framer-xrnk3z > :first-child, .framer-CBWKY .framer-17986ix > :first-child, .framer-CBWKY .framer-17so4y6 > :first-child, .framer-CBWKY .framer-mdgrya > :first-child, .framer-CBWKY .framer-878amq > :first-child, .framer-CBWKY .framer-gxz5ao > :first-child, .framer-CBWKY .framer-17ibpk > :first-child, .framer-CBWKY .framer-1l67ylf > :first-child, .framer-CBWKY .framer-1pkgj6o > :first-child, .framer-CBWKY .framer-5jqyvm > :first-child, .framer-CBWKY .framer-1h8k6kd > :first-child, .framer-CBWKY .framer-1prtr83 > :first-child, .framer-CBWKY .framer-1g57ocz > :first-child, .framer-CBWKY .framer-1k2o2h > :first-child, .framer-CBWKY .framer-1xx0hlk > :first-child, .framer-CBWKY .framer-1sbce15 > :first-child, .framer-CBWKY .framer-b8dm7 > :first-child, .framer-CBWKY .framer-1vwv95u > :first-child, .framer-CBWKY .framer-1r3y0k1 > :first-child { margin-left: 0px; } .framer-CBWKY .framer-xrnk3z > :last-child, .framer-CBWKY .framer-17986ix > :last-child, .framer-CBWKY .framer-17so4y6 > :last-child, .framer-CBWKY .framer-mdgrya > :last-child, .framer-CBWKY .framer-878amq > :last-child, .framer-CBWKY .framer-gxz5ao > :last-child, .framer-CBWKY .framer-17ibpk > :last-child, .framer-CBWKY .framer-1l67ylf > :last-child, .framer-CBWKY .framer-1pkgj6o > :last-child, .framer-CBWKY .framer-5jqyvm > :last-child, .framer-CBWKY .framer-1h8k6kd > :last-child, .framer-CBWKY .framer-1prtr83 > :last-child, .framer-CBWKY .framer-1g57ocz > :last-child, .framer-CBWKY .framer-1k2o2h > :last-child, .framer-CBWKY .framer-1xx0hlk > :last-child, .framer-CBWKY .framer-1sbce15 > :last-child, .framer-CBWKY .framer-b8dm7 > :last-child, .framer-CBWKY .framer-1vwv95u > :last-child, .framer-CBWKY .framer-1r3y0k1 > :last-child { margin-right: 0px; } .framer-CBWKY .framer-17986ix > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-CBWKY .framer-1njp82h > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CBWKY .framer-1ucpb3g > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-CBWKY .framer-mo1v1o > *, .framer-CBWKY .framer-1mnmvu3 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-CBWKY .framer-gxz5ao > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-CBWKY.framer-bbqo16 { width: 1200px; } .framer-CBWKY .framer-xrnk3z, .framer-CBWKY .framer-2ciih2 { height: var(--framer-aspect-ratio-supported, 310px); } .framer-CBWKY .framer-3hjfoj, .framer-CBWKY .framer-16nblyi { height: var(--framer-aspect-ratio-supported, 189px); } .framer-CBWKY .framer-1axank { height: var(--framer-aspect-ratio-supported, 707px); } .framer-CBWKY .framer-qygwa2, .framer-CBWKY .framer-76j7vs, .framer-CBWKY .framer-1il4bg9 { height: var(--framer-aspect-ratio-supported, 429px); } .framer-CBWKY .framer-1rd4b0c-container { height: var(--framer-aspect-ratio-supported, 144px); }}\",\"@media (min-width: 768px) and (max-width: 1199px) { .framer-CBWKY.framer-bbqo16 { width: 768px; } .framer-CBWKY .framer-1842nx8 { padding: 81px 24px 72px 24px; } .framer-CBWKY .framer-1qz70jy { gap: 64px; } .framer-CBWKY .framer-1so30gi { flex-direction: column; gap: 72px; justify-content: flex-start; } .framer-CBWKY .framer-dq63a9, .framer-CBWKY .framer-878amq, .framer-CBWKY .framer-1njp82h, .framer-CBWKY .framer-1jiy9bl, .framer-CBWKY .framer-l9t0fb { width: 100%; } .framer-CBWKY .framer-h2lpgx { width: min-content; } .framer-CBWKY .framer-xrnk3z { aspect-ratio: unset; height: min-content; width: min-content; } .framer-CBWKY .framer-2ciih2 { aspect-ratio: unset; flex: none; height: 378px; width: 318px; } .framer-CBWKY .framer-17vv3hz { width: 318px; } .framer-CBWKY .framer-3hjfoj, .framer-CBWKY .framer-16nblyi { height: var(--framer-aspect-ratio-supported, 227px); } .framer-CBWKY .framer-1axank { height: var(--framer-aspect-ratio-supported, 222px); } .framer-CBWKY .framer-1jec6yj { --framer-text-wrap-override: none; width: 100%; } .framer-CBWKY .framer-1ucpb3g, .framer-CBWKY .framer-8zz7tu { padding: 72px 24px 72px 24px; } .framer-CBWKY .framer-w20i9m { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-CBWKY .framer-gxz5ao { flex-direction: column; } .framer-CBWKY .framer-17ibpk, .framer-CBWKY .framer-1l67ylf, .framer-CBWKY .framer-1pkgj6o { flex: none; width: 100%; } .framer-CBWKY .framer-qygwa2, .framer-CBWKY .framer-1il4bg9 { aspect-ratio: 1.3793103448275863 / 1; height: var(--framer-aspect-ratio-supported, 145px); } .framer-CBWKY .framer-76j7vs { aspect-ratio: unset; height: 522px; } .framer-CBWKY .framer-1rd4b0c-container { width: 1440px; } .framer-CBWKY .framer-y6sa16-container { top: calc(68.79629629629632% - 46px / 2); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CBWKY .framer-1qz70jy, .framer-CBWKY .framer-1so30gi, .framer-CBWKY .framer-w20i9m, .framer-CBWKY .framer-gxz5ao { gap: 0px; } .framer-CBWKY .framer-1qz70jy > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-CBWKY .framer-1qz70jy > :first-child, .framer-CBWKY .framer-1so30gi > :first-child, .framer-CBWKY .framer-w20i9m > :first-child, .framer-CBWKY .framer-gxz5ao > :first-child { margin-top: 0px; } .framer-CBWKY .framer-1qz70jy > :last-child, .framer-CBWKY .framer-1so30gi > :last-child, .framer-CBWKY .framer-w20i9m > :last-child, .framer-CBWKY .framer-gxz5ao > :last-child { margin-bottom: 0px; } .framer-CBWKY .framer-1so30gi > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-CBWKY .framer-w20i9m > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-CBWKY .framer-gxz5ao > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (max-width: 767px) { .framer-CBWKY.framer-bbqo16 { width: 375px; } .framer-CBWKY .framer-1842nx8 { padding: 81px 16px 56px 16px; } .framer-CBWKY .framer-1qz70jy { gap: 56px; } .framer-CBWKY .framer-1so30gi { flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-CBWKY .framer-dq63a9, .framer-CBWKY .framer-h2lpgx, .framer-CBWKY .framer-878amq, .framer-CBWKY .framer-1njp82h, .framer-CBWKY .framer-1jiy9bl, .framer-CBWKY .framer-1jec6yj, .framer-CBWKY .framer-l9t0fb { width: 100%; } .framer-CBWKY .framer-xrnk3z, .framer-CBWKY .framer-2ciih2 { height: var(--framer-aspect-ratio-supported, 238px); } .framer-CBWKY .framer-17vv3hz { --framer-text-wrap-override: none; } .framer-CBWKY .framer-17986ix, .framer-CBWKY .framer-gxz5ao { flex-direction: column; } .framer-CBWKY .framer-17so4y6, .framer-CBWKY .framer-mdgrya, .framer-CBWKY .framer-17ibpk, .framer-CBWKY .framer-1l67ylf, .framer-CBWKY .framer-1pkgj6o { flex: none; width: 100%; } .framer-CBWKY .framer-3hjfoj, .framer-CBWKY .framer-16nblyi { height: var(--framer-aspect-ratio-supported, 227px); } .framer-CBWKY .framer-1axank { height: var(--framer-aspect-ratio-supported, 222px); } .framer-CBWKY .framer-1ucpb3g, .framer-CBWKY .framer-8zz7tu { padding: 56px 16px 56px 16px; } .framer-CBWKY .framer-w20i9m { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-CBWKY .framer-1mhoo3i, .framer-CBWKY .framer-10yn9ov { --framer-text-wrap-override: none; width: 100%; } .framer-CBWKY .framer-qygwa2, .framer-CBWKY .framer-76j7vs, .framer-CBWKY .framer-1il4bg9 { height: var(--framer-aspect-ratio-supported, 233px); } .framer-CBWKY .framer-181ohk0 { padding: 32px 0px 32px 0px; } .framer-CBWKY .framer-1rd4b0c-container { aspect-ratio: 8.325 / 1; width: 1440px; } .framer-CBWKY .framer-y6sa16-container { bottom: 72px; top: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CBWKY .framer-1qz70jy, .framer-CBWKY .framer-1so30gi, .framer-CBWKY .framer-17986ix, .framer-CBWKY .framer-w20i9m, .framer-CBWKY .framer-gxz5ao { gap: 0px; } .framer-CBWKY .framer-1qz70jy > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-CBWKY .framer-1qz70jy > :first-child, .framer-CBWKY .framer-1so30gi > :first-child, .framer-CBWKY .framer-17986ix > :first-child, .framer-CBWKY .framer-w20i9m > :first-child, .framer-CBWKY .framer-gxz5ao > :first-child { margin-top: 0px; } .framer-CBWKY .framer-1qz70jy > :last-child, .framer-CBWKY .framer-1so30gi > :last-child, .framer-CBWKY .framer-17986ix > :last-child, .framer-CBWKY .framer-w20i9m > :last-child, .framer-CBWKY .framer-gxz5ao > :last-child { margin-bottom: 0px; } .framer-CBWKY .framer-1so30gi > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-CBWKY .framer-17986ix > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-CBWKY .framer-w20i9m > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-CBWKY .framer-gxz5ao > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4257\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UFG5SLBVJ\":{\"layout\":[\"fixed\",\"auto\"]},\"pj8EET_zv\":{\"layout\":[\"fixed\",\"auto\"]},\"TOMecryH5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramercX_jqEroR=withCSS(Component,css,\"framer-CBWKY\");export default FramercX_jqEroR;FramercX_jqEroR.displayName=\"Page\";FramercX_jqEroR.defaultProps={height:4257,width:1440};addFonts(FramercX_jqEroR,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Urbanist\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QVSEREMQIHTDJ6PBN6SDKDQRKHAIJM4G/5FQFK3HFEC5ZJORN7EUWWXKPUKR4HDO2/S3LPGNCYQN366TZLSH3ASTPTKANFMFDS.woff2\",weight:\"400\"}]},...AboutUsImageIntractionsFonts,...SlideshowFonts,...LemonSqueezyFonts,...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\":\"FramercX_jqEroR\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"4257\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UFG5SLBVJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pj8EET_zv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TOMecryH5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "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", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1c6nooc", "args", "onTapmwi8rv", "onTapgf1947", "onTapey97xa", "onTapb9gh20", "onTap157dhce", "onTap1btgdk6", "onTap2fpzej", "onTapvn933s", "onTap1yxvjwg", "onTaps4f7em", "onTap7xn8bi", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerf7BGJ3TyB", "withCSS", "f7BGJ3TyB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithFX", "withFX", "AboutUsImageIntractionsFonts", "getFonts", "f7BGJ3TyB_default", "SlideshowFonts", "Slideshow", "LemonSqueezyFonts", "LemonSqueezy", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "animation5", "animation6", "transition3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "MotionDivWithOptimizedAppearEffect", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "RichText2", "x", "MotionDivWithFX", "ComponentViewportProvider", "Container", "f7BGJ3TyB_default", "Slideshow", "LemonSqueezy", "css", "FramercX_jqEroR", "withCSS", "cX_jqEroR_default", "addFonts", "AboutUsImageIntractionsFonts", "SlideshowFonts", "LemonSqueezyFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
