{
  "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/vNK0PLBz5d98kCf1h8ZS/KqJTdiK9hqOwtzcsUD1b/axlM_KsIE.js", "ssg:https://framerusercontent.com/modules/zsIbaL2pMw8oSRLBwmcr/LLY3yhF4z3zeYZbXWIbd/vRUPy1pDP.js", "ssg:https://framerusercontent.com/modules/83kz8Ykal81iCDCiQumn/xP7O7d6TQrZpUdgGWpRd/tULNkiep7.js", "ssg:https://framerusercontent.com/modules/wrb2ZzV9TOhL6nNDda2a/FLuLmUucbqj1dA4QrvpG/RovqKUO3R.js", "ssg:https://framerusercontent.com/modules/noq5S0NANqpNBdTu8W8V/LQLtaD9kAhCJ2JwyR6DS/vn9saUCE6.js", "ssg:https://framerusercontent.com/modules/vhQ84L4uyEmsZMiKFrvV/fallMsgRhq4ImHWVECyg/uJ3XVF6za.js", "ssg:https://framerusercontent.com/modules/w6DTKDD22axCoZvAJBBs/zt9lbg96ZfkDf24SRdVn/eZHFW2Pus.js", "ssg:https://framerusercontent.com/modules/x8sfFlz00BOpmTkvsxZF/Z4WmfEVNcoYG3xKSEnnh/i0jAPLPgA.js", "ssg:https://framerusercontent.com/modules/dA6PUBruyU3UDg9Uv0e6/vd4B22pQbLC83ke4c3nD/xdlw94awV.js", "ssg:https://framerusercontent.com/modules/6zTJgAcGK37KViVCZTsI/vYPOamKPZn6T56o6MG1i/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 (2ca17d4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lLXN6MfOaUAqMJ77Kv1i/EOpUtWf7KOTG2Pp4pfmq/D0E3giwT3.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6PGi5WCkwArlddQkW3tI/TGYlC6IJhtBN7WEkE5CV/nW0iE657y.js\";const SlideshowFonts=getFonts(Slideshow);const serializationHash=\"framer-ykvFt\";const variantClassNames={Mnja9XI53:\"framer-v-1jlgm81\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};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 getProps=({height,id,text01,text02,text03,text04,text05,text06,text07,text08,width,...props})=>{return{...props,ECn8u_jmu:text01??props.ECn8u_jmu??\"1\",h3q_6K3Sh:text08??props.h3q_6K3Sh??\"8\",IJdezxLlI:text06??props.IJdezxLlI??\"6\",iOOeIa9c3:text03??props.iOOeIa9c3??\"3\",ONddBhblS:text02??props.ONddBhblS??\"2\",oy2nX6YhV:text05??props.oy2nX6YhV??\"5\",QFOdMrXVP:text07??props.QFOdMrXVP??\"7\",W5hXrZQCz:text04??props.W5hXrZQCz??\"4\"};};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,ECn8u_jmu,ONddBhblS,iOOeIa9c3,W5hXrZQCz,oy2nX6YhV,IJdezxLlI,QFOdMrXVP,h3q_6K3Sh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Mnja9XI53\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTape4rddz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Mnja9XI53\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1jlgm81\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mnja9XI53\",onTap:onTape4rddz,ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fflp1e-container\",layoutDependency:layoutDependency,layoutId:\"t_kvSZQd7-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"top\",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:20,height:\"100%\",id:\"t_kvSZQd7\",intervalControl:3,itemAmount:1,layoutId:\"t_kvSZQd7\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lzs29e\",\"data-framer-name\":\"Text 01\",layoutDependency:layoutDependency,layoutId:\"XR5ZutYng\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1gpob6a\",\"data-styles-preset\":\"nW0iE657y\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)))\"},children:\"Retail\"})}),className:\"framer-1u9b4pg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HpzMtE8Aj\",style:{\"--extracted-a0htzi\":\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ECn8u_jmu,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lx0mh4\",\"data-framer-name\":\"Text 02\",layoutDependency:layoutDependency,layoutId:\"Ng4j7gAT2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1gpob6a\",\"data-styles-preset\":\"nW0iE657y\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)))\"},children:\"Restaurants\"})}),className:\"framer-6lkuic\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aashW2v_A\",style:{\"--extracted-a0htzi\":\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ONddBhblS,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b1223s\",\"data-framer-name\":\"Text 03\",layoutDependency:layoutDependency,layoutId:\"kfu57N6WV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1gpob6a\",\"data-styles-preset\":\"nW0iE657y\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)))\"},children:\"Education\"})}),className:\"framer-hmi1a2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kWpvVYoeI\",style:{\"--extracted-a0htzi\":\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:iOOeIa9c3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tdy1hh\",\"data-framer-name\":\"Text 04\",layoutDependency:layoutDependency,layoutId:\"hytZ7ToUH\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1g3m8fd\",\"data-styles-preset\":\"D0E3giwT3\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)))\"},children:\"Finance\"})}),className:\"framer-1bdud4c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bqiHSz7w6\",style:{\"--extracted-1eung3n\":\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W5hXrZQCz,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yb4ff5\",\"data-framer-name\":\"Text 05\",layoutDependency:layoutDependency,layoutId:\"HVjbGakl6\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1g3m8fd\",\"data-styles-preset\":\"D0E3giwT3\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)))\"},children:\"Finance\"})}),className:\"framer-kiw3ge\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mVYlZa3bC\",style:{\"--extracted-1eung3n\":\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:oy2nX6YhV,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t9cupl\",\"data-framer-name\":\"Text 06\",layoutDependency:layoutDependency,layoutId:\"yiIBye4iW\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1g3m8fd\",\"data-styles-preset\":\"D0E3giwT3\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)))\"},children:\"Finance\"})}),className:\"framer-10foazl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vtKatY8rW\",style:{\"--extracted-1eung3n\":\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:IJdezxLlI,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-73ghot\",\"data-framer-name\":\"Text 07\",layoutDependency:layoutDependency,layoutId:\"VsHOmWc4p\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1g3m8fd\",\"data-styles-preset\":\"D0E3giwT3\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)))\"},children:\"Finance\"})}),className:\"framer-18fjfr6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pqtwyrgkU\",style:{\"--extracted-1eung3n\":\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:QFOdMrXVP,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nkevx4\",\"data-framer-name\":\"Text 08\",layoutDependency:layoutDependency,layoutId:\"yMcBBqZIJ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1g3m8fd\",\"data-styles-preset\":\"D0E3giwT3\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)))\"},children:\"Finance\"})}),className:\"framer-7cvvpz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hFCWZj2Ut\",style:{\"--extracted-1eung3n\":\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:h3q_6K3Sh,verticalAlignment:\"top\",withExternalLayout:true})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ykvFt.framer-1cpzyck, .framer-ykvFt .framer-1cpzyck { display: block; }\",\".framer-ykvFt.framer-1jlgm81 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 350px; }\",\".framer-ykvFt .framer-fflp1e-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-ykvFt .framer-lzs29e, .framer-ykvFt .framer-lx0mh4, .framer-ykvFt .framer-1b1223s, .framer-ykvFt .framer-tdy1hh, .framer-ykvFt .framer-yb4ff5, .framer-ykvFt .framer-t9cupl, .framer-ykvFt .framer-73ghot, .framer-ykvFt .framer-nkevx4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ykvFt .framer-1u9b4pg, .framer-ykvFt .framer-6lkuic, .framer-ykvFt .framer-hmi1a2, .framer-ykvFt .framer-1bdud4c, .framer-ykvFt .framer-kiw3ge, .framer-ykvFt .framer-10foazl, .framer-ykvFt .framer-18fjfr6, .framer-ykvFt .framer-7cvvpz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ykvFt.framer-1jlgm81, .framer-ykvFt .framer-lzs29e, .framer-ykvFt .framer-lx0mh4, .framer-ykvFt .framer-1b1223s, .framer-ykvFt .framer-tdy1hh, .framer-ykvFt .framer-yb4ff5, .framer-ykvFt .framer-t9cupl, .framer-ykvFt .framer-73ghot, .framer-ykvFt .framer-nkevx4 { gap: 0px; } .framer-ykvFt.framer-1jlgm81 > *, .framer-ykvFt .framer-lzs29e > *, .framer-ykvFt .framer-lx0mh4 > *, .framer-ykvFt .framer-1b1223s > *, .framer-ykvFt .framer-tdy1hh > *, .framer-ykvFt .framer-yb4ff5 > *, .framer-ykvFt .framer-t9cupl > *, .framer-ykvFt .framer-73ghot > *, .framer-ykvFt .framer-nkevx4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ykvFt.framer-1jlgm81 > :first-child, .framer-ykvFt .framer-lzs29e > :first-child, .framer-ykvFt .framer-lx0mh4 > :first-child, .framer-ykvFt .framer-1b1223s > :first-child, .framer-ykvFt .framer-tdy1hh > :first-child, .framer-ykvFt .framer-yb4ff5 > :first-child, .framer-ykvFt .framer-t9cupl > :first-child, .framer-ykvFt .framer-73ghot > :first-child, .framer-ykvFt .framer-nkevx4 > :first-child { margin-left: 0px; } .framer-ykvFt.framer-1jlgm81 > :last-child, .framer-ykvFt .framer-lzs29e > :last-child, .framer-ykvFt .framer-lx0mh4 > :last-child, .framer-ykvFt .framer-1b1223s > :last-child, .framer-ykvFt .framer-tdy1hh > :last-child, .framer-ykvFt .framer-yb4ff5 > :last-child, .framer-ykvFt .framer-t9cupl > :last-child, .framer-ykvFt .framer-73ghot > :last-child, .framer-ykvFt .framer-nkevx4 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ECn8u_jmu\":\"text01\",\"ONddBhblS\":\"text02\",\"iOOeIa9c3\":\"text03\",\"W5hXrZQCz\":\"text04\",\"oy2nX6YhV\":\"text05\",\"IJdezxLlI\":\"text06\",\"QFOdMrXVP\":\"text07\",\"h3q_6K3Sh\":\"text08\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraxlM_KsIE=withCSS(Component,css,\"framer-ykvFt\");export default FrameraxlM_KsIE;FrameraxlM_KsIE.displayName=\"Slideshow/Text\";FrameraxlM_KsIE.defaultProps={height:60,width:350};addPropertyControls(FrameraxlM_KsIE,{ECn8u_jmu:{defaultValue:\"1\",displayTextArea:false,title:\"Text 01\",type:ControlType.String},ONddBhblS:{defaultValue:\"2\",displayTextArea:false,title:\"Text 02\",type:ControlType.String},iOOeIa9c3:{defaultValue:\"3\",displayTextArea:false,title:\"Text 03\",type:ControlType.String},W5hXrZQCz:{defaultValue:\"4\",displayTextArea:false,title:\"Text 04\",type:ControlType.String},oy2nX6YhV:{defaultValue:\"5\",title:\"Text 05\",type:ControlType.String},IJdezxLlI:{defaultValue:\"6\",title:\"Text 06\",type:ControlType.String},QFOdMrXVP:{defaultValue:\"7\",title:\"Text 07\",type:ControlType.String},h3q_6K3Sh:{defaultValue:\"8\",title:\"Text 08\",type:ControlType.String}});addFonts(FrameraxlM_KsIE,[{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\"}]},...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraxlM_KsIE\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"350\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"60\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"ECn8u_jmu\\\":\\\"text01\\\",\\\"ONddBhblS\\\":\\\"text02\\\",\\\"iOOeIa9c3\\\":\\\"text03\\\",\\\"W5hXrZQCz\\\":\\\"text04\\\",\\\"oy2nX6YhV\\\":\\\"text05\\\",\\\"IJdezxLlI\\\":\\\"text06\\\",\\\"QFOdMrXVP\\\":\\\"text07\\\",\\\"h3q_6K3Sh\\\":\\\"text08\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./axlM_KsIE.map", "// Generated by Framer (ca9141d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\",weight:\"500\"}]}];export const css=['.framer-BzNIL .framer-styles-preset-1h654rk:not(.rich-text-wrapper), .framer-BzNIL .framer-styles-preset-1h654rk.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-11ed7535-5508-4a23-ae24-35df7466cd7c, #222222); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-BzNIL\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zsIbaL2pMw8oSRLBwmcr/LLY3yhF4z3zeYZbXWIbd/vRUPy1pDP.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={hO0FdBbNa:{hover:true}};const serializationHash=\"framer-UNJas\";const variantClassNames={hO0FdBbNa:\"framer-v-118kfiw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({buttonText,height,id,link,width,...props})=>{var _ref;return{...props,rtLF2obMR:(_ref=buttonText!==null&&buttonText!==void 0?buttonText:props.rtLF2obMR)!==null&&_ref!==void 0?_ref:\"Button\",SNHepsNqk:link!==null&&link!==void 0?link:props.SNHepsNqk};};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,rtLF2obMR,SNHepsNqk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"hO0FdBbNa\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:SNHepsNqk,nodeId:\"hO0FdBbNa\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-118kfiw\",className,classNames)} framer-7u5ete`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"hO0FdBbNa\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"hO0FdBbNa-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lsnrij\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"ZrOP9pisM\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1h654rk\",\"data-styles-preset\":\"vRUPy1pDP\",children:\"Button\"})}),className:\"framer-h3r418\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QbWJULOog\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:rtLF2obMR,variants:{\"hO0FdBbNa-hover\":{\"--extracted-r6o4lv\":\"var(--token-276ae762-7e76-488a-bc48-1cd74a585c71, rgb(232, 72, 28))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"hO0FdBbNa-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1h654rk\",\"data-styles-preset\":\"vRUPy1pDP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-276ae762-7e76-488a-bc48-1cd74a585c71, rgb(232, 72, 28)))\"},children:\"Button\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11kvezx-container\",layoutDependency:layoutDependency,layoutId:\"Fwgc5oPXU-container\",style:{rotate:0},variants:{\"hO0FdBbNa-hover\":{rotate:-45}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-11ed7535-5508-4a23-ae24-35df7466cd7c, rgb(34, 34, 34))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowDownRight\",id:\"Fwgc5oPXU\",layoutId:\"Fwgc5oPXU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({\"hO0FdBbNa-hover\":{color:\"var(--token-276ae762-7e76-488a-bc48-1cd74a585c71, rgb(232, 72, 28))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UNJas.framer-7u5ete, .framer-UNJas .framer-7u5ete { display: block; }\",\".framer-UNJas.framer-118kfiw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-UNJas .framer-1lsnrij { 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: visible; padding: 0px 10px 0px 10px; position: relative; width: min-content; }\",\".framer-UNJas .framer-h3r418 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-UNJas .framer-11kvezx-container { flex: none; height: 54px; position: relative; width: 54px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UNJas.framer-118kfiw, .framer-UNJas .framer-1lsnrij { gap: 0px; } .framer-UNJas.framer-118kfiw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UNJas.framer-118kfiw > :first-child, .framer-UNJas .framer-1lsnrij > :first-child { margin-left: 0px; } .framer-UNJas.framer-118kfiw > :last-child, .framer-UNJas .framer-1lsnrij > :last-child { margin-right: 0px; } .framer-UNJas .framer-1lsnrij > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-UNJas.framer-v-118kfiw.hover .framer-1lsnrij { padding: 0px 15px 0px 5px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 54\n * @framerIntrinsicWidth 130\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"thWppG42j\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"rtLF2obMR\":\"buttonText\",\"SNHepsNqk\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertULNkiep7=withCSS(Component,css,\"framer-UNJas\");export default FramertULNkiep7;FramertULNkiep7.displayName=\"Button/Secondary\";FramertULNkiep7.defaultProps={height:54,width:130};addPropertyControls(FramertULNkiep7,{rtLF2obMR:{defaultValue:\"Button\",displayTextArea:false,title:\"Button Text\",type:ControlType.String},SNHepsNqk:{title:\"Link\",type:ControlType.Link}});addFonts(FramertULNkiep7,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertULNkiep7\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"rtLF2obMR\\\":\\\"buttonText\\\",\\\"SNHepsNqk\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"54\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"thWppG42j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"130\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-regular\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW32RmYJpso5.woff2\",weight:\"400\"}]}];export const css=['.framer-fUJ9Y .framer-styles-preset-98p1p7:not(.rich-text-wrapper), .framer-fUJ9Y .framer-styles-preset-98p1p7.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-11ed7535-5508-4a23-ae24-35df7466cd7c, #222222); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-fUJ9Y\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wrb2ZzV9TOhL6nNDda2a/FLuLmUucbqj1dA4QrvpG/RovqKUO3R.js\";const PhosphorFonts=getFonts(Phosphor);const serializationHash=\"framer-yMDib\";const variantClassNames={r9gDZYezu:\"framer-v-hbc97t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,text,width,...props})=>{var _ref;return{...props,w84GGfwTR:(_ref=text!==null&&text!==void 0?text:props.w84GGfwTR)!==null&&_ref!==void 0?_ref:\"Tailored website designs that reflect your brand's identity\"};};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,w84GGfwTR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"r9gDZYezu\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hbc97t\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"r9gDZYezu\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xqzdac-container\",layoutDependency:layoutDependency,layoutId:\"Q7FklO5dr-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(34, 34, 34, 0.8))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"Q7FklO5dr\",layoutId:\"Q7FklO5dr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(34, 34, 34, 0.8)))\"},children:\"Tailored website designs that reflect your brand's identity\"})}),className:\"framer-ws6dwa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dSpGS9Op_\",style:{\"--extracted-r6o4lv\":\"var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(34, 34, 34, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:w84GGfwTR,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yMDib.framer-12tua6b, .framer-yMDib .framer-12tua6b { display: block; }\",\".framer-yMDib.framer-hbc97t { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 450px; }\",\".framer-yMDib .framer-xqzdac-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-yMDib .framer-ws6dwa { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yMDib.framer-hbc97t { gap: 0px; } .framer-yMDib.framer-hbc97t > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yMDib.framer-hbc97t > :first-child { margin-left: 0px; } .framer-yMDib.framer-hbc97t > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 45\n * @framerIntrinsicWidth 450\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"w84GGfwTR\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framervn9saUCE6=withCSS(Component,css,\"framer-yMDib\");export default Framervn9saUCE6;Framervn9saUCE6.displayName=\"Misc/Icon Text\";Framervn9saUCE6.defaultProps={height:45,width:450};addPropertyControls(Framervn9saUCE6,{w84GGfwTR:{defaultValue:\"Tailored website designs that reflect your brand's identity\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(Framervn9saUCE6,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framervn9saUCE6\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"45\",\"framerVariables\":\"{\\\"w84GGfwTR\\\":\\\"text\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"450\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/6PGi5WCkwArlddQkW3tI/TGYlC6IJhtBN7WEkE5CV/nW0iE657y.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/7jSDYWLKgpyIzcRxOSt2/YntjxppkjXtgErxPXfnA/RovqKUO3R.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/iI9xUjQdwDpgvIQWPO1M/BijmzbxhkhHuyKciqfof/yky8lXWxn.js\";import ButtonSecondary from\"https://framerusercontent.com/modules/83kz8Ykal81iCDCiQumn/xP7O7d6TQrZpUdgGWpRd/tULNkiep7.js\";import MiscIconText from\"https://framerusercontent.com/modules/noq5S0NANqpNBdTu8W8V/LQLtaD9kAhCJ2JwyR6DS/vn9saUCE6.js\";const PhosphorFonts=getFonts(Phosphor);const MiscIconTextFonts=getFonts(MiscIconText);const ButtonSecondaryFonts=getFonts(ButtonSecondary);const cycleOrder=[\"AY7D9mR95\",\"ZvuKpSb5A\",\"TdsrqIITE\",\"qICcx8CiE\",\"UbAsu_ykO\",\"Lg_XUk9Q_\"];const serializationHash=\"framer-iskVZ\";const variantClassNames={AY7D9mR95:\"framer-v-17lw6lh\",Lg_XUk9Q_:\"framer-v-1g978im\",qICcx8CiE:\"framer-v-1621lnk\",TdsrqIITE:\"framer-v-1gk9vj5\",UbAsu_ykO:\"framer-v-sgfxv7\",ZvuKpSb5A:\"framer-v-eludi5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.4,type:\"spring\"};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const 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={\"Desktop/Close\":\"ZvuKpSb5A\",\"Desktop/Open\":\"AY7D9mR95\",\"Phone/Close\":\"Lg_XUk9Q_\",\"Phone/Open\":\"UbAsu_ykO\",\"Tablet/Close\":\"qICcx8CiE\",\"Tablet/Open\":\"TdsrqIITE\"};const getProps=({click,click2,height,highlights01,highlights01Visible,highlights02,highlights02Visible,highlights03,highlights03Visible,id,image,link,number,serviceTitle,shortDescription,width,...props})=>{return{...props,aX20t_Maa:click??props.aX20t_Maa,CgirxhE4n:click2??props.CgirxhE4n,csFrwbiy8:highlights03??props.csFrwbiy8??\"User-centric design to enhance engagement and conversion\",gmIDIS1km:shortDescription??props.gmIDIS1km??\"Web development services encompass a broad range of activities essential for creating and maintaining websites.\",khFCdeFBQ:highlights02Visible??props.khFCdeFBQ??true,LT2kIsSKj:highlights01??props.LT2kIsSKj??\"Tailored website designs that reflect your brand's identity\",NNYkqjcka:highlights02??props.NNYkqjcka??\"Responsive layouts for seamless experience across all devices\",R3X6jDp6M:serviceTitle??props.R3X6jDp6M??\"Service Title\",RMf5FCFmK:highlights01Visible??props.RMf5FCFmK??true,rUCOMAZYA:number??props.rUCOMAZYA??\"00\",sBVdXwGNT:highlights03Visible??props.sBVdXwGNT??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"AY7D9mR95\",ws3YCSxIe:link??props.ws3YCSxIe,ZI7MidvST:image??props.ZI7MidvST};};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,aX20t_Maa,rUCOMAZYA,R3X6jDp6M,ZI7MidvST,gmIDIS1km,RMf5FCFmK,LT2kIsSKj,khFCdeFBQ,NNYkqjcka,sBVdXwGNT,csFrwbiy8,ws3YCSxIe,CgirxhE4n,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AY7D9mR95\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap2frwr0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(aX20t_Maa){const res=await aX20t_Maa(...args);if(res===false)return false;}setVariant(\"AY7D9mR95\");});const onTapn9zvlk=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(aX20t_Maa){const res=await aX20t_Maa(...args);if(res===false)return false;}setVariant(\"TdsrqIITE\");});const onTapbnnjdd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(aX20t_Maa){const res=await aX20t_Maa(...args);if(res===false)return false;}setVariant(\"UbAsu_ykO\");});const onTap1qauor1=activeVariantCallback(async(...args)=>{if(CgirxhE4n){const res=await CgirxhE4n(...args);if(res===false)return false;}setVariant(\"ZvuKpSb5A\");});const onTap18gs7l9=activeVariantCallback(async(...args)=>{if(CgirxhE4n){const res=await CgirxhE4n(...args);if(res===false)return false;}setVariant(\"qICcx8CiE\");});const onTap1yv9i90=activeVariantCallback(async(...args)=>{if(CgirxhE4n){const res=await CgirxhE4n(...args);if(res===false)return false;}setVariant(\"Lg_XUk9Q_\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const textContent=suffix(prefix(rUCOMAZYA,\"(\"),\")\");const isDisplayed=()=>{if([\"UbAsu_ykO\",\"Lg_XUk9Q_\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"ZvuKpSb5A\",\"qICcx8CiE\",\"Lg_XUk9Q_\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"UbAsu_ykO\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-17lw6lh\",className,classNames),\"data-framer-name\":\"Desktop/Open\",layoutDependency:layoutDependency,layoutId:\"AY7D9mR95\",ref:ref??ref1,style:{backgroundColor:\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",opacity:1,...style},variants:{Lg_XUk9Q_:{opacity:.5},qICcx8CiE:{opacity:.5},TdsrqIITE:{opacity:1},UbAsu_ykO:{opacity:1},ZvuKpSb5A:{opacity:.5}},...addPropertyOverrides({Lg_XUk9Q_:{\"data-framer-name\":\"Phone/Close\",\"data-highlight\":true,onTap:onTapbnnjdd},qICcx8CiE:{\"data-framer-name\":\"Tablet/Close\",\"data-highlight\":true,onTap:onTapn9zvlk},TdsrqIITE:{\"data-framer-name\":\"Tablet/Open\"},UbAsu_ykO:{\"data-framer-name\":\"Phone/Open\"},ZvuKpSb5A:{\"data-framer-name\":\"Desktop/Close\",\"data-highlight\":true,onTap:onTap2frwr0}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h45bf7\",\"data-framer-name\":\"Title\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"x2gFBUvXO\",onTap:onTap1qauor1,...addPropertyOverrides({qICcx8CiE:{onTap:onTap18gs7l9},UbAsu_ykO:{onTap:onTap1yv9i90}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-173za0e\",\"data-styles-preset\":\"yky8lXWxn\",children:\"(00)\"})}),className:\"framer-1xikhtt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"upMFixjWW\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1gpob6a\",\"data-styles-preset\":\"nW0iE657y\",children:\"Service Title\"})}),className:\"framer-ix99qk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uSyozV5xR\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:R3X6jDp6M,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5apjde\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"WdPvzbNmi\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ivy5uz\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Wg2JMU4CB\",style:{backgroundColor:\"var(--token-11ed7535-5508-4a23-ae24-35df7466cd7c, rgb(34, 34, 34))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1txmltq-container\",layoutDependency:layoutDependency,layoutId:\"sCMLA2YTY-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Minus\",id:\"sCMLA2YTY\",layoutId:\"sCMLA2YTY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({qICcx8CiE:{iconSelection:\"Plus\"},ZvuKpSb5A:{iconSelection:\"Plus\"}},baseVariant,gestureVariant)})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-r1dctk\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"oM6fOFrft\",style:{backgroundColor:\"var(--token-1c767e42-5580-474f-b164-df72be147d42, rgba(34, 34, 34, 0.2))\"}}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12izlee\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"NWFm4uQDK\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rkuuif\",\"data-framer-name\":\"Spacer\",layoutDependency:layoutDependency,layoutId:\"jmoqhwK7p\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1caae5m\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"j7ZTtiQL1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||543.5)-60-618.4)/2+51.4+60)+0+0+0+0),sizes:\"300px\",...toResponsiveImage(ZI7MidvST)},className:\"framer-e99f7s\",layoutDependency:layoutDependency,layoutId:\"ByR6PyYdQ\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({TdsrqIITE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-618.4)/2+51.4+60)+0+0+0+0),sizes:\"300px\",...toResponsiveImage(ZI7MidvST)}},UbAsu_ykO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-731.2)/2+90.19999999999999+60)+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(ZI7MidvST)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(34, 34, 34, 0.8)))\"},children:\"Web development services encompass a broad range of activities essential for creating and maintaining websites.\"})}),className:\"framer-fodrea\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hxjQkEUo2\",style:{\"--extracted-r6o4lv\":\"var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(34, 34, 34, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:gmIDIS1km,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ecx9u\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"pcg06YRE8\",children:[RMf5FCFmK&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:`max(${componentViewport?.width||\"100vw\"} - 540px, 1px)`,y:(componentViewport?.y||0)+30+(((componentViewport?.height||543.5)-60-618.4)/2+51.4+60)+0+0+0+352+0+0,...addPropertyOverrides({TdsrqIITE:{width:`max(${componentViewport?.width||\"100vw\"} - 340px, 1px)`,y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-618.4)/2+51.4+60)+0+0+0+352+0+0},UbAsu_ykO:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-731.2)/2+90.19999999999999+60)+0+0+0+352+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-emtdip-container\",layoutDependency:layoutDependency,layoutId:\"GpHahGtEm-container\",children:/*#__PURE__*/_jsx(MiscIconText,{height:\"100%\",id:\"GpHahGtEm\",layoutId:\"GpHahGtEm\",style:{width:\"100%\"},w84GGfwTR:LT2kIsSKj,width:\"100%\"})})}),khFCdeFBQ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:`max(${componentViewport?.width||\"100vw\"} - 540px, 1px)`,y:(componentViewport?.y||0)+30+(((componentViewport?.height||543.5)-60-618.4)/2+51.4+60)+0+0+0+352+0+55,...addPropertyOverrides({TdsrqIITE:{width:`max(${componentViewport?.width||\"100vw\"} - 340px, 1px)`,y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-618.4)/2+51.4+60)+0+0+0+352+0+55},UbAsu_ykO:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-731.2)/2+90.19999999999999+60)+0+0+0+352+0+55}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bsn8o3-container\",layoutDependency:layoutDependency,layoutId:\"oPY4EfHDK-container\",children:/*#__PURE__*/_jsx(MiscIconText,{height:\"100%\",id:\"oPY4EfHDK\",layoutId:\"oPY4EfHDK\",style:{width:\"100%\"},w84GGfwTR:NNYkqjcka,width:\"100%\"})})}),sBVdXwGNT&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:`max(${componentViewport?.width||\"100vw\"} - 540px, 1px)`,y:(componentViewport?.y||0)+30+(((componentViewport?.height||543.5)-60-618.4)/2+51.4+60)+0+0+0+352+0+110,...addPropertyOverrides({TdsrqIITE:{width:`max(${componentViewport?.width||\"100vw\"} - 340px, 1px)`,y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-618.4)/2+51.4+60)+0+0+0+352+0+110},UbAsu_ykO:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-731.2)/2+90.19999999999999+60)+0+0+0+352+0+110}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1harvw9-container\",layoutDependency:layoutDependency,layoutId:\"pQhzIu8HT-container\",children:/*#__PURE__*/_jsx(MiscIconText,{height:\"100%\",id:\"pQhzIu8HT\",layoutId:\"pQhzIu8HT\",style:{width:\"100%\"},w84GGfwTR:csFrwbiy8,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yqj4vs\",\"data-framer-name\":\"Action\",layoutDependency:layoutDependency,layoutId:\"up5lmQL7e\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+30+(((componentViewport?.height||543.5)-60-618.4)/2+51.4+60)+0+453+0,...addPropertyOverrides({TdsrqIITE:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-618.4)/2+51.4+60)+0+453+0},UbAsu_ykO:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-731.2)/2+90.19999999999999+60)+0+527+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ve5s6l-container\",layoutDependency:layoutDependency,layoutId:\"C8dAp8cIC-container\",children:/*#__PURE__*/_jsx(ButtonSecondary,{height:\"100%\",id:\"C8dAp8cIC\",layoutId:\"C8dAp8cIC\",rtLF2obMR:\"View Details\",SNHepsNqk:ws3YCSxIe,width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iskVZ.framer-mird33, .framer-iskVZ .framer-mird33 { display: block; }\",\".framer-iskVZ.framer-17lw6lh { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 1200px; }\",\".framer-iskVZ .framer-h45bf7 { align-content: center; align-items: center; cursor: pointer; 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-iskVZ .framer-1xikhtt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 250px; word-break: break-word; word-wrap: break-word; }\",\".framer-iskVZ .framer-ix99qk { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-iskVZ .framer-5apjde, .framer-iskVZ .framer-1yqj4vs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 250px; }\",\".framer-iskVZ .framer-ivy5uz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iskVZ .framer-1txmltq-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-iskVZ .framer-r1dctk { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-iskVZ .framer-12izlee { align-content: flex-end; align-items: flex-end; 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-iskVZ .framer-rkuuif { flex: none; height: 54px; overflow: hidden; position: relative; width: 250px; }\",\".framer-iskVZ .framer-1caae5m { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-iskVZ .framer-e99f7s { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: hidden; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iskVZ .framer-fodrea { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iskVZ .framer-14ecx9u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iskVZ .framer-emtdip-container, .framer-iskVZ .framer-1bsn8o3-container, .framer-iskVZ .framer-1harvw9-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-iskVZ .framer-ve5s6l-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iskVZ.framer-17lw6lh, .framer-iskVZ .framer-h45bf7, .framer-iskVZ .framer-5apjde, .framer-iskVZ .framer-ivy5uz, .framer-iskVZ .framer-12izlee, .framer-iskVZ .framer-1caae5m, .framer-iskVZ .framer-14ecx9u, .framer-iskVZ .framer-1yqj4vs { gap: 0px; } .framer-iskVZ.framer-17lw6lh > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-iskVZ.framer-17lw6lh > :first-child, .framer-iskVZ .framer-1caae5m > :first-child, .framer-iskVZ .framer-14ecx9u > :first-child { margin-top: 0px; } .framer-iskVZ.framer-17lw6lh > :last-child, .framer-iskVZ .framer-1caae5m > :last-child, .framer-iskVZ .framer-14ecx9u > :last-child { margin-bottom: 0px; } .framer-iskVZ .framer-h45bf7 > *, .framer-iskVZ .framer-12izlee > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-iskVZ .framer-h45bf7 > :first-child, .framer-iskVZ .framer-5apjde > :first-child, .framer-iskVZ .framer-ivy5uz > :first-child, .framer-iskVZ .framer-12izlee > :first-child, .framer-iskVZ .framer-1yqj4vs > :first-child { margin-left: 0px; } .framer-iskVZ .framer-h45bf7 > :last-child, .framer-iskVZ .framer-5apjde > :last-child, .framer-iskVZ .framer-ivy5uz > :last-child, .framer-iskVZ .framer-12izlee > :last-child, .framer-iskVZ .framer-1yqj4vs > :last-child { margin-right: 0px; } .framer-iskVZ .framer-5apjde > *, .framer-iskVZ .framer-ivy5uz > *, .framer-iskVZ .framer-1yqj4vs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-iskVZ .framer-1caae5m > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-iskVZ .framer-14ecx9u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-iskVZ.framer-v-eludi5.framer-17lw6lh { cursor: pointer; }\",\".framer-iskVZ.framer-v-1gk9vj5.framer-17lw6lh { width: 810px; }\",\".framer-iskVZ.framer-v-1gk9vj5 .framer-1xikhtt, .framer-iskVZ.framer-v-1gk9vj5 .framer-rkuuif, .framer-iskVZ.framer-v-1621lnk .framer-1xikhtt { width: 100px; }\",\".framer-iskVZ.framer-v-1gk9vj5 .framer-5apjde, .framer-iskVZ.framer-v-1gk9vj5 .framer-1yqj4vs, .framer-iskVZ.framer-v-1621lnk .framer-5apjde { width: 200px; }\",\".framer-iskVZ.framer-v-1621lnk.framer-17lw6lh { cursor: pointer; width: 810px; }\",\".framer-iskVZ.framer-v-sgfxv7.framer-17lw6lh { width: 390px; }\",\".framer-iskVZ.framer-v-sgfxv7 .framer-h45bf7, .framer-iskVZ.framer-v-1g978im .framer-h45bf7 { flex-direction: column; gap: 10px; }\",\".framer-iskVZ.framer-v-sgfxv7 .framer-1xikhtt, .framer-iskVZ.framer-v-1g978im .framer-1xikhtt { width: 100%; }\",\".framer-iskVZ.framer-v-sgfxv7 .framer-ix99qk, .framer-iskVZ.framer-v-sgfxv7 .framer-1caae5m, .framer-iskVZ.framer-v-1g978im .framer-ix99qk { flex: none; width: 100%; }\",\".framer-iskVZ.framer-v-sgfxv7 .framer-12izlee { flex-direction: column; }\",\".framer-iskVZ.framer-v-sgfxv7 .framer-e99f7s { height: var(--framer-aspect-ratio-supported, 133px); width: 100%; }\",\".framer-iskVZ.framer-v-sgfxv7 .framer-1yqj4vs { justify-content: flex-start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iskVZ.framer-v-sgfxv7 .framer-h45bf7, .framer-iskVZ.framer-v-sgfxv7 .framer-12izlee { gap: 0px; } .framer-iskVZ.framer-v-sgfxv7 .framer-h45bf7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-iskVZ.framer-v-sgfxv7 .framer-h45bf7 > :first-child, .framer-iskVZ.framer-v-sgfxv7 .framer-12izlee > :first-child { margin-top: 0px; } .framer-iskVZ.framer-v-sgfxv7 .framer-h45bf7 > :last-child, .framer-iskVZ.framer-v-sgfxv7 .framer-12izlee > :last-child { margin-bottom: 0px; } .framer-iskVZ.framer-v-sgfxv7 .framer-12izlee > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-iskVZ.framer-v-1g978im.framer-17lw6lh { cursor: pointer; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iskVZ.framer-v-1g978im .framer-h45bf7 { gap: 0px; } .framer-iskVZ.framer-v-1g978im .framer-h45bf7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-iskVZ.framer-v-1g978im .framer-h45bf7 > :first-child { margin-top: 0px; } .framer-iskVZ.framer-v-1g978im .framer-h45bf7 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 543.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZvuKpSb5A\":{\"layout\":[\"fixed\",\"auto\"]},\"TdsrqIITE\":{\"layout\":[\"fixed\",\"auto\"]},\"qICcx8CiE\":{\"layout\":[\"fixed\",\"auto\"]},\"UbAsu_ykO\":{\"layout\":[\"fixed\",\"auto\"]},\"Lg_XUk9Q_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"aX20t_Maa\":\"click\",\"rUCOMAZYA\":\"number\",\"R3X6jDp6M\":\"serviceTitle\",\"ZI7MidvST\":\"image\",\"gmIDIS1km\":\"shortDescription\",\"RMf5FCFmK\":\"highlights01Visible\",\"LT2kIsSKj\":\"highlights01\",\"khFCdeFBQ\":\"highlights02Visible\",\"NNYkqjcka\":\"highlights02\",\"sBVdXwGNT\":\"highlights03Visible\",\"csFrwbiy8\":\"highlights03\",\"ws3YCSxIe\":\"link\",\"CgirxhE4n\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruJ3XVF6za=withCSS(Component,css,\"framer-iskVZ\");export default FrameruJ3XVF6za;FrameruJ3XVF6za.displayName=\"Card/Service 01\";FrameruJ3XVF6za.defaultProps={height:543.5,width:1200};addPropertyControls(FrameruJ3XVF6za,{variant:{options:[\"AY7D9mR95\",\"ZvuKpSb5A\",\"TdsrqIITE\",\"qICcx8CiE\",\"UbAsu_ykO\",\"Lg_XUk9Q_\"],optionTitles:[\"Desktop/Open\",\"Desktop/Close\",\"Tablet/Open\",\"Tablet/Close\",\"Phone/Open\",\"Phone/Close\"],title:\"Variant\",type:ControlType.Enum},aX20t_Maa:{title:\"Click\",type:ControlType.EventHandler},rUCOMAZYA:{defaultValue:\"00\",displayTextArea:false,title:\"Number\",type:ControlType.String},R3X6jDp6M:{defaultValue:\"Service Title\",displayTextArea:false,title:\"Service Title\",type:ControlType.String},ZI7MidvST:{title:\"Image\",type:ControlType.ResponsiveImage},gmIDIS1km:{defaultValue:\"Web development services encompass a broad range of activities essential for creating and maintaining websites.\",displayTextArea:false,title:\"Short Description\",type:ControlType.String},RMf5FCFmK:{defaultValue:true,title:\"Highlights 01 Visible\",type:ControlType.Boolean},LT2kIsSKj:{defaultValue:\"Tailored website designs that reflect your brand's identity\",displayTextArea:false,title:\"Highlights 01\",type:ControlType.String},khFCdeFBQ:{defaultValue:true,title:\"Highlights 02 Visible\",type:ControlType.Boolean},NNYkqjcka:{defaultValue:\"Responsive layouts for seamless experience across all devices\",displayTextArea:false,title:\"Highlights 02\",type:ControlType.String},sBVdXwGNT:{defaultValue:true,title:\"Highlights 03 Visible\",type:ControlType.Boolean},csFrwbiy8:{defaultValue:\"User-centric design to enhance engagement and conversion\",displayTextArea:false,title:\"Highlights 03\",type:ControlType.String},ws3YCSxIe:{title:\"Link\",type:ControlType.Link},CgirxhE4n:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FrameruJ3XVF6za,[{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\"}]},...PhosphorFonts,...MiscIconTextFonts,...ButtonSecondaryFonts,...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\":\"FrameruJ3XVF6za\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZvuKpSb5A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TdsrqIITE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qICcx8CiE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UbAsu_ykO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Lg_XUk9Q_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"543.5\",\"framerVariables\":\"{\\\"aX20t_Maa\\\":\\\"click\\\",\\\"rUCOMAZYA\\\":\\\"number\\\",\\\"R3X6jDp6M\\\":\\\"serviceTitle\\\",\\\"ZI7MidvST\\\":\\\"image\\\",\\\"gmIDIS1km\\\":\\\"shortDescription\\\",\\\"RMf5FCFmK\\\":\\\"highlights01Visible\\\",\\\"LT2kIsSKj\\\":\\\"highlights01\\\",\\\"khFCdeFBQ\\\":\\\"highlights02Visible\\\",\\\"NNYkqjcka\\\":\\\"highlights02\\\",\\\"sBVdXwGNT\\\":\\\"highlights03Visible\\\",\\\"csFrwbiy8\\\":\\\"highlights03\\\",\\\"ws3YCSxIe\\\":\\\"link\\\",\\\"CgirxhE4n\\\":\\\"click2\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uJ3XVF6za.map", "// Generated by Framer (ab6b6d5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,PathVariablesContext,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Service from\"https://framerusercontent.com/modules/9X0DbIkr1l0GzAFtNlZy/9WF4u7zmLaDJISgWl3sY/TK6BxY8Ks.js\";import CardService01 from\"https://framerusercontent.com/modules/vhQ84L4uyEmsZMiKFrvV/fallMsgRhq4ImHWVECyg/uJ3XVF6za.js\";const CardService01Fonts=getFonts(CardService01);const cycleOrder=[\"ywSHZLvBB\",\"RE0WoShrU\",\"C3xTsBYWW\",\"rrZZBK7O_\",\"BXf8TD4__\",\"hi1Z_N2S6\",\"O70gDD4m7\",\"eHgVPXp1b\",\"JIUwc7nHh\",\"bcJDFM3Xz\",\"LBo8mWvk7\",\"iC8LWvJXB\"];const serializationHash=\"framer-khG61\";const variantClassNames={bcJDFM3Xz:\"framer-v-1773zdn\",BXf8TD4__:\"framer-v-17q446\",C3xTsBYWW:\"framer-v-cfqob5\",eHgVPXp1b:\"framer-v-1qjyk4h\",hi1Z_N2S6:\"framer-v-m6rpmk\",iC8LWvJXB:\"framer-v-hpbmu6\",JIUwc7nHh:\"framer-v-dl08oc\",LBo8mWvk7:\"framer-v-1pn0dzr\",O70gDD4m7:\"framer-v-mkp9yh\",RE0WoShrU:\"framer-v-164gplg\",rrZZBK7O_:\"framer-v-xudbe1\",ywSHZLvBB:\"framer-v-oqq8ha\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.4,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 query=prequery=>prequery({from:{alias:\"T0JfWDT9l\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"T0JfWDT9l\",name:\"arzfGIT7y\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"s6F8wDhhh\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"KVyBOewGC\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"MtU9gcwci\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"xBTFpqikH\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"n0gHYXKwn\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"PycAwwxhI\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"GZ6QCS7i1\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"sdCksvnk1\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"XXTSanHDg\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"zBkhQDRfs\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"id\",type:\"Identifier\"}]});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"xjOKokSkG\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"xjOKokSkG\",name:\"arzfGIT7y\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"s6F8wDhhh\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"KVyBOewGC\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"MtU9gcwci\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"n0gHYXKwn\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"GZ6QCS7i1\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"XXTSanHDg\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"zBkhQDRfs\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"id\",type:\"Identifier\"}]});const query2=prequery=>prequery({from:{alias:\"PXzYaiFK6\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"PXzYaiFK6\",name:\"arzfGIT7y\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"s6F8wDhhh\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"KVyBOewGC\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"MtU9gcwci\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"n0gHYXKwn\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"GZ6QCS7i1\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"XXTSanHDg\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"zBkhQDRfs\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"id\",type:\"Identifier\"}]});const query3=prequery=>prequery({from:{alias:\"UBhaYoljE\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"UBhaYoljE\",name:\"arzfGIT7y\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"s6F8wDhhh\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"KVyBOewGC\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"MtU9gcwci\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"n0gHYXKwn\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"GZ6QCS7i1\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"XXTSanHDg\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"zBkhQDRfs\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"id\",type:\"Identifier\"}]});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 humanReadableVariantMap={\"Desktop/01\":\"ywSHZLvBB\",\"Desktop/02\":\"RE0WoShrU\",\"Desktop/03\":\"C3xTsBYWW\",\"Desktop/04\":\"rrZZBK7O_\",\"Phone/01\":\"JIUwc7nHh\",\"Phone/02\":\"bcJDFM3Xz\",\"Phone/03\":\"LBo8mWvk7\",\"Phone/04\":\"iC8LWvJXB\",\"Tablet/01\":\"BXf8TD4__\",\"Tablet/02\":\"hi1Z_N2S6\",\"Tablet/03\":\"O70gDD4m7\",\"Tablet/04\":\"eHgVPXp1b\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ywSHZLvBB\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,arzfGIT7yT0JfWDT9l,s6F8wDhhhT0JfWDT9l,KVyBOewGCT0JfWDT9l,MtU9gcwciT0JfWDT9l,xBTFpqikHT0JfWDT9l,n0gHYXKwnT0JfWDT9l,PycAwwxhIT0JfWDT9l,GZ6QCS7i1T0JfWDT9l,sdCksvnk1T0JfWDT9l,XXTSanHDgT0JfWDT9l,zBkhQDRfsT0JfWDT9l,idT0JfWDT9l,arzfGIT7yxjOKokSkG,s6F8wDhhhxjOKokSkG,KVyBOewGCxjOKokSkG,MtU9gcwcixjOKokSkG,n0gHYXKwnxjOKokSkG,GZ6QCS7i1xjOKokSkG,XXTSanHDgxjOKokSkG,zBkhQDRfsxjOKokSkG,idxjOKokSkG,arzfGIT7yPXzYaiFK6,s6F8wDhhhPXzYaiFK6,KVyBOewGCPXzYaiFK6,MtU9gcwciPXzYaiFK6,n0gHYXKwnPXzYaiFK6,GZ6QCS7i1PXzYaiFK6,XXTSanHDgPXzYaiFK6,zBkhQDRfsPXzYaiFK6,idPXzYaiFK6,arzfGIT7yUBhaYoljE,s6F8wDhhhUBhaYoljE,KVyBOewGCUBhaYoljE,MtU9gcwciUBhaYoljE,n0gHYXKwnUBhaYoljE,GZ6QCS7i1UBhaYoljE,XXTSanHDgUBhaYoljE,zBkhQDRfsUBhaYoljE,idUBhaYoljE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ywSHZLvBB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const aX20t_Maa4dzgk9=activeVariantCallback(async(...args)=>{setVariant(\"ywSHZLvBB\");});const aX20t_Maaas1rp8=activeVariantCallback(async(...args)=>{setVariant(\"BXf8TD4__\");});const aX20t_Maae29fe3=activeVariantCallback(async(...args)=>{setVariant(\"JIUwc7nHh\");});const aX20t_Maah7xwnt=activeVariantCallback(async(...args)=>{setVariant(\"RE0WoShrU\");});const aX20t_Maa1n0ka6v=activeVariantCallback(async(...args)=>{setVariant(\"hi1Z_N2S6\");});const aX20t_Maaf2tmui=activeVariantCallback(async(...args)=>{setVariant(\"bcJDFM3Xz\");});const aX20t_Maaqxmzfb=activeVariantCallback(async(...args)=>{setVariant(\"C3xTsBYWW\");});const aX20t_Maa6sg207=activeVariantCallback(async(...args)=>{setVariant(\"O70gDD4m7\");});const aX20t_Maahg9thz=activeVariantCallback(async(...args)=>{setVariant(\"LBo8mWvk7\");});const aX20t_Maajdfwak=activeVariantCallback(async(...args)=>{setVariant(\"rrZZBK7O_\");});const aX20t_Maa195ypy1=activeVariantCallback(async(...args)=>{setVariant(\"eHgVPXp1b\");});const aX20t_Maa1512zvo=activeVariantCallback(async(...args)=>{setVariant(\"iC8LWvJXB\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-oqq8ha\",className,classNames),\"data-framer-name\":\"Desktop/01\",layoutDependency:layoutDependency,layoutId:\"ywSHZLvBB\",ref:ref??ref1,style:{...style},...addPropertyOverrides({bcJDFM3Xz:{\"data-framer-name\":\"Phone/02\"},BXf8TD4__:{\"data-framer-name\":\"Tablet/01\"},C3xTsBYWW:{\"data-framer-name\":\"Desktop/03\"},eHgVPXp1b:{\"data-framer-name\":\"Tablet/04\"},hi1Z_N2S6:{\"data-framer-name\":\"Tablet/02\"},iC8LWvJXB:{\"data-framer-name\":\"Phone/04\"},JIUwc7nHh:{\"data-framer-name\":\"Phone/01\"},LBo8mWvk7:{\"data-framer-name\":\"Phone/03\"},O70gDD4m7:{\"data-framer-name\":\"Tablet/03\"},RE0WoShrU:{\"data-framer-name\":\"Desktop/02\"},rrZZBK7O_:{\"data-framer-name\":\"Desktop/04\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bx5sjk\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"gl3ZA0df4\",style:{backgroundColor:\"var(--token-1c767e42-5580-474f-b164-df72be147d42, rgba(34, 34, 34, 0.2))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nn2rc0\",\"data-framer-name\":\"Service 01\",layoutDependency:layoutDependency,layoutId:\"T0JfWDT9l\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"T0JfWDT9l\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"T0JfWDT9l\",name:\"arzfGIT7y\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"s6F8wDhhh\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"KVyBOewGC\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"MtU9gcwci\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"xBTFpqikH\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"n0gHYXKwn\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"PycAwwxhI\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"GZ6QCS7i1\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"sdCksvnk1\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"XXTSanHDg\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"zBkhQDRfs\",type:\"Identifier\"},{collection:\"T0JfWDT9l\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({arzfGIT7y:arzfGIT7yT0JfWDT9l,GZ6QCS7i1:GZ6QCS7i1T0JfWDT9l,id:idT0JfWDT9l,KVyBOewGC:KVyBOewGCT0JfWDT9l,MtU9gcwci:MtU9gcwciT0JfWDT9l,n0gHYXKwn:n0gHYXKwnT0JfWDT9l,PycAwwxhI:PycAwwxhIT0JfWDT9l,s6F8wDhhh:s6F8wDhhhT0JfWDT9l,sdCksvnk1:sdCksvnk1T0JfWDT9l,xBTFpqikH:xBTFpqikHT0JfWDT9l,XXTSanHDg:XXTSanHDgT0JfWDT9l,zBkhQDRfs:zBkhQDRfsT0JfWDT9l},i)=>{arzfGIT7yT0JfWDT9l??=\"\";s6F8wDhhhT0JfWDT9l??=\"\";MtU9gcwciT0JfWDT9l??=\"\";xBTFpqikHT0JfWDT9l??=true;n0gHYXKwnT0JfWDT9l??=\"\";PycAwwxhIT0JfWDT9l??=true;GZ6QCS7i1T0JfWDT9l??=\"\";sdCksvnk1T0JfWDT9l??=true;XXTSanHDgT0JfWDT9l??=\"\";zBkhQDRfsT0JfWDT9l??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`T0JfWDT9l-${idT0JfWDT9l}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsT0JfWDT9l},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:543,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||947)-0-2177)/2+1+0)+0+0,...addPropertyOverrides({bcJDFM3Xz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+1+0)+0+0},BXf8TD4__:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1+0)+0+0},C3xTsBYWW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||924)-0-2177)/2+1+0)+0+0},eHgVPXp1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1+0)+0+0},hi1Z_N2S6:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1+0)+0+0},iC8LWvJXB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1483)-0-2177)/2+1+0)+0+0},JIUwc7nHh:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+1+0)+0+0},LBo8mWvk7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+1+0)+0+0},O70gDD4m7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1+0)+0+0},RE0WoShrU:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||902)-0-2177)/2+1+0)+0+0},rrZZBK7O_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||969)-0-2177)/2+1+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-plbyh8-container\",layoutDependency:layoutDependency,layoutId:\"EJQQKHteL-container\",children:/*#__PURE__*/_jsx(CardService01,{aX20t_Maa:aX20t_Maa4dzgk9,csFrwbiy8:XXTSanHDgT0JfWDT9l,gmIDIS1km:MtU9gcwciT0JfWDT9l,height:\"100%\",id:\"EJQQKHteL\",khFCdeFBQ:PycAwwxhIT0JfWDT9l,layoutId:\"EJQQKHteL\",LT2kIsSKj:n0gHYXKwnT0JfWDT9l,NNYkqjcka:GZ6QCS7i1T0JfWDT9l,R3X6jDp6M:s6F8wDhhhT0JfWDT9l,RMf5FCFmK:xBTFpqikHT0JfWDT9l,rUCOMAZYA:arzfGIT7yT0JfWDT9l,sBVdXwGNT:sdCksvnk1T0JfWDT9l,style:{width:\"100%\"},variant:\"AY7D9mR95\",width:\"100%\",ws3YCSxIe:resolvedLinks[0],ZI7MidvST:toResponsiveImage(KVyBOewGCT0JfWDT9l),...addPropertyOverrides({bcJDFM3Xz:{aX20t_Maa:aX20t_Maae29fe3,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks[9]},BXf8TD4__:{aX20t_Maa:aX20t_Maaas1rp8,variant:\"TdsrqIITE\",ws3YCSxIe:resolvedLinks[4]},C3xTsBYWW:{variant:\"ZvuKpSb5A\",ws3YCSxIe:resolvedLinks[2]},eHgVPXp1b:{aX20t_Maa:aX20t_Maaas1rp8,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks[7]},hi1Z_N2S6:{aX20t_Maa:aX20t_Maaas1rp8,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks[5]},iC8LWvJXB:{aX20t_Maa:aX20t_Maae29fe3,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks[11]},JIUwc7nHh:{aX20t_Maa:aX20t_Maae29fe3,variant:\"UbAsu_ykO\",ws3YCSxIe:resolvedLinks[8]},LBo8mWvk7:{aX20t_Maa:aX20t_Maae29fe3,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks[10]},O70gDD4m7:{aX20t_Maa:aX20t_Maaas1rp8,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks[6]},RE0WoShrU:{variant:\"ZvuKpSb5A\",ws3YCSxIe:resolvedLinks[1]},rrZZBK7O_:{variant:\"ZvuKpSb5A\",ws3YCSxIe:resolvedLinks[3]}},baseVariant,gestureVariant)})})})})})},idT0JfWDT9l);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ob5wu\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"BB99u1JwT\",style:{backgroundColor:\"var(--token-1c767e42-5580-474f-b164-df72be147d42, rgba(34, 34, 34, 0.2))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17rn3rd\",\"data-framer-name\":\"Service 02\",layoutDependency:layoutDependency,layoutId:\"xjOKokSkG\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xjOKokSkG\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"xjOKokSkG\",name:\"arzfGIT7y\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"s6F8wDhhh\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"KVyBOewGC\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"MtU9gcwci\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"n0gHYXKwn\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"GZ6QCS7i1\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"XXTSanHDg\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"zBkhQDRfs\",type:\"Identifier\"},{collection:\"xjOKokSkG\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({arzfGIT7y:arzfGIT7yxjOKokSkG,GZ6QCS7i1:GZ6QCS7i1xjOKokSkG,id:idxjOKokSkG,KVyBOewGC:KVyBOewGCxjOKokSkG,MtU9gcwci:MtU9gcwcixjOKokSkG,n0gHYXKwn:n0gHYXKwnxjOKokSkG,s6F8wDhhh:s6F8wDhhhxjOKokSkG,XXTSanHDg:XXTSanHDgxjOKokSkG,zBkhQDRfs:zBkhQDRfsxjOKokSkG},i1)=>{arzfGIT7yxjOKokSkG??=\"\";s6F8wDhhhxjOKokSkG??=\"\";MtU9gcwcixjOKokSkG??=\"\";n0gHYXKwnxjOKokSkG??=\"\";GZ6QCS7i1xjOKokSkG??=\"\";XXTSanHDgxjOKokSkG??=\"\";zBkhQDRfsxjOKokSkG??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xjOKokSkG-${idxjOKokSkG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsxjOKokSkG},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:543,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||947)-0-2177)/2+545+0)+0+0,...addPropertyOverrides({bcJDFM3Xz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+545+0)+0+0},BXf8TD4__:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+545+0)+0+0},C3xTsBYWW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||924)-0-2177)/2+545+0)+0+0},eHgVPXp1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+545+0)+0+0},hi1Z_N2S6:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+545+0)+0+0},iC8LWvJXB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1483)-0-2177)/2+545+0)+0+0},JIUwc7nHh:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+545+0)+0+0},LBo8mWvk7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+545+0)+0+0},O70gDD4m7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+545+0)+0+0},RE0WoShrU:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||902)-0-2177)/2+545+0)+0+0},rrZZBK7O_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||969)-0-2177)/2+545+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17viv1w-container\",layoutDependency:layoutDependency,layoutId:\"wZMUT7xss-container\",children:/*#__PURE__*/_jsx(CardService01,{aX20t_Maa:aX20t_Maah7xwnt,csFrwbiy8:XXTSanHDgxjOKokSkG,gmIDIS1km:MtU9gcwcixjOKokSkG,height:\"100%\",id:\"wZMUT7xss\",khFCdeFBQ:true,layoutId:\"wZMUT7xss\",LT2kIsSKj:n0gHYXKwnxjOKokSkG,NNYkqjcka:GZ6QCS7i1xjOKokSkG,R3X6jDp6M:s6F8wDhhhxjOKokSkG,RMf5FCFmK:true,rUCOMAZYA:arzfGIT7yxjOKokSkG,sBVdXwGNT:true,style:{width:\"100%\"},variant:\"ZvuKpSb5A\",width:\"100%\",ws3YCSxIe:resolvedLinks1[0],ZI7MidvST:toResponsiveImage(KVyBOewGCxjOKokSkG),...addPropertyOverrides({bcJDFM3Xz:{aX20t_Maa:aX20t_Maaf2tmui,variant:\"UbAsu_ykO\",ws3YCSxIe:resolvedLinks1[9]},BXf8TD4__:{aX20t_Maa:aX20t_Maa1n0ka6v,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks1[4]},C3xTsBYWW:{ws3YCSxIe:resolvedLinks1[2]},eHgVPXp1b:{aX20t_Maa:aX20t_Maa1n0ka6v,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks1[7]},hi1Z_N2S6:{aX20t_Maa:aX20t_Maa1n0ka6v,variant:\"TdsrqIITE\",ws3YCSxIe:resolvedLinks1[5]},iC8LWvJXB:{aX20t_Maa:aX20t_Maaf2tmui,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks1[11]},JIUwc7nHh:{aX20t_Maa:aX20t_Maaf2tmui,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks1[8]},LBo8mWvk7:{aX20t_Maa:aX20t_Maaf2tmui,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks1[10]},O70gDD4m7:{aX20t_Maa:aX20t_Maa1n0ka6v,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks1[6]},RE0WoShrU:{variant:\"AY7D9mR95\",ws3YCSxIe:resolvedLinks1[1]},rrZZBK7O_:{ws3YCSxIe:resolvedLinks1[3]}},baseVariant,gestureVariant)})})})})})},idxjOKokSkG);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hj6r80\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"nu8rg02nt\",style:{backgroundColor:\"var(--token-1c767e42-5580-474f-b164-df72be147d42, rgba(34, 34, 34, 0.2))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qstj8i\",\"data-framer-name\":\"Service 03\",layoutDependency:layoutDependency,layoutId:\"PXzYaiFK6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"PXzYaiFK6\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"PXzYaiFK6\",name:\"arzfGIT7y\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"s6F8wDhhh\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"KVyBOewGC\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"MtU9gcwci\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"n0gHYXKwn\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"GZ6QCS7i1\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"XXTSanHDg\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"zBkhQDRfs\",type:\"Identifier\"},{collection:\"PXzYaiFK6\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({arzfGIT7y:arzfGIT7yPXzYaiFK6,GZ6QCS7i1:GZ6QCS7i1PXzYaiFK6,id:idPXzYaiFK6,KVyBOewGC:KVyBOewGCPXzYaiFK6,MtU9gcwci:MtU9gcwciPXzYaiFK6,n0gHYXKwn:n0gHYXKwnPXzYaiFK6,s6F8wDhhh:s6F8wDhhhPXzYaiFK6,XXTSanHDg:XXTSanHDgPXzYaiFK6,zBkhQDRfs:zBkhQDRfsPXzYaiFK6},i2)=>{arzfGIT7yPXzYaiFK6??=\"\";s6F8wDhhhPXzYaiFK6??=\"\";MtU9gcwciPXzYaiFK6??=\"\";n0gHYXKwnPXzYaiFK6??=\"\";GZ6QCS7i1PXzYaiFK6??=\"\";XXTSanHDgPXzYaiFK6??=\"\";zBkhQDRfsPXzYaiFK6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`PXzYaiFK6-${idPXzYaiFK6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsPXzYaiFK6},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:543,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||947)-0-2177)/2+1089+0)+0+0,...addPropertyOverrides({bcJDFM3Xz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+1089+0)+0+0},BXf8TD4__:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1089+0)+0+0},C3xTsBYWW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||924)-0-2177)/2+1089+0)+0+0},eHgVPXp1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1089+0)+0+0},hi1Z_N2S6:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1089+0)+0+0},iC8LWvJXB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1483)-0-2177)/2+1089+0)+0+0},JIUwc7nHh:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+1089+0)+0+0},LBo8mWvk7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+1089+0)+0+0},O70gDD4m7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1089+0)+0+0},RE0WoShrU:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||902)-0-2177)/2+1089+0)+0+0},rrZZBK7O_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||969)-0-2177)/2+1089+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d9rw0f-container\",layoutDependency:layoutDependency,layoutId:\"rK7cH9D_v-container\",children:/*#__PURE__*/_jsx(CardService01,{aX20t_Maa:aX20t_Maaqxmzfb,csFrwbiy8:XXTSanHDgPXzYaiFK6,gmIDIS1km:MtU9gcwciPXzYaiFK6,height:\"100%\",id:\"rK7cH9D_v\",khFCdeFBQ:true,layoutId:\"rK7cH9D_v\",LT2kIsSKj:n0gHYXKwnPXzYaiFK6,NNYkqjcka:GZ6QCS7i1PXzYaiFK6,R3X6jDp6M:s6F8wDhhhPXzYaiFK6,RMf5FCFmK:true,rUCOMAZYA:arzfGIT7yPXzYaiFK6,sBVdXwGNT:true,style:{width:\"100%\"},variant:\"ZvuKpSb5A\",width:\"100%\",ws3YCSxIe:resolvedLinks2[0],ZI7MidvST:toResponsiveImage(KVyBOewGCPXzYaiFK6),...addPropertyOverrides({bcJDFM3Xz:{aX20t_Maa:aX20t_Maahg9thz,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks2[9]},BXf8TD4__:{aX20t_Maa:aX20t_Maa6sg207,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks2[4]},C3xTsBYWW:{variant:\"AY7D9mR95\",ws3YCSxIe:resolvedLinks2[2]},eHgVPXp1b:{aX20t_Maa:aX20t_Maa6sg207,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks2[7]},hi1Z_N2S6:{aX20t_Maa:aX20t_Maa6sg207,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks2[5]},iC8LWvJXB:{aX20t_Maa:aX20t_Maahg9thz,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks2[11]},JIUwc7nHh:{aX20t_Maa:aX20t_Maahg9thz,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks2[8]},LBo8mWvk7:{aX20t_Maa:aX20t_Maahg9thz,variant:\"UbAsu_ykO\",ws3YCSxIe:resolvedLinks2[10]},O70gDD4m7:{aX20t_Maa:aX20t_Maa6sg207,variant:\"TdsrqIITE\",ws3YCSxIe:resolvedLinks2[6]},RE0WoShrU:{ws3YCSxIe:resolvedLinks2[1]},rrZZBK7O_:{ws3YCSxIe:resolvedLinks2[3]}},baseVariant,gestureVariant)})})})})})},idPXzYaiFK6);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bkbzef\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"qUhvTvM5s\",style:{backgroundColor:\"var(--token-1c767e42-5580-474f-b164-df72be147d42, rgba(34, 34, 34, 0.2))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v3gwo8\",\"data-framer-name\":\"Service 04\",layoutDependency:layoutDependency,layoutId:\"UBhaYoljE\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UBhaYoljE\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"UBhaYoljE\",name:\"arzfGIT7y\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"s6F8wDhhh\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"KVyBOewGC\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"MtU9gcwci\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"n0gHYXKwn\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"GZ6QCS7i1\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"XXTSanHDg\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"zBkhQDRfs\",type:\"Identifier\"},{collection:\"UBhaYoljE\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({arzfGIT7y:arzfGIT7yUBhaYoljE,GZ6QCS7i1:GZ6QCS7i1UBhaYoljE,id:idUBhaYoljE,KVyBOewGC:KVyBOewGCUBhaYoljE,MtU9gcwci:MtU9gcwciUBhaYoljE,n0gHYXKwn:n0gHYXKwnUBhaYoljE,s6F8wDhhh:s6F8wDhhhUBhaYoljE,XXTSanHDg:XXTSanHDgUBhaYoljE,zBkhQDRfs:zBkhQDRfsUBhaYoljE},i3)=>{arzfGIT7yUBhaYoljE??=\"\";s6F8wDhhhUBhaYoljE??=\"\";MtU9gcwciUBhaYoljE??=\"\";n0gHYXKwnUBhaYoljE??=\"\";GZ6QCS7i1UBhaYoljE??=\"\";XXTSanHDgUBhaYoljE??=\"\";zBkhQDRfsUBhaYoljE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UBhaYoljE-${idUBhaYoljE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined},{href:{pathVariables:{zBkhQDRfs:zBkhQDRfsUBhaYoljE},webPageId:\"zvePhgQ04\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:543,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||947)-0-2177)/2+1633+0)+0+0,...addPropertyOverrides({bcJDFM3Xz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+1633+0)+0+0},BXf8TD4__:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1633+0)+0+0},C3xTsBYWW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||924)-0-2177)/2+1633+0)+0+0},eHgVPXp1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1633+0)+0+0},hi1Z_N2S6:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1633+0)+0+0},iC8LWvJXB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1483)-0-2177)/2+1633+0)+0+0},JIUwc7nHh:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+1633+0)+0+0},LBo8mWvk7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1460)-0-2177)/2+1633+0)+0+0},O70gDD4m7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1020)-0-2177)/2+1633+0)+0+0},RE0WoShrU:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||902)-0-2177)/2+1633+0)+0+0},rrZZBK7O_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||969)-0-2177)/2+1633+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m9enxb-container\",layoutDependency:layoutDependency,layoutId:\"m7b7217FP-container\",children:/*#__PURE__*/_jsx(CardService01,{aX20t_Maa:aX20t_Maajdfwak,csFrwbiy8:XXTSanHDgUBhaYoljE,gmIDIS1km:MtU9gcwciUBhaYoljE,height:\"100%\",id:\"m7b7217FP\",khFCdeFBQ:true,layoutId:\"m7b7217FP\",LT2kIsSKj:n0gHYXKwnUBhaYoljE,NNYkqjcka:GZ6QCS7i1UBhaYoljE,R3X6jDp6M:s6F8wDhhhUBhaYoljE,RMf5FCFmK:true,rUCOMAZYA:arzfGIT7yUBhaYoljE,sBVdXwGNT:true,style:{width:\"100%\"},variant:\"ZvuKpSb5A\",width:\"100%\",ws3YCSxIe:resolvedLinks3[0],ZI7MidvST:toResponsiveImage(KVyBOewGCUBhaYoljE),...addPropertyOverrides({bcJDFM3Xz:{aX20t_Maa:aX20t_Maa1512zvo,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks3[9]},BXf8TD4__:{aX20t_Maa:aX20t_Maa195ypy1,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks3[4]},C3xTsBYWW:{ws3YCSxIe:resolvedLinks3[2]},eHgVPXp1b:{aX20t_Maa:aX20t_Maa195ypy1,variant:\"TdsrqIITE\",ws3YCSxIe:resolvedLinks3[7]},hi1Z_N2S6:{aX20t_Maa:aX20t_Maa195ypy1,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks3[5]},iC8LWvJXB:{aX20t_Maa:aX20t_Maa1512zvo,variant:\"UbAsu_ykO\",ws3YCSxIe:resolvedLinks3[11]},JIUwc7nHh:{aX20t_Maa:aX20t_Maa1512zvo,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks3[8]},LBo8mWvk7:{aX20t_Maa:aX20t_Maa1512zvo,variant:\"Lg_XUk9Q_\",ws3YCSxIe:resolvedLinks3[10]},O70gDD4m7:{aX20t_Maa:aX20t_Maa195ypy1,variant:\"qICcx8CiE\",ws3YCSxIe:resolvedLinks3[6]},RE0WoShrU:{ws3YCSxIe:resolvedLinks3[1]},rrZZBK7O_:{variant:\"AY7D9mR95\",ws3YCSxIe:resolvedLinks3[3]}},baseVariant,gestureVariant)})})})})})},idUBhaYoljE);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13mfaeh\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"paTyuGt2R\",style:{backgroundColor:\"var(--token-1c767e42-5580-474f-b164-df72be147d42, rgba(34, 34, 34, 0.2))\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-khG61.framer-1s25ko0, .framer-khG61 .framer-1s25ko0 { display: block; }\",\".framer-khG61.framer-oqq8ha { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-khG61 .framer-1bx5sjk, .framer-khG61 .framer-6ob5wu, .framer-khG61 .framer-1hj6r80, .framer-khG61 .framer-bkbzef, .framer-khG61 .framer-13mfaeh { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-khG61 .framer-nn2rc0, .framer-khG61 .framer-17rn3rd, .framer-khG61 .framer-qstj8i, .framer-khG61 .framer-1v3gwo8 { 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-khG61 .framer-plbyh8-container, .framer-khG61 .framer-17viv1w-container, .framer-khG61 .framer-d9rw0f-container, .framer-khG61 .framer-1m9enxb-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-khG61.framer-oqq8ha, .framer-khG61 .framer-nn2rc0, .framer-khG61 .framer-17rn3rd, .framer-khG61 .framer-qstj8i, .framer-khG61 .framer-1v3gwo8 { gap: 0px; } .framer-khG61.framer-oqq8ha > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-khG61.framer-oqq8ha > :first-child, .framer-khG61 .framer-nn2rc0 > :first-child, .framer-khG61 .framer-17rn3rd > :first-child, .framer-khG61 .framer-qstj8i > :first-child, .framer-khG61 .framer-1v3gwo8 > :first-child { margin-top: 0px; } .framer-khG61.framer-oqq8ha > :last-child, .framer-khG61 .framer-nn2rc0 > :last-child, .framer-khG61 .framer-17rn3rd > :last-child, .framer-khG61 .framer-qstj8i > :last-child, .framer-khG61 .framer-1v3gwo8 > :last-child { margin-bottom: 0px; } .framer-khG61 .framer-nn2rc0 > *, .framer-khG61 .framer-17rn3rd > *, .framer-khG61 .framer-qstj8i > *, .framer-khG61 .framer-1v3gwo8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-khG61.framer-v-17q446.framer-oqq8ha, .framer-khG61.framer-v-m6rpmk.framer-oqq8ha, .framer-khG61.framer-v-mkp9yh.framer-oqq8ha, .framer-khG61.framer-v-1qjyk4h.framer-oqq8ha { width: 810px; }\",\".framer-khG61.framer-v-dl08oc.framer-oqq8ha, .framer-khG61.framer-v-1773zdn.framer-oqq8ha, .framer-khG61.framer-v-1pn0dzr.framer-oqq8ha, .framer-khG61.framer-v-hpbmu6.framer-oqq8ha { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 947\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RE0WoShrU\":{\"layout\":[\"fixed\",\"auto\"]},\"C3xTsBYWW\":{\"layout\":[\"fixed\",\"auto\"]},\"rrZZBK7O_\":{\"layout\":[\"fixed\",\"auto\"]},\"BXf8TD4__\":{\"layout\":[\"fixed\",\"auto\"]},\"hi1Z_N2S6\":{\"layout\":[\"fixed\",\"auto\"]},\"O70gDD4m7\":{\"layout\":[\"fixed\",\"auto\"]},\"eHgVPXp1b\":{\"layout\":[\"fixed\",\"auto\"]},\"JIUwc7nHh\":{\"layout\":[\"fixed\",\"auto\"]},\"bcJDFM3Xz\":{\"layout\":[\"fixed\",\"auto\"]},\"LBo8mWvk7\":{\"layout\":[\"fixed\",\"auto\"]},\"iC8LWvJXB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereZHFW2Pus=withCSS(Component,css,\"framer-khG61\");export default FramereZHFW2Pus;FramereZHFW2Pus.displayName=\"Card/Service List\";FramereZHFW2Pus.defaultProps={height:947,width:1100};addPropertyControls(FramereZHFW2Pus,{variant:{options:[\"ywSHZLvBB\",\"RE0WoShrU\",\"C3xTsBYWW\",\"rrZZBK7O_\",\"BXf8TD4__\",\"hi1Z_N2S6\",\"O70gDD4m7\",\"eHgVPXp1b\",\"JIUwc7nHh\",\"bcJDFM3Xz\",\"LBo8mWvk7\",\"iC8LWvJXB\"],optionTitles:[\"Desktop/01\",\"Desktop/02\",\"Desktop/03\",\"Desktop/04\",\"Tablet/01\",\"Tablet/02\",\"Tablet/03\",\"Tablet/04\",\"Phone/01\",\"Phone/02\",\"Phone/03\",\"Phone/04\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereZHFW2Pus,[{explicitInter:true,fonts:[]},...CardService01Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereZHFW2Pus\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RE0WoShrU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C3xTsBYWW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rrZZBK7O_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BXf8TD4__\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hi1Z_N2S6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O70gDD4m7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eHgVPXp1b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JIUwc7nHh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bcJDFM3Xz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LBo8mWvk7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iC8LWvJXB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"947\",\"framerIntrinsicWidth\":\"1100\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-TSmwa\";const variantClassNames={wOiTC9XAQ:\"framer-v-16mb3x7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const 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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"wOiTC9XAQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-16mb3x7\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"wOiTC9XAQ\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10szzl9-container\",layoutDependency:layoutDependency,layoutId:\"jPXgIqTRF-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:30,height:\"100%\",hoverFactor:1,id:\"jPXgIqTRF\",layoutId:\"jPXgIqTRF\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:61,pixelHeight:1200,pixelWidth:2169,sizes:\"46px\",src:\"https://framerusercontent.com/images/YfY0QThn9VQHSfI9K8QM9ewVAhc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YfY0QThn9VQHSfI9K8QM9ewVAhc.png?scale-down-to=512 512w,https://framerusercontent.com/images/YfY0QThn9VQHSfI9K8QM9ewVAhc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YfY0QThn9VQHSfI9K8QM9ewVAhc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YfY0QThn9VQHSfI9K8QM9ewVAhc.png 2169w\"},className:\"framer-b74lmj\",\"data-framer-name\":\"Client 01\",layoutDependency:layoutDependency,layoutId:\"byFxa76CS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:38,pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"38px\",src:\"https://framerusercontent.com/images/bsB5NNESO0PLD2dFeKqk7frVZ4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bsB5NNESO0PLD2dFeKqk7frVZ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/bsB5NNESO0PLD2dFeKqk7frVZ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bsB5NNESO0PLD2dFeKqk7frVZ4.png 1200w\"},className:\"framer-wtjijj\",\"data-framer-name\":\"Client 02\",layoutDependency:layoutDependency,layoutId:\"UM1z0dbw7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:97,pixelHeight:900,pixelWidth:2997,positionX:\"center\",positionY:\"center\",sizes:\"97px\",src:\"https://framerusercontent.com/images/Dt2DSeWg318OfM9GiMD6aJsbXBE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Dt2DSeWg318OfM9GiMD6aJsbXBE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dt2DSeWg318OfM9GiMD6aJsbXBE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dt2DSeWg318OfM9GiMD6aJsbXBE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dt2DSeWg318OfM9GiMD6aJsbXBE.png 2997w\"},className:\"framer-19jfg14\",\"data-framer-name\":\"Client 03\",layoutDependency:layoutDependency,layoutId:\"XWGUs1GH0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:92,pixelHeight:284,pixelWidth:2990,sizes:\"251px\",src:\"https://framerusercontent.com/images/U3Vb1ulA2Ql57pUKjdHBRURvi8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/U3Vb1ulA2Ql57pUKjdHBRURvi8.png?scale-down-to=512 512w,https://framerusercontent.com/images/U3Vb1ulA2Ql57pUKjdHBRURvi8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U3Vb1ulA2Ql57pUKjdHBRURvi8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/U3Vb1ulA2Ql57pUKjdHBRURvi8.png 2990w\"},className:\"framer-1lc4igy\",\"data-framer-name\":\"Client 04\",layoutDependency:layoutDependency,layoutId:\"csvzPxJ4_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:110,pixelHeight:552,pixelWidth:2053,positionX:\"center\",positionY:\"center\",sizes:\"110px\",src:\"https://framerusercontent.com/images/k5smgXCeln4Eq4O2ATUfM5zJI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/k5smgXCeln4Eq4O2ATUfM5zJI.png?scale-down-to=512 512w,https://framerusercontent.com/images/k5smgXCeln4Eq4O2ATUfM5zJI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k5smgXCeln4Eq4O2ATUfM5zJI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/k5smgXCeln4Eq4O2ATUfM5zJI.png 2053w\"},className:\"framer-1xcvi71\",\"data-framer-name\":\"Client 05\",layoutDependency:layoutDependency,layoutId:\"l1hYkGCFN\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:29,pixelHeight:900,pixelWidth:2118,positionX:\"center\",positionY:\"center\",sizes:\"59px\",src:\"https://framerusercontent.com/images/6Ql9aKEB7SYUko8FEDCRKaqIeWA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Ql9aKEB7SYUko8FEDCRKaqIeWA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6Ql9aKEB7SYUko8FEDCRKaqIeWA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6Ql9aKEB7SYUko8FEDCRKaqIeWA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6Ql9aKEB7SYUko8FEDCRKaqIeWA.png 2118w\"},className:\"framer-18jwegk\",\"data-framer-name\":\"Client 06\",layoutDependency:layoutDependency,layoutId:\"GhG6nQbSD\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:29,pixelHeight:1200,pixelWidth:823,sizes:\"17px\",src:\"https://framerusercontent.com/images/XpIIuaVyxeunfs8vwNu4TG9FH8U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XpIIuaVyxeunfs8vwNu4TG9FH8U.png?scale-down-to=1024 702w,https://framerusercontent.com/images/XpIIuaVyxeunfs8vwNu4TG9FH8U.png 823w\"},className:\"framer-1uswq5h\",\"data-framer-name\":\"Client 07\",layoutDependency:layoutDependency,layoutId:\"AqS9v8HUC\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:29,pixelHeight:275,pixelWidth:1369,sizes:\"118px\",src:\"https://framerusercontent.com/images/i6PSaTT4AtSqVIrxchxF1ncM93E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/i6PSaTT4AtSqVIrxchxF1ncM93E.png?scale-down-to=512 512w,https://framerusercontent.com/images/i6PSaTT4AtSqVIrxchxF1ncM93E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i6PSaTT4AtSqVIrxchxF1ncM93E.png 1369w\"},className:\"framer-18owmts\",\"data-framer-name\":\"Client 08\",layoutDependency:layoutDependency,layoutId:\"r0iWK_tRe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:29,pixelHeight:658,pixelWidth:2814,sizes:\"102px\",src:\"https://framerusercontent.com/images/WjhYhNJF9864JLjKpKIdRtbaZ0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WjhYhNJF9864JLjKpKIdRtbaZ0.png?scale-down-to=512 512w,https://framerusercontent.com/images/WjhYhNJF9864JLjKpKIdRtbaZ0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WjhYhNJF9864JLjKpKIdRtbaZ0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WjhYhNJF9864JLjKpKIdRtbaZ0.png 2814w\"},className:\"framer-hdhx6w\",\"data-framer-name\":\"Client 09\",layoutDependency:layoutDependency,layoutId:\"Zgi18GiXW\"})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TSmwa.framer-neuwoe, .framer-TSmwa .framer-neuwoe { display: block; }\",\".framer-TSmwa.framer-16mb3x7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 563px; }\",\".framer-TSmwa .framer-10szzl9-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-TSmwa .framer-b74lmj { height: 24px; overflow: visible; position: relative; width: 46px; }\",\".framer-TSmwa .framer-wtjijj { aspect-ratio: 1.5833333333333333 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 38px; }\",\".framer-TSmwa .framer-19jfg14 { aspect-ratio: 4.041666666666667 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 97px; }\",\".framer-TSmwa .framer-1lc4igy { height: 24px; overflow: visible; position: relative; width: 251px; }\",\".framer-TSmwa .framer-1xcvi71 { aspect-ratio: 4.583333333333333 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 110px; }\",\".framer-TSmwa .framer-18jwegk { height: 24px; overflow: visible; position: relative; width: 59px; }\",\".framer-TSmwa .framer-1uswq5h { height: 24px; overflow: visible; position: relative; width: 17px; }\",\".framer-TSmwa .framer-18owmts { height: 24px; overflow: visible; position: relative; width: 118px; }\",\".framer-TSmwa .framer-hdhx6w { height: 24px; overflow: visible; position: relative; width: 102px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TSmwa.framer-16mb3x7 { gap: 0px; } .framer-TSmwa.framer-16mb3x7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TSmwa.framer-16mb3x7 > :first-child { margin-left: 0px; } .framer-TSmwa.framer-16mb3x7 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 563\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameri0jAPLPgA=withCSS(Component,css,\"framer-TSmwa\");export default Frameri0jAPLPgA;Frameri0jAPLPgA.displayName=\"Ticker/Client\";Frameri0jAPLPgA.defaultProps={height:24,width:563};addFonts(Frameri0jAPLPgA,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameri0jAPLPgA\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"563\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./i0jAPLPgA.map", "// Generated by Framer (ca9141d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-regular\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW32RmYJpso5.woff2\",weight:\"400\"}]}];export const css=['.framer-NzsxS .framer-styles-preset-1fv8lw9:not(.rich-text-wrapper), .framer-NzsxS .framer-styles-preset-1fv8lw9.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-11ed7535-5508-4a23-ae24-35df7466cd7c, #222222); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-NzsxS\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4b118ea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import SlideshowText from\"#framer/local/canvasComponent/axlM_KsIE/axlM_KsIE.js\";import CardServiceList from\"#framer/local/canvasComponent/eZHFW2Pus/eZHFW2Pus.js\";import TickerClient from\"#framer/local/canvasComponent/i0jAPLPgA/i0jAPLPgA.js\";import ButtonPrimary from\"#framer/local/canvasComponent/iJPXIV7lf/iJPXIV7lf.js\";import SectionHeader from\"#framer/local/canvasComponent/KtQ4S_tUV/KtQ4S_tUV.js\";import SectionFooter from\"#framer/local/canvasComponent/p2SFYpaND/p2SFYpaND.js\";import VideoExplainer from\"#framer/local/canvasComponent/Yqq86TH4F/Yqq86TH4F.js\";import*as sharedStyle1 from\"#framer/local/css/D0E3giwT3/D0E3giwT3.js\";import*as sharedStyle from\"#framer/local/css/nW0iE657y/nW0iE657y.js\";import*as sharedStyle4 from\"#framer/local/css/RovqKUO3R/RovqKUO3R.js\";import*as sharedStyle3 from\"#framer/local/css/sIHNtFLWX/sIHNtFLWX.js\";import*as sharedStyle6 from\"#framer/local/css/vRUPy1pDP/vRUPy1pDP.js\";import*as sharedStyle7 from\"#framer/local/css/WdFR1KxLs/WdFR1KxLs.js\";import*as sharedStyle5 from\"#framer/local/css/xdlw94awV/xdlw94awV.js\";import*as sharedStyle2 from\"#framer/local/css/yky8lXWxn/yky8lXWxn.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SectionHeaderFonts=getFonts(SectionHeader);const SectionHeaderWithVariantAppearEffect=withVariantAppearEffect(SectionHeader);const VideoFonts=getFonts(Video);const SlideshowTextFonts=getFonts(SlideshowText);const TickerClientFonts=getFonts(TickerClient);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const VideoExplainerFonts=getFonts(VideoExplainer);const CardServiceListFonts=getFonts(CardServiceList);const SectionFooterFonts=getFonts(SectionFooter);const breakpoints={TsucVN2qj:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\",y0sP1b9hi:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-q39ju\";const variantClassNames={TsucVN2qj:\"framer-v-7qh7np\",WQLkyLRf1:\"framer-v-72rtr7\",y0sP1b9hi:\"framer-v-edszbo\"};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:\"TsucVN2qj\",Tablet:\"y0sP1b9hi\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"a0QeMepiq\");const elementId1=useRouteElementId(\"azvI2aGHL\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"y0sP1b9hi\",\"TsucVN2qj\"].includes(baseVariant))return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();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-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m7c1od-container\",layoutScroll:true,nodeId:\"OXHOo5_mz\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{__framer__targets:[{ref:ref2,target:\"klBdNo7CL\"}],variant:\"H8Vdryg2Z\"},y0sP1b9hi:{__framer__targets:[{ref:ref2,target:\"pCIf6_JFQ\"}],variant:\"vt9gaQb6Y\"}},children:/*#__PURE__*/_jsx(SectionHeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"h4gaPxN3P\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"OXHOo5_mz\",layoutId:\"OXHOo5_mz\",Pg20Z3cg2:\"rgb(255, 80, 0)\",style:{width:\"100%\"},variant:\"g09z3BkaQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-137mpny\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zd67sy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"skKH01hCq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"skKH01hCq\",isMixedBorderRadius:false,layoutId:\"skKH01hCq\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/GjAymfEDVoeTwE3GIQcsjlYXhE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j1j93b\",\"data-framer-name\":\"Cover\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lwc3b2\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9cuw5n\",\"data-framer-name\":\"Main Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14rkle1\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5jqerx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1gpob6a\",\"data-styles-preset\":\"nW0iE657y\",style:{\"--framer-text-color\":\"rgb(255, 80, 0)\"},children:\"Tap Into the Future of Loyalty\"})}),className:\"framer-77hcb9\",fonts:[\"Inter\"],id:\"77hcb9\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1g3m8fd\",\"data-styles-preset\":\"D0E3giwT3\",style:{\"--framer-text-color\":\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\"},children:\"A Paradigm Shift in Loyalty. 1-Tap Enrollment, Instant Rewards, and Effortless Customer Engagement.\"})}),className:\"framer-1v1txby\",fonts:[\"Inter\"],id:\"1v1txby\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ryrfk9\",\"data-framer-name\":\"For\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-w6xnbs\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173za0e\",\"data-styles-preset\":\"yky8lXWxn\",style:{\"--framer-text-color\":\"var(--token-c1f845fe-9a94-402b-99f2-b683c38b8206, rgba(255, 255, 255, 0.5))\"},children:\"for\"})}),className:\"framer-1y9c47d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{height:42,y:(componentViewport?.y||0)+0+0+0+125+165.60000000000002+0+0+0+0+0+133.6+0+28.799999999999997},y0sP1b9hi:{height:52,y:(componentViewport?.y||0)+0+0+0+150+428.4+0+0+0+0+0+22.799999999999997+0+28.799999999999997}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+250+318.4+0+0+0+0+0+14.799999999999997+0+28.799999999999997,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dfzpt8-container\",nodeId:\"RJIeNwTuW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{style:{height:\"100%\"}},y0sP1b9hi:{style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(SlideshowText,{ECn8u_jmu:\"Retail Stores\",h3q_6K3Sh:\"Gas Stations\",height:\"100%\",id:\"RJIeNwTuW\",IJdezxLlI:\"Gym & Fitness\",iOOeIa9c3:\"Supermarkets\",layoutId:\"RJIeNwTuW\",ONddBhblS:\"Restaurants\",oy2nX6YhV:\"Pharmacies\",QFOdMrXVP:\"Fast Food\",W5hXrZQCz:\"Convenience Stores\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cp9i1n\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w1urrs\",\"data-styles-preset\":\"sIHNtFLWX\",style:{\"--framer-text-color\":\"var(--token-643b5059-555e-440a-801b-0ceaa8252db0, rgba(255, 255, 255, 0.7))\"},children:\"We create innovative solutions that make loyalty effortless, payments seamless, and rewards instant\u2014all while enhancing customer experiences. Stay ahead in the digital world with smarter engagement.\"})}),className:\"framer-lzbb7v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-30ked8\",\"data-framer-name\":\"Action\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ditf9l\",\"data-framer-name\":\"Client\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",style:{\"--framer-text-color\":\"var(--token-643b5059-555e-440a-801b-0ceaa8252db0, rgba(255, 255, 255, 0.7))\"},children:\"Trusted by:\"})}),className:\"framer-c7kms8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{y:(componentViewport?.y||0)+0+0+0+125+165.60000000000002+0+421.4+0+0+16.5},y0sP1b9hi:{y:(componentViewport?.y||0)+0+0+0+150+428.4+0+320.6+0+18.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+0+250+318.4+0+320.6+0+18.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j8ekbg-container\",nodeId:\"q91wgq38D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerClient,{height:\"100%\",id:\"q91wgq38D\",layoutId:\"q91wgq38D\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ly6t3u\",\"data-framer-name\":\"Contact\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b3191j\",\"data-framer-name\":\"Admin\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ph1tf9\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+125+165.60000000000002+0+421.4+0+87+12.100000000000001+.3999999999999986+0+0),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/sr1KkeD2XVfDj4BKavzBcMhM68.jpeg\"}},y0sP1b9hi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+150+428.4+0+320.6+0+12.100000000000001+.3999999999999986+0+0),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/sr1KkeD2XVfDj4BKavzBcMhM68.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+250+318.4+0+320.6+0+12.100000000000001+.3999999999999986+0+0),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/sr1KkeD2XVfDj4BKavzBcMhM68.jpeg\"},className:\"framer-82afex\",\"data-framer-name\":\"Profile\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vkogot\",\"data-border\":true,\"data-framer-name\":\"Status\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17bj8v\",\"data-framer-name\":\"Dot\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mrtpvy\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",children:\"Niclas Blomqvist\"})}),className:\"framer-1euxty\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fv8lw9\",\"data-styles-preset\":\"xdlw94awV\",style:{\"--framer-text-color\":\"var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(34, 34, 34, 0.8))\"},children:\"Online\"})}),className:\"framer-1ng47p2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{y:(componentViewport?.y||0)+0+0+0+125+165.60000000000002+0+421.4+0+87+10},y0sP1b9hi:{y:(componentViewport?.y||0)+0+0+0+150+428.4+0+320.6+0+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+0+0+250+318.4+0+320.6+0+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10lhh1u-container\",nodeId:\"SWobr6DMR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"SWobr6DMR\",KVCK1Ipcj:\"https://cal.com/carl-nordling-washere/60min\",layoutId:\"SWobr6DMR\",pL4Lr5sEe:\"Book a Demo\",variant:\"oi7IRFUEi\",width:\"100%\"})})})})]})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{y:(componentViewport?.y||0)+0+900}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1010,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1e3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n1btfp-container\",id:elementId,nodeId:\"a0QeMepiq\",ref:ref2,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{variant:\"Sqpdz37oR\"},y0sP1b9hi:{variant:\"NF9tJdOkL\"}},children:/*#__PURE__*/_jsx(VideoExplainer,{height:\"100%\",id:\"a0QeMepiq\",layoutId:\"a0QeMepiq\",style:{width:\"100%\"},variant:\"pDq92jixR\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ffncch\",\"data-framer-name\":\"About\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-115zffu\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12277ut\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h654rk\",\"data-styles-preset\":\"vRUPy1pDP\",style:{\"--framer-text-color\":\"var(--token-276ae762-7e76-488a-bc48-1cd74a585c71, rgb(232, 72, 28))\"},children:\"[ Who we are ]\"})}),className:\"framer-1d1qx4w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1g3m8fd\",\"data-styles-preset\":\"D0E3giwT3\",children:[\"Seamless Loyalty.\",/*#__PURE__*/_jsx(\"br\",{}),\"Built into Ever Transaction.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1g3m8fd\",\"data-styles-preset\":\"D0E3giwT3\",children:[\"Seamless Loyalty.\",/*#__PURE__*/_jsx(\"br\",{}),\"Built into Every Transaction.\"]})}),className:\"framer-ls9g43\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sbvrt3\",\"data-framer-name\":\"Image Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1028,intrinsicWidth:1050,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1910+60+0+182.2+0+0),pixelHeight:1468,pixelWidth:980,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,src:\"https://framerusercontent.com/images/2ldGbcdc7o8kVD1BiwmLt1NpXQ.gif\",srcSet:\"https://framerusercontent.com/images/2ldGbcdc7o8kVD1BiwmLt1NpXQ.gif?scale-down-to=1024 683w,https://framerusercontent.com/images/2ldGbcdc7o8kVD1BiwmLt1NpXQ.gif 980w\"}},y0sP1b9hi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1028,intrinsicWidth:1050,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2010+80+0+182.2+0),pixelHeight:1468,pixelWidth:980,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/2ldGbcdc7o8kVD1BiwmLt1NpXQ.gif\",srcSet:\"https://framerusercontent.com/images/2ldGbcdc7o8kVD1BiwmLt1NpXQ.gif?scale-down-to=1024 683w,https://framerusercontent.com/images/2ldGbcdc7o8kVD1BiwmLt1NpXQ.gif 980w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1028,intrinsicWidth:1050,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2010+10+0+182.2+0),pixelHeight:1468,pixelWidth:980,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 50px) / 2, 1px)`,src:\"https://framerusercontent.com/images/2ldGbcdc7o8kVD1BiwmLt1NpXQ.gif\",srcSet:\"https://framerusercontent.com/images/2ldGbcdc7o8kVD1BiwmLt1NpXQ.gif?scale-down-to=1024 683w,https://framerusercontent.com/images/2ldGbcdc7o8kVD1BiwmLt1NpXQ.gif 980w\"},className:\"framer-mdxcvh\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1us37ea\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",style:{\"--framer-text-color\":\"var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(34, 34, 34, 0.8))\"},children:\"Loyalty should be effortless. We help businesses enable 1-tap enrollment, instant rewards, and automatic customer recognition\u2014built directly into the payment experience. No apps, no extra steps\u2014just smooth, digital-first engagement that integrates naturally into every transaction.\"})}),className:\"framer-xw13oj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vx5iwp\",\"data-framer-name\":\"Value\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udq3tl\",\"data-framer-name\":\"Mission\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173za0e\",\"data-styles-preset\":\"yky8lXWxn\",children:\"Our Mission\"})}),className:\"framer-1dwh40j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",style:{\"--framer-text-color\":\"var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(34, 34, 34, 0.8))\"},children:\"To transform loyalty into a seamless experience\u2014integrated, contactless, and always accessible from where customers need it most.\"})}),className:\"framer-4sl1nm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eotvo9\",\"data-framer-name\":\"Approach\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173za0e\",\"data-styles-preset\":\"yky8lXWxn\",children:\"Our Approach\"})}),className:\"framer-qomfms\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",style:{\"--framer-text-color\":\"var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(34, 34, 34, 0.8))\"},children:\"We believe loyalty should be as simple as making a payment. Our technology enables businesses to create frictionless, digital-first interactions that drive engagement, retention, and customer satisfaction\u2014all with a single tap.\"})}),className:\"framer-1q03piz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ks7kac\",\"data-framer-name\":\"Fact Number\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v6y5qx\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vpg2gw\",\"data-styles-preset\":\"WdFR1KxLs\",children:\"70+\"})}),className:\"framer-1cdudh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w1urrs\",\"data-styles-preset\":\"sIHNtFLWX\",style:{\"--framer-text-color\":\"var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(34, 34, 34, 0.8))\"},children:\"Brands Onboarded\"})}),className:\"framer-1wuifm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-39tw9b hidden-edszbo hidden-7qh7np\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1le1xzk\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vpg2gw\",\"data-styles-preset\":\"WdFR1KxLs\",children:\">1M\"})}),className:\"framer-pztawl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w1urrs\",\"data-styles-preset\":\"sIHNtFLWX\",style:{\"--framer-text-color\":\"var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(34, 34, 34, 0.8))\"},children:\"Active Wallet Cards\"})}),className:\"framer-mnrt2c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CjPwUjKuB\"},implicitPathVariables:undefined},{href:{webPageId:\"CjPwUjKuB\"},implicitPathVariables:undefined},{href:{webPageId:\"CjPwUjKuB\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{y:(componentViewport?.y||0)+0+1910+60+0+182.2+0+450+0+742},y0sP1b9hi:{y:(componentViewport?.y||0)+0+2010+80+0+182.2+0+0+742}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+2010+10+0+182.2+0+0+742,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dhv3za-container\",nodeId:\"UQI3v0TQj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{KVCK1Ipcj:resolvedLinks[2]},y0sP1b9hi:{KVCK1Ipcj:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"UQI3v0TQj\",KVCK1Ipcj:resolvedLinks[0],layoutId:\"UQI3v0TQj\",pL4Lr5sEe:\"More about us\",variant:\"zM202ec5A\",width:\"100%\"})})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-6fck1c\",\"data-framer-name\":\"Service\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j7re2y\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g6daid\",\"data-framer-name\":\"Title Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vfu2aq\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h654rk\",\"data-styles-preset\":\"vRUPy1pDP\",style:{\"--framer-text-color\":\"var(--token-276ae762-7e76-488a-bc48-1cd74a585c71, rgb(232, 72, 28))\"},children:\"[ How we can Help You ]\"})}),className:\"framer-1uzvcfw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1g3m8fd\",\"data-styles-preset\":\"D0E3giwT3\",children:\"Loyalty, Reinvented: Seamless, Smart, and Effortless\"})}),className:\"framer-uamtr1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t5nmr3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yD9arrAM3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"yD9arrAM3\",isMixedBorderRadius:false,layoutId:\"yD9arrAM3\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/QXfjyIRfYkVSh0JClHYg6Y4gw.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ksvz5x\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nldnk8\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",children:\"Traditional loyalty programs create unnecessary friction\u2014sign-ups take too long, customers forget about their rewards, and businesses struggle to keep engagement high. We eliminate these barriers by integrating loyalty directly into the payment experience, making it effortless for both businesses and customers.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",children:[\"With \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 80, 0)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Instant Enrollment\"})}),\", customers can join your loyalty program with a single tap at checkout. No apps to download, no forms to fill out\u2014just a seamless, one-step process that significantly increases participation.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 80, 0)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Automatic Identification\"})}),\" ensures that once a customer is enrolled, they are instantly recognized every time they return. No need for loyalty cards, QR codes, or manual lookups\u2014rewards, discounts, and personalized offers are applied automatically, keeping the checkout experience fast and frictionless.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 80, 0)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Smart Engagement\"})}),\" keeps your brand top-of-mind, enabling real-time, personalized push notifications based on location, purchase behavior, or special occasions. Whether it\u2019s an exclusive discount when they pass by your store or a reward reminder just before checkout, engagement is now automated, relevant, and highly effective.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-98p1p7\",\"data-styles-preset\":\"RovqKUO3R\",children:\"Loyalty should be seamless. By embedding it directly into transactions, we remove friction, increase retention, and ensure every customer interaction strengthens their connection to your brand\u2014without extra steps or effort.\"})]}),className:\"framer-1c551no\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"clYeMEpo0\"},implicitPathVariables:undefined},{href:{webPageId:\"clYeMEpo0\"},implicitPathVariables:undefined},{href:{webPageId:\"clYeMEpo0\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{y:(componentViewport?.y||0)+0+3445.2+60+0+0+0+691.2+0+670},y0sP1b9hi:{y:(componentViewport?.y||0)+0+3135.2+80+0+0+0+0+670}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+3085.2+10+0+0+0+0+670,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ukpx9n-container\",nodeId:\"FRKKAJpKa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{KVCK1Ipcj:resolvedLinks1[2]},y0sP1b9hi:{KVCK1Ipcj:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"FRKKAJpKa\",KVCK1Ipcj:resolvedLinks1[0],layoutId:\"FRKKAJpKa\",pL4Lr5sEe:\"Let's Talk\",variant:\"zM202ec5A\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+3445.2+60+0+1452.2},y0sP1b9hi:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+3135.2+80+0+761}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:947,width:`min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+3085.2+10+0+761,children:/*#__PURE__*/_jsx(Container,{className:\"framer-59vnz2-container\",nodeId:\"EkX9h1wOO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{variant:\"JIUwc7nHh\"},y0sP1b9hi:{variant:\"BXf8TD4__\"}},children:/*#__PURE__*/_jsx(CardServiceList,{height:\"100%\",id:\"EkX9h1wOO\",layoutId:\"EkX9h1wOO\",style:{width:\"100%\"},variant:\"ywSHZLvBB\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{y:(componentViewport?.y||0)+0+5964.4},y0sP1b9hi:{y:(componentViewport?.y||0)+0+5003.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:960,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4903.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ihi2r8-container\",nodeId:\"ogDKMMbIn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TsucVN2qj:{variant:\"epfQUQB9F\"},y0sP1b9hi:{variant:\"XNo1T8EJq\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"ogDKMMbIn\",layoutId:\"ogDKMMbIn\",style:{width:\"100%\"},variant:\"Uq4og_yu8\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-q39ju.framer-lux5qc, .framer-q39ju .framer-lux5qc { display: block; }\",\".framer-q39ju.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-q39ju .framer-m7c1od-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 8; }\",\".framer-q39ju .framer-137mpny { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q39ju .framer-zd67sy-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-q39ju .framer-1j1j93b { align-content: flex-end; align-items: flex-end; background-color: var(--token-47f2c9d4-c058-4ab0-98e5-fef01c9cdc8a, rgba(27, 29, 31, 0.6)); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 250px 50px 50px 50px; position: relative; width: 1px; z-index: 2; }\",\".framer-q39ju .framer-1lwc3b2, .framer-q39ju .framer-115zffu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-q39ju .framer-9cuw5n { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q39ju .framer-14rkle1 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q39ju .framer-5jqerx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-q39ju .framer-77hcb9, .framer-q39ju .framer-1v1txby { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 750px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-q39ju .framer-1ryrfk9 { 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: 350px; }\",\".framer-q39ju .framer-w6xnbs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 2px; position: relative; width: 100%; }\",\".framer-q39ju .framer-1y9c47d, .framer-q39ju .framer-c7kms8, .framer-q39ju .framer-1euxty, .framer-q39ju .framer-1ng47p2, .framer-q39ju .framer-1cdudh, .framer-q39ju .framer-pztawl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-q39ju .framer-dfzpt8-container, .framer-q39ju .framer-10lhh1u-container, .framer-q39ju .framer-dhv3za-container, .framer-q39ju .framer-ukpx9n-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-q39ju .framer-cp9i1n { background-color: var(--token-c725b8af-d513-43e2-9a2f-b49322c9d723, rgba(255, 255, 255, 0.2)); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-q39ju .framer-lzbb7v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-q39ju .framer-30ked8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q39ju .framer-1ditf9l { -webkit-backdrop-filter: blur(8px); align-content: center; align-items: center; align-self: stretch; backdrop-filter: blur(8px); background-color: var(--token-bb327f12-e663-4f31-a101-82fdd05e5dea, rgba(255, 255, 255, 0.05)); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; overflow: hidden; padding: 10px 30px 10px 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-q39ju .framer-1j8ekbg-container { flex: 1 0 0px; height: 24px; position: relative; width: 1px; }\",\".framer-q39ju .framer-ly6t3u { align-content: center; align-items: center; background-color: var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 15px 10px 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-q39ju .framer-1b3191j { 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-q39ju .framer-1ph1tf9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-q39ju .framer-82afex { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: hidden; position: relative; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-q39ju .framer-1vkogot { --border-bottom-width: 1px; --border-color: var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, #ffffff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; 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: 2px; top: 2px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-q39ju .framer-17bj8v { aspect-ratio: 1 / 1; background-color: #1ce82d; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 8px); overflow: hidden; position: relative; width: 8px; will-change: var(--framer-will-change-override, transform); }\",\".framer-q39ju .framer-1mrtpvy, .framer-q39ju .framer-v6y5qx, .framer-q39ju .framer-1le1xzk { 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-q39ju .framer-1n1btfp-container, .framer-q39ju .framer-59vnz2-container, .framer-q39ju .framer-ihi2r8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-q39ju .framer-ffncch, .framer-q39ju .framer-6fck1c { 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: 10px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-q39ju .framer-12277ut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q39ju .framer-1d1qx4w, .framer-q39ju .framer-ls9g43, .framer-q39ju .framer-xw13oj, .framer-q39ju .framer-1dwh40j, .framer-q39ju .framer-4sl1nm, .framer-q39ju .framer-qomfms, .framer-q39ju .framer-1q03piz, .framer-q39ju .framer-1uzvcfw, .framer-q39ju .framer-uamtr1, .framer-q39ju .framer-1c551no { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-q39ju .framer-1sbvrt3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q39ju .framer-mdxcvh { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-q39ju .framer-1us37ea, .framer-q39ju .framer-ksvz5x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-q39ju .framer-1vx5iwp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q39ju .framer-1udq3tl, .framer-q39ju .framer-1eotvo9, .framer-q39ju .framer-nldnk8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q39ju .framer-ks7kac { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-q39ju .framer-1wuifm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 159px; word-break: break-word; word-wrap: break-word; }\",\".framer-q39ju .framer-39tw9b { align-self: stretch; background-color: var(--token-1c767e42-5580-474f-b164-df72be147d42, rgba(34, 34, 34, 0.2)); flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-q39ju .framer-mnrt2c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 224px; word-break: break-word; word-wrap: break-word; }\",\".framer-q39ju .framer-1j7re2y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-q39ju .framer-1g6daid { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-q39ju .framer-vfu2aq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-q39ju .framer-t5nmr3-container { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 524px); position: relative; width: 342px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-q39ju.framer-72rtr7, .framer-q39ju .framer-137mpny, .framer-q39ju .framer-1j1j93b, .framer-q39ju .framer-1lwc3b2, .framer-q39ju .framer-9cuw5n, .framer-q39ju .framer-5jqerx, .framer-q39ju .framer-1ryrfk9, .framer-q39ju .framer-w6xnbs, .framer-q39ju .framer-30ked8, .framer-q39ju .framer-1ditf9l, .framer-q39ju .framer-ly6t3u, .framer-q39ju .framer-1b3191j, .framer-q39ju .framer-1ph1tf9, .framer-q39ju .framer-1vkogot, .framer-q39ju .framer-1mrtpvy, .framer-q39ju .framer-ffncch, .framer-q39ju .framer-115zffu, .framer-q39ju .framer-12277ut, .framer-q39ju .framer-1sbvrt3, .framer-q39ju .framer-mdxcvh, .framer-q39ju .framer-1us37ea, .framer-q39ju .framer-1vx5iwp, .framer-q39ju .framer-1udq3tl, .framer-q39ju .framer-1eotvo9, .framer-q39ju .framer-ks7kac, .framer-q39ju .framer-v6y5qx, .framer-q39ju .framer-1le1xzk, .framer-q39ju .framer-6fck1c, .framer-q39ju .framer-1j7re2y, .framer-q39ju .framer-1g6daid, .framer-q39ju .framer-vfu2aq, .framer-q39ju .framer-ksvz5x, .framer-q39ju .framer-nldnk8 { gap: 0px; } .framer-q39ju.framer-72rtr7 > *, .framer-q39ju .framer-1ryrfk9 > *, .framer-q39ju .framer-1mrtpvy > *, .framer-q39ju .framer-v6y5qx > *, .framer-q39ju .framer-1le1xzk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-q39ju.framer-72rtr7 > :first-child, .framer-q39ju .framer-1lwc3b2 > :first-child, .framer-q39ju .framer-9cuw5n > :first-child, .framer-q39ju .framer-5jqerx > :first-child, .framer-q39ju .framer-1ryrfk9 > :first-child, .framer-q39ju .framer-1ph1tf9 > :first-child, .framer-q39ju .framer-1mrtpvy > :first-child, .framer-q39ju .framer-115zffu > :first-child, .framer-q39ju .framer-12277ut > :first-child, .framer-q39ju .framer-mdxcvh > :first-child, .framer-q39ju .framer-1us37ea > :first-child, .framer-q39ju .framer-1vx5iwp > :first-child, .framer-q39ju .framer-1udq3tl > :first-child, .framer-q39ju .framer-1eotvo9 > :first-child, .framer-q39ju .framer-v6y5qx > :first-child, .framer-q39ju .framer-1le1xzk > :first-child, .framer-q39ju .framer-1j7re2y > :first-child, .framer-q39ju .framer-vfu2aq > :first-child, .framer-q39ju .framer-ksvz5x > :first-child, .framer-q39ju .framer-nldnk8 > :first-child { margin-top: 0px; } .framer-q39ju.framer-72rtr7 > :last-child, .framer-q39ju .framer-1lwc3b2 > :last-child, .framer-q39ju .framer-9cuw5n > :last-child, .framer-q39ju .framer-5jqerx > :last-child, .framer-q39ju .framer-1ryrfk9 > :last-child, .framer-q39ju .framer-1ph1tf9 > :last-child, .framer-q39ju .framer-1mrtpvy > :last-child, .framer-q39ju .framer-115zffu > :last-child, .framer-q39ju .framer-12277ut > :last-child, .framer-q39ju .framer-mdxcvh > :last-child, .framer-q39ju .framer-1us37ea > :last-child, .framer-q39ju .framer-1vx5iwp > :last-child, .framer-q39ju .framer-1udq3tl > :last-child, .framer-q39ju .framer-1eotvo9 > :last-child, .framer-q39ju .framer-v6y5qx > :last-child, .framer-q39ju .framer-1le1xzk > :last-child, .framer-q39ju .framer-1j7re2y > :last-child, .framer-q39ju .framer-vfu2aq > :last-child, .framer-q39ju .framer-ksvz5x > :last-child, .framer-q39ju .framer-nldnk8 > :last-child { margin-bottom: 0px; } .framer-q39ju .framer-137mpny > *, .framer-q39ju .framer-1j1j93b > *, .framer-q39ju .framer-1b3191j > *, .framer-q39ju .framer-1vkogot > *, .framer-q39ju .framer-ffncch > *, .framer-q39ju .framer-6fck1c > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-q39ju .framer-137mpny > :first-child, .framer-q39ju .framer-1j1j93b > :first-child, .framer-q39ju .framer-w6xnbs > :first-child, .framer-q39ju .framer-30ked8 > :first-child, .framer-q39ju .framer-1ditf9l > :first-child, .framer-q39ju .framer-ly6t3u > :first-child, .framer-q39ju .framer-1b3191j > :first-child, .framer-q39ju .framer-1vkogot > :first-child, .framer-q39ju .framer-ffncch > :first-child, .framer-q39ju .framer-1sbvrt3 > :first-child, .framer-q39ju .framer-ks7kac > :first-child, .framer-q39ju .framer-6fck1c > :first-child, .framer-q39ju .framer-1g6daid > :first-child { margin-left: 0px; } .framer-q39ju .framer-137mpny > :last-child, .framer-q39ju .framer-1j1j93b > :last-child, .framer-q39ju .framer-w6xnbs > :last-child, .framer-q39ju .framer-30ked8 > :last-child, .framer-q39ju .framer-1ditf9l > :last-child, .framer-q39ju .framer-ly6t3u > :last-child, .framer-q39ju .framer-1b3191j > :last-child, .framer-q39ju .framer-1vkogot > :last-child, .framer-q39ju .framer-ffncch > :last-child, .framer-q39ju .framer-1sbvrt3 > :last-child, .framer-q39ju .framer-ks7kac > :last-child, .framer-q39ju .framer-6fck1c > :last-child, .framer-q39ju .framer-1g6daid > :last-child { margin-right: 0px; } .framer-q39ju .framer-1lwc3b2 > *, .framer-q39ju .framer-115zffu > *, .framer-q39ju .framer-1j7re2y > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-q39ju .framer-9cuw5n > *, .framer-q39ju .framer-1vx5iwp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-q39ju .framer-5jqerx > *, .framer-q39ju .framer-1ph1tf9 > *, .framer-q39ju .framer-mdxcvh > *, .framer-q39ju .framer-1udq3tl > *, .framer-q39ju .framer-1eotvo9 > *, .framer-q39ju .framer-nldnk8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-q39ju .framer-w6xnbs > *, .framer-q39ju .framer-30ked8 > *, .framer-q39ju .framer-1ditf9l > *, .framer-q39ju .framer-ks7kac > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-q39ju .framer-ly6t3u > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-q39ju .framer-12277ut > *, .framer-q39ju .framer-vfu2aq > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-q39ju .framer-1sbvrt3 > *, .framer-q39ju .framer-1g6daid > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-q39ju .framer-1us37ea > *, .framer-q39ju .framer-ksvz5x > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-q39ju[data-border=\"true\"]::after, .framer-q39ju [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: 1199px) { .framer-q39ju.framer-72rtr7 { width: 810px; } .framer-q39ju .framer-1j1j93b { padding: 150px 30px 40px 30px; } .framer-q39ju .framer-14rkle1 { gap: 30px; justify-content: center; order: 0; } .framer-q39ju .framer-77hcb9, .framer-q39ju .framer-1v1txby { max-width: unset; width: 470px; } .framer-q39ju .framer-1ryrfk9 { width: 250px; } .framer-q39ju .framer-dfzpt8-container { height: 52px; } .framer-q39ju .framer-cp9i1n { order: 1; } .framer-q39ju .framer-lzbb7v { order: 2; } .framer-q39ju .framer-ffncch, .framer-q39ju .framer-6fck1c { padding: 80px 30px 80px 30px; } .framer-q39ju .framer-1sbvrt3, .framer-q39ju .framer-1g6daid { gap: 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-q39ju .framer-14rkle1, .framer-q39ju .framer-1sbvrt3, .framer-q39ju .framer-1g6daid { gap: 0px; } .framer-q39ju .framer-14rkle1 > *, .framer-q39ju .framer-1sbvrt3 > *, .framer-q39ju .framer-1g6daid > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-q39ju .framer-14rkle1 > :first-child, .framer-q39ju .framer-1sbvrt3 > :first-child, .framer-q39ju .framer-1g6daid > :first-child { margin-left: 0px; } .framer-q39ju .framer-14rkle1 > :last-child, .framer-q39ju .framer-1sbvrt3 > :last-child, .framer-q39ju .framer-1g6daid > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-q39ju.framer-72rtr7 { width: 390px; } .framer-q39ju .framer-137mpny { height: 85.46099290780141vh; min-height: 900px; } .framer-q39ju .framer-1j1j93b { padding: 125px 20px 40px 20px; } .framer-q39ju .framer-14rkle1 { flex-direction: column; gap: 30px; justify-content: center; } .framer-q39ju .framer-5jqerx, .framer-q39ju .framer-1us37ea, .framer-q39ju .framer-vfu2aq, .framer-q39ju .framer-ksvz5x { flex: none; width: 100%; } .framer-q39ju .framer-77hcb9 { max-width: unset; width: 348px; } .framer-q39ju .framer-1v1txby { max-width: unset; width: 350px; } .framer-q39ju .framer-1ryrfk9 { width: 100%; } .framer-q39ju .framer-dfzpt8-container { height: 42px; } .framer-q39ju .framer-30ked8, .framer-q39ju .framer-1sbvrt3 { flex-direction: column; } .framer-q39ju .framer-1ditf9l { align-self: unset; flex: none; gap: 20px; height: 57px; padding: 10px 20px 10px 20px; width: 100%; } .framer-q39ju .framer-ffncch, .framer-q39ju .framer-6fck1c { padding: 60px 20px 60px 20px; } .framer-q39ju .framer-mdxcvh { align-self: unset; aspect-ratio: 0.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 229px); width: 100%; } .framer-q39ju .framer-ks7kac { align-content: center; align-items: center; gap: 10px; } .framer-q39ju .framer-v6y5qx { order: 0; } .framer-q39ju .framer-1le1xzk { order: 1; } .framer-q39ju .framer-1g6daid { flex-direction: column; gap: 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-q39ju .framer-14rkle1, .framer-q39ju .framer-30ked8, .framer-q39ju .framer-1ditf9l, .framer-q39ju .framer-1sbvrt3, .framer-q39ju .framer-ks7kac, .framer-q39ju .framer-1g6daid { gap: 0px; } .framer-q39ju .framer-14rkle1 > *, .framer-q39ju .framer-30ked8 > *, .framer-q39ju .framer-1g6daid > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-q39ju .framer-14rkle1 > :first-child, .framer-q39ju .framer-30ked8 > :first-child, .framer-q39ju .framer-1sbvrt3 > :first-child, .framer-q39ju .framer-1g6daid > :first-child { margin-top: 0px; } .framer-q39ju .framer-14rkle1 > :last-child, .framer-q39ju .framer-30ked8 > :last-child, .framer-q39ju .framer-1sbvrt3 > :last-child, .framer-q39ju .framer-1g6daid > :last-child { margin-bottom: 0px; } .framer-q39ju .framer-1ditf9l > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-q39ju .framer-1ditf9l > :first-child, .framer-q39ju .framer-ks7kac > :first-child { margin-left: 0px; } .framer-q39ju .framer-1ditf9l > :last-child, .framer-q39ju .framer-ks7kac > :last-child { margin-right: 0px; } .framer-q39ju .framer-1sbvrt3 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-q39ju .framer-ks7kac > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5563.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"y0sP1b9hi\":{\"layout\":[\"fixed\",\"auto\"]},\"TsucVN2qj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"a0QeMepiq\":{\"pattern\":\":a0QeMepiq\",\"name\":\"start\"},\"azvI2aGHL\":{\"pattern\":\":azvI2aGHL\",\"name\":\"start\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-q39ju\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5563.5,width:1200};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\"}]},...SectionHeaderFonts,...VideoFonts,...SlideshowTextFonts,...TickerClientFonts,...ButtonPrimaryFonts,...VideoExplainerFonts,...CardServiceListFonts,...SectionFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"a0QeMepiq\\\":{\\\"pattern\\\":\\\":a0QeMepiq\\\",\\\"name\\\":\\\"start\\\"},\\\"azvI2aGHL\\\":{\\\"pattern\\\":\\\":azvI2aGHL\\\",\\\"name\\\":\\\"start\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"5563.5\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y0sP1b9hi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TsucVN2qj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "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", "SlideshowFonts", "getFonts", "Slideshow", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text01", "text02", "text03", "text04", "text05", "text06", "text07", "text08", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ECn8u_jmu", "ONddBhblS", "iOOeIa9c3", "W5hXrZQCz", "oy2nX6YhV", "IJdezxLlI", "QFOdMrXVP", "h3q_6K3Sh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTape4rddz", "args", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "Slideshow", "RichText2", "css", "FrameraxlM_KsIE", "withCSS", "axlM_KsIE_default", "addPropertyControls", "ControlType", "addFonts", "SlideshowFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "buttonText", "height", "id", "link", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "rtLF2obMR", "SNHepsNqk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramertULNkiep7", "withCSS", "tULNkiep7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "w84GGfwTR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "RichText2", "css", "Framervn9saUCE6", "withCSS", "vn9saUCE6_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "MiscIconTextFonts", "vn9saUCE6_default", "ButtonSecondaryFonts", "tULNkiep7_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "prefix", "value", "suffix", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "click2", "height", "highlights01", "highlights01Visible", "highlights02", "highlights02Visible", "highlights03", "highlights03Visible", "id", "image", "link", "number", "serviceTitle", "shortDescription", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "aX20t_Maa", "rUCOMAZYA", "R3X6jDp6M", "ZI7MidvST", "gmIDIS1km", "RMf5FCFmK", "LT2kIsSKj", "khFCdeFBQ", "NNYkqjcka", "sBVdXwGNT", "csFrwbiy8", "ws3YCSxIe", "CgirxhE4n", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap2frwr0", "args", "onTapn9zvlk", "onTapbnnjdd", "onTap1qauor1", "onTap18gs7l9", "onTap1yv9i90", "scopingClassNames", "cx", "ref1", "pe", "textContent", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FrameruJ3XVF6za", "withCSS", "uJ3XVF6za_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CardService01Fonts", "getFonts", "uJ3XVF6za_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "arzfGIT7yT0JfWDT9l", "s6F8wDhhhT0JfWDT9l", "KVyBOewGCT0JfWDT9l", "MtU9gcwciT0JfWDT9l", "xBTFpqikHT0JfWDT9l", "n0gHYXKwnT0JfWDT9l", "PycAwwxhIT0JfWDT9l", "GZ6QCS7i1T0JfWDT9l", "sdCksvnk1T0JfWDT9l", "XXTSanHDgT0JfWDT9l", "zBkhQDRfsT0JfWDT9l", "idT0JfWDT9l", "arzfGIT7yxjOKokSkG", "s6F8wDhhhxjOKokSkG", "KVyBOewGCxjOKokSkG", "MtU9gcwcixjOKokSkG", "n0gHYXKwnxjOKokSkG", "GZ6QCS7i1xjOKokSkG", "XXTSanHDgxjOKokSkG", "zBkhQDRfsxjOKokSkG", "idxjOKokSkG", "arzfGIT7yPXzYaiFK6", "s6F8wDhhhPXzYaiFK6", "KVyBOewGCPXzYaiFK6", "MtU9gcwciPXzYaiFK6", "n0gHYXKwnPXzYaiFK6", "GZ6QCS7i1PXzYaiFK6", "XXTSanHDgPXzYaiFK6", "zBkhQDRfsPXzYaiFK6", "idPXzYaiFK6", "arzfGIT7yUBhaYoljE", "s6F8wDhhhUBhaYoljE", "KVyBOewGCUBhaYoljE", "MtU9gcwciUBhaYoljE", "n0gHYXKwnUBhaYoljE", "GZ6QCS7i1UBhaYoljE", "XXTSanHDgUBhaYoljE", "zBkhQDRfsUBhaYoljE", "idUBhaYoljE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "aX20t_Maa4dzgk9", "args", "aX20t_Maaas1rp8", "aX20t_Maae29fe3", "aX20t_Maah7xwnt", "aX20t_Maa1n0ka6v", "aX20t_Maaf2tmui", "aX20t_Maaqxmzfb", "aX20t_Maa6sg207", "aX20t_Maahg9thz", "aX20t_Maajdfwak", "aX20t_Maa195ypy1", "aX20t_Maa1512zvo", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ChildrenCanSuspend", "QueryData", "TK6BxY8Ks_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "uJ3XVF6za_default", "toResponsiveImage", "collection1", "paginationInfo1", "loadMore1", "i1", "resolvedLinks1", "collection2", "paginationInfo2", "loadMore2", "i2", "resolvedLinks2", "collection3", "paginationInfo3", "loadMore3", "i3", "resolvedLinks3", "css", "FramereZHFW2Pus", "withCSS", "eZHFW2Pus_default", "addPropertyControls", "ControlType", "addFonts", "CardService01Fonts", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "Ticker", "Image2", "css", "Frameri0jAPLPgA", "withCSS", "i0jAPLPgA_default", "addFonts", "TickerFonts", "fontStore", "fonts", "css", "className", "SectionHeaderFonts", "getFonts", "KtQ4S_tUV_default", "SectionHeaderWithVariantAppearEffect", "withVariantAppearEffect", "VideoFonts", "Video", "SlideshowTextFonts", "axlM_KsIE_default", "TickerClientFonts", "i0jAPLPgA_default", "ButtonPrimaryFonts", "iJPXIV7lf_default", "VideoExplainerFonts", "Yqq86TH4F_default", "CardServiceListFonts", "eZHFW2Pus_default", "SectionFooterFonts", "p2SFYpaND_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "ref2", "elementId", "useRouteElementId", "elementId1", "ref3", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
