{
  "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/3jX4qYfvpax0yF9hPb9i/Du0MA0Jy1jnshXC2OflM/Ku1Ad7MuG.js", "ssg:https://framerusercontent.com/modules/cYCboMGuQFlgRQVKU0v4/evTiUChJpdjOT9nSdqsx/zd12DLo3c.js", "ssg:https://framerusercontent.com/modules/RYxjvmOrZCXfOxiOdgGp/fG2fbTNKWKSBVPkQ8VRG/O0zr7s9Yt.js", "ssg:https://framerusercontent.com/modules/i4PodIqDxHYrwmv2e2bc/eMJz8mnhxFHMPzr1LuJs/augiA20Il.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 (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/vUdzx7U0jmd1MfIlARnj/5Q2XtPxWQ63QX5Hd43TH/apwSyuoRz.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7Emn0LnNQ1UoAwQziRRw/5EcgOrM7KEFRZmBfRzB3/imykxsETb.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/sc3ALKTryhh60tAYJyJf/1Asbt9bkFZdQlSLHaShC/tUYMTNBFc.js\";const enabledGestures={LGEcbg5Lb:{hover:true}};const cycleOrder=[\"LGEcbg5Lb\"];const serializationHash=\"framer-bZZno\";const variantClassNames={LGEcbg5Lb:\"framer-v-1xf35yn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:200,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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(React.Fragment);const getProps=({content,count,height,id,image,title,width,...props})=>{return{...props,cibCyaDWH:image??props.cibCyaDWH??{src:\"https://framerusercontent.com/images/AbCUPj8mr6tZYEH5TnUbTEYEMs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AbCUPj8mr6tZYEH5TnUbTEYEMs.png?scale-down-to=1024 710w,https://framerusercontent.com/images/AbCUPj8mr6tZYEH5TnUbTEYEMs.png 816w\"},mTnB9rQPb:title??props.mTnB9rQPb??\"Initial Consultation\",pOAExLcBN:count??props.pOAExLcBN??\"01\",SI36Sb1_p:content??props.SI36Sb1_p??\"The agency conducts a comprehensive assessment and analysis of the client's business, industry, market trends, competitors, and internal capabilities.\"};};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,pOAExLcBN,mTnB9rQPb,SI36Sb1_p,cibCyaDWH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LGEcbg5Lb\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1xf35yn\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Work-process-desktop\",layoutDependency:layoutDependency,layoutId:\"LGEcbg5Lb\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-44109306-b64a-4a74-9ceb-686404e4e8b7, rgb(0, 0, 0))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"LGEcbg5Lb-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u41gz2\",\"data-border\":true,\"data-framer-name\":\"Process-box\",layoutDependency:layoutDependency,layoutId:\"SVoiASTVD\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qaj8kz\",\"data-framer-name\":\"Process-title\",layoutDependency:layoutDependency,layoutId:\"amTukMRIR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11qfbd0\",\"data-framer-name\":\"Count-box\",layoutDependency:layoutDependency,layoutId:\"g3MogecOK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l3keoy\",\"data-styles-preset\":\"tUYMTNBFc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(239, 239, 239))\"},children:\"01\"})}),className:\"framer-b6ync2\",\"data-framer-name\":\"Count\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cfxwxJ413\",style:{\"--extracted-r6o4lv\":\"rgb(239, 239, 239)\"},text:pOAExLcBN,variants:{\"LGEcbg5Lb-hover\":{\"--extracted-1eung3n\":\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"LGEcbg5Lb-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-syrefg\",\"data-styles-preset\":\"imykxsETb\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47)))\"},children:\"01\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pxd2r6\",\"data-framer-name\":\"Process-label\",layoutDependency:layoutDependency,layoutId:\"UvhPF0Slp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-syrefg\",\"data-styles-preset\":\"imykxsETb\",children:\"Initial Consultation\"})}),className:\"framer-4300pk\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NxOjhKMA4\",text:mTnB9rQPb,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oz5iq3\",\"data-framer-name\":\"Process-content-wrapper\",layoutDependency:layoutDependency,layoutId:\"cMxoVX89y\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17xdicv\",\"data-framer-name\":\"Process-content\",layoutDependency:layoutDependency,layoutId:\"wabAqmvmt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7332pr\",\"data-styles-preset\":\"apwSyuoRz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\"},children:\"The agency conducts a comprehensive assessment and analysis of the client's business, industry, market trends, competitors, and internal capabilities.\"})}),className:\"framer-1lkvpnc\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nw57GKCML\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\"},text:SI36Sb1_p,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||510)-0-574)/2+0+0)+24+276),pixelHeight:1176,pixelWidth:816,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,...toResponsiveImage(cibCyaDWH),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-16fjh8l\",\"data-framer-name\":\"Process-image\",layoutDependency:layoutDependency,layoutId:\"T2n1zGuhv\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bZZno.framer-wfo6ih, .framer-bZZno .framer-wfo6ih { display: block; }\",\".framer-bZZno.framer-1xf35yn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 708px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bZZno .framer-u41gz2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bZZno .framer-qaj8kz { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bZZno .framer-11qfbd0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bZZno .framer-b6ync2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bZZno .framer-pxd2r6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bZZno .framer-4300pk { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bZZno .framer-1oz5iq3 { 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; overflow: hidden; padding: 16px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-bZZno .framer-17xdicv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bZZno .framer-1lkvpnc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bZZno .framer-16fjh8l { flex: none; height: 250px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bZZno.framer-1xf35yn, .framer-bZZno .framer-qaj8kz, .framer-bZZno .framer-11qfbd0, .framer-bZZno .framer-pxd2r6, .framer-bZZno .framer-1oz5iq3, .framer-bZZno .framer-17xdicv { gap: 0px; } .framer-bZZno.framer-1xf35yn > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-bZZno.framer-1xf35yn > :first-child, .framer-bZZno .framer-qaj8kz > :first-child, .framer-bZZno .framer-1oz5iq3 > :first-child { margin-top: 0px; } .framer-bZZno.framer-1xf35yn > :last-child, .framer-bZZno .framer-qaj8kz > :last-child, .framer-bZZno .framer-1oz5iq3 > :last-child { margin-bottom: 0px; } .framer-bZZno .framer-qaj8kz > *, .framer-bZZno .framer-1oz5iq3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bZZno .framer-11qfbd0 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-bZZno .framer-11qfbd0 > :first-child, .framer-bZZno .framer-pxd2r6 > :first-child, .framer-bZZno .framer-17xdicv > :first-child { margin-left: 0px; } .framer-bZZno .framer-11qfbd0 > :last-child, .framer-bZZno .framer-pxd2r6 > :last-child, .framer-bZZno .framer-17xdicv > :last-child { margin-right: 0px; } .framer-bZZno .framer-pxd2r6 > *, .framer-bZZno .framer-17xdicv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-bZZno[data-border=\"true\"]::after, .framer-bZZno [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 510\n * @framerIntrinsicWidth 708\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UHUaZ7u_3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pOAExLcBN\":\"count\",\"mTnB9rQPb\":\"title\",\"SI36Sb1_p\":\"content\",\"cibCyaDWH\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKu1Ad7MuG=withCSS(Component,css,\"framer-bZZno\");export default FramerKu1Ad7MuG;FramerKu1Ad7MuG.displayName=\"Process-wrapper\";FramerKu1Ad7MuG.defaultProps={height:510,width:708};addPropertyControls(FramerKu1Ad7MuG,{pOAExLcBN:{defaultValue:\"01\",displayTextArea:false,title:\"Count\",type:ControlType.String},mTnB9rQPb:{defaultValue:\"Initial Consultation\",displayTextArea:false,title:\"Title\",type:ControlType.String},SI36Sb1_p:{defaultValue:\"The agency conducts a comprehensive assessment and analysis of the client's business, industry, market trends, competitors, and internal capabilities.\",displayTextArea:false,title:\"Content\",type:ControlType.String},cibCyaDWH:{__defaultAssetReference:\"data:framer/asset-reference,AbCUPj8mr6tZYEH5TnUbTEYEMs.png?originalFilename=Asymmetric+Sunset+Geometric+Abstraction+1+%287%29+%281%29.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerKu1Ad7MuG,[{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\":\"FramerKu1Ad7MuG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"708\",\"framerIntrinsicHeight\":\"510\",\"framerVariables\":\"{\\\"pOAExLcBN\\\":\\\"count\\\",\\\"mTnB9rQPb\\\":\\\"title\\\",\\\"SI36Sb1_p\\\":\\\"content\\\",\\\"cibCyaDWH\\\":\\\"image\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UHUaZ7u_3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\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{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vUdzx7U0jmd1MfIlARnj/5Q2XtPxWQ63QX5Hd43TH/apwSyuoRz.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/pJwPELz2qUEuWvm0Td8o/RJ6GEUw7OxYE8GsQYmIm/x7pvmm00c.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zKrAJmFkL7QvRTcLLCEe/SqT2LpUgUqJGA3kiQtLv/Y3N1ZU8tH.js\";const enabledGestures={q5Qrq1_n3:{hover:true}};const cycleOrder=[\"q5Qrq1_n3\",\"M6GqOJzVp\",\"FZStBz9OB\"];const serializationHash=\"framer-j4rc7\";const variantClassNames={FZStBz9OB:\"framer-v-jf2a5z\",M6GqOJzVp:\"framer-v-2c0tt0\",q5Qrq1_n3:\"framer-v-18pzsr0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[0,0,1,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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={\"Work-desktop\":\"q5Qrq1_n3\",\"Work-phone-hover\":\"FZStBz9OB\",\"Work-phone\":\"M6GqOJzVp\"};const getProps=({date,height,id,image,serviceName,title,width,...props})=>{return{...props,ddUbSwW7e:image??props.ddUbSwW7e??{src:\"https://framerusercontent.com/images/0tDqyIRLVxNuKeLKvPQl6P2vWQo.png\",srcSet:\"https://framerusercontent.com/images/0tDqyIRLVxNuKeLKvPQl6P2vWQo.png?scale-down-to=512 512w,https://framerusercontent.com/images/0tDqyIRLVxNuKeLKvPQl6P2vWQo.png 675w\"},eHLCCpP_u:date??props.eHLCCpP_u??\"Decmber 2023\",jM_DZGoHA:serviceName??props.jM_DZGoHA??\"UIUX Design\",pfo77mYQm:title??props.pfo77mYQm??\"Zenfo\",variant:humanReadableVariantMap[props.variant]??props.variant??\"q5Qrq1_n3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,pfo77mYQm,ddUbSwW7e,eHLCCpP_u,jM_DZGoHA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"q5Qrq1_n3\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1cmtyth=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"FZStBz9OB\");});const onMouseLeave1ds8bj4=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"M6GqOJzVp\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-18pzsr0\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Work-desktop\",layoutDependency:layoutDependency,layoutId:\"q5Qrq1_n3\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-44109306-b64a-4a74-9ceb-686404e4e8b7, rgb(0, 0, 0))\",...style},...addPropertyOverrides({\"q5Qrq1_n3-hover\":{\"data-framer-name\":undefined},FZStBz9OB:{\"data-framer-name\":\"Work-phone-hover\",\"data-highlight\":true,onMouseLeave:onMouseLeave1ds8bj4},M6GqOJzVp:{\"data-framer-name\":\"Work-phone\",\"data-highlight\":true,onMouseEnter:onMouseEnter1cmtyth}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-54xduy\",\"data-framer-name\":\"Service-heading-wrapper\",layoutDependency:layoutDependency,layoutId:\"oRDDjx889\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-olzhon\",\"data-styles-preset\":\"Y3N1ZU8tH\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgba(239, 239, 239, 0.4))\"},children:\"Zenfo\"})}),className:\"framer-12ctnyx\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c2YzqEAnK\",style:{\"--extracted-1of0zx5\":\"rgba(239, 239, 239, 0.4)\"},text:pfo77mYQm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"arrow\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+43),pixelHeight:16,pixelWidth:47,src:\"https://framerusercontent.com/images/apfCkx3FLaG0tC6Y8y5Jh2WAEA.svg\"},className:\"framer-1d7sm5c\",\"data-framer-name\":\"Arrow\",layoutDependency:layoutDependency,layoutId:\"XpnfjdqM4\",...addPropertyOverrides({\"q5Qrq1_n3-hover\":{background:{alt:\"arrow\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(32+((componentViewport?.height||236)-56-101)/2)+43),pixelHeight:16,pixelWidth:47,src:\"https://framerusercontent.com/images/apfCkx3FLaG0tC6Y8y5Jh2WAEA.svg\"}},FZStBz9OB:{background:{alt:\"arrow\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+0+43),pixelHeight:16,pixelWidth:47,src:\"https://framerusercontent.com/images/apfCkx3FLaG0tC6Y8y5Jh2WAEA.svg\"}},M6GqOJzVp:{background:{alt:\"arrow\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+43),pixelHeight:16,pixelWidth:47,src:\"https://framerusercontent.com/images/apfCkx3FLaG0tC6Y8y5Jh2WAEA.svg\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xnqriy\",\"data-framer-name\":\"Service-container\",layoutDependency:layoutDependency,layoutId:\"mM7IUcDVi\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||157)- -20+0+0),sizes:`min(min(${componentViewport?.width||\"100vw\"} / 1.625, 640px), 350px)`,...toResponsiveImage(ddUbSwW7e)},className:\"framer-1cbxx5h\",\"data-framer-name\":\"Work-image\",layoutDependency:layoutDependency,layoutId:\"TKMvOZSqq\",...addPropertyOverrides({\"q5Qrq1_n3-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(32+((componentViewport?.height||236)-56-180)/2)+0+0),sizes:`min(min(${componentViewport?.width||\"100vw\"} / 1.625, 640px), 350px)`,...toResponsiveImage(ddUbSwW7e)}},FZStBz9OB:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+121+0+0),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 640px), 250px)`,...toResponsiveImage(ddUbSwW7e)}},M6GqOJzVp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||200)- -50+0+0),sizes:`min(min(${componentViewport?.width||\"100vw\"} / 1.625, 640px), 250px)`,...toResponsiveImage(ddUbSwW7e)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-33sdtw\",\"data-framer-name\":\"Service-content-wrapper\",layoutDependency:layoutDependency,layoutId:\"yn_fyUULj\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n2heyb\",\"data-framer-name\":\"Date\",layoutDependency:layoutDependency,layoutId:\"SBHIwwLTg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7332pr\",\"data-styles-preset\":\"apwSyuoRz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef49743c-9509-43f1-9f4b-6577d8c89475, rgba(255, 255, 255, 0.6)))\"},children:\"Decmber 2023\"})}),className:\"framer-uk6csf\",\"data-framer-name\":\"Date-text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PrnexVgI_\",style:{\"--extracted-r6o4lv\":\"var(--token-ef49743c-9509-43f1-9f4b-6577d8c89475, rgba(255, 255, 255, 0.6))\"},text:eHLCCpP_u,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l1qk7e\",\"data-framer-name\":\"Service-label\",layoutDependency:layoutDependency,layoutId:\"BVau2ltGr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-lu4qwh\",\"data-styles-preset\":\"x7pvmm00c\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255)))\"},children:\"UIUX Design\"})}),className:\"framer-lk0mmh\",\"data-framer-name\":\"Service-label-text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DhGMRYX6j\",style:{\"--extracted-1lwpl3i\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},text:jM_DZGoHA,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-j4rc7.framer-1psoccx, .framer-j4rc7 .framer-1psoccx { display: block; }\",\".framer-j4rc7.framer-18pzsr0 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 32px 0px 24px 0px; position: relative; width: 1040px; }\",\".framer-j4rc7 .framer-54xduy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-j4rc7 .framer-12ctnyx, .framer-j4rc7 .framer-uk6csf, .framer-j4rc7 .framer-lk0mmh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-j4rc7 .framer-1d7sm5c { flex: none; height: 15px; overflow: hidden; position: relative; width: 46px; }\",\".framer-j4rc7 .framer-1xnqriy { align-content: flex-end; align-items: flex-end; bottom: -200px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; max-width: 640px; overflow: hidden; padding: 0px; position: absolute; right: 0px; width: 62%; z-index: 0; }\",\".framer-j4rc7 .framer-1cbxx5h { flex: none; height: 180px; max-width: 350px; overflow: hidden; position: relative; width: 100%; }\",\".framer-j4rc7 .framer-33sdtw { 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; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-j4rc7 .framer-n2heyb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-j4rc7 .framer-l1qk7e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-j4rc7 .framer-54xduy, .framer-j4rc7 .framer-1xnqriy, .framer-j4rc7 .framer-33sdtw, .framer-j4rc7 .framer-n2heyb, .framer-j4rc7 .framer-l1qk7e { gap: 0px; } .framer-j4rc7 .framer-54xduy > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-j4rc7 .framer-54xduy > :first-child, .framer-j4rc7 .framer-1xnqriy > :first-child, .framer-j4rc7 .framer-n2heyb > :first-child, .framer-j4rc7 .framer-l1qk7e > :first-child { margin-left: 0px; } .framer-j4rc7 .framer-54xduy > :last-child, .framer-j4rc7 .framer-1xnqriy > :last-child, .framer-j4rc7 .framer-n2heyb > :last-child, .framer-j4rc7 .framer-l1qk7e > :last-child { margin-right: 0px; } .framer-j4rc7 .framer-1xnqriy > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-j4rc7 .framer-33sdtw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-j4rc7 .framer-33sdtw > :first-child { margin-top: 0px; } .framer-j4rc7 .framer-33sdtw > :last-child { margin-bottom: 0px; } .framer-j4rc7 .framer-n2heyb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-j4rc7 .framer-l1qk7e > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-j4rc7.framer-v-2c0tt0.framer-18pzsr0 { cursor: unset; padding: 20px 0px 20px 0px; width: 390px; }\",\".framer-j4rc7.framer-v-2c0tt0 .framer-54xduy { flex: 1 0 0px; justify-content: flex-start; width: 1px; }\",\".framer-j4rc7.framer-v-2c0tt0 .framer-1cbxx5h, .framer-j4rc7.framer-v-jf2a5z .framer-1cbxx5h { height: 150px; max-width: 250px; }\",\".framer-j4rc7.framer-v-jf2a5z.framer-18pzsr0 { align-content: center; align-items: center; cursor: unset; flex-direction: column; gap: 20px; justify-content: flex-start; padding: 20px 0px 10px 0px; width: 390px; }\",\".framer-j4rc7.framer-v-jf2a5z .framer-54xduy { gap: 40px; justify-content: flex-end; order: 0; width: 100%; }\",\".framer-j4rc7.framer-v-jf2a5z .framer-1xnqriy { bottom: unset; flex-direction: column; order: 1; position: relative; right: unset; width: 100%; }\",\".framer-j4rc7.framer-v-jf2a5z .framer-33sdtw { align-content: flex-end; align-items: flex-end; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-j4rc7.framer-v-jf2a5z.framer-18pzsr0, .framer-j4rc7.framer-v-jf2a5z .framer-54xduy, .framer-j4rc7.framer-v-jf2a5z .framer-1xnqriy { gap: 0px; } .framer-j4rc7.framer-v-jf2a5z.framer-18pzsr0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-j4rc7.framer-v-jf2a5z.framer-18pzsr0 > :first-child, .framer-j4rc7.framer-v-jf2a5z .framer-1xnqriy > :first-child { margin-top: 0px; } .framer-j4rc7.framer-v-jf2a5z.framer-18pzsr0 > :last-child, .framer-j4rc7.framer-v-jf2a5z .framer-1xnqriy > :last-child { margin-bottom: 0px; } .framer-j4rc7.framer-v-jf2a5z .framer-54xduy > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-j4rc7.framer-v-jf2a5z .framer-54xduy > :first-child { margin-left: 0px; } .framer-j4rc7.framer-v-jf2a5z .framer-54xduy > :last-child { margin-right: 0px; } .framer-j4rc7.framer-v-jf2a5z .framer-1xnqriy > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-j4rc7.framer-v-18pzsr0.hover.framer-18pzsr0 { align-content: center; align-items: center; }\",\".framer-j4rc7.framer-v-18pzsr0.hover .framer-1xnqriy { bottom: unset; position: relative; right: unset; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-j4rc7[data-border=\"true\"]::after, .framer-j4rc7 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 157\n * @framerIntrinsicWidth 1040\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"M6GqOJzVp\":{\"layout\":[\"fixed\",\"auto\"]},\"FZStBz9OB\":{\"layout\":[\"fixed\",\"auto\"]},\"IZZand15w\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pfo77mYQm\":\"title\",\"ddUbSwW7e\":\"image\",\"eHLCCpP_u\":\"date\",\"jM_DZGoHA\":\"serviceName\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerzd12DLo3c=withCSS(Component,css,\"framer-j4rc7\");export default Framerzd12DLo3c;Framerzd12DLo3c.displayName=\"Work\";Framerzd12DLo3c.defaultProps={height:157,width:1040};addPropertyControls(Framerzd12DLo3c,{variant:{options:[\"q5Qrq1_n3\",\"M6GqOJzVp\",\"FZStBz9OB\"],optionTitles:[\"Work-desktop\",\"Work-phone\",\"Work-phone-hover\"],title:\"Variant\",type:ControlType.Enum},pfo77mYQm:{defaultValue:\"Zenfo\",displayTextArea:false,title:\"Title\",type:ControlType.String},ddUbSwW7e:{__defaultAssetReference:\"data:framer/asset-reference,0tDqyIRLVxNuKeLKvPQl6P2vWQo.png?originalFilename=work-img.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},eHLCCpP_u:{defaultValue:\"Decmber 2023\",displayTextArea:false,title:\"Date\",type:ControlType.String},jM_DZGoHA:{defaultValue:\"UIUX Design\",displayTextArea:false,title:\"Service-name\",type:ControlType.String}});addFonts(Framerzd12DLo3c,[{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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerzd12DLo3c\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M6GqOJzVp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FZStBz9OB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IZZand15w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1040\",\"framerIntrinsicHeight\":\"157\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"pfo77mYQm\\\":\\\"title\\\",\\\"ddUbSwW7e\\\":\\\"image\\\",\\\"eHLCCpP_u\\\":\\\"date\\\",\\\"jM_DZGoHA\\\":\\\"serviceName\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (575e68f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-Dy6iA .framer-styles-preset-1pdvriz:not(.rich-text-wrapper), .framer-Dy6iA .framer-styles-preset-1pdvriz.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 180px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.07em; --framer-line-height: 145px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #efefef; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Dy6iA .framer-styles-preset-1pdvriz:not(.rich-text-wrapper), .framer-Dy6iA .framer-styles-preset-1pdvriz.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.07em; --framer-line-height: 70px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #efefef; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Dy6iA .framer-styles-preset-1pdvriz:not(.rich-text-wrapper), .framer-Dy6iA .framer-styles-preset-1pdvriz.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.07em; --framer-line-height: 47px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #efefef; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Dy6iA\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import ProcessWrapper from\"#framer/local/canvasComponent/Ku1Ad7MuG/Ku1Ad7MuG.js\";import PurchaseButton from\"#framer/local/canvasComponent/OmnC9uRMk/OmnC9uRMk.js\";import CaseButton from\"#framer/local/canvasComponent/PzFFjEero/PzFFjEero.js\";import CaseCard from\"#framer/local/canvasComponent/Sh9ndVQN5/Sh9ndVQN5.js\";import Work from\"#framer/local/canvasComponent/zd12DLo3c/zd12DLo3c.js\";import{Counter}from\"#framer/local/codeFile/yHOIMad/Autocounter_alt.js\";import WorkCollection from\"#framer/local/collection/j6FP5yLE1/j6FP5yLE1.js\";import*as sharedStyle1 from\"#framer/local/css/apwSyuoRz/apwSyuoRz.js\";import*as sharedStyle3 from\"#framer/local/css/GybmpkfIx/GybmpkfIx.js\";import*as sharedStyle5 from\"#framer/local/css/imykxsETb/imykxsETb.js\";import*as sharedStyle2 from\"#framer/local/css/Nzbsn5gng/Nzbsn5gng.js\";import*as sharedStyle from\"#framer/local/css/O0zr7s9Yt/O0zr7s9Yt.js\";import*as sharedStyle4 from\"#framer/local/css/rRoVutbMU/rRoVutbMU.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageWithFX=withFX(Image);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const MotionDivWithFX=withFX(motion.div);const ProcessWrapperFonts=getFonts(ProcessWrapper);const ContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Container));const WorkFonts=getFonts(Work);const CounterFonts=getFonts(Counter);const CaseCardFonts=getFonts(CaseCard);const CaseButtonFonts=getFonts(CaseButton);const SlideshowFonts=getFonts(Slideshow);const PurchaseButtonFonts=getFonts(PurchaseButton);const breakpoints={Cm0VHn560:\"(min-width: 810px) and (max-width: 1259px)\",kf4lWex9S:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1260px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-mGQDq\";const variantClassNames={Cm0VHn560:\"framer-v-8g7nnc\",kf4lWex9S:\"framer-v-jofou9\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:1,ease:[.5,0,.88,.77],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition2={delay:0,duration:1.5,ease:[.44,0,.56,1],type:\"tween\"};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 transition3={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:5};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition4={damping:30,delay:0,mass:1,stiffness:90,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:-150,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:0,y:0};const transition5={damping:30,delay:0,mass:1,stiffness:30,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,transition:transition5,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"kf4lWex9S\",Tablet:\"Cm0VHn560\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,swDAk6J5qqNVYZ_lqS,i1lSILu9GqNVYZ_lqS,G3DmdZG5UqNVYZ_lqS,yjMtUHgVaqNVYZ_lqS,idqNVYZ_lqS,swDAk6J5qBqFICkBD_,i1lSILu9GBqFICkBD_,KKzCmQIPfBqFICkBD_,idBqFICkBD_,swDAk6J5qXCoKIt2P9,i1lSILu9GXCoKIt2P9,KKzCmQIPfXCoKIt2P9,idXCoKIt2P9,swDAk6J5qERpBrV_l4,i1lSILu9GERpBrV_l4,KKzCmQIPfERpBrV_l4,idERpBrV_l4,swDAk6J5qBxuKMfA5S,i1lSILu9GBxuKMfA5S,KKzCmQIPfBxuKMfA5S,idBxuKMfA5S,...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,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"AAIznoeCs\");const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"kf4lWex9S\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"kf4lWex9S\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-44109306-b64a-4a74-9ceb-686404e4e8b7, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1pstkj3\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-cirubh\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17n4j4t\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1pdvriz\",\"data-styles-preset\":\"O0zr7s9Yt\",style:{\"--framer-text-alignment\":\"left\"},children:[\"We design for Future\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\"},children:\".\"})]})}),className:\"framer-1urx0v6\",\"data-framer-appear-id\":\"1urx0v6\",\"data-framer-name\":\"Heading-text\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":AAIznoeCs\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"jDHJws9Ri\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1djknk7 framer-lux5qc\",\"data-framer-appear-id\":\"1djknk7\",\"data-framer-name\":\"Scroll-button\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7332pr\",\"data-styles-preset\":\"apwSyuoRz\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"Scroll to Works\"})}),className:\"framer-ena3f5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{background:{alt:\"down-arrow\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+50+0+195-47+0),pixelHeight:28,pixelWidth:29,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Cpq5kpHfOAceNKgNYTKsH0BXQvk.svg\"}},kf4lWex9S:{background:{alt:\"down-arrow\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+40+0+185-52+0),pixelHeight:28,pixelWidth:29,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Cpq5kpHfOAceNKgNYTKsH0BXQvk.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"down-arrow\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+0+225-49+0),pixelHeight:28,pixelWidth:29,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Cpq5kpHfOAceNKgNYTKsH0BXQvk.svg\"},className:\"framer-1b0esgu\",\"data-framer-name\":\"Down-arrow\"})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{background:{alt:\"header-img\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+50+195),pixelHeight:1480,pixelWidth:3200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xh9oWcHsvucp6OwNL6rtIFx0v8.webp\",srcSet:\"https://framerusercontent.com/images/xh9oWcHsvucp6OwNL6rtIFx0v8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/xh9oWcHsvucp6OwNL6rtIFx0v8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/xh9oWcHsvucp6OwNL6rtIFx0v8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/xh9oWcHsvucp6OwNL6rtIFx0v8.webp 3200w\"}},kf4lWex9S:{background:{alt:\"header-img\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+40+185),pixelHeight:1480,pixelWidth:3200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/n4JQ8AAocyU2sMKLWqhy9y98NDI.jpg\",srcSet:\"https://framerusercontent.com/images/n4JQ8AAocyU2sMKLWqhy9y98NDI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n4JQ8AAocyU2sMKLWqhy9y98NDI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n4JQ8AAocyU2sMKLWqhy9y98NDI.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"header-img\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+225),pixelHeight:1480,pixelWidth:3200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xh9oWcHsvucp6OwNL6rtIFx0v8.webp\",srcSet:\"https://framerusercontent.com/images/xh9oWcHsvucp6OwNL6rtIFx0v8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/xh9oWcHsvucp6OwNL6rtIFx0v8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/xh9oWcHsvucp6OwNL6rtIFx0v8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/xh9oWcHsvucp6OwNL6rtIFx0v8.webp 3200w\"},className:\"framer-1vipjar\",\"data-framer-name\":\"Header-image\"})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1w94fce\",\"data-framer-name\":\"Work-process\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ibkp8y\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hx45pk\",\"data-framer-name\":\"Heading-wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\"},children:\"HOW\"})}),className:\"framer-dl3cbv\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1sc5567\",\"data-styles-preset\":\"GybmpkfIx\",children:\"Work Process\"})}),className:\"framer-md27fx\",\"data-framer-name\":\"Heading-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1295u5i\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1440px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+624+60+0+0+222+0+0},kf4lWex9S:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 50px)`,y:(componentViewport?.y||0)+0+0+0+406+40+0+0+202+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:510,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1440px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+1045+60+0+0+222+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kf4lWex9S:{__framer__styleAppearEffectEnabled:undefined,animate:animation7,initial:animation8,optimized:true}},children:/*#__PURE__*/_jsx(ContainerWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rh3mh5-container\",\"data-framer-appear-id\":\"rh3mh5\",nodeId:\"BKGYnDtwJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProcessWrapper,{cibCyaDWH:addImageAlt({src:\"https://framerusercontent.com/images/BB3nYX1sAJTciFBdau6PbzoWw.png\",srcSet:\"https://framerusercontent.com/images/BB3nYX1sAJTciFBdau6PbzoWw.png?scale-down-to=512 512w,https://framerusercontent.com/images/BB3nYX1sAJTciFBdau6PbzoWw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BB3nYX1sAJTciFBdau6PbzoWw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BB3nYX1sAJTciFBdau6PbzoWw.png 2640w\"},\"process-img\"),height:\"100%\",id:\"BKGYnDtwJ\",layoutId:\"BKGYnDtwJ\",mTnB9rQPb:\"Preliminary Consultation\",pOAExLcBN:\"01\",SI36Sb1_p:\"The agency conducts a comprehensive assessment and analysis of the client's business, industry, market trends, competitors, and internal.\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1440px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+624+60+0+0+222+0+0},kf4lWex9S:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 50px)`,y:(componentViewport?.y||0)+0+0+0+406+40+0+0+202+0+534}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:510,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1440px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+1045+60+0+0+222+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kf4lWex9S:{__framer__styleAppearEffectEnabled:undefined,animate:animation7,initial:animation8,optimized:true}},children:/*#__PURE__*/_jsx(ContainerWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tbrbix-container\",\"data-framer-appear-id\":\"1tbrbix\",nodeId:\"CIh6dYdzR\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProcessWrapper,{cibCyaDWH:addImageAlt({src:\"https://framerusercontent.com/images/4MRnwYjK2AGBC6J7CpY5bneyDY.jpg\",srcSet:\"https://framerusercontent.com/images/4MRnwYjK2AGBC6J7CpY5bneyDY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4MRnwYjK2AGBC6J7CpY5bneyDY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4MRnwYjK2AGBC6J7CpY5bneyDY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4MRnwYjK2AGBC6J7CpY5bneyDY.jpg 2640w\"},\"process-img\"),height:\"100%\",id:\"CIh6dYdzR\",layoutId:\"CIh6dYdzR\",mTnB9rQPb:\"Assessment and Analysis\",pOAExLcBN:\"02\",SI36Sb1_p:\"A thorough assessment and analysis are crucial for understanding a business\u2019s position. This involves evaluating market trends, competitor strategies.\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1440px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+624+60+0+0+222+0+534},kf4lWex9S:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 50px)`,y:(componentViewport?.y||0)+0+0+0+406+40+0+0+202+0+1068}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:510,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1440px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+1045+60+0+0+222+0+534,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kf4lWex9S:{__framer__styleAppearEffectEnabled:undefined,animate:animation7,initial:animation8,optimized:true}},children:/*#__PURE__*/_jsx(ContainerWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f1p4gy-container\",\"data-framer-appear-id\":\"f1p4gy\",nodeId:\"t1xbhM_2o\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProcessWrapper,{cibCyaDWH:addImageAlt({src:\"https://framerusercontent.com/images/FTw5cazPVOkKh4ZXlYyVmXPZU.png\",srcSet:\"https://framerusercontent.com/images/FTw5cazPVOkKh4ZXlYyVmXPZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/FTw5cazPVOkKh4ZXlYyVmXPZU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FTw5cazPVOkKh4ZXlYyVmXPZU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FTw5cazPVOkKh4ZXlYyVmXPZU.png 2640w\"},\"process-img\"),height:\"100%\",id:\"t1xbhM_2o\",layoutId:\"t1xbhM_2o\",mTnB9rQPb:\"Operational Development\",pOAExLcBN:\"03\",SI36Sb1_p:\"Strategy development is a systematic process of defining goals, analyzing market conditions, and crafting actionable plans. It aligns resources, prioritizes initiatives, and sets a clear direction.\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1440px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+624+60+0+0+222+0+534},kf4lWex9S:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 50px)`,y:(componentViewport?.y||0)+0+0+0+406+40+0+0+202+0+1602}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:510,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1440px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+1045+60+0+0+222+0+534,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kf4lWex9S:{__framer__styleAppearEffectEnabled:undefined,animate:animation7,initial:animation8,optimized:true}},children:/*#__PURE__*/_jsx(ContainerWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9mkjms-container\",\"data-framer-appear-id\":\"9mkjms\",nodeId:\"u4eZIs9Zh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProcessWrapper,{cibCyaDWH:addImageAlt({src:\"https://framerusercontent.com/images/VO7HVtayKkl4IyPT4TSFugPcWbc.png\",srcSet:\"https://framerusercontent.com/images/VO7HVtayKkl4IyPT4TSFugPcWbc.png?scale-down-to=512 512w,https://framerusercontent.com/images/VO7HVtayKkl4IyPT4TSFugPcWbc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VO7HVtayKkl4IyPT4TSFugPcWbc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VO7HVtayKkl4IyPT4TSFugPcWbc.png 2640w\"},\"process-img\"),height:\"100%\",id:\"u4eZIs9Zh\",layoutId:\"u4eZIs9Zh\",mTnB9rQPb:\"Implementation Planning\",pOAExLcBN:\"04\",SI36Sb1_p:\"Implementation is the execution phase where strategies are translated into actionable steps. It involves resource allocation, task delegation, and monitoring progress to ensure.\",style:{width:\"100%\"},width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-e94b4x\",\"data-framer-name\":\"Works\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a6rhpc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xqcq91\",\"data-framer-name\":\"Label-wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\"},children:\"WHAT\"})}),className:\"framer-abhz3x\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1sc5567\",\"data-styles-preset\":\"GybmpkfIx\",children:\"Our Work\"})}),className:\"framer-9on6qf\",\"data-framer-name\":\"Heading-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wprx5x\",\"data-framer-name\":\"Work-container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wy8dud\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qNVYZ_lqS\",data:WorkCollection,type:\"Collection\"},select:[{collection:\"qNVYZ_lqS\",name:\"swDAk6J5q\",type:\"Identifier\"},{collection:\"qNVYZ_lqS\",name:\"i1lSILu9G\",type:\"Identifier\"},{collection:\"qNVYZ_lqS\",name:\"G3DmdZG5U\",type:\"Identifier\"},{collection:\"qNVYZ_lqS\",name:\"yjMtUHgVa\",type:\"Identifier\"},{collection:\"qNVYZ_lqS\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{arguments:[{collection:\"qNVYZ_lqS\",name:\"i1lSILu9G\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"zenfo\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},operator:\"or\",right:{arguments:[{collection:\"qNVYZ_lqS\",name:\"i1lSILu9G\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"uizden\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"or\",right:{arguments:[{collection:\"qNVYZ_lqS\",name:\"i1lSILu9G\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"devzam\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"or\",right:{arguments:[{collection:\"qNVYZ_lqS\",name:\"i1lSILu9G\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"maindo\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({G3DmdZG5U:G3DmdZG5UqNVYZ_lqS,i1lSILu9G:i1lSILu9GqNVYZ_lqS,id:idqNVYZ_lqS,swDAk6J5q:swDAk6J5qqNVYZ_lqS,yjMtUHgVa:yjMtUHgVaqNVYZ_lqS},index)=>{swDAk6J5qqNVYZ_lqS??=\"\";i1lSILu9GqNVYZ_lqS??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qNVYZ_lqS-${idqNVYZ_lqS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{swDAk6J5q:swDAk6J5qqNVYZ_lqS},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{swDAk6J5q:swDAk6J5qqNVYZ_lqS},webPageId:\"QZaF0DRP8\"},motionChild:true,nodeId:\"gnqxsmGYK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1768jq1 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+0+0+2010+0+0+0+172+25+0+0+0+0},kf4lWex9S:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+0+0+2800+0+0+0+184+20+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+0+0+2491+0+0+0+172+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-shosgy-container\",nodeId:\"zXkha0Oq9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kf4lWex9S:{variant:\"M6GqOJzVp\"}},children:/*#__PURE__*/_jsx(Work,{ddUbSwW7e:toResponsiveImage(G3DmdZG5UqNVYZ_lqS),eHLCCpP_u:toDateString(yjMtUHgVaqNVYZ_lqS,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"zXkha0Oq9\",jM_DZGoHA:\"UIUX Design\",layoutId:\"zXkha0Oq9\",pfo77mYQm:i1lSILu9GqNVYZ_lqS,style:{width:\"100%\"},variant:\"q5Qrq1_n3\",width:\"100%\"})})})})})})})})},idqNVYZ_lqS);})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-x48sk4\",\"data-framer-name\":\"Brand\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-115qfzi\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hvdgb6\",\"data-framer-name\":\"Brand-logo-container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{background:{alt:\"brand\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2364+120+0+0+0+0),pixelHeight:2748,pixelWidth:6244,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png\",srcSet:\"https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png 6244w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"brand\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2820+120+0+0+0+0),pixelHeight:2748,pixelWidth:6244,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png\",srcSet:\"https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/wXINxJMOfP1P3KMt258GDUKAw.png 6244w\"},className:\"framer-1c8r4bd hidden-jofou9\",\"data-framer-name\":\"Brand-logo-wrapper\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-112bp7a\",\"data-framer-name\":\"Counter-wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1of9xrs\",\"data-framer-name\":\"Counter-label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",children:\"HAPPY CLIENTS\"})}),className:\"framer-1mflxjs\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bbeeg0-container\",isAuthoredByUser:true,nodeId:\"lwNwRcsPR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{textHeight:110,textSize:90},kf4lWex9S:{textHeight:70,textSize:60}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"comma\",end:12,gapSize:4,height:\"100%\",id:\"lwNwRcsPR\",layoutId:\"lwNwRcsPR\",loop:false,prefixColor:\"rgb(0, 153, 255)\",prefixFont:{},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},speed:70,start:0,startOnViewport:true,suffixColor:\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\",suffixFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"K+\",textColor:\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\",textHeight:124,textSize:128,textSpacing:-.05,width:\"100%\"})})})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-6oqp5i\",\"data-framer-name\":\"Success\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nz31v4\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10ftq2n\",\"data-framer-name\":\"Success-top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\"},children:\"WE DID\"})}),className:\"framer-1d95n4l\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1sc5567\",\"data-styles-preset\":\"GybmpkfIx\",children:\"Achievements\"})}),className:\"framer-12i0os4\",\"data-framer-name\":\"Heading-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kwftxk\",\"data-framer-name\":\"Success-container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cazkas\",\"data-border\":true,\"data-framer-name\":\"Success-box\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n726fk\",\"data-framer-name\":\"Success-left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{background:{alt:\"country\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3004+0+0+0+256+0+0+89+0),pixelHeight:102,pixelWidth:102,src:\"https://framerusercontent.com/images/h1YFEsdyUfcpV3YQF6Pcih63Vuw.svg\"}},kf4lWex9S:{background:{alt:\"country\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3241+0+0+0+202+0+0+27+0+0),pixelHeight:102,pixelWidth:102,src:\"https://framerusercontent.com/images/h1YFEsdyUfcpV3YQF6Pcih63Vuw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"country\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3617+0+0+0+256+0+0+104+0),pixelHeight:102,pixelWidth:102,src:\"https://framerusercontent.com/images/h1YFEsdyUfcpV3YQF6Pcih63Vuw.svg\"},className:\"framer-ow99gb\",\"data-framer-name\":\"Success-image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cj25dc\",\"data-framer-name\":\"Success-label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7332pr\",\"data-styles-preset\":\"apwSyuoRz\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"We worked with hundred of countries\"})}),className:\"framer-1dg6jsm\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-voxzl4\",\"data-framer-name\":\"Counter-wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\"},children:\"CLIENTS\"})}),className:\"framer-c7ff8k\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uqd88h-container\",isAuthoredByUser:true,nodeId:\"XYdlKqCi0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{textHeight:70,textSize:60},kf4lWex9S:{textHeight:50,textSize:50}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"comma\",end:375,gapSize:4,height:\"100%\",id:\"XYdlKqCi0\",layoutId:\"XYdlKqCi0\",loop:false,prefixColor:\"rgb(0, 153, 255)\",prefixFont:{},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},speed:10,start:200,startOnViewport:true,suffixColor:\"rgb(0, 153, 255)\",suffixFont:{},suffixText:\"\",textColor:\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\",textHeight:124,textSize:128,textSpacing:-.05,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-thrgaq\",\"data-border\":true,\"data-framer-name\":\"Success-box\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kw4ljk\",\"data-framer-name\":\"Success-left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{background:{alt:\"like\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3004+0+0+0+256+0+266+89+0),pixelHeight:102,pixelWidth:102,src:\"https://framerusercontent.com/images/w3JFbmc495S0iSzJuCnkcz0yZV8.svg\"}},kf4lWex9S:{background:{alt:\"like\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3241+0+0+0+202+0+282+20+0+0),pixelHeight:102,pixelWidth:102,src:\"https://framerusercontent.com/images/w3JFbmc495S0iSzJuCnkcz0yZV8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"like\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3617+0+0+0+256+0+310+104+0),pixelHeight:102,pixelWidth:102,src:\"https://framerusercontent.com/images/w3JFbmc495S0iSzJuCnkcz0yZV8.svg\"},className:\"framer-1g8fbi4\",\"data-framer-name\":\"Success-image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yxkeuv\",\"data-framer-name\":\"Success-label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7332pr\",\"data-styles-preset\":\"apwSyuoRz\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"Successfully delivered 2k+ projects\"})}),className:\"framer-1n0mel3\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1awp1jm\",\"data-framer-name\":\"Counter-wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\"},children:\"PROJECTS\"})}),className:\"framer-mezzzt\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1alroyp-container\",isAuthoredByUser:true,nodeId:\"m8UDoBX5b\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{textHeight:70,textSize:60},kf4lWex9S:{textHeight:50,textSize:50}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"period\",end:2,gapSize:4,height:\"100%\",id:\"m8UDoBX5b\",layoutId:\"m8UDoBX5b\",loop:false,prefixColor:\"rgb(0, 153, 255)\",prefixFont:{},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},speed:170,start:0,startOnViewport:true,suffixColor:\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\",suffixFont:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},suffixText:\"K+\",textColor:\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\",textHeight:124,textSize:128,textSpacing:-.05,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ydxuln\",\"data-border\":true,\"data-framer-name\":\"Success-box\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9tgfrs\",\"data-framer-name\":\"Success-left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{background:{alt:\"crown\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3004+0+0+0+256+0+532+89+0),pixelHeight:82,pixelWidth:82,src:\"https://framerusercontent.com/images/ykIXPuvHdncvkerybiA89tQVLo.svg\"}},kf4lWex9S:{background:{alt:\"crown\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3241+0+0+0+202+0+564+20+0+0),pixelHeight:82,pixelWidth:82,src:\"https://framerusercontent.com/images/ykIXPuvHdncvkerybiA89tQVLo.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"crown\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3617+0+0+0+256+0+620+104+0),pixelHeight:82,pixelWidth:82,src:\"https://framerusercontent.com/images/ykIXPuvHdncvkerybiA89tQVLo.svg\"},className:\"framer-naur15\",\"data-framer-name\":\"Success-image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8werdg\",\"data-framer-name\":\"Success-label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7332pr\",\"data-styles-preset\":\"apwSyuoRz\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"Received 40+ awards for our works\"})}),className:\"framer-skeq40\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a586wo\",\"data-framer-name\":\"Counter-wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\"},children:\"AWARDS\"})}),className:\"framer-1wp0t2r\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dkqqi9-container\",isAuthoredByUser:true,nodeId:\"rOYZurx7_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{textHeight:70,textSize:60},kf4lWex9S:{textHeight:50,textSize:50}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"comma\",end:41,gapSize:4,height:\"100%\",id:\"rOYZurx7_\",layoutId:\"rOYZurx7_\",loop:false,prefixColor:\"rgb(0, 153, 255)\",prefixFont:{},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},speed:70,start:0,startOnViewport:true,suffixColor:\"rgb(0, 153, 255)\",suffixFont:{},suffixText:\"\",textColor:\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\",textHeight:124,textSize:128,textSpacing:-.05,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e9ebrr\",\"data-border\":true,\"data-framer-name\":\"Success-box\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxgkin\",\"data-framer-name\":\"Success-left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{background:{alt:\"time\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3004+0+0+0+256+0+798+89+0),pixelHeight:89,pixelWidth:77,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mwBpdL5Y8AerreFjB3NXFmLZjQ.svg\"}},kf4lWex9S:{background:{alt:\"time\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3241+0+0+0+202+0+846+20+0+0),pixelHeight:89,pixelWidth:77,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mwBpdL5Y8AerreFjB3NXFmLZjQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"time\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3617+0+0+0+256+0+930+104+0),pixelHeight:89,pixelWidth:77,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mwBpdL5Y8AerreFjB3NXFmLZjQ.svg\"},className:\"framer-1v72yna\",\"data-framer-name\":\"Success-image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5jyi1k\",\"data-framer-name\":\"Success-label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7332pr\",\"data-styles-preset\":\"apwSyuoRz\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"16 successful years in the industry\"})}),className:\"framer-12eej29\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ylsdsi\",\"data-framer-name\":\"Counter-wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\"},children:\"YEARS\"})}),className:\"framer-z1kdxc\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1durgdx-container\",isAuthoredByUser:true,nodeId:\"d3ZxGZvXj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{textHeight:70,textSize:60},kf4lWex9S:{textHeight:50,textSize:50}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"comma\",end:16,gapSize:4,height:\"100%\",id:\"d3ZxGZvXj\",layoutId:\"d3ZxGZvXj\",loop:false,prefixColor:\"rgb(0, 153, 255)\",prefixFont:{},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},speed:70,start:0,startOnViewport:true,suffixColor:\"rgb(0, 153, 255)\",suffixFont:{},suffixText:\"\",textColor:\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\",textHeight:124,textSize:128,textSpacing:-.05,width:\"100%\"})})})})]})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1x6tqmm\",\"data-framer-name\":\"Case-study\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-393h5p\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tt2n2j\",\"data-framer-name\":\"Case-study-wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hyf58j\",\"data-framer-name\":\"Case-study-top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\"},children:\"CASE STUDY\"})}),className:\"framer-1ycxuzk\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1sc5567\",\"data-styles-preset\":\"GybmpkfIx\",style:{\"--framer-text-alignment\":\"center\"},children:\"Recent Case Studies\"})}),className:\"framer-1yqzuib\",\"data-framer-name\":\"Heading-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mn74r0\",\"data-framer-name\":\"Case-study-card-wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mro1c0\",\"data-framer-name\":\"Work-collection-left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rx9h3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BqFICkBD_\",data:WorkCollection,type:\"Collection\"},select:[{collection:\"BqFICkBD_\",name:\"swDAk6J5q\",type:\"Identifier\"},{collection:\"BqFICkBD_\",name:\"i1lSILu9G\",type:\"Identifier\"},{collection:\"BqFICkBD_\",name:\"KKzCmQIPf\",type:\"Identifier\"},{collection:\"BqFICkBD_\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"BqFICkBD_\",name:\"i1lSILu9G\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"ux\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({i1lSILu9G:i1lSILu9GBqFICkBD_,id:idBqFICkBD_,KKzCmQIPf:KKzCmQIPfBqFICkBD_,swDAk6J5q:swDAk6J5qBqFICkBD_},index1)=>{swDAk6J5qBqFICkBD_??=\"\";i1lSILu9GBqFICkBD_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BqFICkBD_-${idBqFICkBD_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{swDAk6J5q:swDAk6J5qBqFICkBD_},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{swDAk6J5q:swDAk6J5qBqFICkBD_},webPageId:\"QZaF0DRP8\"},motionChild:true,nodeId:\"FPIlAv4Jw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1pt1gg6 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1440px) - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+4444+0+0+0+0+256+0+0+0+0+0+0},kf4lWex9S:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+0+0+4611+0+0+0+0+202+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:675,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1440px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+5233+0+0+0+0+256+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-69dkkt-container\",nodeId:\"c2ASfXG1j\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{variant:\"fD5o0gfJN\"},kf4lWex9S:{variant:\"fD5o0gfJN\"}},children:/*#__PURE__*/_jsx(CaseCard,{height:\"100%\",id:\"c2ASfXG1j\",layoutId:\"c2ASfXG1j\",Le1_VCYL5:i1lSILu9GBqFICkBD_,Pcn7hCkBV:i1lSILu9GBqFICkBD_,pNWB79BV4:\"The agency conducts a comprehensive assessment and analysis of the client's business, industry, market trends, competitors\",RcYgxauLb:56,SCZZ6JrJd:true,style:{width:\"100%\"},variant:\"xrB1aqNFu\",vW2evl7j7:toResponsiveImage(KKzCmQIPfBqFICkBD_),width:\"100%\"})})})})})})})})},idBqFICkBD_);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pcohcc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"XCoKIt2P9\",data:WorkCollection,type:\"Collection\"},select:[{collection:\"XCoKIt2P9\",name:\"swDAk6J5q\",type:\"Identifier\"},{collection:\"XCoKIt2P9\",name:\"i1lSILu9G\",type:\"Identifier\"},{collection:\"XCoKIt2P9\",name:\"KKzCmQIPf\",type:\"Identifier\"},{collection:\"XCoKIt2P9\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"XCoKIt2P9\",name:\"i1lSILu9G\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"ios\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({i1lSILu9G:i1lSILu9GXCoKIt2P9,id:idXCoKIt2P9,KKzCmQIPf:KKzCmQIPfXCoKIt2P9,swDAk6J5q:swDAk6J5qXCoKIt2P9},index2)=>{swDAk6J5qXCoKIt2P9??=\"\";i1lSILu9GXCoKIt2P9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XCoKIt2P9-${idXCoKIt2P9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{swDAk6J5q:swDAk6J5qXCoKIt2P9},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{swDAk6J5q:swDAk6J5qXCoKIt2P9},webPageId:\"QZaF0DRP8\"},motionChild:true,nodeId:\"SMPk39ou2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11bizew framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1440px) - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+4444+0+0+0+0+256+0+0+705+0+0+0},kf4lWex9S:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+0+0+4611+0+0+0+0+202+0+0+0+715+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:675,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1440px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+5233+0+0+0+0+256+0+0+715+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v8f46f-container\",nodeId:\"Eb_XxUvQ5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{variant:\"fD5o0gfJN\"},kf4lWex9S:{variant:\"fD5o0gfJN\"}},children:/*#__PURE__*/_jsx(CaseCard,{height:\"100%\",id:\"Eb_XxUvQ5\",layoutId:\"Eb_XxUvQ5\",Le1_VCYL5:i1lSILu9GXCoKIt2P9,Pcn7hCkBV:i1lSILu9GXCoKIt2P9,pNWB79BV4:\"The agency conducts a comprehensive assessment and analysis of the client's business, industry, market trends, competitors\",RcYgxauLb:56,SCZZ6JrJd:true,style:{width:\"100%\"},variant:\"p16Kk_JQZ\",vW2evl7j7:toResponsiveImage(KKzCmQIPfXCoKIt2P9),width:\"100%\"})})})})})})})})},idXCoKIt2P9);})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9qba2x\",\"data-framer-name\":\"Work-collection-right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15zixw3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ERpBrV_l4\",data:WorkCollection,type:\"Collection\"},select:[{collection:\"ERpBrV_l4\",name:\"swDAk6J5q\",type:\"Identifier\"},{collection:\"ERpBrV_l4\",name:\"i1lSILu9G\",type:\"Identifier\"},{collection:\"ERpBrV_l4\",name:\"KKzCmQIPf\",type:\"Identifier\"},{collection:\"ERpBrV_l4\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"ERpBrV_l4\",name:\"i1lSILu9G\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"food\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({i1lSILu9G:i1lSILu9GERpBrV_l4,id:idERpBrV_l4,KKzCmQIPf:KKzCmQIPfERpBrV_l4,swDAk6J5q:swDAk6J5qERpBrV_l4},index3)=>{swDAk6J5qERpBrV_l4??=\"\";i1lSILu9GERpBrV_l4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ERpBrV_l4-${idERpBrV_l4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{swDAk6J5q:swDAk6J5qERpBrV_l4},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{swDAk6J5q:swDAk6J5qERpBrV_l4},webPageId:\"QZaF0DRP8\"},motionChild:true,nodeId:\"pTuEUyrt5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ozfj1 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1440px) - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+4444+0+0+0+0+256+0+0+0+0+0+0},kf4lWex9S:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+0+0+4611+0+0+0+0+202+0+1430+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:675,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1440px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+5233+0+0+0+0+256+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vtuy6x-container\",nodeId:\"gydLk8TrE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{variant:\"fD5o0gfJN\"},kf4lWex9S:{variant:\"fD5o0gfJN\"}},children:/*#__PURE__*/_jsx(CaseCard,{height:\"100%\",id:\"gydLk8TrE\",layoutId:\"gydLk8TrE\",Le1_VCYL5:i1lSILu9GERpBrV_l4,Pcn7hCkBV:i1lSILu9GERpBrV_l4,pNWB79BV4:\"The agency conducts a comprehensive assessment and analysis of the client's business, industry, market trends, competitors\",RcYgxauLb:56,SCZZ6JrJd:true,style:{width:\"100%\"},variant:\"p16Kk_JQZ\",vW2evl7j7:toResponsiveImage(KKzCmQIPfERpBrV_l4),width:\"100%\"})})})})})})})})},idERpBrV_l4);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zlatuk\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BxuKMfA5S\",data:WorkCollection,type:\"Collection\"},select:[{collection:\"BxuKMfA5S\",name:\"swDAk6J5q\",type:\"Identifier\"},{collection:\"BxuKMfA5S\",name:\"i1lSILu9G\",type:\"Identifier\"},{collection:\"BxuKMfA5S\",name:\"KKzCmQIPf\",type:\"Identifier\"},{collection:\"BxuKMfA5S\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"BxuKMfA5S\",name:\"i1lSILu9G\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"marketing\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({i1lSILu9G:i1lSILu9GBxuKMfA5S,id:idBxuKMfA5S,KKzCmQIPf:KKzCmQIPfBxuKMfA5S,swDAk6J5q:swDAk6J5qBxuKMfA5S},index4)=>{swDAk6J5qBxuKMfA5S??=\"\";i1lSILu9GBxuKMfA5S??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BxuKMfA5S-${idBxuKMfA5S}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{swDAk6J5q:swDAk6J5qBxuKMfA5S},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{swDAk6J5q:swDAk6J5qBxuKMfA5S},webPageId:\"QZaF0DRP8\"},motionChild:true,nodeId:\"wfRbkRmSy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zf34bj framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1440px) - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+4444+0+0+0+0+256+0+0+705+0+0+0},kf4lWex9S:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+0+0+4611+0+0+0+0+202+0+1430+0+715+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:675,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1440px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+5233+0+0+0+0+256+0+0+715+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tnw37w-container\",nodeId:\"jAnPAHSKK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{variant:\"fD5o0gfJN\"},kf4lWex9S:{variant:\"fD5o0gfJN\"}},children:/*#__PURE__*/_jsx(CaseCard,{height:\"100%\",id:\"jAnPAHSKK\",layoutId:\"jAnPAHSKK\",Le1_VCYL5:i1lSILu9GBxuKMfA5S,Pcn7hCkBV:i1lSILu9GBxuKMfA5S,pNWB79BV4:\"The agency conducts a comprehensive assessment and analysis of the client's business, industry, market trends, competitors\",RcYgxauLb:56,SCZZ6JrJd:true,style:{width:\"100%\"},variant:\"xrB1aqNFu\",vW2evl7j7:toResponsiveImage(KKzCmQIPfBxuKMfA5S),width:\"100%\"})})})})})})})})},idBxuKMfA5S);})})})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BxQE7SMa6\"},implicitPathVariables:undefined},{href:{webPageId:\"BxQE7SMa6\"},implicitPathVariables:undefined},{href:{webPageId:\"BxQE7SMa6\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{y:(componentViewport?.y||0)+0+0+0+4444+0+0+0+0+1720},kf4lWex9S:{y:(componentViewport?.y||0)+0+0+0+4611+0+0+0+0+3052}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+0+0+5233+0+0+0+0+1730,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ox5nyg-container\",nodeId:\"SUlDnHzvB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{Cc4WFGDZp:resolvedLinks[1]},kf4lWex9S:{Cc4WFGDZp:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(CaseButton,{Cc4WFGDZp:resolvedLinks[0],F06RvE4wV:\"All Case Studies\",height:\"100%\",id:\"SUlDnHzvB\",ivGYDRt5P:false,layoutId:\"SUlDnHzvB\",variant:\"J7CeHvjI5\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-181tgwh\",\"data-framer-name\":\"Feedback\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6pvpz4\",\"data-framer-name\":\"Feedback-wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dfvjj\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-8f6651ff-45aa-459b-bbc8-c537bcaeb3b3, rgb(255, 84, 47))\"},children:\"FEEDBACK\"})}),className:\"framer-5m2usq\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1sc5567\",\"data-styles-preset\":\"GybmpkfIx\",children:\"Clients say\"})}),className:\"framer-ii4ghf\",\"data-framer-name\":\"Heading-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19qwpfw\",\"data-framer-name\":\"Feedback-show\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o9ityn-container hidden-jofou9\",\"data-framer-name\":\"Feedback-slider\",isAuthoredByUser:true,isModuleExternal:true,name:\"Feedback-slider\",nodeId:\"aBsGA1BsP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:30,arrowPadding:100,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:57,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:45,leftArrow:\"https://framerusercontent.com/images/1TlarJ2uav3F5yorVVe5Mbdts.svg\",rightArrow:\"https://framerusercontent.com/images/JruroS3EVJPVqR6ItZHVI0CsFLY.svg\",showMouseControls:true},intervalControl:4,paddingBottom:80,paddingLeft:0,paddingPerSide:true,paddingRight:0}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-100,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:64,leftArrow:\"https://framerusercontent.com/images/sHH8eJf2moUsphoO10MOCnrbhcA.svg\",rightArrow:\"https://framerusercontent.com/images/maPTLLKyAuY5RLLKuOSAeIJ2xf0.svg\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"right\",dragControl:false,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",id:\"aBsGA1BsP\",intervalControl:1.5,itemAmount:1,layoutId:\"aBsGA1BsP\",name:\"Feedback-slider\",padding:0,paddingBottom:0,paddingLeft:60,paddingPerSide:false,paddingRight:60,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-bztx4x\",\"data-framer-name\":\"Feedback-card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xeoob1\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"user-img\",fit:\"fill\",pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/zexIW5rr1xusthV5ifJ8plbDw4.png\"},className:\"framer-1hizp69\",\"data-framer-name\":\"User-img\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-feofr4\",\"data-framer-name\":\"User-info\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p8ojqr\",\"data-framer-name\":\"User-name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"DANIEL Y.\"})}),className:\"framer-o5gufc\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yzg0ld\",\"data-framer-name\":\"User-post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"COO, IT Firm\"})}),className:\"framer-z0s3yh\",\"data-framer-name\":\"Post\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e6ziu9\",\"data-framer-name\":\"Feedback-text-wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-syrefg\",\"data-styles-preset\":\"imykxsETb\",children:\"Partnership with Humix was a complete revelation for our operations. Their proficiency, excellence, and commitment have outdone any other service we've engaged before. From first interaction to the deployment of our website, each phase was smooth and result-oriented.\"})}),className:\"framer-1wbi1n6\",\"data-framer-name\":\"Feedback-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6hclkj\",\"data-framer-name\":\"Feedback-card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-de5syo\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"user-img\",fit:\"fill\",pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/rvhzyy9dxhGO9OEbKvKaDN40eHw.png\"},className:\"framer-1hicj19\",\"data-framer-name\":\"User-img\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-biwqtr\",\"data-framer-name\":\"User-info\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kjfwtp\",\"data-framer-name\":\"User-name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"ALEX GUS\"})}),className:\"framer-4xuzp\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m4ch49\",\"data-framer-name\":\"User-post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"CEO, Business\"})}),className:\"framer-12gfvi6\",\"data-framer-name\":\"Post\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ix6zql\",\"data-framer-name\":\"Feedback-text-wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-syrefg\",\"data-styles-preset\":\"imykxsETb\",children:\"Collaborating with Humix undeniably transformed our online presence! Their know-how, professionalism, and dedication are indeed incomparable. From the early discussions to the execution of our website, each progression was effortless and effectual.\"})}),className:\"framer-1kkcxah\",\"data-framer-name\":\"Feedback-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16y3pyl\",\"data-framer-name\":\"Feedback-card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sxk1mv\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"user-img\",fit:\"fill\",pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/0AIFnOR3bmFGCpsHDrCcQYnHJs.png\"},className:\"framer-eqkwx6\",\"data-framer-name\":\"User-img\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x0pfhv\",\"data-framer-name\":\"User-info\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8fv75n\",\"data-framer-name\":\"User-name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"ANTONIO G.\"})}),className:\"framer-17vpbog\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-myzu32\",\"data-framer-name\":\"User-post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Founder, SaaS\"})}),className:\"framer-14gbiva\",\"data-framer-name\":\"Post\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lb9iu0\",\"data-framer-name\":\"Feedback-text-wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-syrefg\",\"data-styles-preset\":\"imykxsETb\",children:\"Our experience with the Humix theme was a genuine game-changer for our digital landscape. The combination of its expertise in design, and commitment to user experience is genuinely second to none. Every step was seamless and yielded impressive effects.\"})}),className:\"framer-xmp2xk\",\"data-framer-name\":\"Feedback-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14vrli2\",\"data-framer-name\":\"Feedback-card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wb1sg7\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"user-img\",fit:\"fill\",pixelHeight:104,pixelWidth:104,src:\"https://framerusercontent.com/images/QYZzgjpCqw428OzJX4QLn4EC0BY.svg\"},className:\"framer-19kf408\",\"data-framer-name\":\"User-img\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-378ze5\",\"data-framer-name\":\"User-info\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-votk6w\",\"data-framer-name\":\"User-name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"STEVE PHEM\"})}),className:\"framer-mw1qiq\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yf8c3y\",\"data-framer-name\":\"User-post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Founder, NKZ Studio\"})}),className:\"framer-1101au5\",\"data-framer-name\":\"Post\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hciov8\",\"data-framer-name\":\"Feedback-text-wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-syrefg\",\"data-styles-preset\":\"imykxsETb\",children:\"Working with Humix was an absolute game-changer for our business! Their expertise, professionalism, and dedication are truly unmatched. From the initial consultation to the implementation of our tailored strategy, every step was seamless and effective.\"})}),className:\"framer-u6ktqe\",\"data-framer-name\":\"Feedback-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ylgao6-container hidden-72rtr7 hidden-8g7nnc\",\"data-framer-name\":\"Feedback-slider-phone\",isAuthoredByUser:true,isModuleExternal:true,name:\"Feedback-slider-phone\",nodeId:\"LnbBrXkId\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:20,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:30,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:25,leftArrow:\"https://framerusercontent.com/images/1TlarJ2uav3F5yorVVe5Mbdts.svg\",rightArrow:\"https://framerusercontent.com/images/FkiVkbleGmulnVUNL6CkVpF0Eg.svg\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"right\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",id:\"LnbBrXkId\",intervalControl:2,itemAmount:1,layoutId:\"LnbBrXkId\",name:\"Feedback-slider-phone\",padding:0,paddingBottom:25,paddingLeft:0,paddingPerSide:true,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-zun425\",\"data-framer-name\":\"Feedback-card-phone\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1euqv7i\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"user-img\",fit:\"fill\",pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/KhVYEtc4a78Ub5cGrbfx5G4D3aU.png\"},className:\"framer-bjvpnk\",\"data-framer-name\":\"User-img\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i4502u\",\"data-framer-name\":\"User-info\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13wlhk0\",\"data-framer-name\":\"User-name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"STEVE PHEM\"})}),className:\"framer-1ervztd\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ve165v\",\"data-framer-name\":\"User-post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Founder, NKZ Studio\"})}),className:\"framer-1n96wf2\",\"data-framer-name\":\"Post\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xlftro\",\"data-framer-name\":\"Feedback-text-wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"Working with Humix was an absolute game-changer for our business! Their expertise, professionalism, and dedication are truly unmatched. From the initial consultation to the implementation of our tailored strategy, every step was seamless and effective.\"})}),className:\"framer-1xfnmtt\",\"data-framer-name\":\"Feedback-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sr3hsh\",\"data-framer-name\":\"Feedback-card-phone\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rmcqus\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"user-img\",fit:\"fill\",pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/0AIFnOR3bmFGCpsHDrCcQYnHJs.png\"},className:\"framer-bckrrs\",\"data-framer-name\":\"User-img\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xjcxrs\",\"data-framer-name\":\"User-info\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-imzrm6\",\"data-framer-name\":\"User-name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"ANTONIO G.\"})}),className:\"framer-1y4jo53\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wsu30r\",\"data-framer-name\":\"User-post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Founder, SaaS\"})}),className:\"framer-g6580u\",\"data-framer-name\":\"Post\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18p28sp\",\"data-framer-name\":\"Feedback-text-wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"Our experience with the Humix theme was a genuine game-changer for our digital landscape. The combination of its expertise in design, and commitment to user experience is genuinely second to none. Every step was seamless and yielded impressive effects.\"})}),className:\"framer-1cr4l1i\",\"data-framer-name\":\"Feedback-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nxka2h\",\"data-framer-name\":\"Feedback-card-phone\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dq3ann\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"user-img\",fit:\"fill\",pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/rvhzyy9dxhGO9OEbKvKaDN40eHw.png\"},className:\"framer-wai20q\",\"data-framer-name\":\"User-img\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12cffry\",\"data-framer-name\":\"User-info\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19039fj\",\"data-framer-name\":\"User-name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"ALEX GUS\"})}),className:\"framer-2omh6s\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1112jmv\",\"data-framer-name\":\"User-post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"CEO, Business\"})}),className:\"framer-ixgbrw\",\"data-framer-name\":\"Post\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wcnreo\",\"data-framer-name\":\"Feedback-text-wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"Collaborating with Humix undeniably transformed our online presence! Their know-how, professionalism, and dedication are indeed incomparable. From the early discussions to the execution of our website, each progression was effortless and effectual.\"})}),className:\"framer-17jf18u\",\"data-framer-name\":\"Feedback-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ttwjsk\",\"data-framer-name\":\"Feedback-card-phone\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y03u44\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"user-img\",fit:\"fill\",pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/zexIW5rr1xusthV5ifJ8plbDw4.png\"},className:\"framer-148k98o\",\"data-framer-name\":\"User-img\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p9y6nx\",\"data-framer-name\":\"User-info\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gffc9r\",\"data-framer-name\":\"User-name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w2r8c5\",\"data-styles-preset\":\"Nzbsn5gng\",style:{\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"DANIEL Y.\"})}),className:\"framer-dz5cnl\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1drurf2\",\"data-framer-name\":\"User-post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"COO, IT Firm\"})}),className:\"framer-pvdwh1\",\"data-framer-name\":\"Post\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-42w8p6\",\"data-framer-name\":\"Feedback-text-wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bsg7z6\",\"data-styles-preset\":\"rRoVutbMU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-dcbe06fa-3215-4d3f-93ae-102e86fdb1f5, rgb(255, 255, 255))\"},children:\"Partnership with Humix was a complete revelation for our operations. Their proficiency, excellence, and commitment have outdone any other service we've engaged before. From first interaction to the deployment of our website, each phase was smooth and result-oriented.\"})}),className:\"framer-246yue\",\"data-framer-name\":\"Feedback-text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:896,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yl8sli-container\",layoutScroll:true,nodeId:\"qYoz4U8YC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cm0VHn560:{variant:\"DxVjfcAWJ\"},kf4lWex9S:{variant:\"gpfEAiCvo\"}},children:/*#__PURE__*/_jsx(PurchaseButton,{height:\"100%\",id:\"qYoz4U8YC\",layoutId:\"qYoz4U8YC\",variant:\"NtwupOUJ7\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mGQDq.framer-lux5qc, .framer-mGQDq .framer-lux5qc { display: block; }\",\".framer-mGQDq.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-44109306-b64a-4a74-9ceb-686404e4e8b7, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1260px; }\",\".framer-mGQDq .framer-1pstkj3, .framer-mGQDq .framer-kwftxk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-cirubh { 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; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-17n4j4t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-1urx0v6 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-mGQDq .framer-1djknk7 { align-content: flex-start; align-items: flex-start; bottom: 17px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 71px; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-mGQDq .framer-ena3f5, .framer-mGQDq .framer-abhz3x, .framer-mGQDq .framer-9on6qf, .framer-mGQDq .framer-1mflxjs, .framer-mGQDq .framer-1d95n4l, .framer-mGQDq .framer-1dg6jsm, .framer-mGQDq .framer-c7ff8k, .framer-mGQDq .framer-1n0mel3, .framer-mGQDq .framer-mezzzt, .framer-mGQDq .framer-skeq40, .framer-mGQDq .framer-1wp0t2r, .framer-mGQDq .framer-12eej29, .framer-mGQDq .framer-z1kdxc, .framer-mGQDq .framer-1ycxuzk, .framer-mGQDq .framer-5m2usq, .framer-mGQDq .framer-o5gufc, .framer-mGQDq .framer-z0s3yh, .framer-mGQDq .framer-4xuzp, .framer-mGQDq .framer-12gfvi6, .framer-mGQDq .framer-17vpbog, .framer-mGQDq .framer-14gbiva, .framer-mGQDq .framer-mw1qiq, .framer-mGQDq .framer-1101au5, .framer-mGQDq .framer-1ervztd, .framer-mGQDq .framer-1n96wf2, .framer-mGQDq .framer-1y4jo53, .framer-mGQDq .framer-g6580u, .framer-mGQDq .framer-2omh6s, .framer-mGQDq .framer-ixgbrw, .framer-mGQDq .framer-dz5cnl, .framer-mGQDq .framer-pvdwh1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mGQDq .framer-1b0esgu { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 23px; overflow: hidden; position: relative; width: 20px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-mGQDq .framer-1vipjar { aspect-ratio: 1.6216216216216217 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 777px); overflow: hidden; position: relative; width: 100%; }\",\".framer-mGQDq .framer-1w94fce { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-ibkp8y, .framer-mGQDq .framer-1a6rhpc, .framer-mGQDq .framer-115qfzi { 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: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-hx45pk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-dl3cbv, .framer-mGQDq .framer-md27fx, .framer-mGQDq .framer-12i0os4, .framer-mGQDq .framer-1yqzuib, .framer-mGQDq .framer-ii4ghf, .framer-mGQDq .framer-1wbi1n6, .framer-mGQDq .framer-1kkcxah, .framer-mGQDq .framer-xmp2xk, .framer-mGQDq .framer-u6ktqe, .framer-mGQDq .framer-1xfnmtt, .framer-mGQDq .framer-1cr4l1i, .framer-mGQDq .framer-17jf18u, .framer-mGQDq .framer-246yue { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mGQDq .framer-1295u5i { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-rh3mh5-container, .framer-mGQDq .framer-1tbrbix-container, .framer-mGQDq .framer-f1p4gy-container, .framer-mGQDq .framer-9mkjms-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-mGQDq .framer-e94b4x, .framer-mGQDq .framer-1x6tqmm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-xqcq91 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-mGQDq .framer-wprx5x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-wy8dud, .framer-mGQDq .framer-1rx9h3, .framer-mGQDq .framer-1pcohcc, .framer-mGQDq .framer-15zixw3, .framer-mGQDq .framer-zlatuk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-1768jq1, .framer-mGQDq .framer-1pt1gg6, .framer-mGQDq .framer-11bizew, .framer-mGQDq .framer-ozfj1, .framer-mGQDq .framer-zf34bj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-mGQDq .framer-shosgy-container, .framer-mGQDq .framer-69dkkt-container, .framer-mGQDq .framer-1v8f46f-container, .framer-mGQDq .framer-1vtuy6x-container, .framer-mGQDq .framer-1tnw37w-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-mGQDq .framer-x48sk4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-hvdgb6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-1c8r4bd { align-content: center; align-items: center; aspect-ratio: 2.2621184919210053 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: var(--framer-aspect-ratio-supported, 557px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-112bp7a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; z-index: 10; }\",\".framer-mGQDq .framer-1of9xrs, .framer-mGQDq .framer-1cj25dc, .framer-mGQDq .framer-yxkeuv, .framer-mGQDq .framer-8werdg, .framer-mGQDq .framer-5jyi1k, .framer-mGQDq .framer-1p8ojqr, .framer-mGQDq .framer-1yzg0ld, .framer-mGQDq .framer-1kjfwtp, .framer-mGQDq .framer-m4ch49, .framer-mGQDq .framer-8fv75n, .framer-mGQDq .framer-myzu32, .framer-mGQDq .framer-votk6w, .framer-mGQDq .framer-1yf8c3y, .framer-mGQDq .framer-13wlhk0, .framer-mGQDq .framer-ve165v, .framer-mGQDq .framer-imzrm6, .framer-mGQDq .framer-wsu30r, .framer-mGQDq .framer-19039fj, .framer-mGQDq .framer-1112jmv, .framer-mGQDq .framer-gffc9r, .framer-mGQDq .framer-1drurf2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-mGQDq .framer-1bbeeg0-container, .framer-mGQDq .framer-1uqd88h-container, .framer-mGQDq .framer-1alroyp-container, .framer-mGQDq .framer-dkqqi9-container, .framer-mGQDq .framer-1durgdx-container, .framer-mGQDq .framer-1ox5nyg-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-mGQDq .framer-6oqp5i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-1nz31v4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-10ftq2n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-1cazkas, .framer-mGQDq .framer-thrgaq, .framer-mGQDq .framer-ydxuln, .framer-mGQDq .framer-1e9ebrr { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 33px 0px 33px 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-n726fk, .framer-mGQDq .framer-1kw4ljk, .framer-mGQDq .framer-9tgfrs, .framer-mGQDq .framer-sxgkin { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 121px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-mGQDq .framer-ow99gb, .framer-mGQDq .framer-1g8fbi4, .framer-mGQDq .framer-naur15, .framer-mGQDq .framer-1v72yna { flex: none; height: 102px; overflow: hidden; position: relative; width: 102px; }\",\".framer-mGQDq .framer-voxzl4, .framer-mGQDq .framer-1awp1jm, .framer-mGQDq .framer-a586wo, .framer-mGQDq .framer-ylsdsi { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-mGQDq .framer-393h5p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-1tt2n2j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 128px 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-1hyf58j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-mn74r0 { 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-mGQDq .framer-1mro1c0, .framer-mGQDq .framer-9qba2x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-mGQDq .framer-181tgwh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-6pvpz4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 76px 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-1dfvjj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-19qwpfw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-o9ityn-container { flex: 1 0 0px; height: 590px; max-width: 1172px; position: relative; width: 1px; }\",\".framer-mGQDq .framer-bztx4x, .framer-mGQDq .framer-6hclkj, .framer-mGQDq .framer-16y3pyl, .framer-mGQDq .framer-14vrli2 { align-content: flex-start; align-items: flex-start; background-color: var(--token-44109306-b64a-4a74-9ceb-686404e4e8b7, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1172px; }\",\".framer-mGQDq .framer-1xeoob1, .framer-mGQDq .framer-de5syo, .framer-mGQDq .framer-1sxk1mv, .framer-mGQDq .framer-wb1sg7, .framer-mGQDq .framer-1euqv7i, .framer-mGQDq .framer-1rmcqus, .framer-mGQDq .framer-dq3ann, .framer-mGQDq .framer-y03u44 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-mGQDq .framer-1hizp69, .framer-mGQDq .framer-1hicj19, .framer-mGQDq .framer-eqkwx6 { flex: none; height: 104px; overflow: hidden; position: relative; width: 104px; }\",\".framer-mGQDq .framer-feofr4, .framer-mGQDq .framer-biwqtr, .framer-mGQDq .framer-x0pfhv, .framer-mGQDq .framer-378ze5, .framer-mGQDq .framer-i4502u, .framer-mGQDq .framer-1xjcxrs, .framer-mGQDq .framer-12cffry, .framer-mGQDq .framer-p9y6nx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: 59px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 156px; }\",\".framer-mGQDq .framer-e6ziu9, .framer-mGQDq .framer-ix6zql, .framer-mGQDq .framer-lb9iu0, .framer-mGQDq .framer-1hciov8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-19kf408 { border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: 104px; overflow: hidden; position: relative; width: 104px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mGQDq .framer-ylgao6-container { flex: none; height: 271px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-zun425, .framer-mGQDq .framer-sr3hsh, .framer-mGQDq .framer-nxka2h, .framer-mGQDq .framer-1ttwjsk { align-content: flex-start; align-items: flex-start; background-color: var(--token-44109306-b64a-4a74-9ceb-686404e4e8b7, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 500px; }\",\".framer-mGQDq .framer-bjvpnk, .framer-mGQDq .framer-bckrrs, .framer-mGQDq .framer-wai20q, .framer-mGQDq .framer-148k98o { flex: none; height: 60px; overflow: hidden; position: relative; width: 60px; }\",\".framer-mGQDq .framer-xlftro, .framer-mGQDq .framer-18p28sp, .framer-mGQDq .framer-1wcnreo, .framer-mGQDq .framer-42w8p6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 768px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mGQDq .framer-1yl8sli-container { bottom: 64px; flex: none; height: auto; position: fixed; right: 20px; width: auto; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-mGQDq.framer-72rtr7, .framer-mGQDq .framer-1pstkj3, .framer-mGQDq .framer-cirubh, .framer-mGQDq .framer-17n4j4t, .framer-mGQDq .framer-1djknk7, .framer-mGQDq .framer-1w94fce, .framer-mGQDq .framer-ibkp8y, .framer-mGQDq .framer-hx45pk, .framer-mGQDq .framer-e94b4x, .framer-mGQDq .framer-1a6rhpc, .framer-mGQDq .framer-xqcq91, .framer-mGQDq .framer-wprx5x, .framer-mGQDq .framer-wy8dud, .framer-mGQDq .framer-1768jq1, .framer-mGQDq .framer-x48sk4, .framer-mGQDq .framer-115qfzi, .framer-mGQDq .framer-hvdgb6, .framer-mGQDq .framer-1c8r4bd, .framer-mGQDq .framer-112bp7a, .framer-mGQDq .framer-1of9xrs, .framer-mGQDq .framer-6oqp5i, .framer-mGQDq .framer-1nz31v4, .framer-mGQDq .framer-10ftq2n, .framer-mGQDq .framer-kwftxk, .framer-mGQDq .framer-n726fk, .framer-mGQDq .framer-1cj25dc, .framer-mGQDq .framer-voxzl4, .framer-mGQDq .framer-1kw4ljk, .framer-mGQDq .framer-yxkeuv, .framer-mGQDq .framer-1awp1jm, .framer-mGQDq .framer-9tgfrs, .framer-mGQDq .framer-8werdg, .framer-mGQDq .framer-a586wo, .framer-mGQDq .framer-sxgkin, .framer-mGQDq .framer-5jyi1k, .framer-mGQDq .framer-ylsdsi, .framer-mGQDq .framer-1x6tqmm, .framer-mGQDq .framer-393h5p, .framer-mGQDq .framer-1tt2n2j, .framer-mGQDq .framer-1hyf58j, .framer-mGQDq .framer-mn74r0, .framer-mGQDq .framer-1mro1c0, .framer-mGQDq .framer-1rx9h3, .framer-mGQDq .framer-1pt1gg6, .framer-mGQDq .framer-1pcohcc, .framer-mGQDq .framer-11bizew, .framer-mGQDq .framer-9qba2x, .framer-mGQDq .framer-15zixw3, .framer-mGQDq .framer-ozfj1, .framer-mGQDq .framer-zlatuk, .framer-mGQDq .framer-zf34bj, .framer-mGQDq .framer-181tgwh, .framer-mGQDq .framer-6pvpz4, .framer-mGQDq .framer-1dfvjj, .framer-mGQDq .framer-19qwpfw, .framer-mGQDq .framer-bztx4x, .framer-mGQDq .framer-1xeoob1, .framer-mGQDq .framer-feofr4, .framer-mGQDq .framer-1p8ojqr, .framer-mGQDq .framer-1yzg0ld, .framer-mGQDq .framer-e6ziu9, .framer-mGQDq .framer-6hclkj, .framer-mGQDq .framer-de5syo, .framer-mGQDq .framer-biwqtr, .framer-mGQDq .framer-1kjfwtp, .framer-mGQDq .framer-m4ch49, .framer-mGQDq .framer-ix6zql, .framer-mGQDq .framer-16y3pyl, .framer-mGQDq .framer-1sxk1mv, .framer-mGQDq .framer-x0pfhv, .framer-mGQDq .framer-8fv75n, .framer-mGQDq .framer-myzu32, .framer-mGQDq .framer-lb9iu0, .framer-mGQDq .framer-14vrli2, .framer-mGQDq .framer-wb1sg7, .framer-mGQDq .framer-378ze5, .framer-mGQDq .framer-votk6w, .framer-mGQDq .framer-1yf8c3y, .framer-mGQDq .framer-1hciov8, .framer-mGQDq .framer-zun425, .framer-mGQDq .framer-1euqv7i, .framer-mGQDq .framer-i4502u, .framer-mGQDq .framer-13wlhk0, .framer-mGQDq .framer-ve165v, .framer-mGQDq .framer-xlftro, .framer-mGQDq .framer-sr3hsh, .framer-mGQDq .framer-1rmcqus, .framer-mGQDq .framer-1xjcxrs, .framer-mGQDq .framer-imzrm6, .framer-mGQDq .framer-wsu30r, .framer-mGQDq .framer-18p28sp, .framer-mGQDq .framer-nxka2h, .framer-mGQDq .framer-dq3ann, .framer-mGQDq .framer-12cffry, .framer-mGQDq .framer-19039fj, .framer-mGQDq .framer-1112jmv, .framer-mGQDq .framer-1wcnreo, .framer-mGQDq .framer-1ttwjsk, .framer-mGQDq .framer-y03u44, .framer-mGQDq .framer-p9y6nx, .framer-mGQDq .framer-gffc9r, .framer-mGQDq .framer-1drurf2, .framer-mGQDq .framer-42w8p6 { gap: 0px; } .framer-mGQDq.framer-72rtr7 > *, .framer-mGQDq .framer-1pstkj3 > *, .framer-mGQDq .framer-cirubh > *, .framer-mGQDq .framer-ibkp8y > *, .framer-mGQDq .framer-1a6rhpc > *, .framer-mGQDq .framer-wprx5x > *, .framer-mGQDq .framer-115qfzi > *, .framer-mGQDq .framer-112bp7a > *, .framer-mGQDq .framer-kwftxk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mGQDq.framer-72rtr7 > :first-child, .framer-mGQDq .framer-1pstkj3 > :first-child, .framer-mGQDq .framer-cirubh > :first-child, .framer-mGQDq .framer-1w94fce > :first-child, .framer-mGQDq .framer-ibkp8y > :first-child, .framer-mGQDq .framer-hx45pk > :first-child, .framer-mGQDq .framer-e94b4x > :first-child, .framer-mGQDq .framer-1a6rhpc > :first-child, .framer-mGQDq .framer-xqcq91 > :first-child, .framer-mGQDq .framer-wprx5x > :first-child, .framer-mGQDq .framer-wy8dud > :first-child, .framer-mGQDq .framer-x48sk4 > :first-child, .framer-mGQDq .framer-115qfzi > :first-child, .framer-mGQDq .framer-1c8r4bd > :first-child, .framer-mGQDq .framer-112bp7a > :first-child, .framer-mGQDq .framer-6oqp5i > :first-child, .framer-mGQDq .framer-1nz31v4 > :first-child, .framer-mGQDq .framer-10ftq2n > :first-child, .framer-mGQDq .framer-kwftxk > :first-child, .framer-mGQDq .framer-voxzl4 > :first-child, .framer-mGQDq .framer-1awp1jm > :first-child, .framer-mGQDq .framer-a586wo > :first-child, .framer-mGQDq .framer-ylsdsi > :first-child, .framer-mGQDq .framer-1x6tqmm > :first-child, .framer-mGQDq .framer-1tt2n2j > :first-child, .framer-mGQDq .framer-1hyf58j > :first-child, .framer-mGQDq .framer-1mro1c0 > :first-child, .framer-mGQDq .framer-1rx9h3 > :first-child, .framer-mGQDq .framer-1pcohcc > :first-child, .framer-mGQDq .framer-9qba2x > :first-child, .framer-mGQDq .framer-15zixw3 > :first-child, .framer-mGQDq .framer-zlatuk > :first-child, .framer-mGQDq .framer-6pvpz4 > :first-child, .framer-mGQDq .framer-1dfvjj > :first-child, .framer-mGQDq .framer-bztx4x > :first-child, .framer-mGQDq .framer-feofr4 > :first-child, .framer-mGQDq .framer-6hclkj > :first-child, .framer-mGQDq .framer-biwqtr > :first-child, .framer-mGQDq .framer-16y3pyl > :first-child, .framer-mGQDq .framer-x0pfhv > :first-child, .framer-mGQDq .framer-14vrli2 > :first-child, .framer-mGQDq .framer-378ze5 > :first-child, .framer-mGQDq .framer-zun425 > :first-child, .framer-mGQDq .framer-i4502u > :first-child, .framer-mGQDq .framer-sr3hsh > :first-child, .framer-mGQDq .framer-1xjcxrs > :first-child, .framer-mGQDq .framer-nxka2h > :first-child, .framer-mGQDq .framer-12cffry > :first-child, .framer-mGQDq .framer-1ttwjsk > :first-child, .framer-mGQDq .framer-p9y6nx > :first-child { margin-top: 0px; } .framer-mGQDq.framer-72rtr7 > :last-child, .framer-mGQDq .framer-1pstkj3 > :last-child, .framer-mGQDq .framer-cirubh > :last-child, .framer-mGQDq .framer-1w94fce > :last-child, .framer-mGQDq .framer-ibkp8y > :last-child, .framer-mGQDq .framer-hx45pk > :last-child, .framer-mGQDq .framer-e94b4x > :last-child, .framer-mGQDq .framer-1a6rhpc > :last-child, .framer-mGQDq .framer-xqcq91 > :last-child, .framer-mGQDq .framer-wprx5x > :last-child, .framer-mGQDq .framer-wy8dud > :last-child, .framer-mGQDq .framer-x48sk4 > :last-child, .framer-mGQDq .framer-115qfzi > :last-child, .framer-mGQDq .framer-1c8r4bd > :last-child, .framer-mGQDq .framer-112bp7a > :last-child, .framer-mGQDq .framer-6oqp5i > :last-child, .framer-mGQDq .framer-1nz31v4 > :last-child, .framer-mGQDq .framer-10ftq2n > :last-child, .framer-mGQDq .framer-kwftxk > :last-child, .framer-mGQDq .framer-voxzl4 > :last-child, .framer-mGQDq .framer-1awp1jm > :last-child, .framer-mGQDq .framer-a586wo > :last-child, .framer-mGQDq .framer-ylsdsi > :last-child, .framer-mGQDq .framer-1x6tqmm > :last-child, .framer-mGQDq .framer-1tt2n2j > :last-child, .framer-mGQDq .framer-1hyf58j > :last-child, .framer-mGQDq .framer-1mro1c0 > :last-child, .framer-mGQDq .framer-1rx9h3 > :last-child, .framer-mGQDq .framer-1pcohcc > :last-child, .framer-mGQDq .framer-9qba2x > :last-child, .framer-mGQDq .framer-15zixw3 > :last-child, .framer-mGQDq .framer-zlatuk > :last-child, .framer-mGQDq .framer-6pvpz4 > :last-child, .framer-mGQDq .framer-1dfvjj > :last-child, .framer-mGQDq .framer-bztx4x > :last-child, .framer-mGQDq .framer-feofr4 > :last-child, .framer-mGQDq .framer-6hclkj > :last-child, .framer-mGQDq .framer-biwqtr > :last-child, .framer-mGQDq .framer-16y3pyl > :last-child, .framer-mGQDq .framer-x0pfhv > :last-child, .framer-mGQDq .framer-14vrli2 > :last-child, .framer-mGQDq .framer-378ze5 > :last-child, .framer-mGQDq .framer-zun425 > :last-child, .framer-mGQDq .framer-i4502u > :last-child, .framer-mGQDq .framer-sr3hsh > :last-child, .framer-mGQDq .framer-1xjcxrs > :last-child, .framer-mGQDq .framer-nxka2h > :last-child, .framer-mGQDq .framer-12cffry > :last-child, .framer-mGQDq .framer-1ttwjsk > :last-child, .framer-mGQDq .framer-p9y6nx > :last-child { margin-bottom: 0px; } .framer-mGQDq .framer-17n4j4t > *, .framer-mGQDq .framer-1djknk7 > *, .framer-mGQDq .framer-1768jq1 > *, .framer-mGQDq .framer-1of9xrs > *, .framer-mGQDq .framer-1cj25dc > *, .framer-mGQDq .framer-yxkeuv > *, .framer-mGQDq .framer-8werdg > *, .framer-mGQDq .framer-5jyi1k > *, .framer-mGQDq .framer-1pt1gg6 > *, .framer-mGQDq .framer-11bizew > *, .framer-mGQDq .framer-ozfj1 > *, .framer-mGQDq .framer-zf34bj > *, .framer-mGQDq .framer-1p8ojqr > *, .framer-mGQDq .framer-1yzg0ld > *, .framer-mGQDq .framer-1kjfwtp > *, .framer-mGQDq .framer-m4ch49 > *, .framer-mGQDq .framer-8fv75n > *, .framer-mGQDq .framer-myzu32 > *, .framer-mGQDq .framer-votk6w > *, .framer-mGQDq .framer-1yf8c3y > *, .framer-mGQDq .framer-13wlhk0 > *, .framer-mGQDq .framer-ve165v > *, .framer-mGQDq .framer-imzrm6 > *, .framer-mGQDq .framer-wsu30r > *, .framer-mGQDq .framer-19039fj > *, .framer-mGQDq .framer-1112jmv > *, .framer-mGQDq .framer-gffc9r > *, .framer-mGQDq .framer-1drurf2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mGQDq .framer-17n4j4t > :first-child, .framer-mGQDq .framer-1djknk7 > :first-child, .framer-mGQDq .framer-1768jq1 > :first-child, .framer-mGQDq .framer-hvdgb6 > :first-child, .framer-mGQDq .framer-1of9xrs > :first-child, .framer-mGQDq .framer-n726fk > :first-child, .framer-mGQDq .framer-1cj25dc > :first-child, .framer-mGQDq .framer-1kw4ljk > :first-child, .framer-mGQDq .framer-yxkeuv > :first-child, .framer-mGQDq .framer-9tgfrs > :first-child, .framer-mGQDq .framer-8werdg > :first-child, .framer-mGQDq .framer-sxgkin > :first-child, .framer-mGQDq .framer-5jyi1k > :first-child, .framer-mGQDq .framer-393h5p > :first-child, .framer-mGQDq .framer-mn74r0 > :first-child, .framer-mGQDq .framer-1pt1gg6 > :first-child, .framer-mGQDq .framer-11bizew > :first-child, .framer-mGQDq .framer-ozfj1 > :first-child, .framer-mGQDq .framer-zf34bj > :first-child, .framer-mGQDq .framer-181tgwh > :first-child, .framer-mGQDq .framer-19qwpfw > :first-child, .framer-mGQDq .framer-1xeoob1 > :first-child, .framer-mGQDq .framer-1p8ojqr > :first-child, .framer-mGQDq .framer-1yzg0ld > :first-child, .framer-mGQDq .framer-e6ziu9 > :first-child, .framer-mGQDq .framer-de5syo > :first-child, .framer-mGQDq .framer-1kjfwtp > :first-child, .framer-mGQDq .framer-m4ch49 > :first-child, .framer-mGQDq .framer-ix6zql > :first-child, .framer-mGQDq .framer-1sxk1mv > :first-child, .framer-mGQDq .framer-8fv75n > :first-child, .framer-mGQDq .framer-myzu32 > :first-child, .framer-mGQDq .framer-lb9iu0 > :first-child, .framer-mGQDq .framer-wb1sg7 > :first-child, .framer-mGQDq .framer-votk6w > :first-child, .framer-mGQDq .framer-1yf8c3y > :first-child, .framer-mGQDq .framer-1hciov8 > :first-child, .framer-mGQDq .framer-1euqv7i > :first-child, .framer-mGQDq .framer-13wlhk0 > :first-child, .framer-mGQDq .framer-ve165v > :first-child, .framer-mGQDq .framer-xlftro > :first-child, .framer-mGQDq .framer-1rmcqus > :first-child, .framer-mGQDq .framer-imzrm6 > :first-child, .framer-mGQDq .framer-wsu30r > :first-child, .framer-mGQDq .framer-18p28sp > :first-child, .framer-mGQDq .framer-dq3ann > :first-child, .framer-mGQDq .framer-19039fj > :first-child, .framer-mGQDq .framer-1112jmv > :first-child, .framer-mGQDq .framer-1wcnreo > :first-child, .framer-mGQDq .framer-y03u44 > :first-child, .framer-mGQDq .framer-gffc9r > :first-child, .framer-mGQDq .framer-1drurf2 > :first-child, .framer-mGQDq .framer-42w8p6 > :first-child { margin-left: 0px; } .framer-mGQDq .framer-17n4j4t > :last-child, .framer-mGQDq .framer-1djknk7 > :last-child, .framer-mGQDq .framer-1768jq1 > :last-child, .framer-mGQDq .framer-hvdgb6 > :last-child, .framer-mGQDq .framer-1of9xrs > :last-child, .framer-mGQDq .framer-n726fk > :last-child, .framer-mGQDq .framer-1cj25dc > :last-child, .framer-mGQDq .framer-1kw4ljk > :last-child, .framer-mGQDq .framer-yxkeuv > :last-child, .framer-mGQDq .framer-9tgfrs > :last-child, .framer-mGQDq .framer-8werdg > :last-child, .framer-mGQDq .framer-sxgkin > :last-child, .framer-mGQDq .framer-5jyi1k > :last-child, .framer-mGQDq .framer-393h5p > :last-child, .framer-mGQDq .framer-mn74r0 > :last-child, .framer-mGQDq .framer-1pt1gg6 > :last-child, .framer-mGQDq .framer-11bizew > :last-child, .framer-mGQDq .framer-ozfj1 > :last-child, .framer-mGQDq .framer-zf34bj > :last-child, .framer-mGQDq .framer-181tgwh > :last-child, .framer-mGQDq .framer-19qwpfw > :last-child, .framer-mGQDq .framer-1xeoob1 > :last-child, .framer-mGQDq .framer-1p8ojqr > :last-child, .framer-mGQDq .framer-1yzg0ld > :last-child, .framer-mGQDq .framer-e6ziu9 > :last-child, .framer-mGQDq .framer-de5syo > :last-child, .framer-mGQDq .framer-1kjfwtp > :last-child, .framer-mGQDq .framer-m4ch49 > :last-child, .framer-mGQDq .framer-ix6zql > :last-child, .framer-mGQDq .framer-1sxk1mv > :last-child, .framer-mGQDq .framer-8fv75n > :last-child, .framer-mGQDq .framer-myzu32 > :last-child, .framer-mGQDq .framer-lb9iu0 > :last-child, .framer-mGQDq .framer-wb1sg7 > :last-child, .framer-mGQDq .framer-votk6w > :last-child, .framer-mGQDq .framer-1yf8c3y > :last-child, .framer-mGQDq .framer-1hciov8 > :last-child, .framer-mGQDq .framer-1euqv7i > :last-child, .framer-mGQDq .framer-13wlhk0 > :last-child, .framer-mGQDq .framer-ve165v > :last-child, .framer-mGQDq .framer-xlftro > :last-child, .framer-mGQDq .framer-1rmcqus > :last-child, .framer-mGQDq .framer-imzrm6 > :last-child, .framer-mGQDq .framer-wsu30r > :last-child, .framer-mGQDq .framer-18p28sp > :last-child, .framer-mGQDq .framer-dq3ann > :last-child, .framer-mGQDq .framer-19039fj > :last-child, .framer-mGQDq .framer-1112jmv > :last-child, .framer-mGQDq .framer-1wcnreo > :last-child, .framer-mGQDq .framer-y03u44 > :last-child, .framer-mGQDq .framer-gffc9r > :last-child, .framer-mGQDq .framer-1drurf2 > :last-child, .framer-mGQDq .framer-42w8p6 > :last-child { margin-right: 0px; } .framer-mGQDq .framer-1w94fce > *, .framer-mGQDq .framer-e94b4x > *, .framer-mGQDq .framer-x48sk4 > *, .framer-mGQDq .framer-1c8r4bd > *, .framer-mGQDq .framer-6oqp5i > *, .framer-mGQDq .framer-1x6tqmm > *, .framer-mGQDq .framer-6pvpz4 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-mGQDq .framer-hx45pk > *, .framer-mGQDq .framer-xqcq91 > *, .framer-mGQDq .framer-10ftq2n > *, .framer-mGQDq .framer-voxzl4 > *, .framer-mGQDq .framer-1awp1jm > *, .framer-mGQDq .framer-a586wo > *, .framer-mGQDq .framer-ylsdsi > *, .framer-mGQDq .framer-1hyf58j > *, .framer-mGQDq .framer-1dfvjj > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-mGQDq .framer-wy8dud > *, .framer-mGQDq .framer-1rx9h3 > *, .framer-mGQDq .framer-1pcohcc > *, .framer-mGQDq .framer-15zixw3 > *, .framer-mGQDq .framer-zlatuk > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-mGQDq .framer-hvdgb6 > *, .framer-mGQDq .framer-393h5p > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-mGQDq .framer-1nz31v4 > *, .framer-mGQDq .framer-1tt2n2j > * { margin: 0px; margin-bottom: calc(84px / 2); margin-top: calc(84px / 2); } .framer-mGQDq .framer-n726fk > *, .framer-mGQDq .framer-1kw4ljk > *, .framer-mGQDq .framer-9tgfrs > *, .framer-mGQDq .framer-sxgkin > * { margin: 0px; margin-left: calc(121px / 2); margin-right: calc(121px / 2); } .framer-mGQDq .framer-mn74r0 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-mGQDq .framer-1mro1c0 > *, .framer-mGQDq .framer-9qba2x > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-mGQDq .framer-181tgwh > *, .framer-mGQDq .framer-19qwpfw > *, .framer-mGQDq .framer-e6ziu9 > *, .framer-mGQDq .framer-ix6zql > *, .framer-mGQDq .framer-lb9iu0 > *, .framer-mGQDq .framer-1hciov8 > *, .framer-mGQDq .framer-xlftro > *, .framer-mGQDq .framer-18p28sp > *, .framer-mGQDq .framer-1wcnreo > *, .framer-mGQDq .framer-42w8p6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-mGQDq .framer-bztx4x > *, .framer-mGQDq .framer-6hclkj > *, .framer-mGQDq .framer-16y3pyl > *, .framer-mGQDq .framer-14vrli2 > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-mGQDq .framer-1xeoob1 > *, .framer-mGQDq .framer-de5syo > *, .framer-mGQDq .framer-1sxk1mv > *, .framer-mGQDq .framer-wb1sg7 > *, .framer-mGQDq .framer-1euqv7i > *, .framer-mGQDq .framer-1rmcqus > *, .framer-mGQDq .framer-dq3ann > *, .framer-mGQDq .framer-y03u44 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-mGQDq .framer-feofr4 > *, .framer-mGQDq .framer-biwqtr > *, .framer-mGQDq .framer-x0pfhv > *, .framer-mGQDq .framer-378ze5 > *, .framer-mGQDq .framer-i4502u > *, .framer-mGQDq .framer-1xjcxrs > *, .framer-mGQDq .framer-12cffry > *, .framer-mGQDq .framer-p9y6nx > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-mGQDq .framer-zun425 > *, .framer-mGQDq .framer-sr3hsh > *, .framer-mGQDq .framer-nxka2h > *, .framer-mGQDq .framer-1ttwjsk > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-mGQDq[data-border=\"true\"]::after, .framer-mGQDq [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1259px) { .framer-mGQDq.framer-72rtr7 { width: 810px; } .framer-mGQDq .framer-cirubh { padding: 50px 0px 0px 0px; } .framer-mGQDq .framer-17n4j4t { padding: 0px 30px 50px 30px; } .framer-mGQDq .framer-1urx0v6 { max-width: 550px; } .framer-mGQDq .framer-1djknk7 { bottom: 15px; right: 25px; } .framer-mGQDq .framer-ena3f5 { order: 0; } .framer-mGQDq .framer-1b0esgu { order: 1; } .framer-mGQDq .framer-1vipjar { height: var(--framer-aspect-ratio-supported, 500px); } .framer-mGQDq .framer-1w94fce { padding: 60px 30px 60px 30px; } .framer-mGQDq .framer-e94b4x, .framer-mGQDq .framer-1x6tqmm, .framer-mGQDq .framer-181tgwh { padding: 0px 30px 0px 30px; } .framer-mGQDq .framer-wprx5x { padding: 25px 0px 0px 0px; } .framer-mGQDq .framer-1c8r4bd { height: var(--framer-aspect-ratio-supported, 358px); } .framer-mGQDq .framer-6oqp5i { padding: 0px 30px 120px 30px; } .framer-mGQDq .framer-1cazkas, .framer-mGQDq .framer-thrgaq, .framer-mGQDq .framer-ydxuln, .framer-mGQDq .framer-1e9ebrr { padding: 12px 0px 10px 0px; } .framer-mGQDq .framer-n726fk, .framer-mGQDq .framer-1kw4ljk, .framer-mGQDq .framer-9tgfrs, .framer-mGQDq .framer-sxgkin { flex: 1 0 0px; gap: 20px; width: 1px; } .framer-mGQDq .framer-ow99gb, .framer-mGQDq .framer-1g8fbi4, .framer-mGQDq .framer-naur15, .framer-mGQDq .framer-1v72yna { height: 90px; width: 90px; } .framer-mGQDq .framer-1tt2n2j { padding: 0px 0px 80px 0px; } .framer-mGQDq .framer-mn74r0, .framer-mGQDq .framer-1mro1c0, .framer-mGQDq .framer-9qba2x { gap: 30px; } .framer-mGQDq .framer-6pvpz4 { gap: 0px; padding: 0px 0px 60px 0px; } .framer-mGQDq .framer-1dfvjj { padding: 0px 30px 10px 30px; } .framer-mGQDq .framer-19qwpfw { padding: 30px 30px 0px 30px; } .framer-mGQDq .framer-o9ityn-container { flex: none; height: 468px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-mGQDq .framer-n726fk, .framer-mGQDq .framer-1kw4ljk, .framer-mGQDq .framer-9tgfrs, .framer-mGQDq .framer-sxgkin, .framer-mGQDq .framer-mn74r0, .framer-mGQDq .framer-1mro1c0, .framer-mGQDq .framer-9qba2x, .framer-mGQDq .framer-6pvpz4 { gap: 0px; } .framer-mGQDq .framer-n726fk > *, .framer-mGQDq .framer-1kw4ljk > *, .framer-mGQDq .framer-9tgfrs > *, .framer-mGQDq .framer-sxgkin > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-mGQDq .framer-n726fk > :first-child, .framer-mGQDq .framer-1kw4ljk > :first-child, .framer-mGQDq .framer-9tgfrs > :first-child, .framer-mGQDq .framer-sxgkin > :first-child, .framer-mGQDq .framer-mn74r0 > :first-child { margin-left: 0px; } .framer-mGQDq .framer-n726fk > :last-child, .framer-mGQDq .framer-1kw4ljk > :last-child, .framer-mGQDq .framer-9tgfrs > :last-child, .framer-mGQDq .framer-sxgkin > :last-child, .framer-mGQDq .framer-mn74r0 > :last-child { margin-right: 0px; } .framer-mGQDq .framer-mn74r0 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-mGQDq .framer-1mro1c0 > *, .framer-mGQDq .framer-9qba2x > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-mGQDq .framer-1mro1c0 > :first-child, .framer-mGQDq .framer-9qba2x > :first-child, .framer-mGQDq .framer-6pvpz4 > :first-child { margin-top: 0px; } .framer-mGQDq .framer-1mro1c0 > :last-child, .framer-mGQDq .framer-9qba2x > :last-child, .framer-mGQDq .framer-6pvpz4 > :last-child { margin-bottom: 0px; } .framer-mGQDq .framer-6pvpz4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (max-width: 809px) { .framer-mGQDq.framer-72rtr7 { width: 390px; } .framer-mGQDq .framer-cirubh { padding: 40px 0px 0px 0px; } .framer-mGQDq .framer-17n4j4t { padding: 0px 16px 40px 16px; } .framer-mGQDq .framer-1urx0v6 { max-width: 300px; } .framer-mGQDq .framer-1djknk7 { bottom: 20px; right: 16px; } .framer-mGQDq .framer-1b0esgu { height: 18px; width: 18px; } .framer-mGQDq .framer-1vipjar { height: var(--framer-aspect-ratio-supported, 241px); } .framer-mGQDq .framer-1w94fce { padding: 40px 16px 40px 16px; } .framer-mGQDq .framer-hx45pk { padding: 0px 0px 30px 0px; } .framer-mGQDq .framer-1295u5i { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-mGQDq .framer-rh3mh5-container, .framer-mGQDq .framer-1tbrbix-container, .framer-mGQDq .framer-f1p4gy-container, .framer-mGQDq .framer-9mkjms-container { will-change: var(--framer-will-change-effect-override, transform); } .framer-mGQDq .framer-e94b4x, .framer-mGQDq .framer-1x6tqmm, .framer-mGQDq .framer-181tgwh, .framer-mGQDq .framer-19qwpfw { padding: 0px 16px 0px 16px; } .framer-mGQDq .framer-1a6rhpc { gap: 12px; } .framer-mGQDq .framer-wprx5x { padding: 20px 0px 0px 0px; } .framer-mGQDq .framer-x48sk4 { padding: 20px; } .framer-mGQDq .framer-hvdgb6 { min-height: 147px; padding: 20px; } .framer-mGQDq .framer-112bp7a { left: 51%; top: 50%; } .framer-mGQDq .framer-6oqp5i { gap: 0px; padding: 0px 16px 40px 16px; } .framer-mGQDq .framer-1nz31v4 { gap: 30px; } .framer-mGQDq .framer-1cazkas { padding: 20px 0px 20px 0px; } .framer-mGQDq .framer-n726fk, .framer-mGQDq .framer-1kw4ljk, .framer-mGQDq .framer-9tgfrs, .framer-mGQDq .framer-sxgkin { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; gap: 8px; width: 1px; } .framer-mGQDq .framer-ow99gb, .framer-mGQDq .framer-1g8fbi4, .framer-mGQDq .framer-naur15, .framer-mGQDq .framer-1v72yna { height: 60px; width: 60px; } .framer-mGQDq .framer-1cj25dc, .framer-mGQDq .framer-yxkeuv, .framer-mGQDq .framer-8werdg, .framer-mGQDq .framer-5jyi1k { width: 100%; } .framer-mGQDq .framer-1dg6jsm, .framer-mGQDq .framer-1n0mel3, .framer-mGQDq .framer-skeq40, .framer-mGQDq .framer-12eej29 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-mGQDq .framer-voxzl4, .framer-mGQDq .framer-1awp1jm, .framer-mGQDq .framer-a586wo, .framer-mGQDq .framer-ylsdsi { flex: 1 0 0px; gap: 10px; width: 1px; } .framer-mGQDq .framer-thrgaq { align-content: flex-start; align-items: flex-start; padding: 20px 0px 20px 0px; } .framer-mGQDq .framer-ydxuln, .framer-mGQDq .framer-1e9ebrr { align-content: flex-start; align-items: flex-start; gap: 10px; justify-content: center; padding: 20px 0px 20px 0px; } .framer-mGQDq .framer-393h5p { gap: 0px; } .framer-mGQDq .framer-1tt2n2j { gap: 30px; padding: 0px 0px 40px 0px; } .framer-mGQDq .framer-mn74r0 { flex-direction: column; } .framer-mGQDq .framer-1mro1c0, .framer-mGQDq .framer-9qba2x { flex: none; width: 100%; } .framer-mGQDq .framer-6pvpz4 { gap: 15px; padding: 0px 0px 40px 0px; } .framer-mGQDq .framer-1dfvjj { padding: 0px 16px 10px 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-mGQDq .framer-1a6rhpc, .framer-mGQDq .framer-6oqp5i, .framer-mGQDq .framer-1nz31v4, .framer-mGQDq .framer-n726fk, .framer-mGQDq .framer-voxzl4, .framer-mGQDq .framer-1kw4ljk, .framer-mGQDq .framer-1awp1jm, .framer-mGQDq .framer-ydxuln, .framer-mGQDq .framer-9tgfrs, .framer-mGQDq .framer-a586wo, .framer-mGQDq .framer-1e9ebrr, .framer-mGQDq .framer-sxgkin, .framer-mGQDq .framer-ylsdsi, .framer-mGQDq .framer-393h5p, .framer-mGQDq .framer-1tt2n2j, .framer-mGQDq .framer-mn74r0, .framer-mGQDq .framer-6pvpz4 { gap: 0px; } .framer-mGQDq .framer-1a6rhpc > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-mGQDq .framer-1a6rhpc > :first-child, .framer-mGQDq .framer-6oqp5i > :first-child, .framer-mGQDq .framer-1nz31v4 > :first-child, .framer-mGQDq .framer-n726fk > :first-child, .framer-mGQDq .framer-voxzl4 > :first-child, .framer-mGQDq .framer-1kw4ljk > :first-child, .framer-mGQDq .framer-1awp1jm > :first-child, .framer-mGQDq .framer-9tgfrs > :first-child, .framer-mGQDq .framer-a586wo > :first-child, .framer-mGQDq .framer-sxgkin > :first-child, .framer-mGQDq .framer-ylsdsi > :first-child, .framer-mGQDq .framer-1tt2n2j > :first-child, .framer-mGQDq .framer-mn74r0 > :first-child, .framer-mGQDq .framer-6pvpz4 > :first-child { margin-top: 0px; } .framer-mGQDq .framer-1a6rhpc > :last-child, .framer-mGQDq .framer-6oqp5i > :last-child, .framer-mGQDq .framer-1nz31v4 > :last-child, .framer-mGQDq .framer-n726fk > :last-child, .framer-mGQDq .framer-voxzl4 > :last-child, .framer-mGQDq .framer-1kw4ljk > :last-child, .framer-mGQDq .framer-1awp1jm > :last-child, .framer-mGQDq .framer-9tgfrs > :last-child, .framer-mGQDq .framer-a586wo > :last-child, .framer-mGQDq .framer-sxgkin > :last-child, .framer-mGQDq .framer-ylsdsi > :last-child, .framer-mGQDq .framer-1tt2n2j > :last-child, .framer-mGQDq .framer-mn74r0 > :last-child, .framer-mGQDq .framer-6pvpz4 > :last-child { margin-bottom: 0px; } .framer-mGQDq .framer-6oqp5i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mGQDq .framer-1nz31v4 > *, .framer-mGQDq .framer-1tt2n2j > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-mGQDq .framer-n726fk > *, .framer-mGQDq .framer-1kw4ljk > *, .framer-mGQDq .framer-9tgfrs > *, .framer-mGQDq .framer-sxgkin > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-mGQDq .framer-voxzl4 > *, .framer-mGQDq .framer-1awp1jm > *, .framer-mGQDq .framer-a586wo > *, .framer-mGQDq .framer-ylsdsi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-mGQDq .framer-ydxuln > *, .framer-mGQDq .framer-1e9ebrr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mGQDq .framer-ydxuln > :first-child, .framer-mGQDq .framer-1e9ebrr > :first-child, .framer-mGQDq .framer-393h5p > :first-child { margin-left: 0px; } .framer-mGQDq .framer-ydxuln > :last-child, .framer-mGQDq .framer-1e9ebrr > :last-child, .framer-mGQDq .framer-393h5p > :last-child { margin-right: 0px; } .framer-mGQDq .framer-393h5p > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-mGQDq .framer-mn74r0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-mGQDq .framer-6pvpz4 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9718\n * @framerIntrinsicWidth 1260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Cm0VHn560\":{\"layout\":[\"fixed\",\"auto\"]},\"kf4lWex9S\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"AAIznoeCs\":{\"pattern\":\":AAIznoeCs\",\"name\":\"process\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-mGQDq\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9718,width:1260};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...ProcessWrapperFonts,...WorkFonts,...CounterFonts,...CaseCardFonts,...CaseButtonFonts,...SlideshowFonts,...PurchaseButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"AAIznoeCs\\\":{\\\"pattern\\\":\\\":AAIznoeCs\\\",\\\"name\\\":\\\"process\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1260\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"9718\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Cm0VHn560\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kf4lWex9S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__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", "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", "i", "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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "content", "count", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pOAExLcBN", "mTnB9rQPb", "SI36Sb1_p", "cibCyaDWH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerKu1Ad7MuG", "withCSS", "Ku1Ad7MuG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "date", "height", "id", "image", "serviceName", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "pfo77mYQm", "ddUbSwW7e", "eHLCCpP_u", "jM_DZGoHA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1cmtyth", "args", "onMouseLeave1ds8bj4", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "Framerzd12DLo3c", "withCSS", "zd12DLo3c_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ImageWithFX", "withFX", "Image2", "MotionAWithOptimizedAppearEffect", "motion", "MotionDivWithFX", "ProcessWrapperFonts", "getFonts", "Ku1Ad7MuG_default", "ContainerWithFXWithOptimizedAppearEffect", "Container", "WorkFonts", "zd12DLo3c_default", "CounterFonts", "Counter", "CaseCardFonts", "Sh9ndVQN5_default", "CaseButtonFonts", "PzFFjEero_default", "SlideshowFonts", "Slideshow", "PurchaseButtonFonts", "OmnC9uRMk_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "addImageAlt", "image", "alt", "animation7", "animation8", "animation9", "animation10", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation11", "transition5", "animation12", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "swDAk6J5qqNVYZ_lqS", "i1lSILu9GqNVYZ_lqS", "G3DmdZG5UqNVYZ_lqS", "yjMtUHgVaqNVYZ_lqS", "idqNVYZ_lqS", "swDAk6J5qBqFICkBD_", "i1lSILu9GBqFICkBD_", "KKzCmQIPfBqFICkBD_", "idBqFICkBD_", "swDAk6J5qXCoKIt2P9", "i1lSILu9GXCoKIt2P9", "KKzCmQIPfXCoKIt2P9", "idXCoKIt2P9", "swDAk6J5qERpBrV_l4", "i1lSILu9GERpBrV_l4", "KKzCmQIPfERpBrV_l4", "idERpBrV_l4", "swDAk6J5qBxuKMfA5S", "i1lSILu9GBxuKMfA5S", "KKzCmQIPfBxuKMfA5S", "idBxuKMfA5S", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "activeLocaleCode", "useLocaleCode", "isDisplayed", "router", "useRouter", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "x", "Link", "PropertyOverrides2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "ChildrenCanSuspend", "j6FP5yLE1_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
