{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bJnHw5VokAqNKlg6Rp7L/SlideShow.js", "ssg:https://framerusercontent.com/modules/NCd935T1GtUsMHllegQh/6KbDUvyxL3izK1aG8ycL/AoTHhKeo5.js", "ssg:https://framerusercontent.com/modules/Xi4luaYLEH1dgBnceAJ8/MRriwt4SsXepxvVlM8lA/D7SwoOSR4.js", "ssg:https://framerusercontent.com/modules/6XRpaaEvWkQRbWYJAV53/NcjUPMtC3hlj50410nTy/u429wWSda.js", "ssg:https://framerusercontent.com/modules/CFq2ckELHL0TL1OgtRQG/mwl5JZTrFRijPPirp06n/BzEpqCzzt.js", "ssg:https://framerusercontent.com/modules/YWvoMWBNey5LNEI32MGA/eZk5aKhCViIsFbUuCJmP/DrxneUv2k.js", "ssg:https://framerusercontent.com/modules/idPvNSMtfLDWcSyTkF3e/ChHQo1DshdNzM0DXAKcG/JKRiAg0IF.js", "ssg:https://framerusercontent.com/modules/pwLMpLcI2chTUPLy2eiZ/h0rSbhVqFESVrcpexNDN/lD039myne.js", "ssg:https://framerusercontent.com/modules/HBdEMaJspWZyYLWIcCZd/mu2Ig6Xos1KejrBuqYlw/qR7rMFEgN.js", "ssg:https://framerusercontent.com/modules/x81WRPKIecWWGZXOXGQY/ptDkt4WDzbcSJs28PIEY/tbnlS9zFZ.js", "ssg:https://framerusercontent.com/modules/3Bzp5PG3xEJ9goqSn9CR/X9J1I35jvlkSd9DZFwbe/UMVL6xv3i.js", "ssg:https://framerusercontent.com/modules/YteRnD689Btbo1MkvkOq/SSk2SWOaDFSjIMd6TrEH/wIGrQcA0r.js", "ssg:https://framerusercontent.com/modules/nUVK9zJxK2w9SkKCBdJc/hcveAwZt4SyTDVNZmk6r/fpKs532aR.js", "ssg:https://framerusercontent.com/modules/1mhxtbOC1jRIEaR4vNp5/rf2P46coWZu6L3FCq0P7/mqB1sXfO1.js", "ssg:https://framerusercontent.com/modules/Ohj1OTdOJSDiKnABmro2/2KZ5Gq2RS8Vj4TPX2WOa/nqqiK_8RC.js", "ssg:https://framerusercontent.com/modules/jSXf207KvMJFLCJTKfcA/yDHECZW567v5ZrEqLCVQ/gqqtBQjBY.js", "ssg:https://framerusercontent.com/modules/gsiLPuYwL4DWSm45d9rc/atcufHfhdMIVcX0lk0l4/TypeIt.js", "ssg:https://framerusercontent.com/modules/lXtIylNGiPiAqmoGXW5r/DBwzNpeufOdUt3i2nliQ/y5soMwTMG.js", "ssg:https://framerusercontent.com/modules/AD7Y1EXb0lJOAMIolvY7/9HJTIN2yRYYJatoPACit/Y7Vpnh0eD.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,memo,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;// 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\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});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[{current:null},{current:null}];// when the slots change, generate new array\n},[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(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].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);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);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,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[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);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* 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(index===0){if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,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__*/memo(/*#__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;const fallbackRef=useRef();/**\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=>{const node=ref?.current??fallbackRef.current;node?.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\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,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})})});}));const Dot=/*#__PURE__*/memo(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\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const cycleOrder=[\"YvYQou3EX\",\"ufaWedUdN\",\"K8E6sc3ly\",\"zC47cRGaB\",\"nADp6UYqy\",\"ApN8CO2jI\",\"itoq8FD8v\",\"riLAM7kHR\",\"E44ZYRrkH\",\"mWljXAkPo\",\"WgCxoqowE\",\"vvsur7enx\",\"vuUGOcE1C\",\"yIDjZDNLR\",\"rsRkZDIO1\",\"Z1hCNiwLT\"];const serializationHash=\"framer-9d1HE\";const variantClassNames={ApN8CO2jI:\"framer-v-1tx29vn\",E44ZYRrkH:\"framer-v-hav4im\",itoq8FD8v:\"framer-v-rqtud4\",K8E6sc3ly:\"framer-v-1i9e61u\",mWljXAkPo:\"framer-v-1u1kod1\",nADp6UYqy:\"framer-v-yigewt\",riLAM7kHR:\"framer-v-44wnfp\",rsRkZDIO1:\"framer-v-1e323xo\",ufaWedUdN:\"framer-v-btgjzh\",vuUGOcE1C:\"framer-v-1czystu\",vvsur7enx:\"framer-v-1olpj8a\",WgCxoqowE:\"framer-v-1xxuqzr\",yIDjZDNLR:\"framer-v-1hcyiob\",YvYQou3EX:\"framer-v-1ditizz\",Z1hCNiwLT:\"framer-v-1okre9c\",zC47cRGaB:\"framer-v-1750cub\"};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 transition2={bounce:.2,delay:0,duration:.8,type:\"spring\"};const transition3={damping:27,delay:0,mass:3.4,stiffness:354,type:\"spring\"};const transition4={damping:20,delay:0,mass:1,stiffness:188,type:\"spring\"};const transition5={bounce:0,delay:0,duration:.2,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 transition6={bounce:0,delay:.5,duration:1,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:400};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transition7={damping:35,delay:0,mass:3.5,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={bounce:0,delay:0,duration:1,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};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={\"1 mob\":\"E44ZYRrkH\",\"1\":\"YvYQou3EX\",\"2 mob\":\"mWljXAkPo\",\"2\":\"ufaWedUdN\",\"3 mob\":\"WgCxoqowE\",\"3\":\"K8E6sc3ly\",\"4 mob\":\"vvsur7enx\",\"4\":\"zC47cRGaB\",\"5 mob\":\"vuUGOcE1C\",\"5\":\"nADp6UYqy\",\"6 mob\":\"yIDjZDNLR\",\"6\":\"ApN8CO2jI\",\"7 mob\":\"rsRkZDIO1\",\"7\":\"itoq8FD8v\",\"8 mob\":\"Z1hCNiwLT\",\"8\":\"riLAM7kHR\"};const getProps=({gif1AccountingActiveBoard,gif1AccountingBoard,gif1AugustBoard,gif1Message,height,id,width,...props})=>{return{...props,sJCJo6GhR:gif1AccountingActiveBoard??props.sJCJo6GhR??{alt:\"\",pixelHeight:1776,pixelWidth:1960,src:\"https://framerusercontent.com/images/oRuAhuFMttahqo60ISNfKnNKCYA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oRuAhuFMttahqo60ISNfKnNKCYA.png?scale-down-to=512 512w,https://framerusercontent.com/images/oRuAhuFMttahqo60ISNfKnNKCYA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oRuAhuFMttahqo60ISNfKnNKCYA.png 1960w\"},Urf3peRq3:gif1AugustBoard??props.Urf3peRq3??{alt:\"\",pixelHeight:1776,pixelWidth:1960,src:\"https://framerusercontent.com/images/yDeWwjKhGRkS4z8C2BKBXfr6Qg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yDeWwjKhGRkS4z8C2BKBXfr6Qg.png?scale-down-to=512 512w,https://framerusercontent.com/images/yDeWwjKhGRkS4z8C2BKBXfr6Qg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yDeWwjKhGRkS4z8C2BKBXfr6Qg.png 1960w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"YvYQou3EX\",VUjqF0OcD:gif1AccountingBoard??props.VUjqF0OcD??{alt:\"\",pixelHeight:1776,pixelWidth:1960,src:\"https://framerusercontent.com/images/RGPmIWHriIvorm1RcAlMblfH7iI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RGPmIWHriIvorm1RcAlMblfH7iI.png?scale-down-to=512 512w,https://framerusercontent.com/images/RGPmIWHriIvorm1RcAlMblfH7iI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RGPmIWHriIvorm1RcAlMblfH7iI.png 1960w\"},Zv0QFeP_x:gif1Message??props.Zv0QFeP_x??{alt:\"\",pixelHeight:344,pixelWidth:1230,src:\"https://framerusercontent.com/images/260PqW1bAIVJREj4dWDGCEqoayc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/260PqW1bAIVJREj4dWDGCEqoayc.png?scale-down-to=512 512w,https://framerusercontent.com/images/260PqW1bAIVJREj4dWDGCEqoayc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/260PqW1bAIVJREj4dWDGCEqoayc.png 1230w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Urf3peRq3,VUjqF0OcD,sJCJo6GhR,Zv0QFeP_x,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YvYQou3EX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1086a7x=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ufaWedUdN\",true),2e3);});const onAppeartqarhw=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"K8E6sc3ly\",true),2e3);});const onAppear98tt85=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zC47cRGaB\",true),1e3);});const onAppear79mspd=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nADp6UYqy\",true),2e3);});const onAppear1tbkana=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ApN8CO2jI\",true),1e3);});const onAppear16p7ycz=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"itoq8FD8v\",true),300);});const onAppear1fovhi2=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"riLAM7kHR\",true),500);});const onAppear19s25uv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YvYQou3EX\",true),1e3);});const onAppear1y299j9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"mWljXAkPo\",true),2e3);});const onAppear1cyvl5z=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"WgCxoqowE\",true),2e3);});const onAppear1hpch50=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vvsur7enx\",true),1e3);});const onAppear15q3cyw=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vuUGOcE1C\",true),2e3);});const onAppear1biq9gb=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"yIDjZDNLR\",true),1e3);});const onAppear1xgzn3x=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rsRkZDIO1\",true),300);});const onAppearxqixii=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Z1hCNiwLT\",true),500);});const onAppear15ihw3q=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"E44ZYRrkH\",true),1e3);});useOnVariantChange(baseVariant,{ApN8CO2jI:onAppear16p7ycz,default:onAppear1086a7x,E44ZYRrkH:onAppear1y299j9,itoq8FD8v:onAppear1fovhi2,K8E6sc3ly:onAppear98tt85,mWljXAkPo:onAppear1cyvl5z,nADp6UYqy:onAppear1tbkana,riLAM7kHR:onAppear19s25uv,rsRkZDIO1:onAppearxqixii,ufaWedUdN:onAppeartqarhw,vuUGOcE1C:onAppear1biq9gb,vvsur7enx:onAppear15q3cyw,WgCxoqowE:onAppear1hpch50,yIDjZDNLR:onAppear1xgzn3x,Z1hCNiwLT:onAppear15ihw3q,zC47cRGaB:onAppear79mspd});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"zC47cRGaB\",\"nADp6UYqy\",\"ApN8CO2jI\",\"itoq8FD8v\",\"riLAM7kHR\",\"vvsur7enx\",\"vuUGOcE1C\",\"yIDjZDNLR\",\"rsRkZDIO1\",\"Z1hCNiwLT\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"ufaWedUdN\",\"K8E6sc3ly\",\"mWljXAkPo\",\"WgCxoqowE\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"zC47cRGaB\",\"nADp6UYqy\",\"ApN8CO2jI\",\"itoq8FD8v\",\"riLAM7kHR\",\"vvsur7enx\",\"vuUGOcE1C\",\"yIDjZDNLR\",\"rsRkZDIO1\",\"Z1hCNiwLT\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({ApN8CO2jI:{value:transition4},itoq8FD8v:{value:transition5},K8E6sc3ly:{value:transition2},nADp6UYqy:{value:transition3},riLAM7kHR:{value:transition2},rsRkZDIO1:{value:transition5},vuUGOcE1C:{value:transition3},WgCxoqowE:{value:transition2},yIDjZDNLR:{value:transition4},Z1hCNiwLT:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ditizz\",className,classNames),\"data-border\":true,\"data-framer-name\":\"1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YvYQou3EX\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.04)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 240, 179)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},variants:{E44ZYRrkH:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},mWljXAkPo:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},rsRkZDIO1:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},vuUGOcE1C:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},vvsur7enx:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},WgCxoqowE:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},yIDjZDNLR:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},Z1hCNiwLT:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},...addPropertyOverrides({ApN8CO2jI:{\"data-framer-name\":\"6\"},E44ZYRrkH:{\"data-framer-name\":\"1 mob\"},itoq8FD8v:{\"data-framer-name\":\"7\"},K8E6sc3ly:{\"data-framer-name\":\"3\"},mWljXAkPo:{\"data-framer-name\":\"2 mob\"},nADp6UYqy:{\"data-framer-name\":\"5\"},riLAM7kHR:{\"data-framer-name\":\"8\"},rsRkZDIO1:{\"data-framer-name\":\"7 mob\"},ufaWedUdN:{\"data-framer-name\":\"2\"},vuUGOcE1C:{\"data-framer-name\":\"5 mob\"},vvsur7enx:{\"data-framer-name\":\"4 mob\"},WgCxoqowE:{\"data-framer-name\":\"3 mob\"},yIDjZDNLR:{\"data-framer-name\":\"6 mob\"},Z1hCNiwLT:{\"data-framer-name\":\"8 mob\"},zC47cRGaB:{\"data-framer-name\":\"4\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)-444),pixelHeight:1776,pixelWidth:1960,sizes:\"490px\",...toResponsiveImage(Urf3peRq3)},className:\"framer-1iitl0g\",\"data-framer-appear-id\":\"1iitl0g\",\"data-framer-name\":\"9\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"LxmFK8WIh\",optimized:true,...addPropertyOverrides({E44ZYRrkH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)-268),pixelHeight:1776,pixelWidth:1960,sizes:\"304px\",...toResponsiveImage(Urf3peRq3)}},K8E6sc3ly:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)- -56),pixelHeight:1776,pixelWidth:1960,sizes:\"490px\",...toResponsiveImage(Urf3peRq3)}},mWljXAkPo:{animate:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)-268.5),pixelHeight:1776,pixelWidth:1960,sizes:\"304px\",...toResponsiveImage(Urf3peRq3)},initial:undefined,optimized:undefined},ufaWedUdN:{animate:undefined,initial:undefined,optimized:undefined},WgCxoqowE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)- -55.5),pixelHeight:1776,pixelWidth:1960,sizes:\"304px\",...toResponsiveImage(Urf3peRq3)}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,background:{alt:\"\",fit:\"fill\",intrinsicHeight:43.5,intrinsicWidth:154,pixelHeight:87,pixelWidth:308,src:\"https://framerusercontent.com/images/BwlPQv3HFaVvjRtNl7NnTNmWft8.png\"},className:\"framer-19vusdy\",\"data-framer-appear-id\":\"19vusdy\",\"data-framer-name\":\"Frame 1000006198\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"ZpRD6fgXy\",optimized:true,...addPropertyOverrides({K8E6sc3ly:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:43.5,intrinsicWidth:154,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)- -13.5),pixelHeight:87,pixelWidth:308,sizes:\"306px\",...toResponsiveImage(Zv0QFeP_x)}},mWljXAkPo:{animate:animation4,background:{alt:\"\",fit:\"fit\",intrinsicHeight:43.5,intrinsicWidth:154,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)-295),pixelHeight:344,pixelWidth:1230,sizes:\"190px\",...toResponsiveImage(Zv0QFeP_x),...{positionX:\"center\",positionY:\"center\"}}},ufaWedUdN:{animate:animation4,background:{alt:\"\",fit:\"fit\",intrinsicHeight:43.5,intrinsicWidth:154,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)-465.5),pixelHeight:344,pixelWidth:1230,sizes:\"306px\",...toResponsiveImage(Zv0QFeP_x),...{positionX:\"center\",positionY:\"center\"}}},WgCxoqowE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:43.5,intrinsicWidth:154,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)- -46.5),pixelHeight:87,pixelWidth:308,sizes:\"190px\",...toResponsiveImage(Zv0QFeP_x)}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:35.5,pixelHeight:71,pixelWidth:71,src:\"https://framerusercontent.com/images/L07De8OOPnORHPGMglqFRPZNpCQ.png\"},className:\"framer-1ugv8pl\",\"data-framer-name\":\"Pointer\",layoutDependency:layoutDependency,layoutId:\"MvXOYmTZb\",...addPropertyOverrides({ApN8CO2jI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:35.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)-227.5),pixelHeight:71,pixelWidth:71,src:\"https://framerusercontent.com/images/nQjG9ljUGgRsPd9a6RorxH5jdps.svg\"}},itoq8FD8v:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:35.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)-235.5),pixelHeight:71,pixelWidth:71,src:\"https://framerusercontent.com/images/nQjG9ljUGgRsPd9a6RorxH5jdps.svg\"}},nADp6UYqy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:35.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)-234.5),pixelHeight:71,pixelWidth:71,src:\"https://framerusercontent.com/images/nQjG9ljUGgRsPd9a6RorxH5jdps.svg\"}},riLAM7kHR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:35.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)- -262.5),pixelHeight:71,pixelWidth:71,src:\"https://framerusercontent.com/images/L07De8OOPnORHPGMglqFRPZNpCQ.png\"}},rsRkZDIO1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:35.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)-142.5),pixelHeight:71,pixelWidth:71,src:\"https://framerusercontent.com/images/nQjG9ljUGgRsPd9a6RorxH5jdps.svg\"}},vuUGOcE1C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:35.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)-142.6667),pixelHeight:71,pixelWidth:71,src:\"https://framerusercontent.com/images/nQjG9ljUGgRsPd9a6RorxH5jdps.svg\"}},vvsur7enx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:35.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)-133.5),pixelHeight:71,pixelWidth:71,src:\"https://framerusercontent.com/images/nQjG9ljUGgRsPd9a6RorxH5jdps.svg\"}},yIDjZDNLR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:35.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)-137.5),pixelHeight:71,pixelWidth:71,src:\"https://framerusercontent.com/images/nQjG9ljUGgRsPd9a6RorxH5jdps.svg\"}},Z1hCNiwLT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:35.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)- -275),pixelHeight:71,pixelWidth:71,src:\"https://framerusercontent.com/images/L07De8OOPnORHPGMglqFRPZNpCQ.png\"}},zC47cRGaB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:35.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)-133.5),pixelHeight:71,pixelWidth:71,src:\"https://framerusercontent.com/images/nQjG9ljUGgRsPd9a6RorxH5jdps.svg\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,pixelHeight:444,pixelWidth:490,src:\"https://framerusercontent.com/images/tAnbE31IBJx3dZL5prtFbYoOE60.png\"},className:\"framer-1qp7ovy\",\"data-framer-appear-id\":\"1qp7ovy\",\"data-framer-name\":\"10\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"ADEgyNkYK\",optimized:true,...addPropertyOverrides({ApN8CO2jI:{animate:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)-417),pixelHeight:1776,pixelWidth:1960,sizes:\"460px\",...toResponsiveImage(sJCJo6GhR)},initial:undefined,optimized:undefined},itoq8FD8v:{animate:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)-444),pixelHeight:1776,pixelWidth:1960,sizes:\"490px\",...toResponsiveImage(sJCJo6GhR)},initial:undefined,optimized:undefined},nADp6UYqy:{animate:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)-444),pixelHeight:1776,pixelWidth:1960,sizes:\"490px\",...toResponsiveImage(VUjqF0OcD)},initial:undefined,optimized:undefined},riLAM7kHR:{animate:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)- -31),pixelHeight:1776,pixelWidth:1960,sizes:\"490px\",...toResponsiveImage(sJCJo6GhR)},initial:undefined,optimized:undefined},rsRkZDIO1:{animate:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)-355.5),pixelHeight:1776,pixelWidth:1960,sizes:\"304px\",...toResponsiveImage(sJCJo6GhR)},initial:undefined,optimized:undefined},vuUGOcE1C:{animate:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)-268.5),pixelHeight:1776,pixelWidth:1960,sizes:\"304px\",...toResponsiveImage(VUjqF0OcD)},initial:undefined,optimized:undefined},vvsur7enx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)-268.5),pixelHeight:1776,pixelWidth:1960,sizes:\"304px\",...toResponsiveImage(VUjqF0OcD)}},yIDjZDNLR:{animate:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)-256),pixelHeight:1776,pixelWidth:1960,sizes:\"290px\",...toResponsiveImage(sJCJo6GhR)},initial:undefined,optimized:undefined},Z1hCNiwLT:{animate:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||331)- -34.5),pixelHeight:444,pixelWidth:490,sizes:\"304px\",...toResponsiveImage(sJCJo6GhR)},initial:undefined,optimized:undefined},zC47cRGaB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:245,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)-444),pixelHeight:1776,pixelWidth:1960,sizes:\"490px\",...toResponsiveImage(VUjqF0OcD)}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9d1HE.framer-gc5lcy, .framer-9d1HE .framer-gc5lcy { display: block; }\",\".framer-9d1HE.framer-1ditizz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 579px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 560px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9d1HE .framer-1iitl0g, .framer-9d1HE .framer-1qp7ovy { aspect-ratio: 1.1036036036036037 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 444px); overflow: visible; position: absolute; right: -16px; width: 490px; z-index: 1; }\",\".framer-9d1HE .framer-19vusdy { aspect-ratio: 3.5402298850574714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 86px); left: 50px; overflow: visible; position: absolute; top: 92px; width: 306px; z-index: 1; }\",\".framer-9d1HE .framer-1ugv8pl { aspect-ratio: 1 / 1; bottom: 63px; flex: none; height: var(--framer-aspect-ratio-supported, 71px); overflow: visible; position: absolute; right: -82px; width: 71px; z-index: 1; }\",\".framer-9d1HE.framer-v-btgjzh .framer-19vusdy { bottom: 379px; height: var(--framer-aspect-ratio-supported, 87px); top: unset; }\",\".framer-9d1HE.framer-v-1i9e61u .framer-1iitl0g { bottom: -500px; }\",\".framer-9d1HE.framer-v-1i9e61u .framer-19vusdy { bottom: -99px; height: var(--framer-aspect-ratio-supported, 87px); top: unset; }\",\".framer-9d1HE.framer-v-yigewt .framer-1ugv8pl { bottom: 164px; order: 1; right: 120px; z-index: 2; }\",\".framer-9d1HE.framer-v-yigewt .framer-1qp7ovy, .framer-9d1HE.framer-v-rqtud4 .framer-1qp7ovy { order: 0; }\",\".framer-9d1HE.framer-v-1tx29vn .framer-1ugv8pl { bottom: 171px; height: var(--framer-aspect-ratio-supported, 57px); order: 3; right: 134px; width: 57px; z-index: 2; }\",\".framer-9d1HE.framer-v-1tx29vn .framer-1qp7ovy { height: var(--framer-aspect-ratio-supported, 417px); order: 0; width: 460px; }\",\".framer-9d1HE.framer-v-rqtud4 .framer-1ugv8pl { bottom: 165px; height: var(--framer-aspect-ratio-supported, 70px); order: 3; right: 121px; width: 70px; z-index: 2; }\",\".framer-9d1HE.framer-v-44wnfp .framer-1ugv8pl { bottom: -333px; height: var(--framer-aspect-ratio-supported, 70px); order: 3; right: 121px; width: 70px; z-index: 2; }\",\".framer-9d1HE.framer-v-44wnfp .framer-1qp7ovy { bottom: -475px; order: 2; }\",\".framer-9d1HE.framer-v-hav4im.framer-1ditizz, .framer-9d1HE.framer-v-1u1kod1.framer-1ditizz, .framer-9d1HE.framer-v-1e323xo.framer-1ditizz, .framer-9d1HE.framer-v-1okre9c.framer-1ditizz { height: 331px; width: 320px; }\",\".framer-9d1HE.framer-v-hav4im .framer-1iitl0g, .framer-9d1HE.framer-v-1u1kod1 .framer-1iitl0g, .framer-9d1HE.framer-v-1olpj8a .framer-1qp7ovy { bottom: -7px; height: var(--framer-aspect-ratio-supported, 276px); right: -8px; width: 304px; }\",\".framer-9d1HE.framer-v-1u1kod1 .framer-19vusdy { bottom: 242px; height: var(--framer-aspect-ratio-supported, 54px); left: unset; right: 94px; top: unset; width: 190px; }\",\".framer-9d1HE.framer-v-1xxuqzr.framer-1ditizz, .framer-9d1HE.framer-v-1czystu.framer-1ditizz, .framer-9d1HE.framer-v-1hcyiob.framer-1ditizz { height: 331px; width: 319px; }\",\".framer-9d1HE.framer-v-1xxuqzr .framer-1iitl0g { bottom: -331px; height: var(--framer-aspect-ratio-supported, 276px); right: 0px; width: 304px; }\",\".framer-9d1HE.framer-v-1xxuqzr .framer-19vusdy { bottom: -100px; height: var(--framer-aspect-ratio-supported, 54px); left: unset; right: 94px; top: unset; width: 190px; }\",\".framer-9d1HE.framer-v-1olpj8a.framer-1ditizz { height: 331px; width: 321px; }\",\".framer-9d1HE.framer-v-1czystu .framer-1ugv8pl { bottom: 84px; height: var(--framer-aspect-ratio-supported, 59px); order: 1; right: 73px; width: 59px; z-index: 2; }\",\".framer-9d1HE.framer-v-1czystu .framer-1qp7ovy, .framer-9d1HE.framer-v-1e323xo .framer-1qp7ovy { bottom: -7px; height: var(--framer-aspect-ratio-supported, 276px); order: 0; right: -8px; width: 304px; }\",\".framer-9d1HE.framer-v-1hcyiob .framer-1ugv8pl { bottom: 90px; height: var(--framer-aspect-ratio-supported, 48px); order: 3; right: 76px; width: 47px; z-index: 2; }\",\".framer-9d1HE.framer-v-1hcyiob .framer-1qp7ovy { bottom: -7px; height: var(--framer-aspect-ratio-supported, 263px); order: 0; right: -8px; width: 290px; }\",\".framer-9d1HE.framer-v-1e323xo .framer-1ugv8pl { bottom: 84px; height: var(--framer-aspect-ratio-supported, 59px); order: 3; right: 73px; width: 59px; z-index: 2; }\",\".framer-9d1HE.framer-v-1okre9c .framer-1ugv8pl { bottom: -333px; height: var(--framer-aspect-ratio-supported, 59px); order: 3; right: 73px; width: 59px; z-index: 2; }\",\".framer-9d1HE.framer-v-1okre9c .framer-1qp7ovy { bottom: -310px; height: var(--framer-aspect-ratio-supported, 276px); order: 2; right: -8px; width: 304px; }\",'.framer-9d1HE[data-border=\"true\"]::after, .framer-9d1HE [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 579\n * @framerIntrinsicWidth 560\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ufaWedUdN\":{\"layout\":[\"fixed\",\"fixed\"]},\"K8E6sc3ly\":{\"layout\":[\"fixed\",\"fixed\"]},\"zC47cRGaB\":{\"layout\":[\"fixed\",\"fixed\"]},\"nADp6UYqy\":{\"layout\":[\"fixed\",\"fixed\"]},\"ApN8CO2jI\":{\"layout\":[\"fixed\",\"fixed\"]},\"itoq8FD8v\":{\"layout\":[\"fixed\",\"fixed\"]},\"riLAM7kHR\":{\"layout\":[\"fixed\",\"fixed\"]},\"E44ZYRrkH\":{\"layout\":[\"fixed\",\"fixed\"]},\"mWljXAkPo\":{\"layout\":[\"fixed\",\"fixed\"]},\"WgCxoqowE\":{\"layout\":[\"fixed\",\"fixed\"]},\"vvsur7enx\":{\"layout\":[\"fixed\",\"fixed\"]},\"vuUGOcE1C\":{\"layout\":[\"fixed\",\"fixed\"]},\"yIDjZDNLR\":{\"layout\":[\"fixed\",\"fixed\"]},\"rsRkZDIO1\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z1hCNiwLT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Urf3peRq3\":\"gif1AugustBoard\",\"VUjqF0OcD\":\"gif1AccountingBoard\",\"sJCJo6GhR\":\"gif1AccountingActiveBoard\",\"Zv0QFeP_x\":\"gif1Message\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerAoTHhKeo5=withCSS(Component,css,\"framer-9d1HE\");export default FramerAoTHhKeo5;FramerAoTHhKeo5.displayName=\"1\";FramerAoTHhKeo5.defaultProps={height:579,width:560};addPropertyControls(FramerAoTHhKeo5,{variant:{options:[\"YvYQou3EX\",\"ufaWedUdN\",\"K8E6sc3ly\",\"zC47cRGaB\",\"nADp6UYqy\",\"ApN8CO2jI\",\"itoq8FD8v\",\"riLAM7kHR\",\"E44ZYRrkH\",\"mWljXAkPo\",\"WgCxoqowE\",\"vvsur7enx\",\"vuUGOcE1C\",\"yIDjZDNLR\",\"rsRkZDIO1\",\"Z1hCNiwLT\"],optionTitles:[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"1 mob\",\"2 mob\",\"3 mob\",\"4 mob\",\"5 mob\",\"6 mob\",\"7 mob\",\"8 mob\"],title:\"Variant\",type:ControlType.Enum},Urf3peRq3:{__defaultAssetReference:\"data:framer/asset-reference,yDeWwjKhGRkS4z8C2BKBXfr6Qg.png?originalFilename=9+%281%29.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,yDeWwjKhGRkS4z8C2BKBXfr6Qg.png?originalFilename=9+%281%29.png&preferredSize=auto\"},title:\"Gif 1 / August board\",type:ControlType.ResponsiveImage},VUjqF0OcD:{__defaultAssetReference:\"data:framer/asset-reference,RGPmIWHriIvorm1RcAlMblfH7iI.png?originalFilename=12+%281%29.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,RGPmIWHriIvorm1RcAlMblfH7iI.png?originalFilename=12+%281%29.png&preferredSize=auto\"},title:\"Gif 1 / Accounting board\",type:ControlType.ResponsiveImage},sJCJo6GhR:{__defaultAssetReference:\"data:framer/asset-reference,oRuAhuFMttahqo60ISNfKnNKCYA.png?originalFilename=11+%281%29.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,oRuAhuFMttahqo60ISNfKnNKCYA.png?originalFilename=11+%281%29.png&preferredSize=auto\"},title:\"Gif 1 / Accounting active board\",type:ControlType.ResponsiveImage},Zv0QFeP_x:{__defaultAssetReference:\"data:framer/asset-reference,260PqW1bAIVJREj4dWDGCEqoayc.png?originalFilename=Frame+1000006198+%281%29.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,260PqW1bAIVJREj4dWDGCEqoayc.png?originalFilename=Frame+1000006198+%281%29.png&preferredSize=auto\"},title:\"Gif 1 / Message\",type:ControlType.ResponsiveImage}});addFonts(FramerAoTHhKeo5,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAoTHhKeo5\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"Urf3peRq3\\\":\\\"gif1AugustBoard\\\",\\\"VUjqF0OcD\\\":\\\"gif1AccountingBoard\\\",\\\"sJCJo6GhR\\\":\\\"gif1AccountingActiveBoard\\\",\\\"Zv0QFeP_x\\\":\\\"gif1Message\\\"}\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ufaWedUdN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"K8E6sc3ly\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zC47cRGaB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nADp6UYqy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ApN8CO2jI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"itoq8FD8v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"riLAM7kHR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"E44ZYRrkH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mWljXAkPo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WgCxoqowE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vvsur7enx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vuUGOcE1C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yIDjZDNLR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rsRkZDIO1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z1hCNiwLT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"579\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AoTHhKeo5.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const ImageWithFX=withFX(Image);const cycleOrder=[\"tjan0kAuK\",\"BmtqQwIXa\",\"Yl88lJpzg\",\"sY3gwm6Mp\",\"xRiXsfYyQ\",\"sHTcT6Gqe\"];const serializationHash=\"framer-9xwsH\";const variantClassNames={BmtqQwIXa:\"framer-v-1vnkctz\",sHTcT6Gqe:\"framer-v-a4o587\",sY3gwm6Mp:\"framer-v-1ssiefy\",tjan0kAuK:\"framer-v-1swgocv\",xRiXsfYyQ:\"framer-v-qqoos\",Yl88lJpzg:\"framer-v-bbuj0e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.8,type:\"spring\"};const transition2={bounce:0,delay:0,duration:3.7,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 transition3={delay:0,duration:2,ease:[.09,.19,.61,.99],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-650};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-350};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={\"1 mob\":\"sY3gwm6Mp\",\"1\":\"tjan0kAuK\",\"2 mob\":\"xRiXsfYyQ\",\"2\":\"BmtqQwIXa\",\"3 mob\":\"sHTcT6Gqe\",\"3\":\"Yl88lJpzg\"};const getProps=({gif3ScrollPage,height,id,width,...props})=>{return{...props,Scg7Li1sv:gif3ScrollPage??props.Scg7Li1sv??{alt:\"\",pixelHeight:3740,pixelWidth:1384,src:\"https://framerusercontent.com/images/CI2q0foYou6Lmj8Ru6bWk36Bw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/CI2q0foYou6Lmj8Ru6bWk36Bw.png?scale-down-to=2048 757w,https://framerusercontent.com/images/CI2q0foYou6Lmj8Ru6bWk36Bw.png 1384w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"tjan0kAuK\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Scg7Li1sv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tjan0kAuK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear113g0sx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"BmtqQwIXa\",true),500);});const onAppearfzp69x=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Yl88lJpzg\",true),1e3);});const onAppear1e16j6w=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"tjan0kAuK\",true),5e3);});const onAppearsae7l0=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xRiXsfYyQ\",true),800);});const onAppearm9wl8z=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"sHTcT6Gqe\",true),1e3);});const onAppear1m2utdn=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"sY3gwm6Mp\",true),5e3);});useOnVariantChange(baseVariant,{BmtqQwIXa:onAppearfzp69x,default:onAppear113g0sx,sHTcT6Gqe:onAppear1m2utdn,sY3gwm6Mp:onAppearsae7l0,xRiXsfYyQ:onAppearm9wl8z,Yl88lJpzg:onAppear1e16j6w});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({sHTcT6Gqe:{value:transition2},Yl88lJpzg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1swgocv\",className,classNames),\"data-border\":true,\"data-framer-name\":\"1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tjan0kAuK\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.04)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(223, 221, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},variants:{sHTcT6Gqe:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},sY3gwm6Mp:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},xRiXsfYyQ:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},...addPropertyOverrides({BmtqQwIXa:{\"data-framer-name\":\"2\"},sHTcT6Gqe:{\"data-framer-name\":\"3 mob\"},sY3gwm6Mp:{\"data-framer-name\":\"1 mob\"},xRiXsfYyQ:{\"data-framer-name\":\"2 mob\"},Yl88lJpzg:{\"data-framer-name\":\"3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1quiqev\",layoutDependency:layoutDependency,layoutId:\"YQ6FFa21e\",style:{backgroundColor:\"rgb(223, 221, 255)\"}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:467.5,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+623),pixelHeight:3740,pixelWidth:1384,sizes:\"460px\",...toResponsiveImage(Scg7Li1sv),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-7cv7jp\",\"data-framer-name\":\"Page\",layoutDependency:layoutDependency,layoutId:\"Vg7kZFNHu\",transformTemplate:transformTemplate1,...addPropertyOverrides({BmtqQwIXa:{__framer__loopEffectEnabled:undefined,background:{alt:\"\",fit:\"fit\",intrinsicHeight:467.5,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+77),pixelHeight:3740,pixelWidth:1384,sizes:\"460px\",...toResponsiveImage(Scg7Li1sv),...{positionX:\"center\",positionY:\"center\"}}},sHTcT6Gqe:{__framer__loop:animation1,__framer__loopRepeatDelay:.8,background:{alt:\"\",fit:\"fit\",intrinsicHeight:467.5,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+57),pixelHeight:3740,pixelWidth:1384,sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(Scg7Li1sv),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined},sY3gwm6Mp:{__framer__loop:animation1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:467.5,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+404),pixelHeight:3740,pixelWidth:1384,sizes:\"256px\",...toResponsiveImage(Scg7Li1sv),...{positionX:\"center\",positionY:\"center\"}}},xRiXsfYyQ:{__framer__loopEffectEnabled:undefined,background:{alt:\"\",fit:\"fit\",intrinsicHeight:467.5,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+58),pixelHeight:3740,pixelWidth:1384,sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(Scg7Li1sv),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined},Yl88lJpzg:{__framer__loopRepeatDelay:.8,background:{alt:\"\",fit:\"fit\",intrinsicHeight:467.5,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+77),pixelHeight:3740,pixelWidth:1384,sizes:\"460px\",...toResponsiveImage(Scg7Li1sv),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||579)- -26.4093),pixelHeight:48,pixelWidth:346,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cQcBzpL49OIOerpuBWj08G5X30.svg\"},className:\"framer-uiingp\",\"data-framer-name\":\"Nav header\",layoutDependency:layoutDependency,layoutId:\"zG6luTtdO\",transformTemplate:transformTemplate1,...addPropertyOverrides({BmtqQwIXa:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+59),pixelHeight:48,pixelWidth:346,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cQcBzpL49OIOerpuBWj08G5X30.svg\"}},sHTcT6Gqe:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+39),pixelHeight:48,pixelWidth:346,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cQcBzpL49OIOerpuBWj08G5X30.svg\"},transformTemplate:undefined},sY3gwm6Mp:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+394),pixelHeight:48,pixelWidth:346,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cQcBzpL49OIOerpuBWj08G5X30.svg\"}},xRiXsfYyQ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+39),pixelHeight:48,pixelWidth:346,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cQcBzpL49OIOerpuBWj08G5X30.svg\"},transformTemplate:undefined},Yl88lJpzg:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:173,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+59),pixelHeight:48,pixelWidth:346,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cQcBzpL49OIOerpuBWj08G5X30.svg\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9xwsH.framer-1m53lv, .framer-9xwsH .framer-1m53lv { display: block; }\",\".framer-9xwsH.framer-1swgocv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 579px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 560px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9xwsH .framer-1quiqev { flex: none; height: 208px; left: -56px; overflow: hidden; position: absolute; right: -57px; top: -99px; z-index: 2; }\",\".framer-9xwsH .framer-7cv7jp { aspect-ratio: 0.3700534759358289 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1243px); left: 50%; overflow: visible; position: absolute; top: 623px; width: 460px; z-index: 1; }\",\".framer-9xwsH .framer-uiingp { aspect-ratio: 7.208333333333333 / 1; bottom: -90px; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 50%; overflow: visible; position: absolute; width: 460px; z-index: 3; }\",\".framer-9xwsH.framer-v-1vnkctz .framer-7cv7jp, .framer-9xwsH.framer-v-bbuj0e .framer-7cv7jp { top: 77px; }\",\".framer-9xwsH.framer-v-1vnkctz .framer-uiingp, .framer-9xwsH.framer-v-bbuj0e .framer-uiingp { bottom: unset; top: 59px; }\",\".framer-9xwsH.framer-v-1ssiefy.framer-1swgocv, .framer-9xwsH.framer-v-qqoos.framer-1swgocv, .framer-9xwsH.framer-v-a4o587.framer-1swgocv { height: 331px; width: 320px; }\",\".framer-9xwsH.framer-v-1ssiefy .framer-1quiqev { top: -115px; }\",\".framer-9xwsH.framer-v-1ssiefy .framer-7cv7jp { height: var(--framer-aspect-ratio-supported, 692px); top: 404px; width: 256px; }\",\".framer-9xwsH.framer-v-1ssiefy .framer-uiingp { bottom: unset; height: var(--framer-aspect-ratio-supported, 36px); top: 394px; width: 256px; }\",\".framer-9xwsH.framer-v-qqoos .framer-1quiqev { left: -57px; right: -56px; top: -135px; }\",\".framer-9xwsH.framer-v-qqoos .framer-7cv7jp { height: var(--framer-aspect-ratio-supported, 692px); left: 32px; right: 32px; top: 58px; width: unset; }\",\".framer-9xwsH.framer-v-qqoos .framer-uiingp, .framer-9xwsH.framer-v-a4o587 .framer-uiingp { bottom: unset; height: var(--framer-aspect-ratio-supported, 36px); left: 32px; right: 32px; top: 39px; width: unset; }\",\".framer-9xwsH.framer-v-a4o587 .framer-1quiqev { top: -135px; }\",\".framer-9xwsH.framer-v-a4o587 .framer-7cv7jp { height: var(--framer-aspect-ratio-supported, 692px); left: 32px; right: 32px; top: 57px; width: unset; }\",'.framer-9xwsH[data-border=\"true\"]::after, .framer-9xwsH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 579\n * @framerIntrinsicWidth 560\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BmtqQwIXa\":{\"layout\":[\"fixed\",\"fixed\"]},\"Yl88lJpzg\":{\"layout\":[\"fixed\",\"fixed\"]},\"sY3gwm6Mp\":{\"layout\":[\"fixed\",\"fixed\"]},\"xRiXsfYyQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"sHTcT6Gqe\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Scg7Li1sv\":\"gif3ScrollPage\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerD7SwoOSR4=withCSS(Component,css,\"framer-9xwsH\");export default FramerD7SwoOSR4;FramerD7SwoOSR4.displayName=\"3\";FramerD7SwoOSR4.defaultProps={height:579,width:560};addPropertyControls(FramerD7SwoOSR4,{variant:{options:[\"tjan0kAuK\",\"BmtqQwIXa\",\"Yl88lJpzg\",\"sY3gwm6Mp\",\"xRiXsfYyQ\",\"sHTcT6Gqe\"],optionTitles:[\"1\",\"2\",\"3\",\"1 mob\",\"2 mob\",\"3 mob\"],title:\"Variant\",type:ControlType.Enum},Scg7Li1sv:{__defaultAssetReference:\"data:framer/asset-reference,CI2q0foYou6Lmj8Ru6bWk36Bw.png?originalFilename=page+%281%29.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,CI2q0foYou6Lmj8Ru6bWk36Bw.png?originalFilename=page+%281%29.png&preferredSize=auto\"},title:\"Gif 3 / Scroll page\",type:ControlType.ResponsiveImage}});addFonts(FramerD7SwoOSR4,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerD7SwoOSR4\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BmtqQwIXa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Yl88lJpzg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sY3gwm6Mp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xRiXsfYyQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sHTcT6Gqe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"560\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"579\",\"framerVariables\":\"{\\\"Scg7Li1sv\\\":\\\"gif3ScrollPage\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./D7SwoOSR4.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const cycleOrder=[\"RqA0jEcBL\",\"Hh46xl22g\",\"eCOuApfmx\",\"Kvg7zU81Y\",\"dpRP9bdSM\",\"I9V9nA0go\",\"VLZw5GX_F\",\"ISR_q1wy3\"];const serializationHash=\"framer-wT8nH\";const variantClassNames={dpRP9bdSM:\"framer-v-p470hd\",eCOuApfmx:\"framer-v-1snir35\",Hh46xl22g:\"framer-v-1wkg94l\",I9V9nA0go:\"framer-v-1ato28a\",ISR_q1wy3:\"framer-v-104gf0k\",Kvg7zU81Y:\"framer-v-1v63wwp\",RqA0jEcBL:\"framer-v-8xq46x\",VLZw5GX_F:\"framer-v-1s2qov6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:1.2,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};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={\"1 mob\":\"dpRP9bdSM\",\"1\":\"RqA0jEcBL\",\"2 mob\":\"I9V9nA0go\",\"2\":\"Hh46xl22g\",\"3 mob\":\"VLZw5GX_F\",\"3\":\"eCOuApfmx\",\"4 mob\":\"ISR_q1wy3\",\"4\":\"Kvg7zU81Y\"};const getProps=({gif2Message1,gif2Message2,gif2Message3,height,id,width,...props})=>{return{...props,C6Wq2Ge0W:gif2Message3??props.C6Wq2Ge0W??{alt:\"\",pixelHeight:416,pixelWidth:1742,src:\"https://framerusercontent.com/images/ToJ16do1INTVWPpyivkYZGKis.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ToJ16do1INTVWPpyivkYZGKis.png?scale-down-to=512 512w,https://framerusercontent.com/images/ToJ16do1INTVWPpyivkYZGKis.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ToJ16do1INTVWPpyivkYZGKis.png 1742w\"},Md4PnYKdx:gif2Message1??props.Md4PnYKdx??{alt:\"\",pixelHeight:236,pixelWidth:1742,src:\"https://framerusercontent.com/images/LmrCat7gSlyGtzdytTHzBnDVkw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LmrCat7gSlyGtzdytTHzBnDVkw.png?scale-down-to=512 512w,https://framerusercontent.com/images/LmrCat7gSlyGtzdytTHzBnDVkw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LmrCat7gSlyGtzdytTHzBnDVkw.png 1742w\"},nYeTFnU8h:gif2Message2??props.nYeTFnU8h??{alt:\"\",pixelHeight:236,pixelWidth:945,src:\"https://framerusercontent.com/images/mWRNeyN6U5ZnWpLvHWACLdzYwI.png\",srcSet:\"https://framerusercontent.com/images/mWRNeyN6U5ZnWpLvHWACLdzYwI.png?scale-down-to=512 512w,https://framerusercontent.com/images/mWRNeyN6U5ZnWpLvHWACLdzYwI.png 945w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"RqA0jEcBL\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Md4PnYKdx,nYeTFnU8h,C6Wq2Ge0W,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RqA0jEcBL\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1cq9n05=activeVariantCallback(async(...args)=>{setVariant(\"Hh46xl22g\",true);});const onAppear7p0fhz=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"eCOuApfmx\",true),1e3);});const onAppear120dnnl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Kvg7zU81Y\",true),1e3);});const onAppear1pn56wr=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"RqA0jEcBL\",true),3e3);});const onAppear1ykc11j=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"I9V9nA0go\",true),500);});const onAppear1nrf4gs=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VLZw5GX_F\",true),1e3);});const onAppear17fcrx7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ISR_q1wy3\",true),1e3);});const onAppearcubxub=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"dpRP9bdSM\",true),3e3);});useOnVariantChange(baseVariant,{default:onAppear1cq9n05,dpRP9bdSM:onAppear1ykc11j,eCOuApfmx:onAppear120dnnl,Hh46xl22g:onAppear7p0fhz,I9V9nA0go:onAppear1nrf4gs,ISR_q1wy3:onAppearcubxub,Kvg7zU81Y:onAppear1pn56wr,VLZw5GX_F:onAppear17fcrx7});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Hh46xl22g\",\"eCOuApfmx\",\"Kvg7zU81Y\",\"I9V9nA0go\",\"VLZw5GX_F\",\"ISR_q1wy3\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"eCOuApfmx\",\"Kvg7zU81Y\",\"VLZw5GX_F\",\"ISR_q1wy3\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"Kvg7zU81Y\",\"ISR_q1wy3\"].includes(baseVariant))return true;return false;};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-8xq46x\",className,classNames),\"data-border\":true,\"data-framer-name\":\"1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RqA0jEcBL\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.04)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(229, 255, 222)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},...addPropertyOverrides({dpRP9bdSM:{\"data-framer-name\":\"1 mob\"},eCOuApfmx:{\"data-framer-name\":\"3\"},Hh46xl22g:{\"data-framer-name\":\"2\"},I9V9nA0go:{\"data-framer-name\":\"2 mob\"},ISR_q1wy3:{\"data-framer-name\":\"4 mob\"},Kvg7zU81Y:{\"data-framer-name\":\"4\"},VLZw5GX_F:{\"data-framer-name\":\"3 mob\"}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-764zlj\",layoutDependency:layoutDependency,layoutId:\"Fy4Fr06yQ\",transformTemplate:transformTemplate1,...addPropertyOverrides({I9V9nA0go:{transformTemplate:undefined},ISR_q1wy3:{transformTemplate:undefined},VLZw5GX_F:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:218,pixelHeight:236,pixelWidth:1742,...toResponsiveImage(Md4PnYKdx),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-8aovxy\",\"data-framer-appear-id\":\"8aovxy\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"K0A5Mm1ao\",...addPropertyOverrides({eCOuApfmx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:218,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||579)*.4991364421416237-76)+0+0),pixelHeight:236,pixelWidth:1742,sizes:\"458px\",...toResponsiveImage(Md4PnYKdx),...{positionX:\"center\",positionY:\"center\"}}},Hh46xl22g:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:218,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||579)*.4991364421416237-31.5)+0+0),pixelHeight:236,pixelWidth:1742,sizes:\"458px\",...toResponsiveImage(Md4PnYKdx),...{positionX:\"center\",positionY:\"center\"}},initial:animation1,optimized:true},I9V9nA0go:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:218,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||330)-80-37)/2+0+0)+0+0),pixelHeight:236,pixelWidth:1742,sizes:\"272px\",...toResponsiveImage(Md4PnYKdx),...{positionX:\"center\",positionY:\"center\"}},initial:animation1,optimized:true},ISR_q1wy3:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:218,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+(((componentViewport?.height||330)-100-168.2766)/2+0+0)+0+0),pixelHeight:236,pixelWidth:1742,sizes:\"271px\",...toResponsiveImage(Md4PnYKdx),...{positionX:\"center\",positionY:\"center\"}}},Kvg7zU81Y:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:218,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||579)*.4991364421416237-144)+0+0),pixelHeight:236,pixelWidth:1742,sizes:\"458px\",...toResponsiveImage(Md4PnYKdx),...{positionX:\"center\",positionY:\"center\"}}},VLZw5GX_F:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:218,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+(((componentViewport?.height||330)-100-86.8844)/2+0+0)+0+0),pixelHeight:236,pixelWidth:1742,sizes:\"273px\",...toResponsiveImage(Md4PnYKdx),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:118.5,pixelHeight:236,pixelWidth:945,...toResponsiveImage(nYeTFnU8h),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1l6xnzn\",\"data-framer-appear-id\":\"1l6xnzn\",\"data-framer-name\":\"2\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"DfqyYKG_0\",optimized:true,...addPropertyOverrides({eCOuApfmx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:118.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||579)*.4991364421416237-76)+0+88.5),pixelHeight:236,pixelWidth:945,sizes:\"250.5px\",...toResponsiveImage(nYeTFnU8h),...{positionX:\"center\",positionY:\"center\"}},initial:animation1},ISR_q1wy3:{animate:undefined,background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:118.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+(((componentViewport?.height||330)-100-168.2766)/2+0+0)+0+53.1003),pixelHeight:236,pixelWidth:945,sizes:\"149px\",...toResponsiveImage(nYeTFnU8h),...{positionX:\"center\",positionY:\"center\"}},initial:undefined,optimized:undefined},Kvg7zU81Y:{animate:undefined,background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:118.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||579)*.4991364421416237-144)+0+88.5),pixelHeight:236,pixelWidth:945,sizes:\"250.5px\",...toResponsiveImage(nYeTFnU8h),...{positionX:\"center\",positionY:\"center\"}},initial:undefined,optimized:undefined},VLZw5GX_F:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:118.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+(((componentViewport?.height||330)-100-86.8844)/2+0+0)+0+53.1908),pixelHeight:236,pixelWidth:945,sizes:\"148.9606px\",...toResponsiveImage(nYeTFnU8h),...{positionX:\"center\",positionY:\"center\"}},initial:animation1}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:52.5,intrinsicWidth:218,pixelHeight:416,pixelWidth:1742,...toResponsiveImage(C6Wq2Ge0W),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-bjm1xs\",\"data-framer-appear-id\":\"bjm1xs\",\"data-framer-name\":\"3\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"MHVsrNQHJ\",optimized:true,...addPropertyOverrides({ISR_q1wy3:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:52.5,intrinsicWidth:218,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+(((componentViewport?.height||330)-100-168.2766)/2+0+0)+0+110.1003),pixelHeight:416,pixelWidth:1742,sizes:\"269.8755px\",...toResponsiveImage(C6Wq2Ge0W),...{positionX:\"center\",positionY:\"center\"}}},Kvg7zU81Y:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:52.5,intrinsicWidth:218,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||579)*.4991364421416237-144)+0+177),pixelHeight:416,pixelWidth:1742,sizes:\"461px\",...toResponsiveImage(C6Wq2Ge0W),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wT8nH.framer-1xmgu1t, .framer-wT8nH .framer-1xmgu1t { display: block; }\",\".framer-wT8nH.framer-8xq46x { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: 579px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 560px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wT8nH .framer-764zlj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; left: 40px; min-height: 287px; overflow: visible; padding: 0px; position: absolute; right: 40px; top: 50%; z-index: 1; }\",\".framer-wT8nH .framer-8aovxy { aspect-ratio: 7.266666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); overflow: visible; position: relative; width: 458px; z-index: 1; }\",\".framer-wT8nH .framer-1l6xnzn { aspect-ratio: 3.95 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); overflow: visible; position: relative; width: 249px; z-index: 1; }\",\".framer-wT8nH .framer-bjm1xs { aspect-ratio: 4.152380952380953 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 111px); overflow: visible; position: relative; width: 461px; z-index: 1; }\",\".framer-wT8nH.framer-v-1wkg94l.framer-8xq46x { align-content: center; align-items: center; }\",\".framer-wT8nH.framer-v-1wkg94l .framer-764zlj { min-height: unset; order: 0; }\",\".framer-wT8nH.framer-v-1snir35.framer-8xq46x, .framer-wT8nH.framer-v-1v63wwp.framer-8xq46x { padding: 50px; }\",\".framer-wT8nH.framer-v-1snir35 .framer-764zlj, .framer-wT8nH.framer-v-1v63wwp .framer-764zlj { min-height: unset; }\",\".framer-wT8nH.framer-v-1snir35 .framer-1l6xnzn, .framer-wT8nH.framer-v-1v63wwp .framer-1l6xnzn { height: var(--framer-aspect-ratio-supported, 64px); width: 251px; }\",\".framer-wT8nH.framer-v-p470hd.framer-8xq46x { height: 330px; width: 320px; }\",\".framer-wT8nH.framer-v-1ato28a.framer-8xq46x { align-content: center; align-items: center; height: 330px; width: 320px; }\",\".framer-wT8nH.framer-v-1ato28a .framer-764zlj { left: unset; min-height: unset; order: 0; position: relative; right: unset; top: unset; width: 272px; }\",\".framer-wT8nH.framer-v-1ato28a .framer-8aovxy { height: var(--framer-aspect-ratio-supported, 37px); width: 272px; }\",\".framer-wT8nH.framer-v-1s2qov6.framer-8xq46x, .framer-wT8nH.framer-v-104gf0k.framer-8xq46x { align-content: center; align-items: center; height: 330px; padding: 50px; width: 320px; }\",\".framer-wT8nH.framer-v-1s2qov6 .framer-764zlj, .framer-wT8nH.framer-v-104gf0k .framer-764zlj { gap: 20px; left: unset; min-height: unset; position: relative; right: unset; top: unset; width: 272px; }\",\".framer-wT8nH.framer-v-1s2qov6 .framer-8aovxy { height: var(--framer-aspect-ratio-supported, 38px); width: 273px; }\",\".framer-wT8nH.framer-v-1s2qov6 .framer-1l6xnzn, .framer-wT8nH.framer-v-104gf0k .framer-1l6xnzn { height: var(--framer-aspect-ratio-supported, 38px); width: 149px; }\",\".framer-wT8nH.framer-v-104gf0k .framer-8aovxy { height: var(--framer-aspect-ratio-supported, 38px); width: 271px; }\",\".framer-wT8nH.framer-v-104gf0k .framer-bjm1xs { height: var(--framer-aspect-ratio-supported, 65px); width: 270px; }\",'.framer-wT8nH[data-border=\"true\"]::after, .framer-wT8nH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 579\n * @framerIntrinsicWidth 560\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Hh46xl22g\":{\"layout\":[\"fixed\",\"fixed\"]},\"eCOuApfmx\":{\"layout\":[\"fixed\",\"fixed\"]},\"Kvg7zU81Y\":{\"layout\":[\"fixed\",\"fixed\"]},\"dpRP9bdSM\":{\"layout\":[\"fixed\",\"fixed\"]},\"I9V9nA0go\":{\"layout\":[\"fixed\",\"fixed\"]},\"VLZw5GX_F\":{\"layout\":[\"fixed\",\"fixed\"]},\"ISR_q1wy3\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Md4PnYKdx\":\"gif2Message1\",\"nYeTFnU8h\":\"gif2Message2\",\"C6Wq2Ge0W\":\"gif2Message3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Frameru429wWSda=withCSS(Component,css,\"framer-wT8nH\");export default Frameru429wWSda;Frameru429wWSda.displayName=\"2\";Frameru429wWSda.defaultProps={height:579,width:560};addPropertyControls(Frameru429wWSda,{variant:{options:[\"RqA0jEcBL\",\"Hh46xl22g\",\"eCOuApfmx\",\"Kvg7zU81Y\",\"dpRP9bdSM\",\"I9V9nA0go\",\"VLZw5GX_F\",\"ISR_q1wy3\"],optionTitles:[\"1\",\"2\",\"3\",\"4\",\"1 mob\",\"2 mob\",\"3 mob\",\"4 mob\"],title:\"Variant\",type:ControlType.Enum},Md4PnYKdx:{__defaultAssetReference:\"data:framer/asset-reference,LmrCat7gSlyGtzdytTHzBnDVkw.png?originalFilename=1.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,LmrCat7gSlyGtzdytTHzBnDVkw.png?originalFilename=1.png&preferredSize=auto\"},title:\"Gif 2 / Message 1\",type:ControlType.ResponsiveImage},nYeTFnU8h:{__defaultAssetReference:\"data:framer/asset-reference,mWRNeyN6U5ZnWpLvHWACLdzYwI.png?originalFilename=2.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,mWRNeyN6U5ZnWpLvHWACLdzYwI.png?originalFilename=2.png&preferredSize=auto\"},title:\"Gif 2 / Message 2\",type:ControlType.ResponsiveImage},C6Wq2Ge0W:{__defaultAssetReference:\"data:framer/asset-reference,ToJ16do1INTVWPpyivkYZGKis.png?originalFilename=3.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,ToJ16do1INTVWPpyivkYZGKis.png?originalFilename=3.png&preferredSize=auto\"},title:\"Gif 2 / Message 3\",type:ControlType.ResponsiveImage}});addFonts(Frameru429wWSda,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameru429wWSda\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"560\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Hh46xl22g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eCOuApfmx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Kvg7zU81Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dpRP9bdSM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I9V9nA0go\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VLZw5GX_F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ISR_q1wy3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Md4PnYKdx\\\":\\\"gif2Message1\\\",\\\"nYeTFnU8h\\\":\\\"gif2Message2\\\",\\\"C6Wq2Ge0W\\\":\\\"gif2Message3\\\"}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"579\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./u429wWSda.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bJnHw5VokAqNKlg6Rp7L/SlideShow.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rAbGNREezMEsz5vWPvM6/UYuEaD9okc6UFrQC3Azy/aNJzK86BN.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/k1eFeU0PcLBwXh7NToEd/2b4oMUUSWSFljmeOuVsu/rD3ppHB0Z.js\";import UserComponent from\"https://framerusercontent.com/modules/NCd935T1GtUsMHllegQh/6KbDUvyxL3izK1aG8ycL/AoTHhKeo5.js\";import UserComponent2 from\"https://framerusercontent.com/modules/Xi4luaYLEH1dgBnceAJ8/MRriwt4SsXepxvVlM8lA/D7SwoOSR4.js\";import UserComponent1 from\"https://framerusercontent.com/modules/6XRpaaEvWkQRbWYJAV53/NcjUPMtC3hlj50410nTy/u429wWSda.js\";const UserComponentFonts=getFonts(UserComponent);const UserComponent1Fonts=getFonts(UserComponent1);const UserComponent2Fonts=getFonts(UserComponent2);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"oAHfGKIOd\",\"JUu7SZ54g\",\"p4Zd7hHE1\",\"Ta1FUsN5t\",\"XUkM2Ehki\",\"E_2yA08zU\",\"kgsIhghqU\",\"rLnE71qGL\"];const serializationHash=\"framer-ncEeu\";const variantClassNames={E_2yA08zU:\"framer-v-whnk11\",JUu7SZ54g:\"framer-v-19ypo3b\",kgsIhghqU:\"framer-v-17l27bm\",oAHfGKIOd:\"framer-v-98w22i\",p4Zd7hHE1:\"framer-v-qwl4mz\",rLnE71qGL:\"framer-v-j5tc0\",Ta1FUsN5t:\"framer-v-1j23vrl\",XUkM2Ehki:\"framer-v-w12rut\"};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 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 2\":\"JUu7SZ54g\",\"Desktop 3\":\"p4Zd7hHE1\",\"Desktop Stat 2\":\"XUkM2Ehki\",\"Desktop Stat 3\":\"E_2yA08zU\",\"Desktop Stat\":\"Ta1FUsN5t\",Desktop:\"oAHfGKIOd\",Phone:\"rLnE71qGL\",Tablet:\"kgsIhghqU\"};const getProps=({_1CardDescription,_1CardTitle,_2CardDescription,_2CardTitle,_3CardDescription,_3CardTitle,gif1AccountingActiveBoard,gif1AccountingBoard,gif1AugustBoard,gif1Message,gif2Message1,gif2Message2,gif2Message3,gif3ScrollPage,height,id,width,...props})=>{return{...props,Doccn4v00:_1CardDescription??props.Doccn4v00??\"Always stay in the loop with precise terms, clear guidance, and firm deadlines\",dSVG1UDwL:gif1Message??props.dSVG1UDwL??{pixelHeight:344,pixelWidth:1230,src:\"https://framerusercontent.com/images/260PqW1bAIVJREj4dWDGCEqoayc.png\",srcSet:\"https://framerusercontent.com/images/260PqW1bAIVJREj4dWDGCEqoayc.png?scale-down-to=512 512w,https://framerusercontent.com/images/260PqW1bAIVJREj4dWDGCEqoayc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/260PqW1bAIVJREj4dWDGCEqoayc.png 1230w\"},fLguHleFM:_2CardTitle??props.fLguHleFM??\"An accountant who knows your case\",hPoy756Lv:gif1AugustBoard??props.hPoy756Lv??{pixelHeight:1776,pixelWidth:1960,src:\"https://framerusercontent.com/images/yDeWwjKhGRkS4z8C2BKBXfr6Qg.png\",srcSet:\"https://framerusercontent.com/images/yDeWwjKhGRkS4z8C2BKBXfr6Qg.png?scale-down-to=512 512w,https://framerusercontent.com/images/yDeWwjKhGRkS4z8C2BKBXfr6Qg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yDeWwjKhGRkS4z8C2BKBXfr6Qg.png 1960w\"},iehFag_le:gif1AccountingBoard??props.iehFag_le??{pixelHeight:1776,pixelWidth:1960,src:\"https://framerusercontent.com/images/RGPmIWHriIvorm1RcAlMblfH7iI.png\",srcSet:\"https://framerusercontent.com/images/RGPmIWHriIvorm1RcAlMblfH7iI.png?scale-down-to=512 512w,https://framerusercontent.com/images/RGPmIWHriIvorm1RcAlMblfH7iI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RGPmIWHriIvorm1RcAlMblfH7iI.png 1960w\"},JNU1lcRVG:gif2Message2??props.JNU1lcRVG??{pixelHeight:236,pixelWidth:945,src:\"https://framerusercontent.com/images/mWRNeyN6U5ZnWpLvHWACLdzYwI.png\",srcSet:\"https://framerusercontent.com/images/mWRNeyN6U5ZnWpLvHWACLdzYwI.png?scale-down-to=512 512w,https://framerusercontent.com/images/mWRNeyN6U5ZnWpLvHWACLdzYwI.png 945w\"},LK1qmO92X:gif3ScrollPage??props.LK1qmO92X??{pixelHeight:3740,pixelWidth:1384,src:\"https://framerusercontent.com/images/CI2q0foYou6Lmj8Ru6bWk36Bw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/CI2q0foYou6Lmj8Ru6bWk36Bw.png?scale-down-to=2048 757w,https://framerusercontent.com/images/CI2q0foYou6Lmj8Ru6bWk36Bw.png 1384w\"},oilDfCSXV:gif2Message1??props.oilDfCSXV??{pixelHeight:236,pixelWidth:1742,src:\"https://framerusercontent.com/images/LmrCat7gSlyGtzdytTHzBnDVkw.png\",srcSet:\"https://framerusercontent.com/images/LmrCat7gSlyGtzdytTHzBnDVkw.png?scale-down-to=512 512w,https://framerusercontent.com/images/LmrCat7gSlyGtzdytTHzBnDVkw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LmrCat7gSlyGtzdytTHzBnDVkw.png 1742w\"},OUmP_XVaY:gif1AccountingActiveBoard??props.OUmP_XVaY??{pixelHeight:1776,pixelWidth:1960,src:\"https://framerusercontent.com/images/oRuAhuFMttahqo60ISNfKnNKCYA.png\",srcSet:\"https://framerusercontent.com/images/oRuAhuFMttahqo60ISNfKnNKCYA.png?scale-down-to=512 512w,https://framerusercontent.com/images/oRuAhuFMttahqo60ISNfKnNKCYA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oRuAhuFMttahqo60ISNfKnNKCYA.png 1960w\"},QLYPLbeQN:_2CardDescription??props.QLYPLbeQN??\"Get expert understanding of your business with a dedicated accountant and a personal manager\",RRsbtCgyb:_3CardTitle??props.RRsbtCgyb??\"A single subscription you\u2019d need\\xa0\",TtAgBUah3:gif2Message3??props.TtAgBUah3??{pixelHeight:416,pixelWidth:1742,src:\"https://framerusercontent.com/images/ToJ16do1INTVWPpyivkYZGKis.png\",srcSet:\"https://framerusercontent.com/images/ToJ16do1INTVWPpyivkYZGKis.png?scale-down-to=512 512w,https://framerusercontent.com/images/ToJ16do1INTVWPpyivkYZGKis.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ToJ16do1INTVWPpyivkYZGKis.png 1742w\"},ukvPM0Asg:_1CardTitle??props.ukvPM0Asg??\"Fully transparent process\",vADFp43nN:_3CardDescription??props.vADFp43nN??\"Strengthen Accounting with built-in Invoicing, Contracts, and Finances\",variant:humanReadableVariantMap[props.variant]??props.variant??\"oAHfGKIOd\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ukvPM0Asg,Doccn4v00,hPoy756Lv,dSVG1UDwL,iehFag_le,OUmP_XVaY,fLguHleFM,QLYPLbeQN,oilDfCSXV,JNU1lcRVG,TtAgBUah3,RRsbtCgyb,vADFp43nN,LK1qmO92X,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oAHfGKIOd\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear22tt51=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"JUu7SZ54g\",true),1e4);});const onAppear17cmxe1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"p4Zd7hHE1\",true),5e3);});const onAppear19x41si=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"oAHfGKIOd\",true),8e3);});const onTapgefxi1=activeVariantCallback(async(...args)=>{setVariant(\"Ta1FUsN5t\");});const onTapovrc7i=activeVariantCallback(async(...args)=>{setVariant(\"XUkM2Ehki\");});const onTap7h7lnj=activeVariantCallback(async(...args)=>{setVariant(\"E_2yA08zU\");});useOnVariantChange(baseVariant,{default:onAppear22tt51,E_2yA08zU:undefined,JUu7SZ54g:onAppear17cmxe1,kgsIhghqU:undefined,p4Zd7hHE1:onAppear19x41si,rLnE71qGL:undefined,Ta1FUsN5t:undefined,XUkM2Ehki:undefined});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"rLnE71qGL\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"kgsIhghqU\")return true;return false;};const isDisplayed2=()=>{if([\"kgsIhghqU\",\"rLnE71qGL\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"JUu7SZ54g\",\"p4Zd7hHE1\",\"XUkM2Ehki\",\"E_2yA08zU\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"JUu7SZ54g\",\"XUkM2Ehki\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"p4Zd7hHE1\",\"E_2yA08zU\"].includes(baseVariant))return true;return false;};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-98w22i\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oAHfGKIOd\",ref:refBinding,style:{...style},...addPropertyOverrides({E_2yA08zU:{\"data-framer-name\":\"Desktop Stat 3\",\"data-highlight\":undefined},JUu7SZ54g:{\"data-framer-name\":\"Desktop 2\"},kgsIhghqU:{\"data-framer-name\":\"Tablet\",\"data-highlight\":undefined},p4Zd7hHE1:{\"data-framer-name\":\"Desktop 3\"},rLnE71qGL:{\"data-framer-name\":\"Phone\",\"data-highlight\":undefined},Ta1FUsN5t:{\"data-framer-name\":\"Desktop Stat\",\"data-highlight\":undefined},XUkM2Ehki:{\"data-framer-name\":\"Desktop Stat 2\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-atw3tt-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DHz0HRse0-container\",nodeId:\"DHz0HRse0\",rendersWithMotion:true,scopeId:\"BzEpqCzzt\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"DHz0HRse0\",intervalControl:10,itemAmount:1,layoutId:\"DHz0HRse0\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgba(255, 255, 255, 0.8)\",dotsGap:10,dotsInset:-50,dotSize:15,dotsOpacity:.5,dotsPadding:17,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ocvqo0\",\"data-framer-name\":\"Mob 1\",layoutDependency:layoutDependency,layoutId:\"bwn8wL5fw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:\"320px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p0iopz-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"WkJBwpHZw-container\",nodeId:\"WkJBwpHZw\",rendersWithMotion:true,scopeId:\"BzEpqCzzt\",children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"WkJBwpHZw\",layoutId:\"WkJBwpHZw\",sJCJo6GhR:toResponsiveImage(OUmP_XVaY),style:{height:\"100%\",width:\"100%\"},Urf3peRq3:toResponsiveImage(hPoy756Lv),variant:\"E44ZYRrkH\",VUjqF0OcD:toResponsiveImage(iehFag_le),width:\"100%\",Zv0QFeP_x:toResponsiveImage(dSVG1UDwL)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gr3308\",\"data-framer-name\":\"Frame 13001617\",layoutDependency:layoutDependency,layoutId:\"WiKB6MoST\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ptobj3\",\"data-border\":true,\"data-framer-name\":\"Frame 13001593\",layoutDependency:layoutDependency,layoutId:\"tP4mOBHWV\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Fully transparent process\"})}),className:\"framer-9vx7ro\",\"data-framer-name\":\"Fully transparent process\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"B34m6vsMC\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:ukvPM0Asg,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Always stay in the loop with precise terms, clear guidance, and firm deadlines\"})}),className:\"framer-qkeyvg\",\"data-framer-name\":\"Always stay in the loop with precise terms, clear guidance, and firm deadlines\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S10FFSErE\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:Doccn4v00,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hi2j3m\",\"data-framer-name\":\"Mob 2\",layoutDependency:layoutDependency,layoutId:\"WSnWSCi4R\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:\"320px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kdhcn0-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"xTW3Y9_Jw-container\",nodeId:\"xTW3Y9_Jw\",rendersWithMotion:true,scopeId:\"BzEpqCzzt\",children:/*#__PURE__*/_jsx(UserComponent1,{C6Wq2Ge0W:toResponsiveImage(TtAgBUah3),height:\"100%\",id:\"xTW3Y9_Jw\",layoutId:\"xTW3Y9_Jw\",Md4PnYKdx:toResponsiveImage(oilDfCSXV),nYeTFnU8h:toResponsiveImage(JNU1lcRVG),style:{height:\"100%\",width:\"100%\"},variant:\"dpRP9bdSM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n0wfy0\",\"data-framer-name\":\"Frame 13001617\",layoutDependency:layoutDependency,layoutId:\"kgbK57yVx\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wls7vr\",\"data-border\":true,\"data-framer-name\":\"Frame 13001594\",layoutDependency:layoutDependency,layoutId:\"Bve0052IR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"An accountant who knows your case\"})}),className:\"framer-sz3fjg\",\"data-framer-name\":\"An accountant who knows your case\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"PBbNlJNGv\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:fLguHleFM,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Get expert understanding of your business with a dedicated accountant and a personal manager\"})}),className:\"framer-1yi7xc3\",\"data-framer-name\":\"Get expert understanding of your business with a dedicated accountant and a personal manager\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vM1BvOYNH\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:QLYPLbeQN,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-120p0pi\",\"data-framer-name\":\"Mob 3\",layoutDependency:layoutDependency,layoutId:\"CWTgzlXNT\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:\"320px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qbnz87-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"mk6DeZzS4-container\",nodeId:\"mk6DeZzS4\",rendersWithMotion:true,scopeId:\"BzEpqCzzt\",children:/*#__PURE__*/_jsx(UserComponent2,{height:\"100%\",id:\"mk6DeZzS4\",layoutId:\"mk6DeZzS4\",Scg7Li1sv:toResponsiveImage(LK1qmO92X),style:{height:\"100%\",width:\"100%\"},variant:\"sY3gwm6Mp\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ve89of\",\"data-framer-name\":\"Frame 13001617\",layoutDependency:layoutDependency,layoutId:\"ZmKc0xLEP\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dwsdj2\",\"data-border\":true,\"data-framer-name\":\"Frame 13001595\",layoutDependency:layoutDependency,layoutId:\"LLJJG56wa\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ve80aa\",\"data-framer-name\":\"Frame 13001884\",layoutDependency:layoutDependency,layoutId:\"HyH68dXhu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"A single subscription you\u2019d need\\xa0\"})}),className:\"framer-1ohamxt\",\"data-framer-name\":\"A single subscription you\u2019d need\\xa0\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"TqmDJR43A\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:RRsbtCgyb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Strengthen Accounting with built-in Invoicing, Contracts, and Finances\"})}),className:\"framer-24onl0\",\"data-framer-name\":\"Strengthen Accounting with built-in Invoicing, Contracts, and Finances\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TW64EQUVE\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:vADFp43nN,verticalAlignment:\"top\",withExternalLayout:true})]})})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t7yker-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"q_GUbv2bL-container\",nodeId:\"q_GUbv2bL\",rendersWithMotion:true,scopeId:\"BzEpqCzzt\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"q_GUbv2bL\",intervalControl:10,itemAmount:1,layoutId:\"q_GUbv2bL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgba(255, 255, 255, 0.8)\",dotsGap:10,dotsInset:-50,dotSize:15,dotsOpacity:.5,dotsPadding:17,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-af8wzh\",\"data-framer-name\":\"Tablet 1\",layoutDependency:layoutDependency,layoutId:\"RECCQFV1d\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:579,width:\"731px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rjgtae-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pNR8R900U-container\",nodeId:\"pNR8R900U\",rendersWithMotion:true,scopeId:\"BzEpqCzzt\",children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"pNR8R900U\",layoutId:\"pNR8R900U\",sJCJo6GhR:toResponsiveImage(OUmP_XVaY),style:{width:\"100%\"},Urf3peRq3:toResponsiveImage(hPoy756Lv),variant:\"YvYQou3EX\",VUjqF0OcD:toResponsiveImage(iehFag_le),width:\"100%\",Zv0QFeP_x:toResponsiveImage(dSVG1UDwL)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j3817z\",\"data-framer-name\":\"Frame 13001617\",layoutDependency:layoutDependency,layoutId:\"brBXSDm1S\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ndk6s3\",\"data-border\":true,\"data-framer-name\":\"Frame 13001593\",layoutDependency:layoutDependency,layoutId:\"kXy63gSVJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Fully transparent process\"})}),className:\"framer-7fn79x\",\"data-framer-name\":\"Fully transparent process\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"K4jzGqwpz\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:ukvPM0Asg,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16sa0nt\",\"data-styles-preset\":\"aNJzK86BN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Always stay in the loop with precise terms, clear guidance, and firm deadlines\"})}),className:\"framer-1o0el50\",\"data-framer-name\":\"Always stay in the loop with precise terms, clear guidance, and firm deadlines\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EpybyyvCt\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:Doccn4v00,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zi9pqc\",\"data-framer-name\":\"Tablet 2\",layoutDependency:layoutDependency,layoutId:\"COoli8Qy2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:579,width:\"731px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15s3qfh-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Jf3AgM_AP-container\",nodeId:\"Jf3AgM_AP\",rendersWithMotion:true,scopeId:\"BzEpqCzzt\",children:/*#__PURE__*/_jsx(UserComponent1,{C6Wq2Ge0W:toResponsiveImage(TtAgBUah3),height:\"100%\",id:\"Jf3AgM_AP\",layoutId:\"Jf3AgM_AP\",Md4PnYKdx:toResponsiveImage(oilDfCSXV),nYeTFnU8h:toResponsiveImage(JNU1lcRVG),style:{width:\"100%\"},variant:\"RqA0jEcBL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tly195\",\"data-framer-name\":\"Frame 13001617\",layoutDependency:layoutDependency,layoutId:\"HRgMHb0tB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ei9g21\",\"data-border\":true,\"data-framer-name\":\"Frame 13001594\",layoutDependency:layoutDependency,layoutId:\"E39ZUVvtX\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"An accountant who knows your case\"})}),className:\"framer-1gi1u31\",\"data-framer-name\":\"An accountant who knows your case\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"bpSeNF7PK\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:fLguHleFM,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16sa0nt\",\"data-styles-preset\":\"aNJzK86BN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Get expert understanding of your business with a dedicated accountant and a personal manager\"})}),className:\"framer-n68sai\",\"data-framer-name\":\"Get expert understanding of your business with a dedicated accountant and a personal manager\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JRPvoheCB\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:QLYPLbeQN,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xjx22e\",\"data-framer-name\":\"Tablet 3\",layoutDependency:layoutDependency,layoutId:\"TGTVFxE6V\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:579,width:\"731px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y24zvc-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"qTXiNp8hL-container\",nodeId:\"qTXiNp8hL\",rendersWithMotion:true,scopeId:\"BzEpqCzzt\",children:/*#__PURE__*/_jsx(UserComponent2,{height:\"100%\",id:\"qTXiNp8hL\",layoutId:\"qTXiNp8hL\",Scg7Li1sv:toResponsiveImage(LK1qmO92X),style:{width:\"100%\"},variant:\"tjan0kAuK\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2rbwle\",\"data-framer-name\":\"Frame 13001617\",layoutDependency:layoutDependency,layoutId:\"vebHB3sSn\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-txk9h5\",\"data-border\":true,\"data-framer-name\":\"Frame 13001595\",layoutDependency:layoutDependency,layoutId:\"ew9fQk8kT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t2ffxc\",\"data-framer-name\":\"Frame 13001884\",layoutDependency:layoutDependency,layoutId:\"RS0fklYhX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"A single subscription you\u2019d need\\xa0\"})}),className:\"framer-4cicgj\",\"data-framer-name\":\"A single subscription you\u2019d need\\xa0\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"R5wCtkkeT\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:RRsbtCgyb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-16sa0nt\",\"data-styles-preset\":\"aNJzK86BN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:[\"Strengthen Accounting with built-in Invoicing, Contracts, and Finances\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),className:\"framer-1ahqyqi\",\"data-framer-name\":\"Strengthen Accounting with built-in Invoicing, Contracts, and Finances\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l7CsX5RDx\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:vADFp43nN,verticalAlignment:\"top\",withExternalLayout:true})]})})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qx1dr5\",\"data-framer-name\":\"block 1\",layoutDependency:layoutDependency,layoutId:\"sBtmTKRRC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12b6seg\",\"data-framer-name\":\"Frame 13001617\",layoutDependency:layoutDependency,layoutId:\"I18283:9357;18283:11142\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o9j2z6\",\"data-border\":true,\"data-framer-name\":\"Frame 13001593\",layoutDependency:layoutDependency,layoutId:\"I18283:9357;18283:11143\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},variants:{E_2yA08zU:{\"--border-color\":\"rgba(255, 255, 255, 0.04)\"},JUu7SZ54g:{\"--border-color\":\"rgba(255, 255, 255, 0.04)\"},p4Zd7hHE1:{\"--border-color\":\"rgba(255, 255, 255, 0.04)\"},XUkM2Ehki:{\"--border-color\":\"rgba(255, 255, 255, 0.04)\"}},...addPropertyOverrides({E_2yA08zU:{\"data-highlight\":true,onTap:onTapgefxi1},JUu7SZ54g:{\"data-highlight\":true,onTap:onTapgefxi1},p4Zd7hHE1:{\"data-highlight\":true,onTap:onTapgefxi1},XUkM2Ehki:{\"data-highlight\":true,onTap:onTapgefxi1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Fully transparent process\"})}),className:\"framer-1ye91nv\",\"data-framer-name\":\"Fully transparent process\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"I18283:9357;18283:11145\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:ukvPM0Asg,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16sa0nt\",\"data-styles-preset\":\"aNJzK86BN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Always stay in the loop with precise terms, clear guidance, and firm deadlines\"})}),className:\"framer-1wtxca2\",\"data-framer-name\":\"Always stay in the loop with precise terms, clear guidance, and firm deadlines\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I18283:9357;18283:11146\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:Doccn4v00,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wsbwlc\",\"data-border\":true,\"data-framer-name\":\"Frame 13001594\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I18283:9357;18283:11147\",onTap:onTapovrc7i,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.04)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},variants:{JUu7SZ54g:{\"--border-color\":\"rgba(255, 255, 255, 0.24)\"},XUkM2Ehki:{\"--border-color\":\"rgba(255, 255, 255, 0.24)\"}},...addPropertyOverrides({JUu7SZ54g:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"An accountant who knows your case\"})}),className:\"framer-1a13drh\",\"data-framer-name\":\"An accountant who knows your case\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"I18283:9357;18283:11149\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:fLguHleFM,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16sa0nt\",\"data-styles-preset\":\"aNJzK86BN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Get expert understanding of your business with a dedicated accountant and a personal manager\"})}),className:\"framer-6cyi07\",\"data-framer-name\":\"Get expert understanding of your business with a dedicated accountant and a personal manager\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I18283:9357;18283:11150\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:QLYPLbeQN,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rkp262\",\"data-border\":true,\"data-framer-name\":\"Frame 13001595\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I18283:9357;18283:11151\",onTap:onTap7h7lnj,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.04)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},variants:{E_2yA08zU:{\"--border-color\":\"rgba(255, 255, 255, 0.24)\"},p4Zd7hHE1:{\"--border-color\":\"rgba(255, 255, 255, 0.24)\"}},...addPropertyOverrides({p4Zd7hHE1:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l1p9bz\",\"data-framer-name\":\"Frame 13001884\",layoutDependency:layoutDependency,layoutId:\"I18283:9357;18283:11153\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"A single subscription you\u2019d need\\xa0\"})}),className:\"framer-wxjygh\",\"data-framer-name\":\"A single subscription you\u2019d need\\xa0\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"I18283:9357;18283:11154\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:RRsbtCgyb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16sa0nt\",\"data-styles-preset\":\"aNJzK86BN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Strengthen Accounting with built-in Invoicing, Contracts, and Finances\"})}),className:\"framer-35yqkp\",\"data-framer-name\":\"Strengthen Accounting with built-in Invoicing, Contracts, and Finances\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I18283:9357;18283:11155\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:vADFp43nN,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1187,width:\"560px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||579)-0-1187)/2+0+0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7k45b-container\",layoutDependency:layoutDependency,layoutId:\"wi4kbPhQt-container\",nodeId:\"wi4kbPhQt\",rendersWithMotion:true,scopeId:\"BzEpqCzzt\",children:/*#__PURE__*/_jsx(UserComponent,{height:\"100%\",id:\"wi4kbPhQt\",layoutId:\"wi4kbPhQt\",sJCJo6GhR:toResponsiveImage(OUmP_XVaY),style:{height:\"100%\",width:\"100%\"},Urf3peRq3:toResponsiveImage(hPoy756Lv),variant:\"YvYQou3EX\",VUjqF0OcD:toResponsiveImage(iehFag_le),width:\"100%\",Zv0QFeP_x:toResponsiveImage(dSVG1UDwL)})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({JUu7SZ54g:{height:1187,width:\"560px\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||579)-0-1187)/1*0)+0},XUkM2Ehki:{height:1187,width:\"560px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||579)-0-1187)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-130fzte-container\",layoutDependency:layoutDependency,layoutId:\"sSziDLoUM-container\",nodeId:\"sSziDLoUM\",rendersWithMotion:true,scopeId:\"BzEpqCzzt\",children:/*#__PURE__*/_jsx(UserComponent1,{height:\"100%\",id:\"sSziDLoUM\",layoutId:\"sSziDLoUM\",style:{height:\"100%\",width:\"100%\"},variant:\"RqA0jEcBL\",width:\"100%\",...addPropertyOverrides({JUu7SZ54g:{C6Wq2Ge0W:toResponsiveImage(TtAgBUah3),Md4PnYKdx:toResponsiveImage(oilDfCSXV),nYeTFnU8h:toResponsiveImage(JNU1lcRVG)},XUkM2Ehki:{C6Wq2Ge0W:toResponsiveImage(TtAgBUah3),Md4PnYKdx:toResponsiveImage(oilDfCSXV),nYeTFnU8h:toResponsiveImage(JNU1lcRVG)}},baseVariant,gestureVariant)})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({E_2yA08zU:{height:1187,width:\"560px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||579)-0-1187)/2+0+0)+0},p4Zd7hHE1:{height:1187,width:\"560px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||579)-0-1187)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jbvrij-container\",layoutDependency:layoutDependency,layoutId:\"UghkwFlzk-container\",nodeId:\"UghkwFlzk\",rendersWithMotion:true,scopeId:\"BzEpqCzzt\",children:/*#__PURE__*/_jsx(UserComponent2,{height:\"100%\",id:\"UghkwFlzk\",layoutId:\"UghkwFlzk\",style:{height:\"100%\",width:\"100%\"},variant:\"tjan0kAuK\",width:\"100%\",...addPropertyOverrides({E_2yA08zU:{Scg7Li1sv:toResponsiveImage(LK1qmO92X)},p4Zd7hHE1:{Scg7Li1sv:toResponsiveImage(LK1qmO92X)}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ncEeu.framer-n7reng, .framer-ncEeu .framer-n7reng { display: block; }\",\".framer-ncEeu.framer-98w22i { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1072px; }\",\".framer-ncEeu .framer-atw3tt-container { flex: none; height: 529px; position: relative; width: 100%; }\",\".framer-ncEeu .framer-1ocvqo0, .framer-ncEeu .framer-hi2j3m, .framer-ncEeu .framer-120p0pi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 320px; }\",\".framer-ncEeu .framer-p0iopz-container, .framer-ncEeu .framer-1kdhcn0-container, .framer-ncEeu .framer-qbnz87-container { flex: none; height: 320px; position: relative; width: 100%; }\",\".framer-ncEeu .framer-1gr3308, .framer-ncEeu .framer-n0wfy0, .framer-ncEeu .framer-ve89of, .framer-ncEeu .framer-j3817z, .framer-ncEeu .framer-1tly195, .framer-ncEeu .framer-2rbwle { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ncEeu .framer-ptobj3, .framer-ncEeu .framer-1wls7vr, .framer-ncEeu .framer-1dwsdj2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 184px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ncEeu .framer-9vx7ro, .framer-ncEeu .framer-qkeyvg, .framer-ncEeu .framer-sz3fjg, .framer-ncEeu .framer-1yi7xc3, .framer-ncEeu .framer-1ohamxt, .framer-ncEeu .framer-24onl0, .framer-ncEeu .framer-7fn79x, .framer-ncEeu .framer-1o0el50, .framer-ncEeu .framer-1gi1u31, .framer-ncEeu .framer-n68sai, .framer-ncEeu .framer-4cicgj, .framer-ncEeu .framer-1ahqyqi, .framer-ncEeu .framer-1ye91nv, .framer-ncEeu .framer-1wtxca2, .framer-ncEeu .framer-1a13drh, .framer-ncEeu .framer-6cyi07, .framer-ncEeu .framer-wxjygh, .framer-ncEeu .framer-35yqkp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ncEeu .framer-1ve80aa, .framer-ncEeu .framer-1t2ffxc, .framer-ncEeu .framer-l1p9bz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ncEeu .framer-t7yker-container { flex: none; height: 776px; position: relative; width: 100%; }\",\".framer-ncEeu .framer-af8wzh, .framer-ncEeu .framer-zi9pqc, .framer-ncEeu .framer-1xjx22e { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 776px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 731px; }\",\".framer-ncEeu .framer-rjgtae-container, .framer-ncEeu .framer-15s3qfh-container, .framer-ncEeu .framer-1y24zvc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ncEeu .framer-ndk6s3, .framer-ncEeu .framer-1ei9g21, .framer-ncEeu .framer-txk9h5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 173px; justify-content: flex-start; overflow: hidden; padding: 32px 40px 45px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ncEeu .framer-1qx1dr5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ncEeu .framer-12b6seg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ncEeu .framer-1o9j2z6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 40px 45px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ncEeu .framer-wsbwlc, .framer-ncEeu .framer-rkp262 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 40px 45px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ncEeu .framer-7k45b-container, .framer-ncEeu .framer-jbvrij-container { align-self: stretch; flex: none; height: auto; position: relative; width: 560px; }\",\".framer-ncEeu .framer-130fzte-container { flex: none; height: 579px; position: relative; width: 560px; }\",\".framer-ncEeu.framer-v-19ypo3b.framer-98w22i { gap: unset; justify-content: space-between; }\",\".framer-ncEeu.framer-v-19ypo3b .framer-1o9j2z6, .framer-ncEeu.framer-v-qwl4mz .framer-1o9j2z6, .framer-ncEeu.framer-v-w12rut .framer-1o9j2z6, .framer-ncEeu.framer-v-whnk11 .framer-1o9j2z6 { cursor: pointer; }\",\".framer-ncEeu.framer-v-19ypo3b .framer-wsbwlc, .framer-ncEeu.framer-v-qwl4mz .framer-rkp262 { cursor: unset; }\",\".framer-ncEeu.framer-v-19ypo3b .framer-130fzte-container, .framer-ncEeu.framer-v-w12rut .framer-130fzte-container { align-self: stretch; height: auto; }\",\".framer-ncEeu.framer-v-17l27bm.framer-98w22i { justify-content: flex-start; padding: 0px 0px 36px 0px; width: 731px; }\",\".framer-ncEeu.framer-v-17l27bm .framer-t7yker-container { order: 1; }\",\".framer-ncEeu.framer-v-j5tc0.framer-98w22i { justify-content: flex-start; padding: 0px 0px 36px 0px; width: 320px; }\",\".framer-ncEeu.framer-v-j5tc0 .framer-atw3tt-container { order: 0; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-ncEeu[data-border=\"true\"]::after, .framer-ncEeu [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 579\n * @framerIntrinsicWidth 1072\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JUu7SZ54g\":{\"layout\":[\"fixed\",\"auto\"]},\"p4Zd7hHE1\":{\"layout\":[\"fixed\",\"auto\"]},\"Ta1FUsN5t\":{\"layout\":[\"fixed\",\"auto\"]},\"XUkM2Ehki\":{\"layout\":[\"fixed\",\"auto\"]},\"E_2yA08zU\":{\"layout\":[\"fixed\",\"auto\"]},\"kgsIhghqU\":{\"layout\":[\"fixed\",\"auto\"]},\"rLnE71qGL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ukvPM0Asg\":\"_1CardTitle\",\"Doccn4v00\":\"_1CardDescription\",\"hPoy756Lv\":\"gif1AugustBoard\",\"dSVG1UDwL\":\"gif1Message\",\"iehFag_le\":\"gif1AccountingBoard\",\"OUmP_XVaY\":\"gif1AccountingActiveBoard\",\"fLguHleFM\":\"_2CardTitle\",\"QLYPLbeQN\":\"_2CardDescription\",\"oilDfCSXV\":\"gif2Message1\",\"JNU1lcRVG\":\"gif2Message2\",\"TtAgBUah3\":\"gif2Message3\",\"RRsbtCgyb\":\"_3CardTitle\",\"vADFp43nN\":\"_3CardDescription\",\"LK1qmO92X\":\"gif3ScrollPage\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerBzEpqCzzt=withCSS(Component,css,\"framer-ncEeu\");export default FramerBzEpqCzzt;FramerBzEpqCzzt.displayName=\"Accountig Tubs NEW\";FramerBzEpqCzzt.defaultProps={height:579,width:1072};addPropertyControls(FramerBzEpqCzzt,{variant:{options:[\"oAHfGKIOd\",\"JUu7SZ54g\",\"p4Zd7hHE1\",\"Ta1FUsN5t\",\"XUkM2Ehki\",\"E_2yA08zU\",\"kgsIhghqU\",\"rLnE71qGL\"],optionTitles:[\"Desktop\",\"Desktop 2\",\"Desktop 3\",\"Desktop Stat\",\"Desktop Stat 2\",\"Desktop Stat 3\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},ukvPM0Asg:{defaultValue:\"Fully transparent process\",displayTextArea:false,title:\"1 Card title\",type:ControlType.String},Doccn4v00:{defaultValue:\"Always stay in the loop with precise terms, clear guidance, and firm deadlines\",displayTextArea:false,title:\"1 Card description\",type:ControlType.String},hPoy756Lv:{__defaultAssetReference:\"data:framer/asset-reference,yDeWwjKhGRkS4z8C2BKBXfr6Qg.png?originalFilename=9+%281%29.png&preferredSize=auto\",title:\"Gif 1 / August Board\",type:ControlType.ResponsiveImage},dSVG1UDwL:{__defaultAssetReference:\"data:framer/asset-reference,260PqW1bAIVJREj4dWDGCEqoayc.png?originalFilename=Frame+1000006198+%281%29.png&preferredSize=auto\",title:\"Gif 1 / Message\",type:ControlType.ResponsiveImage},iehFag_le:{__defaultAssetReference:\"data:framer/asset-reference,RGPmIWHriIvorm1RcAlMblfH7iI.png?originalFilename=12+%281%29.png&preferredSize=auto\",title:\"Gif 1 / Accounting Board\",type:ControlType.ResponsiveImage},OUmP_XVaY:{__defaultAssetReference:\"data:framer/asset-reference,oRuAhuFMttahqo60ISNfKnNKCYA.png?originalFilename=11+%281%29.png&preferredSize=auto\",title:\"Gif 1 / Accounting Active Board\",type:ControlType.ResponsiveImage},fLguHleFM:{defaultValue:\"An accountant who knows your case\",displayTextArea:false,title:\"2 Card title\",type:ControlType.String},QLYPLbeQN:{defaultValue:\"Get expert understanding of your business with a dedicated accountant and a personal manager\",displayTextArea:false,title:\"2 Card description\",type:ControlType.String},oilDfCSXV:{__defaultAssetReference:\"data:framer/asset-reference,LmrCat7gSlyGtzdytTHzBnDVkw.png?originalFilename=1.png&preferredSize=auto\",title:\"Gif 2 / Message 1\",type:ControlType.ResponsiveImage},JNU1lcRVG:{__defaultAssetReference:\"data:framer/asset-reference,mWRNeyN6U5ZnWpLvHWACLdzYwI.png?originalFilename=2.png&preferredSize=auto\",title:\"Gif 2 / Message 2\",type:ControlType.ResponsiveImage},TtAgBUah3:{__defaultAssetReference:\"data:framer/asset-reference,ToJ16do1INTVWPpyivkYZGKis.png?originalFilename=3.png&preferredSize=auto\",title:\"Gif 2 / Message 3\",type:ControlType.ResponsiveImage},RRsbtCgyb:{defaultValue:\"A single subscription you\u2019d need\\xa0\",displayTextArea:false,title:\"3 Card title\",type:ControlType.String},vADFp43nN:{defaultValue:\"Strengthen Accounting with built-in Invoicing, Contracts, and Finances\",displayTextArea:false,title:\"3 Card description\",type:ControlType.String},LK1qmO92X:{__defaultAssetReference:\"data:framer/asset-reference,CI2q0foYou6Lmj8Ru6bWk36Bw.png?originalFilename=page+%281%29.png&preferredSize=auto\",title:\"Gif 3 / Scroll Page\",type:ControlType.ResponsiveImage}});addFonts(FramerBzEpqCzzt,[{explicitInter:true,fonts:[{family:\"Suisse Int'l Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/do6kPKhFKFxVqY3xfYZQwHKzcY.woff2\"},{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\"}]},...UserComponentFonts,...UserComponent1Fonts,...UserComponent2Fonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBzEpqCzzt\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JUu7SZ54g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p4Zd7hHE1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ta1FUsN5t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XUkM2Ehki\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E_2yA08zU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kgsIhghqU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rLnE71qGL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1072\",\"framerIntrinsicHeight\":\"579\",\"framerVariables\":\"{\\\"ukvPM0Asg\\\":\\\"_1CardTitle\\\",\\\"Doccn4v00\\\":\\\"_1CardDescription\\\",\\\"hPoy756Lv\\\":\\\"gif1AugustBoard\\\",\\\"dSVG1UDwL\\\":\\\"gif1Message\\\",\\\"iehFag_le\\\":\\\"gif1AccountingBoard\\\",\\\"OUmP_XVaY\\\":\\\"gif1AccountingActiveBoard\\\",\\\"fLguHleFM\\\":\\\"_2CardTitle\\\",\\\"QLYPLbeQN\\\":\\\"_2CardDescription\\\",\\\"oilDfCSXV\\\":\\\"gif2Message1\\\",\\\"JNU1lcRVG\\\":\\\"gif2Message2\\\",\\\"TtAgBUah3\\\":\\\"gif2Message3\\\",\\\"RRsbtCgyb\\\":\\\"_3CardTitle\\\",\\\"vADFp43nN\\\":\\\"_3CardDescription\\\",\\\"LK1qmO92X\\\":\\\"gif3ScrollPage\\\"}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BzEpqCzzt.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Suisse Int'l Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]}];export const css=['.framer-iBMhA .framer-styles-preset-nbrw25:not(.rich-text-wrapper), .framer-iBMhA .framer-styles-preset-nbrw25.rich-text-wrapper h4 { --framer-font-family: \"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-iBMhA\";\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 (99f3353)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/YWvoMWBNey5LNEI32MGA/eZk5aKhCViIsFbUuCJmP/DrxneUv2k.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/k1eFeU0PcLBwXh7NToEd/2b4oMUUSWSFljmeOuVsu/rD3ppHB0Z.js\";const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const enabledGestures={K0voIDqvv:{hover:true}};const cycleOrder=[\"K0voIDqvv\",\"WiMh6VLgH\"];const serializationHash=\"framer-spUOi\";const variantClassNames={K0voIDqvv:\"framer-v-xxit2w\",WiMh6VLgH:\"framer-v-eo5kj7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.6,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:50,y:50};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:50,y:50};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:\"K0voIDqvv\",Phone:\"WiMh6VLgH\"};const getProps=({card3,description,height,id,title,width,...props})=>{return{...props,ozYdELxlc:description??props.ozYdELxlc??\"Connect 1500+ banks, track cash flow, and generate financial reports\",phWaLNTMZ:card3??props.phWaLNTMZ,uRLIIvw7l:title??props.uRLIIvw7l??\"Control finances\",variant:humanReadableVariantMap[props.variant]??props.variant??\"K0voIDqvv\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,phWaLNTMZ,uRLIIvw7l,ozYdELxlc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"K0voIDqvv\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"WiMh6VLgH\")return true;return false;};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-xxit2w\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"K0voIDqvv\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.04)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},variants:{\"K0voIDqvv-hover\":{backgroundColor:\"rgb(172, 247, 113)\"},WiMh6VLgH:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({\"K0voIDqvv-hover\":{\"data-framer-name\":undefined},WiMh6VLgH:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ibv3eb\",\"data-framer-name\":\"Frame 13001894\",layoutDependency:layoutDependency,layoutId:\"I18283:9414;18283:9644\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:phWaLNTMZ,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ffkryl\",\"data-framer-name\":\"Frame 13001894\",layoutDependency:layoutDependency,layoutId:\"aBgsKxx10\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nbrw25\",\"data-styles-preset\":\"DrxneUv2k\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Control finances\"})})}),className:\"framer-5nn1m8\",\"data-framer-name\":\"Control finances\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"voXdaIH11\",style:{\"--extracted-1eung3n\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:uRLIIvw7l,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Connect 1500+ banks, track cash flow, and generate financial reports\"})}),className:\"framer-1ksjvqx\",\"data-framer-name\":\"Connect 1500+ banks, track cash flow, and generate financial reports\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SNjFck2bv\",style:{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:ozYdELxlc,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Control finances\"})}),className:\"framer-gxwfoq\",\"data-framer-name\":\"Control finances\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"I18283:9414;18283:9645\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:uRLIIvw7l,variants:{\"K0voIDqvv-hover\":{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"K0voIDqvv-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Control finances\"})})},WiMh6VLgH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nbrw25\",\"data-styles-preset\":\"DrxneUv2k\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Control finances\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Connect 1500+ banks, track cash flow, and generate financial reports\"})}),className:\"framer-ql9pi4\",\"data-framer-name\":\"Connect 1500+ banks, track cash flow, and generate financial reports\",fonts:[\"CUSTOM;Suisse Int'l Regular\"],layoutDependency:layoutDependency,layoutId:\"I18283:9414;18283:9646\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:ozYdELxlc,variants:{\"K0voIDqvv-hover\":{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\"},WiMh6VLgH:{\"--extracted-r6o4lv\":\"var(--token-d3db539b-7bb3-4d06-83b4-7290b6937c73, rgba(255, 255, 255, 0.64))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"K0voIDqvv-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Connect 1500+ banks, track cash flow, and generate financial reports\"})})},WiMh6VLgH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d3db539b-7bb3-4d06-83b4-7290b6937c73, rgba(255, 255, 255, 0.64)))\"},children:\"Connect 1500+ banks, track cash flow, and generate financial reports\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1078,intrinsicWidth:1766.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+243),pixelHeight:2156,pixelWidth:3533,sizes:\"883px\",src:\"https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=512 512w,https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png 3533w\"},className:\"framer-1fsb5gj\",\"data-framer-name\":\"Revenue 1440px 1\",layoutDependency:layoutDependency,layoutId:\"UpLSbGriq\",...addPropertyOverrides({\"K0voIDqvv-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1078,intrinsicWidth:1766.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+243),pixelHeight:2156,pixelWidth:3533,sizes:\"910px\",src:\"https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=512 512w,https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png 3533w\"}},WiMh6VLgH:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:phWaLNTMZ,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1078,intrinsicWidth:1766.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||444)-319.5),pixelHeight:2156,pixelWidth:3533,sizes:\"578px\",src:\"https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=512 512w,https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wD4ifNFPjWn2oRdylhIJeJFLBY.png 3533w\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:phWaLNTMZ,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1mw6b8k\",layoutDependency:layoutDependency,layoutId:\"lTdfwnJjJ\",style:{backgroundColor:\"rgb(172, 247, 112)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-spUOi.framer-h1is0a, .framer-spUOi .framer-h1is0a { display: block; }\",\".framer-spUOi.framer-xxit2w { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 731px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 564px; will-change: var(--framer-will-change-override, transform); }\",\".framer-spUOi .framer-1ibv3eb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-spUOi .framer-ffkryl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 100%; z-index: 2; }\",\".framer-spUOi .framer-5nn1m8, .framer-spUOi .framer-1ksjvqx, .framer-spUOi .framer-gxwfoq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-spUOi .framer-ql9pi4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 378px; word-break: break-word; word-wrap: break-word; }\",\".framer-spUOi .framer-1fsb5gj { aspect-ratio: 1.638682745825603 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 539px); left: 88px; overflow: visible; position: absolute; top: 243px; width: 883px; z-index: 1; }\",\".framer-spUOi .framer-1mw6b8k { bottom: -100px; flex: none; left: -100px; overflow: visible; position: absolute; right: -100px; top: -100px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-spUOi.framer-xxit2w, .framer-spUOi .framer-1ibv3eb, .framer-spUOi .framer-ffkryl { gap: 0px; } .framer-spUOi.framer-xxit2w > *, .framer-spUOi .framer-1ibv3eb > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-spUOi.framer-xxit2w > :first-child, .framer-spUOi .framer-1ibv3eb > :first-child, .framer-spUOi .framer-ffkryl > :first-child { margin-top: 0px; } .framer-spUOi.framer-xxit2w > :last-child, .framer-spUOi .framer-1ibv3eb > :last-child, .framer-spUOi .framer-ffkryl > :last-child { margin-bottom: 0px; } .framer-spUOi .framer-ffkryl > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-spUOi.framer-v-eo5kj7.framer-xxit2w { cursor: unset; height: 444px; padding: 24px; width: 320px; }\",\".framer-spUOi.framer-v-eo5kj7 .framer-1ibv3eb { gap: 4px; }\",\".framer-spUOi.framer-v-eo5kj7 .framer-gxwfoq { z-index: 0; }\",\".framer-spUOi.framer-v-eo5kj7 .framer-ql9pi4 { width: 100%; z-index: 0; }\",\".framer-spUOi.framer-v-eo5kj7 .framer-1fsb5gj { bottom: -33px; height: var(--framer-aspect-ratio-supported, 353px); left: 24px; top: unset; width: 578px; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-spUOi.framer-v-eo5kj7 .framer-1ibv3eb { gap: 0px; } .framer-spUOi.framer-v-eo5kj7 .framer-1ibv3eb > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-spUOi.framer-v-eo5kj7 .framer-1ibv3eb > :first-child { margin-top: 0px; } .framer-spUOi.framer-v-eo5kj7 .framer-1ibv3eb > :last-child { margin-bottom: 0px; } }\",\".framer-spUOi.framer-v-xxit2w.hover .framer-1fsb5gj { height: var(--framer-aspect-ratio-supported, 556px); left: 74px; width: 910px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-spUOi[data-border=\"true\"]::after, .framer-spUOi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 731\n * @framerIntrinsicWidth 564\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WiMh6VLgH\":{\"layout\":[\"fixed\",\"fixed\"]},\"iK0ajKWKe\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"phWaLNTMZ\":\"card3\",\"uRLIIvw7l\":\"title\",\"ozYdELxlc\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJKRiAg0IF=withCSS(Component,css,\"framer-spUOi\");export default FramerJKRiAg0IF;FramerJKRiAg0IF.displayName=\"card3\";FramerJKRiAg0IF.defaultProps={height:731,width:564};addPropertyControls(FramerJKRiAg0IF,{variant:{options:[\"K0voIDqvv\",\"WiMh6VLgH\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},phWaLNTMZ:{title:\"Card 3\",type:ControlType.ScrollSectionRef},uRLIIvw7l:{defaultValue:\"Control finances\",displayTextArea:false,title:\"Title\",type:ControlType.String},ozYdELxlc:{defaultValue:\"Connect 1500+ banks, track cash flow, and generate financial reports\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerJKRiAg0IF,[{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\"},{family:\"Suisse Int'l Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/do6kPKhFKFxVqY3xfYZQwHKzcY.woff2\"},{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJKRiAg0IF\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"731\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"564\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WiMh6VLgH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iK0ajKWKe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"phWaLNTMZ\\\":\\\"card3\\\",\\\"uRLIIvw7l\\\":\\\"title\\\",\\\"ozYdELxlc\\\":\\\"description\\\"}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JKRiAg0IF.map", "// Generated by Framer (99f3353)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/YWvoMWBNey5LNEI32MGA/eZk5aKhCViIsFbUuCJmP/DrxneUv2k.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/k1eFeU0PcLBwXh7NToEd/2b4oMUUSWSFljmeOuVsu/rD3ppHB0Z.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={irWbxxWqn:{hover:true}};const cycleOrder=[\"irWbxxWqn\",\"BLTaa3RLD\"];const serializationHash=\"framer-UTjKc\";const variantClassNames={BLTaa3RLD:\"framer-v-1iondw3\",irWbxxWqn:\"framer-v-uyshqy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.6,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};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:\"irWbxxWqn\",Phone:\"BLTaa3RLD\"};const getProps=({card5,description,height,id,title,width,...props})=>{return{...props,R46pNLrxu:description??props.R46pNLrxu??\"Auto-calculate the taxes and get just one link to pay them all\",variant:humanReadableVariantMap[props.variant]??props.variant??\"irWbxxWqn\",VQ3OCutbJ:card5??props.VQ3OCutbJ,Zb5GDk5Tq:title??props.Zb5GDk5Tq??\"Taxes are covered too\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,VQ3OCutbJ,Zb5GDk5Tq,R46pNLrxu,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"irWbxxWqn\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"BLTaa3RLD\")return true;return false;};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-uyshqy\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"irWbxxWqn\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.04)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},variants:{\"irWbxxWqn-hover\":{backgroundColor:\"rgb(255, 255, 255)\"},BLTaa3RLD:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({\"irWbxxWqn-hover\":{\"data-framer-name\":undefined},BLTaa3RLD:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bptk38\",\"data-framer-name\":\"Frame 13001884\",layoutDependency:layoutDependency,layoutId:\"I18283:9418;18283:9657\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:VQ3OCutbJ,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-spjfy0\",\"data-framer-name\":\"Frame 13001884\",layoutDependency:layoutDependency,layoutId:\"XwwggfzO6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nbrw25\",\"data-styles-preset\":\"DrxneUv2k\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Taxes are covered too\"})})}),className:\"framer-1b9tb5x\",\"data-framer-name\":\"Taxes are covered too\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"FQWfATo2Y\",style:{\"--extracted-1eung3n\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:Zb5GDk5Tq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Auto-calculate the taxes and get just one link to pay them all\"})}),className:\"framer-ya1jin\",\"data-framer-name\":\"Auto-calculate the taxes and get just one link to pay them all\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"w6YIQ_aXY\",style:{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:R46pNLrxu,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Taxes are covered too\"})}),className:\"framer-iov9dz\",\"data-framer-name\":\"Taxes are covered too\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"I18283:9418;18283:9658\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:Zb5GDk5Tq,variants:{\"irWbxxWqn-hover\":{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"irWbxxWqn-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Taxes are covered too\"})})},BLTaa3RLD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nbrw25\",\"data-styles-preset\":\"DrxneUv2k\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Taxes are covered too\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Auto-calculate the taxes and get just one link to pay them all\"})}),className:\"framer-1y9m3kh\",\"data-framer-name\":\"Auto-calculate the taxes and get just one link to pay them all\",fonts:[\"CUSTOM;Suisse Int'l Regular\"],layoutDependency:layoutDependency,layoutId:\"I18283:9418;18283:9659\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:R46pNLrxu,variants:{\"irWbxxWqn-hover\":{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"irWbxxWqn-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Auto-calculate the taxes and get just one link to pay them all\"})})},BLTaa3RLD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",children:\"Auto-calculate the taxes and get just one link to pay them all\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:VQ3OCutbJ,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-i7e736\",layoutDependency:layoutDependency,layoutId:\"d1D_aLVbq\",style:{backgroundColor:\"rgb(255, 255, 255)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UTjKc.framer-1mvaep, .framer-UTjKc .framer-1mvaep { display: block; }\",\".framer-UTjKc.framer-uyshqy { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 314px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 230px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UTjKc .framer-bptk38 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 234px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UTjKc .framer-spjfy0 { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; z-index: 2; }\",\".framer-UTjKc .framer-1b9tb5x, .framer-UTjKc .framer-ya1jin, .framer-UTjKc .framer-iov9dz, .framer-UTjKc .framer-1y9m3kh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UTjKc .framer-i7e736 { bottom: -100px; flex: none; left: -100px; overflow: visible; position: absolute; right: -100px; top: -100px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UTjKc.framer-uyshqy, .framer-UTjKc .framer-bptk38, .framer-UTjKc .framer-spjfy0 { gap: 0px; } .framer-UTjKc.framer-uyshqy > *, .framer-UTjKc .framer-bptk38 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-UTjKc.framer-uyshqy > :first-child, .framer-UTjKc .framer-bptk38 > :first-child, .framer-UTjKc .framer-spjfy0 > :first-child { margin-top: 0px; } .framer-UTjKc.framer-uyshqy > :last-child, .framer-UTjKc .framer-bptk38 > :last-child, .framer-UTjKc .framer-spjfy0 > :last-child { margin-bottom: 0px; } .framer-UTjKc .framer-spjfy0 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-UTjKc.framer-v-1iondw3.framer-uyshqy { cursor: unset; height: 201px; padding: 24px; }\",\".framer-UTjKc.framer-v-1iondw3 .framer-bptk38 { gap: 4px; height: min-content; }\",\".framer-UTjKc.framer-v-1iondw3 .framer-iov9dz, .framer-UTjKc.framer-v-1iondw3 .framer-1y9m3kh { z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UTjKc.framer-v-1iondw3 .framer-bptk38 { gap: 0px; } .framer-UTjKc.framer-v-1iondw3 .framer-bptk38 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-UTjKc.framer-v-1iondw3 .framer-bptk38 > :first-child { margin-top: 0px; } .framer-UTjKc.framer-v-1iondw3 .framer-bptk38 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-UTjKc[data-border=\"true\"]::after, .framer-UTjKc [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 314\n * @framerIntrinsicWidth 230\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BLTaa3RLD\":{\"layout\":[\"fixed\",\"fixed\"]},\"bMmCMVt_p\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"VQ3OCutbJ\":\"card5\",\"Zb5GDk5Tq\":\"title\",\"R46pNLrxu\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerlD039myne=withCSS(Component,css,\"framer-UTjKc\");export default FramerlD039myne;FramerlD039myne.displayName=\"card5\";FramerlD039myne.defaultProps={height:314,width:230};addPropertyControls(FramerlD039myne,{variant:{options:[\"irWbxxWqn\",\"BLTaa3RLD\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},VQ3OCutbJ:{title:\"Card 5\",type:ControlType.ScrollSectionRef},Zb5GDk5Tq:{defaultValue:\"Taxes are covered too\",displayTextArea:false,title:\"Title\",type:ControlType.String},R46pNLrxu:{defaultValue:\"Auto-calculate the taxes and get just one link to pay them all\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerlD039myne,[{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\"},{family:\"Suisse Int'l Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/do6kPKhFKFxVqY3xfYZQwHKzcY.woff2\"},{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlD039myne\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"314\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BLTaa3RLD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bMmCMVt_p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"VQ3OCutbJ\\\":\\\"card5\\\",\\\"Zb5GDk5Tq\\\":\\\"title\\\",\\\"R46pNLrxu\\\":\\\"description\\\"}\",\"framerIntrinsicWidth\":\"230\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lD039myne.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/YWvoMWBNey5LNEI32MGA/eZk5aKhCViIsFbUuCJmP/DrxneUv2k.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/k1eFeU0PcLBwXh7NToEd/2b4oMUUSWSFljmeOuVsu/rD3ppHB0Z.js\";const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const enabledGestures={LsjwmZLXy:{hover:true}};const cycleOrder=[\"LsjwmZLXy\",\"yKbd6BTOu\"];const serializationHash=\"framer-SA0b9\";const variantClassNames={LsjwmZLXy:\"framer-v-16nywhf\",yKbd6BTOu:\"framer-v-6r5lry\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.6,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:150};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:\"LsjwmZLXy\",Phone:\"yKbd6BTOu\"};const getProps=({card1,description,form,height,id,notific,title,width,...props})=>{return{...props,AJkgGzf74:notific??props.AJkgGzf74??{alt:\"\",pixelHeight:344,pixelWidth:884,src:\"https://framerusercontent.com/images/O22ZxizPWdNnJV1SXK5Sv5ZPOo.png\",srcSet:\"https://framerusercontent.com/images/O22ZxizPWdNnJV1SXK5Sv5ZPOo.png?scale-down-to=512 512w,https://framerusercontent.com/images/O22ZxizPWdNnJV1SXK5Sv5ZPOo.png 884w\"},dvcIDmwzj:form??props.dvcIDmwzj??{alt:\"\",pixelHeight:282,pixelWidth:402,src:\"https://framerusercontent.com/images/qIVhdc96DMLK0gr3tcpQbyI.svg\"},jSYH81VSl:title??props.jSYH81VSl??\"Invoice like a pro\",KIWoNu3bZ:card1??props.KIWoNu3bZ,variant:humanReadableVariantMap[props.variant]??props.variant??\"LsjwmZLXy\",xpxWrYKee:description??props.xpxWrYKee??\"Create invoices with online payments or upload supplier invoices in many ways\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,KIWoNu3bZ,jSYH81VSl,xpxWrYKee,dvcIDmwzj,AJkgGzf74,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LsjwmZLXy\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"yKbd6BTOu\")return true;return false;};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-16nywhf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"LsjwmZLXy\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.04)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},variants:{\"LsjwmZLXy-hover\":{backgroundColor:\"rgb(255, 129, 0)\"},yKbd6BTOu:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({\"LsjwmZLXy-hover\":{\"data-framer-name\":undefined},yKbd6BTOu:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1956me4\",layoutDependency:layoutDependency,layoutId:\"IoRQUx2cF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Invoice like a pro\"})}),className:\"framer-9dzosn\",\"data-framer-name\":\"Invoice like a pro\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"I18283:9411;18283:9593\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:jSYH81VSl,variants:{yKbd6BTOu:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({yKbd6BTOu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nbrw25\",\"data-styles-preset\":\"DrxneUv2k\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Invoice like a pro\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Create invoices with online payments or upload supplier invoices in many ways\"})}),className:\"framer-1il7rt8\",\"data-framer-name\":\"Always stay in the loop with precise terms, clear guidance, and firm deadlines\",fonts:[\"CUSTOM;Suisse Int'l Regular\"],layoutDependency:layoutDependency,layoutId:\"I18283:9411;18283:9594\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:xpxWrYKee,variants:{\"LsjwmZLXy-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"LsjwmZLXy-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Create invoices with online payments or upload supplier invoices in many ways\"})})},yKbd6BTOu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",children:\"Create invoices with online payments or upload supplier invoices in many ways\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:KIWoNu3bZ,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ae43d30d-7c76-4e1c-9c12-516f57479270, rgb(255, 255, 255)))\"},children:\"Create invoices with online payments or upload supplier invoices in many ways\"})}),className:\"framer-10w0hwo\",\"data-framer-name\":\"Always stay in the loop with precise terms, clear guidance, and firm deadlines\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Moeaftjbb\",style:{\"--extracted-r6o4lv\":\"var(--token-ae43d30d-7c76-4e1c-9c12-516f57479270, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:xpxWrYKee,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9r067v\",layoutDependency:layoutDependency,layoutId:\"C04Z4BMN9\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||337)-175.5+0),pixelHeight:282,pixelWidth:402,sizes:\"284px\",...toResponsiveImage(dvcIDmwzj),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-xdohkd\",layoutDependency:layoutDependency,layoutId:\"yaZqsH80J\",...addPropertyOverrides({\"LsjwmZLXy-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||337)-175.5+0),pixelHeight:282,pixelWidth:402,sizes:\"297px\",...toResponsiveImage(dvcIDmwzj),...{positionX:\"center\",positionY:\"center\"}}},yKbd6BTOu:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||321)-184+205-175),pixelHeight:282,pixelWidth:402,sizes:\"284px\",...toResponsiveImage(dvcIDmwzj),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||337)-175.5+200-7),pixelHeight:344,pixelWidth:884,sizes:\"155px\",...toResponsiveImage(AJkgGzf74),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1gfs4wf\",layoutDependency:layoutDependency,layoutId:\"O6KSXx3f6\",...addPropertyOverrides({\"LsjwmZLXy-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||337)-175.5+200-138),pixelHeight:344,pixelWidth:884,sizes:\"198px\",...toResponsiveImage(AJkgGzf74),...{positionX:\"center\",positionY:\"center\"}}},yKbd6BTOu:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:KIWoNu3bZ,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||321)-184+0),pixelHeight:344,pixelWidth:884,sizes:\"155px\",...toResponsiveImage(AJkgGzf74),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:KIWoNu3bZ,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-v5ywvs\",layoutDependency:layoutDependency,layoutId:\"NMdDuGAba\",style:{backgroundColor:\"rgb(255, 129, 0)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SA0b9.framer-1ayowmw, .framer-SA0b9 .framer-1ayowmw { display: block; }\",\".framer-SA0b9.framer-16nywhf { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 337px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 524px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SA0b9 .framer-1956me4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SA0b9 .framer-9dzosn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SA0b9 .framer-1il7rt8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 444px; word-break: break-word; word-wrap: break-word; }\",\".framer-SA0b9 .framer-10w0hwo { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; right: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-SA0b9 .framer-9r067v { bottom: -24px; flex: none; height: 200px; left: 40px; overflow: visible; position: absolute; width: 284px; z-index: 1; }\",\".framer-SA0b9 .framer-xdohkd { flex: none; height: 199px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-SA0b9 .framer-1gfs4wf { bottom: -53px; flex: none; height: 60px; overflow: visible; position: absolute; right: -72px; width: 155px; z-index: 2; }\",\".framer-SA0b9 .framer-v5ywvs { bottom: -100px; flex: none; left: -100px; overflow: visible; position: absolute; right: -100px; top: -100px; z-index: 1; }\",\".framer-SA0b9.framer-v-6r5lry.framer-16nywhf { cursor: unset; height: 321px; padding: 24px; width: 320px; }\",\".framer-SA0b9.framer-v-6r5lry .framer-1956me4 { gap: 4px; }\",\".framer-SA0b9.framer-v-6r5lry .framer-9dzosn { order: 0; z-index: 2; }\",\".framer-SA0b9.framer-v-6r5lry .framer-1il7rt8 { order: 1; width: 100%; z-index: 0; }\",\".framer-SA0b9.framer-v-6r5lry .framer-10w0hwo { order: 2; }\",\".framer-SA0b9.framer-v-6r5lry .framer-9r067v { bottom: -21px; height: 205px; left: 18px; z-index: 2; }\",\".framer-SA0b9.framer-v-6r5lry .framer-xdohkd { bottom: 0px; height: 175px; top: unset; }\",\".framer-SA0b9.framer-v-6r5lry .framer-1gfs4wf { bottom: unset; right: 0px; top: 0px; }\",\".framer-SA0b9.framer-v-16nywhf.hover .framer-1956me4 { order: 0; }\",\".framer-SA0b9.framer-v-16nywhf.hover .framer-9r067v { order: 1; }\",\".framer-SA0b9.framer-v-16nywhf.hover .framer-xdohkd { height: 208px; right: unset; width: 297px; }\",\".framer-SA0b9.framer-v-16nywhf.hover .framer-1gfs4wf { bottom: 62px; height: 76px; left: 209px; right: unset; width: 198px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-SA0b9[data-border=\"true\"]::after, .framer-SA0b9 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 337\n * @framerIntrinsicWidth 524\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yKbd6BTOu\":{\"layout\":[\"fixed\",\"fixed\"]},\"dAQbdlFxC\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"KIWoNu3bZ\":\"card1\",\"jSYH81VSl\":\"title\",\"xpxWrYKee\":\"description\",\"dvcIDmwzj\":\"form\",\"AJkgGzf74\":\"notific\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerqR7rMFEgN=withCSS(Component,css,\"framer-SA0b9\");export default FramerqR7rMFEgN;FramerqR7rMFEgN.displayName=\"card1\";FramerqR7rMFEgN.defaultProps={height:337,width:524};addPropertyControls(FramerqR7rMFEgN,{variant:{options:[\"LsjwmZLXy\",\"yKbd6BTOu\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},KIWoNu3bZ:{title:\"Card1\",type:ControlType.ScrollSectionRef},jSYH81VSl:{defaultValue:\"Invoice like a pro\",displayTextArea:false,title:\"Title\",type:ControlType.String},xpxWrYKee:{defaultValue:\"Create invoices with online payments or upload supplier invoices in many ways\",displayTextArea:false,title:\"Description\",type:ControlType.String},dvcIDmwzj:{__defaultAssetReference:\"data:framer/asset-reference,qIVhdc96DMLK0gr3tcpQbyI.svg?originalFilename=image.svg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,qIVhdc96DMLK0gr3tcpQbyI.svg?originalFilename=image.svg&preferredSize=auto\"},description:\"\",title:\"Form\",type:ControlType.ResponsiveImage},AJkgGzf74:{__defaultAssetReference:\"data:framer/asset-reference,O22ZxizPWdNnJV1SXK5Sv5ZPOo.png?originalFilename=notific+%281%29.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,O22ZxizPWdNnJV1SXK5Sv5ZPOo.png?originalFilename=notific+%281%29.png&preferredSize=auto\"},title:\"Notific\",type:ControlType.ResponsiveImage}});addFonts(FramerqR7rMFEgN,[{explicitInter:true,fonts:[{family:\"Suisse Int'l Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/do6kPKhFKFxVqY3xfYZQwHKzcY.woff2\"},{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\"},{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqR7rMFEgN\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"KIWoNu3bZ\\\":\\\"card1\\\",\\\"jSYH81VSl\\\":\\\"title\\\",\\\"xpxWrYKee\\\":\\\"description\\\",\\\"dvcIDmwzj\\\":\\\"form\\\",\\\"AJkgGzf74\\\":\\\"notific\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yKbd6BTOu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dAQbdlFxC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"337\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"524\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qR7rMFEgN.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/YWvoMWBNey5LNEI32MGA/eZk5aKhCViIsFbUuCJmP/DrxneUv2k.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/k1eFeU0PcLBwXh7NToEd/2b4oMUUSWSFljmeOuVsu/rD3ppHB0Z.js\";const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const enabledGestures={oBJjJ1VS2:{hover:true}};const cycleOrder=[\"oBJjJ1VS2\",\"SO4Haroc2\"];const serializationHash=\"framer-TAmur\";const variantClassNames={oBJjJ1VS2:\"framer-v-1flq618\",SO4Haroc2:\"framer-v-jwtmum\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.6,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:14};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:14};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:64,y:64};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:64,y:64};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:\"oBJjJ1VS2\",Phone:\"SO4Haroc2\"};const getProps=({buttonsCard,card4,description,height,id,title,width,workerCard,...props})=>{return{...props,cvRIf8Nj4:description??props.cvRIf8Nj4??\"Payroll, salaries, dividends, reimbursements, you name them\",FSr04dmGy:title??props.FSr04dmGy??\"Pay and get paid\",ijT8a02Hk:buttonsCard??props.ijT8a02Hk??{alt:\"\",pixelHeight:172,pixelWidth:275,src:\"https://framerusercontent.com/images/QbPhJY7vEpI9GnbHjcbjukjQdM.svg\"},L_AhZFkNc:card4??props.L_AhZFkNc,sNr0Hv4q8:workerCard??props.sNr0Hv4q8??{alt:\"\",pixelHeight:124,pixelWidth:235,src:\"https://framerusercontent.com/images/MbodjFGx1knTspoiIxBNNJ71q4.svg\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"oBJjJ1VS2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,L_AhZFkNc,FSr04dmGy,cvRIf8Nj4,sNr0Hv4q8,ijT8a02Hk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oBJjJ1VS2\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"SO4Haroc2\")return true;return false;};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-1flq618\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"oBJjJ1VS2\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.04)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},variants:{\"oBJjJ1VS2-hover\":{backgroundColor:\"rgb(255, 214, 51)\"},SO4Haroc2:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({\"oBJjJ1VS2-hover\":{\"data-framer-name\":undefined},SO4Haroc2:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4uv5q1\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"I18283:9416;18283:9678\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Pay and get paid\"})}),className:\"framer-1skwvh8\",\"data-framer-name\":\"Pay and get paid\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"I18283:9416;18283:9679\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:FSr04dmGy,variants:{\"oBJjJ1VS2-hover\":{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"oBJjJ1VS2-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Pay and get paid\"})})},SO4Haroc2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nbrw25\",\"data-styles-preset\":\"DrxneUv2k\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Pay and get paid\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Payroll, salaries, dividends, reimbursements, you name them\"})}),className:\"framer-1u8y9jt\",\"data-framer-name\":\"Payroll, salaries, dividends, reimbursements, you name them\",fonts:[\"CUSTOM;Suisse Int'l Regular\"],layoutDependency:layoutDependency,layoutId:\"I18283:9416;18283:9680\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:cvRIf8Nj4,variants:{\"oBJjJ1VS2-hover\":{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"oBJjJ1VS2-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Payroll, salaries, dividends, reimbursements, you name them\"})})},SO4Haroc2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",children:\"Payroll, salaries, dividends, reimbursements, you name them\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:L_AhZFkNc,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1gzh683\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"s2MzFrA77\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nbrw25\",\"data-styles-preset\":\"DrxneUv2k\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Pay and get paid\"})})}),className:\"framer-o3jucn\",\"data-framer-name\":\"Pay and get paid\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"f5yS4E1gO\",style:{\"--extracted-1eung3n\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:FSr04dmGy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 33))\"},children:\"Payroll, salaries, dividends, reimbursements, you name them\"})}),className:\"framer-1s47roj\",\"data-framer-name\":\"Payroll, salaries, dividends, reimbursements, you name them\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fU77Ictfe\",style:{\"--extracted-r6o4lv\":\"rgb(33, 33, 33)\",\"--framer-paragraph-spacing\":\"0px\"},text:cvRIf8Nj4,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r8svap\",layoutDependency:layoutDependency,layoutId:\"nhl6C9od6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||394)-228+236-152),pixelHeight:172,pixelWidth:275,sizes:\"274px\",...toResponsiveImage(ijT8a02Hk),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1xfbqnv\",layoutDependency:layoutDependency,layoutId:\"H9w_iayCD\",...addPropertyOverrides({\"oBJjJ1VS2-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||394)-228+236-165),pixelHeight:172,pixelWidth:275,sizes:\"274px\",...toResponsiveImage(ijT8a02Hk),...{positionX:\"center\",positionY:\"center\"}}},SO4Haroc2:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||289)-172+172-102),pixelHeight:172,pixelWidth:275,sizes:\"186px\",...toResponsiveImage(ijT8a02Hk),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||394)-228+21),pixelHeight:124,pixelWidth:235,sizes:\"234px\",...toResponsiveImage(sNr0Hv4q8),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1qpbcif\",layoutDependency:layoutDependency,layoutId:\"OZFNjC4a7\",...addPropertyOverrides({\"oBJjJ1VS2-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||394)-228+6),pixelHeight:124,pixelWidth:235,sizes:\"234px\",...toResponsiveImage(sNr0Hv4q8),...{positionX:\"center\",positionY:\"center\"}}},SO4Haroc2:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:L_AhZFkNc,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||289)-172+172-168),pixelHeight:124,pixelWidth:235,sizes:\"148px\",...toResponsiveImage(sNr0Hv4q8),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||394)- -35),pixelHeight:16,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NzXjJIRK6BfNP4qOtQrdmWe5U.svg\"},className:\"framer-xec9q0\",layoutDependency:layoutDependency,layoutId:\"LTqVl6K3k\",...addPropertyOverrides({\"oBJjJ1VS2-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||394)-89),pixelHeight:16,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NzXjJIRK6BfNP4qOtQrdmWe5U.svg\"}},SO4Haroc2:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:L_AhZFkNc,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||289)-57),pixelHeight:16,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NzXjJIRK6BfNP4qOtQrdmWe5U.svg\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:L_AhZFkNc,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-2t4leo\",layoutDependency:layoutDependency,layoutId:\"JqIkpizjm\",style:{backgroundColor:\"rgb(254, 215, 50)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TAmur.framer-1758x93, .framer-TAmur .framer-1758x93 { display: block; }\",\".framer-TAmur.framer-1flq618 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 394px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 524px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TAmur .framer-4uv5q1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TAmur .framer-1skwvh8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TAmur .framer-1u8y9jt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 412px; word-break: break-word; word-wrap: break-word; }\",\".framer-TAmur .framer-1gzh683 { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; z-index: 2; }\",\".framer-TAmur .framer-o3jucn, .framer-TAmur .framer-1s47roj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-TAmur .framer-r8svap { bottom: -8px; flex: none; height: 236px; left: calc(50.00000000000002% - 476px / 2); overflow: visible; position: absolute; width: 476px; z-index: 1; }\",\".framer-TAmur .framer-1xfbqnv { bottom: -21px; flex: none; height: 173px; left: 1px; overflow: hidden; position: absolute; width: 274px; z-index: 1; }\",\".framer-TAmur .framer-1qpbcif { flex: none; height: 125px; overflow: hidden; position: absolute; right: 0px; top: 21px; width: 234px; z-index: 1; }\",\".framer-TAmur .framer-xec9q0 { bottom: -59px; flex: none; height: 24px; overflow: hidden; position: absolute; right: 154px; width: 22px; z-index: 1; }\",\".framer-TAmur .framer-2t4leo { bottom: -100px; flex: none; left: -100px; overflow: visible; position: absolute; right: -100px; top: -100px; z-index: 1; }\",\".framer-TAmur.framer-v-jwtmum.framer-1flq618 { cursor: unset; height: 289px; padding: 24px; width: 320px; }\",\".framer-TAmur.framer-v-jwtmum .framer-4uv5q1 { gap: 4px; }\",\".framer-TAmur.framer-v-jwtmum .framer-1skwvh8 { order: 1; z-index: 0; }\",\".framer-TAmur.framer-v-jwtmum .framer-1u8y9jt { order: 2; width: 100%; z-index: 0; }\",\".framer-TAmur.framer-v-jwtmum .framer-1gzh683 { order: 0; }\",\".framer-TAmur.framer-v-jwtmum .framer-r8svap { bottom: 0px; height: 172px; left: 24px; width: 272px; z-index: 2; }\",\".framer-TAmur.framer-v-jwtmum .framer-1xfbqnv { bottom: -19px; height: 121px; left: 0px; width: 186px; }\",\".framer-TAmur.framer-v-jwtmum .framer-1qpbcif { bottom: 87px; height: 81px; left: 124px; right: unset; top: unset; width: 148px; }\",\".framer-TAmur.framer-v-jwtmum .framer-xec9q0 { bottom: 33px; left: 133px; right: unset; z-index: 2; }\",\".framer-TAmur.framer-v-1flq618.hover .framer-1xfbqnv { bottom: -8px; }\",\".framer-TAmur.framer-v-1flq618.hover .framer-1qpbcif { right: -8px; top: 6px; }\",\".framer-TAmur.framer-v-1flq618.hover .framer-xec9q0 { bottom: 65px; left: 176px; right: unset; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-TAmur[data-border=\"true\"]::after, .framer-TAmur [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 394\n * @framerIntrinsicWidth 524\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SO4Haroc2\":{\"layout\":[\"fixed\",\"fixed\"]},\"QqUdXmuh1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"L_AhZFkNc\":\"card4\",\"FSr04dmGy\":\"title\",\"cvRIf8Nj4\":\"description\",\"sNr0Hv4q8\":\"workerCard\",\"ijT8a02Hk\":\"buttonsCard\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramertbnlS9zFZ=withCSS(Component,css,\"framer-TAmur\");export default FramertbnlS9zFZ;FramertbnlS9zFZ.displayName=\"card4\";FramertbnlS9zFZ.defaultProps={height:394,width:524};addPropertyControls(FramertbnlS9zFZ,{variant:{options:[\"oBJjJ1VS2\",\"SO4Haroc2\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},L_AhZFkNc:{title:\"Card 4\",type:ControlType.ScrollSectionRef},FSr04dmGy:{defaultValue:\"Pay and get paid\",displayTextArea:false,title:\"Title\",type:ControlType.String},cvRIf8Nj4:{defaultValue:\"Payroll, salaries, dividends, reimbursements, you name them\",displayTextArea:false,title:\"Description\",type:ControlType.String},sNr0Hv4q8:{__defaultAssetReference:\"data:framer/asset-reference,MbodjFGx1knTspoiIxBNNJ71q4.svg?originalFilename=Frame+12420.svg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,MbodjFGx1knTspoiIxBNNJ71q4.svg?originalFilename=Frame+12420.svg&preferredSize=auto\"},title:\"Worker Card\",type:ControlType.ResponsiveImage},ijT8a02Hk:{__defaultAssetReference:\"data:framer/asset-reference,QbPhJY7vEpI9GnbHjcbjukjQdM.svg?originalFilename=Frame+13000611.svg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,QbPhJY7vEpI9GnbHjcbjukjQdM.svg?originalFilename=Frame+13000611.svg&preferredSize=auto\"},title:\"Buttons card\",type:ControlType.ResponsiveImage}});addFonts(FramertbnlS9zFZ,[{explicitInter:true,fonts:[{family:\"Suisse Int'l Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/do6kPKhFKFxVqY3xfYZQwHKzcY.woff2\"},{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\"},{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertbnlS9zFZ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"524\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SO4Haroc2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QqUdXmuh1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"394\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"L_AhZFkNc\\\":\\\"card4\\\",\\\"FSr04dmGy\\\":\\\"title\\\",\\\"cvRIf8Nj4\\\":\\\"description\\\",\\\"sNr0Hv4q8\\\":\\\"workerCard\\\",\\\"ijT8a02Hk\\\":\\\"buttonsCard\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tbnlS9zFZ.map", "// Generated by Framer (99f3353)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/YWvoMWBNey5LNEI32MGA/eZk5aKhCViIsFbUuCJmP/DrxneUv2k.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/k1eFeU0PcLBwXh7NToEd/2b4oMUUSWSFljmeOuVsu/rD3ppHB0Z.js\";const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const enabledGestures={sZ6NLVB14:{hover:true}};const cycleOrder=[\"sZ6NLVB14\",\"CxifxdKq0\"];const serializationHash=\"framer-RTIzd\";const variantClassNames={CxifxdKq0:\"framer-v-6k3a88\",sZ6NLVB14:\"framer-v-16of1mr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.6,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition2,x:0,y:0};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:\"sZ6NLVB14\",Phone:\"CxifxdKq0\"};const getProps=({card2,description,height,id,title,width,...props})=>{return{...props,gaLHpEMS8:card2??props.gaLHpEMS8,haGEkmxjA:title??props.haGEkmxjA??\"Auto-match your docs\",variant:humanReadableVariantMap[props.variant]??props.variant??\"sZ6NLVB14\",WyfUt87aK:description??props.WyfUt87aK??\"Reconcile documents with your transactions automatically or manually\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,gaLHpEMS8,haGEkmxjA,WyfUt87aK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sZ6NLVB14\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"CxifxdKq0\")return true;return false;};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-16of1mr\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"sZ6NLVB14\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.04)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},variants:{\"sZ6NLVB14-hover\":{backgroundColor:\"rgb(103, 82, 247)\"},CxifxdKq0:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({\"sZ6NLVB14-hover\":{\"data-framer-name\":undefined},CxifxdKq0:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-107j8d4\",\"data-framer-name\":\"Frame 13001884\",layoutDependency:layoutDependency,layoutId:\"I18283:9412;18283:9631\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Auto-match your docs\"})}),className:\"framer-1bpaaoi\",\"data-framer-name\":\"Auto-match your docs\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"I18283:9412;18283:9632\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:haGEkmxjA,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CxifxdKq0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nbrw25\",\"data-styles-preset\":\"DrxneUv2k\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Auto-match your docs\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Reconcile documents with your transactions automatically or manually\"})}),className:\"framer-zkniq8\",\"data-framer-name\":\"Link documents to your transactions automatically or manually\",fonts:[\"CUSTOM;Suisse Int'l Regular\"],layoutDependency:layoutDependency,layoutId:\"I18283:9412;18283:9633\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:WyfUt87aK,variants:{\"sZ6NLVB14-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},CxifxdKq0:{\"--extracted-r6o4lv\":\"var(--token-d3db539b-7bb3-4d06-83b4-7290b6937c73, rgba(255, 255, 255, 0.64))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"sZ6NLVB14-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Reconcile documents with your transactions automatically or manually\"})})},CxifxdKq0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d3db539b-7bb3-4d06-83b4-7290b6937c73, rgba(255, 255, 255, 0.64)))\"},children:\"Reconcile documents with your transactions automatically or manually\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:gaLHpEMS8,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ae43d30d-7c76-4e1c-9c12-516f57479270, rgb(255, 255, 255)))\"},children:\"Reconcile documents with your transactions automatically or manually\"})}),className:\"framer-y17aq1\",\"data-framer-name\":\"Link documents to your transactions automatically or manually\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"toPVrcqI6\",style:{\"--extracted-r6o4lv\":\"var(--token-ae43d30d-7c76-4e1c-9c12-516f57479270, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:WyfUt87aK,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||337)-193),pixelHeight:230,pixelWidth:230,src:\"https://framerusercontent.com/images/JKCqYo8vyKF8dMfnT1ogAudktg.svg\"},className:\"framer-avkfeh\",layoutDependency:layoutDependency,layoutId:\"KsBlELTBC\",...addPropertyOverrides({CxifxdKq0:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:gaLHpEMS8,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||254)-105),pixelHeight:230,pixelWidth:230,src:\"https://framerusercontent.com/images/JKCqYo8vyKF8dMfnT1ogAudktg.svg\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:gaLHpEMS8,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1l7gbdg\",layoutDependency:layoutDependency,layoutId:\"nM_3EJGlz\",style:{backgroundColor:\"rgb(103, 82, 247)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RTIzd.framer-zyn5k9, .framer-RTIzd .framer-zyn5k9 { display: block; }\",\".framer-RTIzd.framer-16of1mr { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 337px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 564px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RTIzd .framer-107j8d4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RTIzd .framer-1bpaaoi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RTIzd .framer-zkniq8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 439px; word-break: break-word; word-wrap: break-word; }\",\".framer-RTIzd .framer-y17aq1 { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-RTIzd .framer-avkfeh { bottom: -37px; flex: none; height: 230px; overflow: visible; position: absolute; right: 40px; width: 230px; z-index: 1; }\",\".framer-RTIzd .framer-1l7gbdg { bottom: -100px; flex: none; left: -100px; overflow: visible; position: absolute; right: -100px; top: -100px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RTIzd.framer-16of1mr, .framer-RTIzd .framer-107j8d4 { gap: 0px; } .framer-RTIzd.framer-16of1mr > *, .framer-RTIzd .framer-107j8d4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-RTIzd.framer-16of1mr > :first-child, .framer-RTIzd .framer-107j8d4 > :first-child { margin-top: 0px; } .framer-RTIzd.framer-16of1mr > :last-child, .framer-RTIzd .framer-107j8d4 > :last-child { margin-bottom: 0px; } }\",\".framer-RTIzd.framer-v-6k3a88.framer-16of1mr { cursor: unset; height: 254px; padding: 24px; width: 320px; }\",\".framer-RTIzd.framer-v-6k3a88 .framer-107j8d4 { gap: 4px; }\",\".framer-RTIzd.framer-v-6k3a88 .framer-1bpaaoi { z-index: 2; }\",\".framer-RTIzd.framer-v-6k3a88 .framer-zkniq8 { width: 100%; z-index: 0; }\",\".framer-RTIzd.framer-v-6k3a88 .framer-avkfeh { aspect-ratio: 1 / 1; bottom: -56px; height: var(--framer-aspect-ratio-supported, 161px); right: 36px; width: 161px; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RTIzd.framer-v-6k3a88 .framer-107j8d4 { gap: 0px; } .framer-RTIzd.framer-v-6k3a88 .framer-107j8d4 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-RTIzd.framer-v-6k3a88 .framer-107j8d4 > :first-child { margin-top: 0px; } .framer-RTIzd.framer-v-6k3a88 .framer-107j8d4 > :last-child { margin-bottom: 0px; } }\",\".framer-RTIzd.framer-v-16of1mr.hover .framer-avkfeh { bottom: -72px; height: 265px; width: 265px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-RTIzd[data-border=\"true\"]::after, .framer-RTIzd [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 337\n * @framerIntrinsicWidth 564\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"CxifxdKq0\":{\"layout\":[\"fixed\",\"fixed\"]},\"xK5HycQ0h\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"gaLHpEMS8\":\"card2\",\"haGEkmxjA\":\"title\",\"WyfUt87aK\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUMVL6xv3i=withCSS(Component,css,\"framer-RTIzd\");export default FramerUMVL6xv3i;FramerUMVL6xv3i.displayName=\"card2\";FramerUMVL6xv3i.defaultProps={height:337,width:564};addPropertyControls(FramerUMVL6xv3i,{variant:{options:[\"sZ6NLVB14\",\"CxifxdKq0\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},gaLHpEMS8:{title:\"Card2\",type:ControlType.ScrollSectionRef},haGEkmxjA:{defaultValue:\"Auto-match your docs\",displayTextArea:false,title:\"Title\",type:ControlType.String},WyfUt87aK:{defaultValue:\"Reconcile documents with your transactions automatically or manually\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerUMVL6xv3i,[{explicitInter:true,fonts:[{family:\"Suisse Int'l Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/do6kPKhFKFxVqY3xfYZQwHKzcY.woff2\"},{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\"},{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUMVL6xv3i\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"564\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CxifxdKq0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xK5HycQ0h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"337\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"gaLHpEMS8\\\":\\\"card2\\\",\\\"haGEkmxjA\\\":\\\"title\\\",\\\"WyfUt87aK\\\":\\\"description\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UMVL6xv3i.map", "// Generated by Framer (99f3353)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/YWvoMWBNey5LNEI32MGA/eZk5aKhCViIsFbUuCJmP/DrxneUv2k.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/k1eFeU0PcLBwXh7NToEd/2b4oMUUSWSFljmeOuVsu/rD3ppHB0Z.js\";const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const enabledGestures={F7PlqElll:{hover:true}};const cycleOrder=[\"F7PlqElll\",\"QYmg2jBZY\"];const serializationHash=\"framer-IHQtH\";const variantClassNames={F7PlqElll:\"framer-v-xvpm8\",QYmg2jBZY:\"framer-v-2wdj94\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.6,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition2,x:0,y:0};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:\"F7PlqElll\",Phone:\"QYmg2jBZY\"};const getProps=({card6,description,height,id,title,width,...props})=>{return{...props,EBMjmAcHU:description??props.EBMjmAcHU??\"Receive timely reminders to upload your documents\",variant:humanReadableVariantMap[props.variant]??props.variant??\"F7PlqElll\",X8NSWmKAP:title??props.X8NSWmKAP??\"Never miss a deadline\",YNiKriV_I:card6??props.YNiKriV_I};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,YNiKriV_I,X8NSWmKAP,EBMjmAcHU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"F7PlqElll\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"QYmg2jBZY\")return true;return false;};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-xvpm8\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"F7PlqElll\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.04)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},variants:{\"F7PlqElll-hover\":{backgroundColor:\"rgb(255, 255, 255)\"},QYmg2jBZY:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({\"F7PlqElll-hover\":{\"data-framer-name\":undefined},QYmg2jBZY:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iytf8v\",\"data-framer-name\":\"Frame 13001884\",layoutDependency:layoutDependency,layoutId:\"I18283:9419;18283:9657\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:YNiKriV_I,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-sl5tjh\",\"data-framer-name\":\"Frame 13001884\",layoutDependency:layoutDependency,layoutId:\"K4GguAXNx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nbrw25\",\"data-styles-preset\":\"DrxneUv2k\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Never miss a deadline\"})})}),className:\"framer-188hlsa\",\"data-framer-name\":\"Taxes are covered too\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"F3ScfOrGB\",style:{\"--extracted-1eung3n\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:X8NSWmKAP,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Receive timely reminders to upload your documents\"})}),className:\"framer-1yips64\",\"data-framer-name\":\"Auto-calculate the taxes and get just one link to pay them all\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"azQwUTcgS\",style:{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:EBMjmAcHU,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Never miss a deadline\"})}),className:\"framer-l3t41r\",\"data-framer-name\":\"Taxes are covered too\",fonts:[\"CUSTOM;Suisse Int'l Medium\"],layoutDependency:layoutDependency,layoutId:\"I18283:9419;18283:9658\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:X8NSWmKAP,variants:{\"F7PlqElll-hover\":{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"F7PlqElll-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBNZWRpdW0=\",\"--framer-font-family\":'\"Suisse Int\\'l Medium\", \"Suisse Int\\'l Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Never miss a deadline\"})})},QYmg2jBZY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nbrw25\",\"data-styles-preset\":\"DrxneUv2k\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Never miss a deadline\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 201, 201))\"},children:\"Receive timely reminders to upload your documents\"})}),className:\"framer-1v99q2j\",\"data-framer-name\":\"Auto-calculate the taxes and get just one link to pay them all\",fonts:[\"CUSTOM;Suisse Int'l Regular\"],layoutDependency:layoutDependency,layoutId:\"I18283:9419;18283:9659\",style:{\"--extracted-r6o4lv\":\"rgb(201, 201, 201)\",\"--framer-paragraph-spacing\":\"0px\"},text:EBMjmAcHU,variants:{\"F7PlqElll-hover\":{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"F7PlqElll-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Receive timely reminders to upload your documents\"})})},QYmg2jBZY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",children:\"Receive timely reminders to upload your documents\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||314)-92),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/bVxLUoCKrZfb3mUiAIsn4wlxdig.svg\"},className:\"framer-9i4uoj\",layoutDependency:layoutDependency,layoutId:\"loICWOV7E\",...addPropertyOverrides({\"F7PlqElll-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||314)-96),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/bVxLUoCKrZfb3mUiAIsn4wlxdig.svg\"}},QYmg2jBZY:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:YNiKriV_I,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||241)-81),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/bVxLUoCKrZfb3mUiAIsn4wlxdig.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||314)-88),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/WFLZLglQ1dFPmzO0qBLgJub9s3M.svg\"},className:\"framer-5mr7ko\",layoutDependency:layoutDependency,layoutId:\"O1RZdG4ju\",...addPropertyOverrides({\"F7PlqElll-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||314)-88),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/LvUHoZptbyQNdHzO2dmlT08RCT0.svg\"}},QYmg2jBZY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||241)-72),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/WFLZLglQ1dFPmzO0qBLgJub9s3M.svg\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:YNiKriV_I,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1gyxwm5\",layoutDependency:layoutDependency,layoutId:\"Zh1a9_k5j\",style:{backgroundColor:\"rgb(255, 255, 255)\"}}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:YNiKriV_I,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/LvUHoZptbyQNdHzO2dmlT08RCT0.svg\"},className:\"framer-19yve6d\",layoutDependency:layoutDependency,layoutId:\"KMJRmxHva\",...addPropertyOverrides({QYmg2jBZY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||241)-72),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/LvUHoZptbyQNdHzO2dmlT08RCT0.svg\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IHQtH.framer-16quaze, .framer-IHQtH .framer-16quaze { display: block; }\",\".framer-IHQtH.framer-xvpm8 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 314px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 270px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IHQtH .framer-iytf8v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IHQtH .framer-sl5tjh { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; width: 100%; z-index: 2; }\",\".framer-IHQtH .framer-188hlsa, .framer-IHQtH .framer-1yips64, .framer-IHQtH .framer-l3t41r, .framer-IHQtH .framer-1v99q2j { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IHQtH .framer-9i4uoj { bottom: 72px; flex: none; height: 20px; left: 72px; overflow: visible; position: absolute; width: 20px; z-index: 4; }\",\".framer-IHQtH .framer-5mr7ko { bottom: 40px; flex: none; height: 48px; left: 40px; overflow: visible; position: absolute; width: 48px; z-index: 1; }\",\".framer-IHQtH .framer-1gyxwm5 { bottom: -100px; flex: none; left: -100px; overflow: visible; position: absolute; right: -100px; top: -100px; z-index: 1; }\",\".framer-IHQtH .framer-19yve6d { bottom: 24px; flex: none; height: 48px; left: 24px; overflow: visible; position: absolute; width: 48px; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IHQtH.framer-xvpm8, .framer-IHQtH .framer-iytf8v, .framer-IHQtH .framer-sl5tjh { gap: 0px; } .framer-IHQtH.framer-xvpm8 > *, .framer-IHQtH .framer-iytf8v > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-IHQtH.framer-xvpm8 > :first-child, .framer-IHQtH .framer-iytf8v > :first-child, .framer-IHQtH .framer-sl5tjh > :first-child { margin-top: 0px; } .framer-IHQtH.framer-xvpm8 > :last-child, .framer-IHQtH .framer-iytf8v > :last-child, .framer-IHQtH .framer-sl5tjh > :last-child { margin-bottom: 0px; } .framer-IHQtH .framer-sl5tjh > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-IHQtH.framer-v-2wdj94.framer-xvpm8 { cursor: unset; height: 241px; padding: 24px; }\",\".framer-IHQtH.framer-v-2wdj94 .framer-iytf8v { gap: 4px; }\",\".framer-IHQtH.framer-v-2wdj94 .framer-l3t41r, .framer-IHQtH.framer-v-2wdj94 .framer-1v99q2j { z-index: 0; }\",\".framer-IHQtH.framer-v-2wdj94 .framer-9i4uoj { bottom: 56px; height: 25px; left: 56px; width: 25px; z-index: 3; }\",\".framer-IHQtH.framer-v-2wdj94 .framer-5mr7ko { bottom: 24px; left: 24px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IHQtH.framer-v-2wdj94 .framer-iytf8v { gap: 0px; } .framer-IHQtH.framer-v-2wdj94 .framer-iytf8v > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-IHQtH.framer-v-2wdj94 .framer-iytf8v > :first-child { margin-top: 0px; } .framer-IHQtH.framer-v-2wdj94 .framer-iytf8v > :last-child { margin-bottom: 0px; } }\",\".framer-IHQtH.framer-v-xvpm8.hover .framer-9i4uoj { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 25px); width: 25px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-IHQtH[data-border=\"true\"]::after, .framer-IHQtH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 314\n * @framerIntrinsicWidth 270\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"QYmg2jBZY\":{\"layout\":[\"fixed\",\"fixed\"]},\"x658MCbR5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"YNiKriV_I\":\"card6\",\"X8NSWmKAP\":\"title\",\"EBMjmAcHU\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerwIGrQcA0r=withCSS(Component,css,\"framer-IHQtH\");export default FramerwIGrQcA0r;FramerwIGrQcA0r.displayName=\"card6\";FramerwIGrQcA0r.defaultProps={height:314,width:270};addPropertyControls(FramerwIGrQcA0r,{variant:{options:[\"F7PlqElll\",\"QYmg2jBZY\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},YNiKriV_I:{title:\"Card 6\",type:ControlType.ScrollSectionRef},X8NSWmKAP:{defaultValue:\"Never miss a deadline\",displayTextArea:false,title:\"Title\",type:ControlType.String},EBMjmAcHU:{defaultValue:\"Receive timely reminders to upload your documents\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerwIGrQcA0r,[{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\"},{family:\"Suisse Int'l Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/do6kPKhFKFxVqY3xfYZQwHKzcY.woff2\"},{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwIGrQcA0r\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"YNiKriV_I\\\":\\\"card6\\\",\\\"X8NSWmKAP\\\":\\\"title\\\",\\\"EBMjmAcHU\\\":\\\"description\\\"}\",\"framerIntrinsicWidth\":\"270\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QYmg2jBZY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x658MCbR5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"314\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wIGrQcA0r.map", "// Generated by Framer (99f3353)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Suisse Int'l Regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-5FIwX .framer-styles-preset-19ezkh6:not(.rich-text-wrapper), .framer-5FIwX .framer-styles-preset-19ezkh6.rich-text-wrapper p { --framer-font-family: \"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --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: #222222; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-5FIwX\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fb31e5e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-5NmmP .framer-styles-preset-1cc08nj:not(.rich-text-wrapper), .framer-5NmmP .framer-styles-preset-1cc08nj.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 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: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-5NmmP\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (99f3353)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Suisse Int'l Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]}];export const css=[\".framer-E9v5L .framer-styles-preset-gklp4n:not(.rich-text-wrapper), .framer-E9v5L .framer-styles-preset-gklp4n.rich-text-wrapper p { --framer-font-family: \\\"Suisse Int'l Regular\\\", \\\"Suisse Int'l Regular Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #222222; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-E9v5L\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2abc263)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={KWjJyYlLD:{hover:true},wukUcLxd3:{hover:true}};const cycleOrder=[\"wukUcLxd3\",\"KWjJyYlLD\"];const serializationHash=\"framer-ZDTRP\";const variantClassNames={KWjJyYlLD:\"framer-v-dzcv5v\",wukUcLxd3:\"framer-v-13zkuq4\"};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 humanReadableVariantMap={Desktop:\"wukUcLxd3\",Phone:\"KWjJyYlLD\"};const getProps=({height,id,tubText,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wukUcLxd3\",vf4UTeqXM:tubText??props.vf4UTeqXM??\"VAT declaration\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,vf4UTeqXM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wukUcLxd3\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"wukUcLxd3-hover\",\"KWjJyYlLD-hover\"].includes(gestureVariant))return true;return false;};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-13zkuq4\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"wukUcLxd3\",ref:refBinding,style:{backgroundColor:\"rgb(215, 212, 255)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style},...addPropertyOverrides({\"KWjJyYlLD-hover\":{\"data-framer-name\":undefined},\"wukUcLxd3-hover\":{\"data-framer-name\":undefined},KWjJyYlLD:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"VAT declaration\"})}),className:\"framer-q8qx2g\",\"data-framer-name\":\"VAT declaration\",fonts:[\"CUSTOM;Suisse Int'l Regular\"],layoutDependency:layoutDependency,layoutId:\"kH0mUbHj0\",style:{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:vf4UTeqXM,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({KWjJyYlLD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"VAT declaration\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11v74sn\",layoutDependency:layoutDependency,layoutId:\"oi4ThDHPo\",style:{background:\"linear-gradient(110deg, rgb(60, 177, 255) 10%, rgb(255, 240, 179) 43.27604166666667%, rgb(255, 133, 237) 90%)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-l7x6lr\",layoutDependency:layoutDependency,layoutId:\"JdMwlPXPl\",style:{backgroundColor:\"rgb(223, 221, 255)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZDTRP.framer-19hr9a3, .framer-ZDTRP .framer-19hr9a3 { display: block; }\",\".framer-ZDTRP.framer-13zkuq4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; width: min-content; }\",\".framer-ZDTRP .framer-q8qx2g { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 10; }\",\".framer-ZDTRP .framer-11v74sn { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-ZDTRP .framer-l7x6lr { bottom: 1px; flex: none; left: 1px; overflow: hidden; position: absolute; right: 1px; top: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZDTRP.framer-13zkuq4 { gap: 0px; } .framer-ZDTRP.framer-13zkuq4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZDTRP.framer-13zkuq4 > :first-child { margin-top: 0px; } .framer-ZDTRP.framer-13zkuq4 > :last-child { margin-bottom: 0px; } }\",\".framer-ZDTRP.framer-v-dzcv5v.framer-13zkuq4 { padding: 10px 16px 10px 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 154.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"KWjJyYlLD\":{\"layout\":[\"auto\",\"auto\"]},\"xmFXFXMN8\":{\"layout\":[\"auto\",\"auto\"]},\"L0jAPCsOA\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vf4UTeqXM\":\"tubText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramergqqtBQjBY=withCSS(Component,css,\"framer-ZDTRP\");export default FramergqqtBQjBY;FramergqqtBQjBY.displayName=\"chip tub accounting\";FramergqqtBQjBY.defaultProps={height:48,width:154.5};addPropertyControls(FramergqqtBQjBY,{variant:{options:[\"wukUcLxd3\",\"KWjJyYlLD\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},vf4UTeqXM:{defaultValue:\"VAT declaration\",displayTextArea:false,title:\"Tub text\",type:ControlType.String}});addFonts(FramergqqtBQjBY,[{explicitInter:true,fonts:[{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergqqtBQjBY\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"vf4UTeqXM\\\":\\\"tubText\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"154.5\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KWjJyYlLD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xmFXFXMN8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"L0jAPCsOA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gqqtBQjBY.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function TypeIt({phrases,typingSpeed,erasingSpeed,delayBetween,fontSize,fontFamily,fontWeight,color,fixedTextColor,letterSpacing,lineHeight,prefixText,suffixText,direction,spacing,verticalAlignment}){const[currentPhraseIndex,setCurrentPhraseIndex]=useState(0);const[displayedText,setDisplayedText]=useState(\"\");const[isErasing,setIsErasing]=useState(false);const adjustedTypingSpeed=500-typingSpeed;const adjustedErasingSpeed=500-erasingSpeed;useEffect(()=>{const currentPhrase=phrases[currentPhraseIndex];let timeout;if(isErasing){if(displayedText.length>0){timeout=setTimeout(()=>{setDisplayedText(prev=>prev.slice(0,-1));},adjustedErasingSpeed);}else{setIsErasing(false);setCurrentPhraseIndex(prev=>prev===phrases.length-1?0:prev+1);}}else{if(displayedText.length<currentPhrase.length){timeout=setTimeout(()=>{setDisplayedText(prev=>currentPhrase.slice(0,prev.length+1));},adjustedTypingSpeed);}else{timeout=setTimeout(()=>{setIsErasing(true);},delayBetween);}}return()=>clearTimeout(timeout);},[displayedText,isErasing,phrases,currentPhraseIndex,adjustedTypingSpeed,adjustedErasingSpeed,delayBetween]);const textAlign=verticalAlignment===\"left\"?\"flex-start\":verticalAlignment===\"right\"?\"flex-end\":\"center\";return /*#__PURE__*/_jsxs(\"div\",{style:{fontSize,fontFamily,fontWeight,color,letterSpacing,lineHeight,whiteSpace:\"nowrap\",overflow:\"visible\",display:\"flex\",flexDirection:direction===\"horizontal\"?\"row\":\"column\",alignItems:direction===\"horizontal\"?\"center\":textAlign,justifyContent:direction===\"horizontal\"?\"flex-start\":\"center\",position:\"relative\",textAlign:direction===\"vertical\"?verticalAlignment:\"left\",gap:prefixText||suffixText?spacing:0,width:\"100%\",height:\"100%\",boxSizing:\"border-box\",padding:0},children:[prefixText&&/*#__PURE__*/_jsx(\"span\",{style:{color:fixedTextColor},children:prefixText},\"prefix\"),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{children:displayedText}),/*#__PURE__*/_jsx(motion.span,{animate:{opacity:[1,0]},transition:{duration:.5,repeat:Infinity},style:{borderRight:\"2px solid\",marginLeft:2,height:\"1em\"}},\"cursor\")]}),suffixText&&/*#__PURE__*/_jsx(\"span\",{style:{color:fixedTextColor},children:suffixText},\"suffix\")]});}TypeIt.defaultProps={phrases:[\"Hello, World!\",\"Welcome to Framer!\",\"Let's build something amazing!\"],typingSpeed:300,erasingSpeed:300,delayBetween:2e3,fontSize:24,fontFamily:\"Inter\",fontWeight:400,color:\"#000\",fixedTextColor:\"#888\",letterSpacing:0,lineHeight:1.5,prefixText:\"\",suffixText:\"\",direction:\"horizontal\",spacing:12,verticalAlignment:\"center\"};/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */addPropertyControls(TypeIt,{phrases:{type:ControlType.Array,title:\"Words / Phrases\",control:{type:ControlType.String},defaultValue:[\"Hello, World!\",\"Welcome to Framer!\",\"Let's build something amazing!\"]},typingSpeed:{type:ControlType.Number,title:\"Typing Speed\",defaultValue:150,min:50,max:500},erasingSpeed:{type:ControlType.Number,title:\"Erasing Speed\",defaultValue:100,min:50,max:500},delayBetween:{type:ControlType.Number,title:\"Delay Between Phrases\",defaultValue:2e3,min:500,max:5e3},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:24},fontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Inter\"},fontWeight:{type:ControlType.Number,title:\"Font Weight\",defaultValue:400},color:{type:ControlType.Color,title:\"Animated Text Color\",defaultValue:\"#000\"},fixedTextColor:{type:ControlType.Color,title:\"Fixed Text Color\",defaultValue:\"#888\"},letterSpacing:{type:ControlType.Number,title:\"Letter Spacing\",defaultValue:0,min:-5,max:20,step:.1},lineHeight:{type:ControlType.Number,title:\"Line Height\",defaultValue:1.5,min:.5,max:3,step:.1},prefixText:{type:ControlType.String,title:\"Prefix Text\",defaultValue:\"\"},suffixText:{type:ControlType.String,title:\"Suffix Text\",defaultValue:\"\"},direction:{type:ControlType.Enum,title:\"Direction\",defaultValue:\"horizontal\",options:[\"horizontal\",\"vertical\"],optionTitles:[\"Horizontal\",\"Vertical\"]},spacing:{type:ControlType.Number,title:\"Spacing\",defaultValue:8,min:0,max:50,step:1},verticalAlignment:{type:ControlType.Enum,title:\"Vertical Alignment\",defaultValue:\"center\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],hidden:props=>props.direction!==\"vertical\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TypeIt\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TypeIt.map", "// Generated by Framer (3d3d426)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import TypeIt from\"https://framerusercontent.com/modules/gsiLPuYwL4DWSm45d9rc/atcufHfhdMIVcX0lk0l4/TypeIt.js\";const TypeItFonts=getFonts(TypeIt);const cycleOrder=[\"hPWYiCYlp\",\"kSMEHEzss\",\"Dd9FX75EE\",\"QDLxTICbu\",\"W_cUtB91b\",\"rtfDYtO3t\",\"QL4Q_nZC6\",\"bxNFRU2zO\",\"Gf_vRO29m\",\"mEMX6v__d\",\"tIGUHithe\",\"x6QRvdD3N\",\"r9gdAe1jF\",\"rfA8_vnKg\"];const serializationHash=\"framer-uKWeX\";const variantClassNames={bxNFRU2zO:\"framer-v-1r1oba0\",Dd9FX75EE:\"framer-v-1ob15xm\",Gf_vRO29m:\"framer-v-1xkpmas\",hPWYiCYlp:\"framer-v-i1rh08\",kSMEHEzss:\"framer-v-1wvofq\",mEMX6v__d:\"framer-v-y7g327\",QDLxTICbu:\"framer-v-gvlkjh\",QL4Q_nZC6:\"framer-v-1vlek57\",r9gdAe1jF:\"framer-v-1ygpgxc\",rfA8_vnKg:\"framer-v-1mkdrza\",rtfDYtO3t:\"framer-v-m4e534\",tIGUHithe:\"framer-v-tofhp8\",W_cUtB91b:\"framer-v-1mc94ab\",x6QRvdD3N:\"framer-v-18fzks5\"};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 humanReadableVariantMap={\"Desktop DE\":\"QL4Q_nZC6\",\"Desktop EN\":\"hPWYiCYlp\",\"Desktop ES\":\"Dd9FX75EE\",\"Desktop FR\":\"Gf_vRO29m\",\"Desktop IT\":\"tIGUHithe\",\"Desktop NL\":\"r9gdAe1jF\",\"Desktop PL\":\"W_cUtB91b\",\"Mobile DE\":\"bxNFRU2zO\",\"Mobile EN\":\"kSMEHEzss\",\"Mobile ES\":\"QDLxTICbu\",\"Mobile FR\":\"mEMX6v__d\",\"Mobile IT\":\"x6QRvdD3N\",\"Mobile NL\":\"rfA8_vnKg\",\"Mobile PL\":\"rtfDYtO3t\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hPWYiCYlp\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hPWYiCYlp\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-i1rh08\",className,classNames),\"data-framer-name\":\"Desktop EN\",layoutDependency:layoutDependency,layoutId:\"hPWYiCYlp\",ref:refBinding,style:{...style},...addPropertyOverrides({bxNFRU2zO:{\"data-framer-name\":\"Mobile DE\"},Dd9FX75EE:{\"data-framer-name\":\"Desktop ES\"},Gf_vRO29m:{\"data-framer-name\":\"Desktop FR\"},kSMEHEzss:{\"data-framer-name\":\"Mobile EN\"},mEMX6v__d:{\"data-framer-name\":\"Mobile FR\"},QDLxTICbu:{\"data-framer-name\":\"Mobile ES\"},QL4Q_nZC6:{\"data-framer-name\":\"Desktop DE\"},r9gdAe1jF:{\"data-framer-name\":\"Desktop NL\"},rfA8_vnKg:{\"data-framer-name\":\"Mobile NL\"},rtfDYtO3t:{\"data-framer-name\":\"Mobile PL\"},tIGUHithe:{\"data-framer-name\":\"Desktop IT\"},W_cUtB91b:{\"data-framer-name\":\"Desktop PL\"},x6QRvdD3N:{\"data-framer-name\":\"Mobile IT\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ddnumf-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"s3ckxWZCW-container\",nodeId:\"s3ckxWZCW\",rendersWithMotion:true,scopeId:\"y5soMwTMG\",children:/*#__PURE__*/_jsx(TypeIt,{color:\"rgb(34, 34, 34)\",delayBetween:500,direction:\"horizontal\",erasingSpeed:400,fixedTextColor:\"rgb(136, 136, 136)\",fontFamily:\"Arial\",fontSize:64,fontWeight:400,height:\"100%\",id:\"s3ckxWZCW\",layoutId:\"s3ckxWZCW\",letterSpacing:-.4,lineHeight:1,phrases:[\"Solopreneurs\",\"e-Commerce\",\"IT\\xa0startups\",\"Digital\\xa0Nomads\",\"SMEs\"],prefixText:\"\",spacing:8,suffixText:\"\",typingSpeed:400,verticalAlignment:\"center\",width:\"100%\",...addPropertyOverrides({bxNFRU2zO:{fontSize:40,phrases:[\"Solopreneure\",\"E-Commerce\",\"IT-Startups\",\"Digitale\\xa0Nomaden\",\"KMU\"]},Dd9FX75EE:{phrases:[\"Aut\\xf3nomos\",\"eCommerce\",\"Startups\\xa0IT\",\"N\\xf3madas\\xa0Digitales\",\"PYMEs\"]},Gf_vRO29m:{phrases:[\"Solopreneurs\",\"e-Commerce\",\"Startups\\xa0IT\",\"Digital\\xa0Nomads\",\"PME\"]},kSMEHEzss:{fontSize:40},mEMX6v__d:{fontSize:40,phrases:[\"Solopreneurs\",\"e-Commerce\",\"Startups\\xa0IT\",\"Digital\\xa0Nomads\",\"PME\"]},QDLxTICbu:{fontSize:40,phrases:[\"Aut\\xf3nomos\",\"eCommerce\",\"Startups\\xa0IT\",\"N\\xf3madas\\xa0Digitales\",\"PYMEs\"]},QL4Q_nZC6:{phrases:[\"Solopreneure\",\"E-Commerce\",\"IT-Startups\",\"Digitale\\xa0Nomaden\",\"KMU\"]},r9gdAe1jF:{phrases:[\"Solopreneurs\",\"e-Commerce\",\"IT\\xa0startups\",\"Digitale nomaden\",\"Mkb\"]},rfA8_vnKg:{fontSize:40,phrases:[\"Solopreneurs\",\"e-Commerce\",\"IT\\xa0startups\",\"Digitale nomaden\",\"Mkb\"]},rtfDYtO3t:{fontSize:40,phrases:[\"Soloprzedsi\u0119biorcy\",\"e-\u0421ommerce\",\"IT\\xa0startupy\",\"Nomadzi\\xa0cyfrowi\",\"M\u015AP\"]},tIGUHithe:{phrases:[\"Solopreneur\",\"e-Commerce\",\"startup\\xa0IT\",\"Nomadi\\xa0digitali\",\"PMI\"]},W_cUtB91b:{phrases:[\"Soloprzedsi\u0119biorcy\",\"e-\u0421ommerce\",\"IT\\xa0startupy\",\"Nomadzi\\xa0cyfrowi\",\"M\u015AP\"]},x6QRvdD3N:{fontSize:40,phrases:[\"Solopreneur\",\"e-Commerce\",\"startup\\xa0IT\",\"Nomadi\\xa0digitali\",\"PMI\"]}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uKWeX.framer-1meouzh, .framer-uKWeX .framer-1meouzh { display: block; }\",\".framer-uKWeX.framer-i1rh08 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 635px; }\",\".framer-uKWeX .framer-ddnumf-container { flex: none; height: auto; position: relative; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 635\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kSMEHEzss\":{\"layout\":[\"fixed\",\"auto\"]},\"Dd9FX75EE\":{\"layout\":[\"fixed\",\"auto\"]},\"QDLxTICbu\":{\"layout\":[\"fixed\",\"auto\"]},\"W_cUtB91b\":{\"layout\":[\"fixed\",\"auto\"]},\"rtfDYtO3t\":{\"layout\":[\"fixed\",\"auto\"]},\"QL4Q_nZC6\":{\"layout\":[\"fixed\",\"auto\"]},\"bxNFRU2zO\":{\"layout\":[\"fixed\",\"auto\"]},\"Gf_vRO29m\":{\"layout\":[\"fixed\",\"auto\"]},\"mEMX6v__d\":{\"layout\":[\"fixed\",\"auto\"]},\"tIGUHithe\":{\"layout\":[\"fixed\",\"auto\"]},\"x6QRvdD3N\":{\"layout\":[\"fixed\",\"auto\"]},\"r9gdAe1jF\":{\"layout\":[\"fixed\",\"auto\"]},\"rfA8_vnKg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framery5soMwTMG=withCSS(Component,css,\"framer-uKWeX\");export default Framery5soMwTMG;Framery5soMwTMG.displayName=\"Type machine\";Framery5soMwTMG.defaultProps={height:64,width:635};addPropertyControls(Framery5soMwTMG,{variant:{options:[\"hPWYiCYlp\",\"kSMEHEzss\",\"Dd9FX75EE\",\"QDLxTICbu\",\"W_cUtB91b\",\"rtfDYtO3t\",\"QL4Q_nZC6\",\"bxNFRU2zO\",\"Gf_vRO29m\",\"mEMX6v__d\",\"tIGUHithe\",\"x6QRvdD3N\",\"r9gdAe1jF\",\"rfA8_vnKg\"],optionTitles:[\"Desktop EN\",\"Mobile EN\",\"Desktop ES\",\"Mobile ES\",\"Desktop PL\",\"Mobile PL\",\"Desktop DE\",\"Mobile DE\",\"Desktop FR\",\"Mobile FR\",\"Desktop IT\",\"Mobile IT\",\"Desktop NL\",\"Mobile NL\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framery5soMwTMG,[{explicitInter:true,fonts:[]},...TypeItFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framery5soMwTMG\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"64\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"635\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kSMEHEzss\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Dd9FX75EE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QDLxTICbu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W_cUtB91b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rtfDYtO3t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QL4Q_nZC6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bxNFRU2zO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gf_vRO29m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mEMX6v__d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tIGUHithe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x6QRvdD3N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r9gdAe1jF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rfA8_vnKg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./y5soMwTMG.map", "// Generated by Framer (5351ffe)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getPropertyControls,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/RZtz9JlG4lEMYnovmVPJ/a1RYJIUxCMCq65BLb5SX/componentPresets.js\";import*as sharedStyle14 from\"https://framerusercontent.com/modules/N5F3KF7Ntq2QrP3Qyu7g/QFmuxHqv4DSH1AcM41WU/aJyL8XT5N.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rAbGNREezMEsz5vWPvM6/UYuEaD9okc6UFrQC3Azy/aNJzK86BN.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/fmQIwfifwdZJhaqSuk04/aDKG7KKyVLZBiDsPU8EP/bVCgcFvsb.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/LcPJMcHyJ2n4iL6duPGA/dqruHu4LuF62lTdRVB9t/eHjStvlek.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/nUVK9zJxK2w9SkKCBdJc/hcveAwZt4SyTDVNZmk6r/fpKs532aR.js\";import*as sharedStyle13 from\"https://framerusercontent.com/modules/MocQI5xmOxUoDt6fLAsC/EnVZvyDWKMdXhgJ2u0qi/GpHHKwB5E.js\";import*as sharedStyle16 from\"https://framerusercontent.com/modules/mDzeXyMq7YV7QcXlrGfN/qgw298t85wpduZ8kjQId/i_p4CQqJA.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/0HzcIDnLGEGrbGQwc6Dc/itoLBBZ3j02Jj1GP8m3G/kukljiKLo.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/1mhxtbOC1jRIEaR4vNp5/rf2P46coWZu6L3FCq0P7/mqB1sXfO1.js\";import*as sharedStyle15 from\"https://framerusercontent.com/modules/Ohj1OTdOJSDiKnABmro2/2KZ5Gq2RS8Vj4TPX2WOa/nqqiK_8RC.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/k1eFeU0PcLBwXh7NToEd/2b4oMUUSWSFljmeOuVsu/rD3ppHB0Z.js\";import*as sharedStyle12 from\"https://framerusercontent.com/modules/Y3zu7HbCklGnbIdHbPr2/19Bxe4MWBbR1kaLzryoi/rHcVk8ThW.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/Rjv9W5CnEFJgcP6q2SVN/MAUAiUWPrQXj15eEWaqX/RjsHVzEik.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/rm2fNOrSLhvKN3ulLBC8/fj4tGbVAGpaDN2r9zZXy/ro7OPezbn.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/yHFnyFryQLUOLQlwidgq/nWgsMSkAgeaign8ISiFp/V8iCbuzRD.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/ZrEhWR4yzMGXxz2hfbEV/I7HwuPR0Ia6htg7Gwuku/WQOgyTEyn.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/aimGvCvqEOYKly4Zlcvi/1kjr6i7ku17ItXOuXn46/wzC_2sZsp.js\";import ChipTubAccounting from\"https://framerusercontent.com/modules/jSXf207KvMJFLCJTKfcA/yDHECZW567v5ZrEqLCVQ/gqqtBQjBY.js\";import BasicComponentsButton from\"https://framerusercontent.com/modules/h6akFKu0PHcE1Is5JKiQ/fOQPTSBqx9rHXnGBtepK/XOy8p8KMz.js\";import TypeMachine from\"https://framerusercontent.com/modules/lXtIylNGiPiAqmoGXW5r/DBwzNpeufOdUt3i2nliQ/y5soMwTMG.js\";const TypeMachineFonts=getFonts(TypeMachine);const BasicComponentsButtonFonts=getFonts(BasicComponentsButton);const ChipTubAccountingFonts=getFonts(ChipTubAccounting);const TypeMachineControls=getPropertyControls(TypeMachine);const cycleOrder=[\"glqoN4UwR\",\"nKcsUT7TE\",\"d0hfwNnqq\"];const serializationHash=\"framer-qanP6\";const variantClassNames={d0hfwNnqq:\"framer-v-g4porg\",glqoN4UwR:\"framer-v-18mfxf5\",nKcsUT7TE:\"framer-v-co9cl5\"};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 isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};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 humanReadableEnumMap={\"Desktop DE\":\"QL4Q_nZC6\",\"Desktop EN\":\"hPWYiCYlp\",\"Desktop ES\":\"Dd9FX75EE\",\"Desktop FR\":\"Gf_vRO29m\",\"Desktop IT\":\"tIGUHithe\",\"Desktop NL\":\"r9gdAe1jF\",\"Desktop PL\":\"W_cUtB91b\",\"Mobile DE\":\"bxNFRU2zO\",\"Mobile EN\":\"kSMEHEzss\",\"Mobile ES\":\"QDLxTICbu\",\"Mobile FR\":\"mEMX6v__d\",\"Mobile IT\":\"x6QRvdD3N\",\"Mobile NL\":\"rfA8_vnKg\",\"Mobile PL\":\"rtfDYtO3t\"};const humanReadableVariantMap={Desktop:\"glqoN4UwR\",Phone:\"d0hfwNnqq\",Tablet:\"nKcsUT7TE\"};const getProps=({_1CardDescription,_1CardTitle,_2CardDescription,_2CardTitle,_3CardDescription,_3CardTitle,bookACall,buttonLink,buttonText,height,id,serviceDescription,serviceTitle,title,tub1,tub10,tub11,tub12,tub13,tub14,tub15,tub16,tub17,tub2,tub3,tub4,tub5,tub6,tub7,tub8,tub9,typeMachine,width,...props})=>{return{...props,aKYO7qL_A:tub6??props.aKYO7qL_A??\"Board member registration\",by91BJQPs:tub12??props.by91BJQPs??\"Zero declaration\",COlAxdhI1:tub4??props.COlAxdhI1??\"Employee registration\",DlV3NaG5Y:_3CardTitle??props.DlV3NaG5Y??\"Challenging cases\",DLzNBaVWy:tub1??props.DLzNBaVWy??\"Annual report\",dm4iD3pPC:tub9??props.dm4iD3pPC??\"Consultation\",FWtQWSDhA:humanReadableEnumMap[typeMachine]??typeMachine??props.FWtQWSDhA??\"hPWYiCYlp\",gK1Yaqdcs:serviceTitle??props.gK1Yaqdcs??\"Enty covers any accounting issue you might face\",iC2n7PvBP:serviceDescription??props.iC2n7PvBP??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"There\u2019s no stupid question about accounting\",/*#__PURE__*/_jsx(motion.br,{}),\"Let\u2019s talk on a free call!\"]})}),j6rmcQLFH:_2CardTitle??props.j6rmcQLFH??\"Established companies\",JQDT0rKed:_1CardTitle??props.JQDT0rKed??\"New businesses\",k4gV949qD:tub10??props.k4gV949qD??\"Payroll\",kMlyhqpxL:buttonLink??props.kMlyhqpxL,OiZTYSWHE:tub8??props.OiZTYSWHE??\"Calculation of fixed and intangible assets\",ol5ncrwbn:tub7??props.ol5ncrwbn??\"Profit & Loss statement\",Pnsc7BSUD:tub2??props.Pnsc7BSUD??\"VAT declaration\",S44ZbqGNn:buttonText??props.S44ZbqGNn??\"Book a call\",seELPwTLB:tub17??props.seELPwTLB??\"Late declaration\",SjlCpJ31l:tub15??props.SjlCpJ31l??\"Foreign trade services\",SpZSXjSvD:_1CardDescription??props.SpZSXjSvD??\"New to accounting in Estonia? Let us handle it from day one and set it up the best way\",U83m3QfOh:_3CardDescription??props.U83m3QfOh??\"If you neglected accounting and things are a bit messy, we can put everything on the shelves\",uAUK_zDcS:tub3??props.uAUK_zDcS??\"Employer declaration (TSD)\",ub3mUaorx:title??props.ub3mUaorx??\"We are here to help\",us0XOnmPL:_2CardDescription??props.us0XOnmPL??\"We take accounting issues from your up-and-running business with a simple transfer process\",ux09ANfb8:tub5??props.ux09ANfb8??\"E-stat\",variant:humanReadableVariantMap[props.variant]??props.variant??\"glqoN4UwR\",wEojdBhyg:tub13??props.wEojdBhyg??\"Corrections to submitted declarations\",Wr4U0itgU:tub16??props.Wr4U0itgU??\"Incapacity certificate\",WVNEiCKCd:tub14??props.WVNEiCKCd??\"Liquidation report\",Z2VAE1OUh:bookACall??props.Z2VAE1OUh??true,zISi0bMLZ:tub11??props.zISi0bMLZ??\"IOSS/OSS declaration\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ub3mUaorx,FWtQWSDhA,JQDT0rKed,SpZSXjSvD,j6rmcQLFH,us0XOnmPL,DlV3NaG5Y,U83m3QfOh,gK1Yaqdcs,iC2n7PvBP,S44ZbqGNn,kMlyhqpxL,DLzNBaVWy,Pnsc7BSUD,uAUK_zDcS,COlAxdhI1,ux09ANfb8,aKYO7qL_A,ol5ncrwbn,OiZTYSWHE,dm4iD3pPC,k4gV949qD,zISi0bMLZ,by91BJQPs,wEojdBhyg,WVNEiCKCd,SjlCpJ31l,Wr4U0itgU,seELPwTLB,Z2VAE1OUh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"glqoN4UwR\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"d0hfwNnqq\")return false;return true;};const visible=isSet(dm4iD3pPC);const visible1=isSet(k4gV949qD);const visible2=isSet(zISi0bMLZ);const visible3=isSet(by91BJQPs);const visible4=isSet(wEojdBhyg);const visible5=isSet(WVNEiCKCd);const visible6=isSet(SjlCpJ31l);const visible7=isSet(Wr4U0itgU);const visible8=isSet(seELPwTLB);const isDisplayed1=()=>{if(baseVariant===\"d0hfwNnqq\")return true;return false;};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-18mfxf5\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"glqoN4UwR\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},variants:{d0hfwNnqq:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},nKcsUT7TE:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32}},...addPropertyOverrides({d0hfwNnqq:{\"data-framer-name\":\"Phone\"},nKcsUT7TE:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-of7mv9\",\"data-framer-name\":\"Frame 13000616\",layoutDependency:layoutDependency,layoutId:\"RVeHyErUp\",style:{borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d2z36a\",\"data-framer-name\":\"Frame 13000615\",layoutDependency:layoutDependency,layoutId:\"hS57n6gAM\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-c9ot83\",layoutDependency:layoutDependency,layoutId:\"jCK3HoQlp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-o7ns1l\",\"data-styles-preset\":\"V8iCbuzRD\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(108, 108, 108))\"},children:\"We are here to help\"})}),className:\"framer-1si646d\",\"data-framer-name\":\"We are here to help\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ehn5aAOv3\",style:{\"--extracted-1lwpl3i\":\"rgb(108, 108, 108)\",\"--framer-paragraph-spacing\":\"0px\"},text:ub3mUaorx,variants:{d0hfwNnqq:{\"--extracted-r6o4lv\":\"rgb(108, 108, 108)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({d0hfwNnqq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16sa0nt\",\"data-styles-preset\":\"aNJzK86BN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(108, 108, 108))\"},children:\"We are here to help\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,...addPropertyOverrides({d0hfwNnqq:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`},nKcsUT7TE:{width:`calc(${componentViewport?.width||\"100vw\"} - 112px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b5nrsz-container\",layoutDependency:layoutDependency,layoutId:\"qNHF9EIqd-container\",nodeId:\"qNHF9EIqd\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(TypeMachine,{height:\"100%\",id:\"qNHF9EIqd\",layoutId:\"qNHF9EIqd\",style:{width:\"100%\"},variant:FWtQWSDhA,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rzy87w\",\"data-framer-name\":\"Frame 13001888\",layoutDependency:layoutDependency,layoutId:\"gih2MMWO_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sbfdyb\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"aFVYyKrfJ\",style:{backgroundColor:\"rgb(250, 250, 250)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{d0hfwNnqq:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lgalr2\",\"data-framer-name\":\"building-02\",layoutDependency:layoutDependency,layoutId:\"htixRaFeS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nyzabp\",\"data-framer-name\":\"Solid\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"FURa66mUN\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"-1 -1 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.16146 7.43003e-07H15.8385C16.3657 -1.54746e-05 16.8205 -2.94652e-05 17.195 0.0305728C17.5904 0.0628738 17.9836 0.13419 18.362 0.326984C18.9265 0.614604 19.3854 1.07355 19.673 1.63803C19.8658 2.01641 19.9371 2.40963 19.9694 2.80498C20 3.17954 20 3.6343 20 4.16144L20 5C20 5.9263 19.0031 7 17.3333 7C15.6636 7 14.6667 5.9263 14.6667 5C14.6667 4.44772 14.219 4 13.6667 4C13.1144 4 12.6667 4.44772 12.6667 5C12.6667 5.9263 11.6697 7 10 7C8.33026 7 7.33333 5.9263 7.33333 5C7.33333 4.44772 6.88562 4 6.33333 4C5.78105 4 5.33333 4.44772 5.33333 5C5.33333 5.9263 4.33641 7 2.66667 7C0.996925 7 7.43003e-07 5.9263 7.43003e-07 5V4.16142C-1.54746e-05 3.63431 -2.94652e-05 3.17953 0.0305728 2.80498C0.0628738 2.40963 0.13419 2.01641 0.326984 1.63803C0.614604 1.07355 1.07355 0.614604 1.63803 0.326984C2.01641 0.13419 2.40963 0.0628738 2.80498 0.0305728C3.17953 -2.94652e-05 3.63434 -1.54746e-05 4.16146 7.43003e-07Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.3333 9C18.2837 9 19.2191 8.74293 20 8.28212V15.8386C20 16.3657 20 16.8205 19.9694 17.195C19.9371 17.5904 19.8658 17.9836 19.673 18.362C19.3854 18.9265 18.9265 19.3854 18.362 19.673C17.9836 19.8658 17.5904 19.9371 17.195 19.9694C16.8205 20 16.3657 20 15.8386 20H4.16144C3.6343 20 3.17954 20 2.80498 19.9694C2.40963 19.9371 2.01641 19.8658 1.63803 19.673C1.07355 19.3854 0.614604 18.9265 0.326984 18.362C0.13419 17.9836 0.0628738 17.5904 0.0305728 17.195C-2.94652e-05 16.8205 -1.54746e-05 16.3657 7.43003e-07 15.8386V8.28212C0.780878 8.74293 1.71628 9 2.66667 9C4.07207 9 5.4447 8.43786 6.33333 7.486C7.22197 8.43786 8.5946 9 10 9C11.4054 9 12.778 8.43786 13.6667 7.486C14.5553 8.43786 15.9279 9 17.3333 9ZM8.6 12H11.4C11.9601 12 12.2401 12 12.454 12.109C12.6422 12.2049 12.7951 12.3578 12.891 12.546C13 12.7599 13 13.0399 13 13.6V18H7V13.6C7 13.0399 7 12.7599 7.10899 12.546C7.20487 12.3578 7.35785 12.2049 7.54601 12.109C7.75992 12 8.03995 12 8.6 12Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1t5gngh\",\"data-styles-preset\":\"RjsHVzEik\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"New businesses\"})}),className:\"framer-wsuohe\",\"data-framer-name\":\"New businesses\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HjHtQlAUZ\",style:{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:JQDT0rKed,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({d0hfwNnqq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16sa0nt\",\"data-styles-preset\":\"aNJzK86BN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"New businesses\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(108, 108, 108))\"},children:\"New to accounting in Estonia? Let us handle it from day one and set it up the best way\"})}),className:\"framer-add7dg\",\"data-framer-name\":\"New to accounting in Estonia? Let us handle it from day one and set it up the best way\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ilYfJta6B\",style:{\"--extracted-r6o4lv\":\"rgb(108, 108, 108)\",\"--framer-paragraph-spacing\":\"0px\"},text:SpZSXjSvD,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o3clmx\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"gAgKGrOe5\",style:{backgroundColor:\"rgb(250, 250, 250)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{d0hfwNnqq:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k7aal3\",\"data-framer-name\":\"building-06\",layoutDependency:layoutDependency,layoutId:\"t4ipPqDO0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z8gjzl\",\"data-framer-name\":\"Solid\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"Z51ZPmnZW\",svg:'<svg width=\"25\" height=\"22\" viewBox=\"-1 -1 25 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.8282 7.43003e-07H17.5053C18.0324 -1.54746e-05 18.4872 -2.94652e-05 18.8618 0.0305728C19.2571 0.0628738 19.6503 0.13419 20.0287 0.326984C20.5932 0.614604 21.0521 1.07355 21.3398 1.63803C21.5326 2.01641 21.6039 2.40963 21.6362 2.80498C21.6668 3.17955 21.6668 3.63431 21.6667 4.16146V18C22.219 18 22.6667 18.4477 22.6667 19C22.6667 19.5523 22.219 20 21.6667 20H1.66675C1.11446 20 0.666748 19.5523 0.666748 19C0.666748 18.4477 1.11446 18 1.66675 18V12.1615C1.66673 11.6343 1.66671 11.1796 1.69732 10.805C1.72962 10.4096 1.80093 10.0164 1.99373 9.63803C2.28135 9.07355 2.74029 8.6146 3.30478 8.32698C3.68316 8.13419 4.07637 8.06287 4.47172 8.03057C4.84629 7.99997 5.30106 7.99998 5.8282 8L9.66675 8V4.16145C9.66673 3.63431 9.66671 3.17955 9.69732 2.80498C9.72962 2.40963 9.80093 2.01641 9.99373 1.63803C10.2813 1.07355 10.7403 0.614604 11.3048 0.326984C11.6832 0.13419 12.0764 0.0628738 12.4717 0.0305728C12.8463 -2.94652e-05 13.3011 -1.54746e-05 13.8282 7.43003e-07ZM18.6667 5C18.6667 4.44772 18.219 4 17.6667 4H13.6667C13.1145 4 12.6667 4.44772 12.6667 5C12.6667 5.55229 13.1145 6 13.6667 6H17.6667C18.219 6 18.6667 5.55229 18.6667 5ZM18.6667 9C18.6667 8.44772 18.219 8 17.6667 8H13.6667C13.1145 8 12.6667 8.44772 12.6667 9C12.6667 9.55229 13.1145 10 13.6667 10H17.6667C18.219 10 18.6667 9.55229 18.6667 9ZM17.6667 12C18.219 12 18.6667 12.4477 18.6667 13C18.6667 13.5523 18.219 14 17.6667 14H13.6667C13.1145 14 12.6667 13.5523 12.6667 13C12.6667 12.4477 13.1145 12 13.6667 12H17.6667Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1t5gngh\",\"data-styles-preset\":\"RjsHVzEik\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Established companies\"})}),className:\"framer-q24ruz\",\"data-framer-name\":\"Established companies\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U3t7uuat6\",style:{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:j6rmcQLFH,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({d0hfwNnqq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16sa0nt\",\"data-styles-preset\":\"aNJzK86BN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Established companies\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(108, 108, 108))\"},children:\"We take accounting issues from your up-and-running business with a simple transfer process\"})}),className:\"framer-fhvzg\",\"data-framer-name\":\"We take accounting issues from your up-and-running business with a simple transfer process\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Uw5M7cpIn\",style:{\"--extracted-r6o4lv\":\"rgb(108, 108, 108)\",\"--framer-paragraph-spacing\":\"0px\"},text:us0XOnmPL,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ok5xi3\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"OnZZfEDBE\",style:{backgroundColor:\"rgb(250, 250, 250)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{d0hfwNnqq:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gpuja4\",\"data-framer-name\":\"cube-04\",layoutDependency:layoutDependency,layoutId:\"Ba14lk0AV\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1d57aj9\",\"data-framer-name\":\"Solid\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"J2Yj0ZM2z\",svg:'<svg width=\"23\" height=\"22\" viewBox=\"-1 -1 23 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.3335 0.585676L1.77284 4.14634C1.45785 4.46132 1.68094 4.99989 2.12639 4.99989H5.3335V0.585676Z\" fill=\"black\"/>\\n<path d=\"M7.3335 4.99989V0L17.7102 0.00194832C18.1556 0.00203195 18.3786 0.540551 18.0637 0.855502L14.0657 4.85344C13.972 4.94721 13.8448 4.99989 13.7122 4.99989H7.3335Z\" fill=\"black\"/>\\n<path d=\"M5.3335 6.99989H0.833496C0.557354 6.99989 0.333496 7.22375 0.333496 7.49989L0.335532 17.3766C0.335624 17.822 0.874138 18.045 1.18908 17.7301L5.18705 13.7321C5.28082 13.6384 5.3335 13.5112 5.3335 13.3786V6.99989Z\" fill=\"black\"/>\\n<path d=\"M2.6033 19.1443C2.28835 19.4592 2.51135 19.9978 2.95675 19.9979L12.8335 19.9999C13.1096 19.9999 13.3335 19.776 13.3335 19.4999V14.9999H6.95482C6.82221 14.9999 6.69503 15.0526 6.60126 15.1463L2.6033 19.1443Z\" fill=\"black\"/>\\n<path d=\"M13.3335 12.9999H7.8335C7.55735 12.9999 7.3335 12.776 7.3335 12.4999V6.99989H12.8335C13.1096 6.99989 13.3335 7.22375 13.3335 7.49989V12.9999Z\" fill=\"black\"/>\\n<path d=\"M15.3335 14.9999V18.207C15.3335 18.6524 15.8721 18.8755 16.187 18.5605L18.8942 15.8534C19.2091 15.5385 18.9861 14.9999 18.5406 14.9999H15.3335Z\" fill=\"black\"/>\\n<path d=\"M20.3333 12.4998C20.3333 12.776 20.1095 12.9999 19.8333 12.9999H15.3335V6.62121C15.3335 6.4886 15.3862 6.36143 15.4799 6.26766L19.4779 2.26972C19.7928 1.95477 20.3314 2.17777 20.3314 2.62318L20.3333 12.4998Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1t5gngh\",\"data-styles-preset\":\"RjsHVzEik\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Challenging cases\"})}),className:\"framer-lfun49\",\"data-framer-name\":\"Challenging cases\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qVP9xZe3H\",style:{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:DlV3NaG5Y,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({d0hfwNnqq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16sa0nt\",\"data-styles-preset\":\"aNJzK86BN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Challenging cases\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vlhhy\",\"data-styles-preset\":\"rD3ppHB0Z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(108, 108, 108))\"},children:\"If you neglected accounting and things are a bit messy, we can put everything on the shelves\"})}),className:\"framer-18fo1op\",\"data-framer-name\":\"If you neglected accounting and things are a bit messy, we can put everything on the shelves\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Fje4hVVnZ\",style:{\"--extracted-r6o4lv\":\"rgb(108, 108, 108)\",\"--framer-paragraph-spacing\":\"0px\"},text:U83m3QfOh,verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17xp9rj\",\"data-framer-name\":\"Frame 13001889\",layoutDependency:layoutDependency,layoutId:\"bPsoAsRoK\",style:{backgroundColor:\"rgb(223, 221, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},variants:{d0hfwNnqq:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},nKcsUT7TE:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e95rew\",\"data-framer-name\":\"Frame 1000006214\",layoutDependency:layoutDependency,layoutId:\"ksVR2Knlp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zsd1my\",\"data-framer-name\":\"Frame 1000006213\",layoutDependency:layoutDependency,layoutId:\"zgjJX74GP\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-o7ns1l\",\"data-styles-preset\":\"V8iCbuzRD\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(34, 34, 34))\"},children:\"Enty covers any accounting issue you might face\"})}),className:\"framer-994qfy\",\"data-framer-name\":\"Enty covers any accounting issue you might face\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OxfzZRG8r\",style:{\"--extracted-1lwpl3i\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:gK1Yaqdcs,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"IdIFoh1hb\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"WeePTqWVx\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:iC2n7PvBP,className:\"framer-1m57fnb\",\"data-framer-name\":\"There\u2019s no stupid question about accounting. Let\u2019s talk on a free call!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RypVUddUB\",style:{\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1goi1o4\",code:\"framer-styles-preset-t3pk5v\",h1:\"framer-styles-preset-18pv65l\",h2:\"framer-styles-preset-1c904x1\",h3:\"framer-styles-preset-133c7hj\",h4:\"framer-styles-preset-9o3caq\",h5:\"framer-styles-preset-o7ns1l\",h6:\"framer-styles-preset-1cc08nj\",img:\"framer-styles-preset-1j3u0oh\",p:\"framer-styles-preset-19ezkh6\",table:\"framer-styles-preset-1arf90u\"},variants:{d0hfwNnqq:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({d0hfwNnqq:{stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1goi1o4\",code:\"framer-styles-preset-t3pk5v\",h1:\"framer-styles-preset-18pv65l\",h2:\"framer-styles-preset-1c904x1\",h3:\"framer-styles-preset-133c7hj\",h4:\"framer-styles-preset-9o3caq\",h5:\"framer-styles-preset-o7ns1l\",h6:\"framer-styles-preset-1cc08nj\",img:\"framer-styles-preset-1j3u0oh\",p:\"framer-styles-preset-gklp4n\",table:\"framer-styles-preset-1arf90u\"}}},baseVariant,gestureVariant)})})]}),Z2VAE1OUh&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,...addPropertyOverrides({d0hfwNnqq:{height:48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-teds6g-container\",layoutDependency:layoutDependency,layoutId:\"lNjNaMxVd-container\",nodeId:\"lNjNaMxVd\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(BasicComponentsButton,{aH3jyDudA:S44ZbqGNn,eaAkMvmY2:\"ueheIzzJw\",height:\"100%\",id:\"lNjNaMxVd\",jgaGsuENX:false,Kbtxds6ZM:false,layoutId:\"lNjNaMxVd\",Pbbki9HLv:kMlyhqpxL,PBdJYzyGW:false,SeCVyrOeE:\"ueheIzzJw\",style:{height:\"100%\"},txtlf6nQJ:\"8px 16px 8px 16px\",variant:\"lTDWHtMbE\",width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"kfNf0sjSM\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:836,pixelWidth:1472,positionX:\"center\",positionY:\"center\",sizes:\"367.5px\",src:\"https://framerusercontent.com/images/biaNpOnwsYtisG4CnDwizQec.png\",srcSet:\"https://framerusercontent.com/images/biaNpOnwsYtisG4CnDwizQec.png?scale-down-to=512 512w,https://framerusercontent.com/images/biaNpOnwsYtisG4CnDwizQec.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/biaNpOnwsYtisG4CnDwizQec.png 1472w\"},className:\"framer-jrx0ad\",\"data-framer-name\":\"Untitled (2) 1\",layoutDependency:layoutDependency,layoutId:\"ZlIzdhQlw\",...addPropertyOverrides({d0hfwNnqq:{background:{alt:\"\",fit:\"fit\",pixelHeight:435,pixelWidth:1005,positionX:\"center\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/otogX1cL211KYtkoJi5gVIAlE.png\",srcSet:\"https://framerusercontent.com/images/otogX1cL211KYtkoJi5gVIAlE.png?scale-down-to=512 512w,https://framerusercontent.com/images/otogX1cL211KYtkoJi5gVIAlE.png 1005w\"}},nKcsUT7TE:{background:{alt:\"\",fit:\"fit\",pixelHeight:435,pixelWidth:1005,positionX:\"center\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 176px)`,src:\"https://framerusercontent.com/images/otogX1cL211KYtkoJi5gVIAlE.png\",srcSet:\"https://framerusercontent.com/images/otogX1cL211KYtkoJi5gVIAlE.png?scale-down-to=512 512w,https://framerusercontent.com/images/otogX1cL211KYtkoJi5gVIAlE.png 1005w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ezme4\",\"data-framer-name\":\"Frame 1000006212\",layoutDependency:layoutDependency,layoutId:\"J0WC3vghP\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k0l04i-container\",layoutDependency:layoutDependency,layoutId:\"RvrV9ECZD-container\",nodeId:\"RvrV9ECZD\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"RvrV9ECZD\",layoutId:\"RvrV9ECZD\",variant:\"wukUcLxd3\",vf4UTeqXM:DLzNBaVWy,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-151yegt-container\",layoutDependency:layoutDependency,layoutId:\"HLgYaSI4B-container\",nodeId:\"HLgYaSI4B\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"HLgYaSI4B\",layoutId:\"HLgYaSI4B\",variant:\"wukUcLxd3\",vf4UTeqXM:Pnsc7BSUD,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-svbkgm-container\",layoutDependency:layoutDependency,layoutId:\"dc32AOLAQ-container\",nodeId:\"dc32AOLAQ\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"dc32AOLAQ\",layoutId:\"dc32AOLAQ\",variant:\"wukUcLxd3\",vf4UTeqXM:uAUK_zDcS,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k4ghwi-container\",layoutDependency:layoutDependency,layoutId:\"DIk7I1S0F-container\",nodeId:\"DIk7I1S0F\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"DIk7I1S0F\",layoutId:\"DIk7I1S0F\",variant:\"wukUcLxd3\",vf4UTeqXM:COlAxdhI1,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10dnuw4-container\",layoutDependency:layoutDependency,layoutId:\"g2j91joQD-container\",nodeId:\"g2j91joQD\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"g2j91joQD\",layoutId:\"g2j91joQD\",variant:\"wukUcLxd3\",vf4UTeqXM:ux09ANfb8,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m58rby-container\",layoutDependency:layoutDependency,layoutId:\"w6FhnsypG-container\",nodeId:\"w6FhnsypG\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"w6FhnsypG\",layoutId:\"w6FhnsypG\",variant:\"wukUcLxd3\",vf4UTeqXM:aKYO7qL_A,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a7nwmj-container\",layoutDependency:layoutDependency,layoutId:\"jKpQ90blG-container\",nodeId:\"jKpQ90blG\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"jKpQ90blG\",layoutId:\"jKpQ90blG\",variant:\"wukUcLxd3\",vf4UTeqXM:ol5ncrwbn,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tr4lqt-container\",layoutDependency:layoutDependency,layoutId:\"KV5A8QLvI-container\",nodeId:\"KV5A8QLvI\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"KV5A8QLvI\",layoutId:\"KV5A8QLvI\",variant:\"wukUcLxd3\",vf4UTeqXM:OiZTYSWHE,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jul2qz-container\",layoutDependency:layoutDependency,layoutId:\"oUmbBtGbx-container\",nodeId:\"oUmbBtGbx\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"oUmbBtGbx\",layoutId:\"oUmbBtGbx\",variant:\"wukUcLxd3\",vf4UTeqXM:dm4iD3pPC,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9zetrt-container\",layoutDependency:layoutDependency,layoutId:\"KdwQIYc5p-container\",nodeId:\"KdwQIYc5p\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"KdwQIYc5p\",layoutId:\"KdwQIYc5p\",variant:\"wukUcLxd3\",vf4UTeqXM:k4gV949qD,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x6zrjr-container\",layoutDependency:layoutDependency,layoutId:\"vhTKsotNB-container\",nodeId:\"vhTKsotNB\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"vhTKsotNB\",layoutId:\"vhTKsotNB\",variant:\"wukUcLxd3\",vf4UTeqXM:zISi0bMLZ,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16ocn7s-container\",layoutDependency:layoutDependency,layoutId:\"ftmVEmEdN-container\",nodeId:\"ftmVEmEdN\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"ftmVEmEdN\",layoutId:\"ftmVEmEdN\",variant:\"wukUcLxd3\",vf4UTeqXM:by91BJQPs,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wwurxe-container\",layoutDependency:layoutDependency,layoutId:\"JXQaXItfW-container\",nodeId:\"JXQaXItfW\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"JXQaXItfW\",layoutId:\"JXQaXItfW\",variant:\"wukUcLxd3\",vf4UTeqXM:wEojdBhyg,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),visible5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gyqwha-container\",layoutDependency:layoutDependency,layoutId:\"JdqNR7UkZ-container\",nodeId:\"JdqNR7UkZ\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"JdqNR7UkZ\",layoutId:\"JdqNR7UkZ\",variant:\"wukUcLxd3\",vf4UTeqXM:WVNEiCKCd,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yp2czj-container\",layoutDependency:layoutDependency,layoutId:\"YmEYSRoOi-container\",nodeId:\"YmEYSRoOi\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"YmEYSRoOi\",layoutId:\"YmEYSRoOi\",variant:\"wukUcLxd3\",vf4UTeqXM:SjlCpJ31l,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t4ptb3-container\",layoutDependency:layoutDependency,layoutId:\"a0tep9ZRC-container\",nodeId:\"a0tep9ZRC\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"a0tep9ZRC\",layoutId:\"a0tep9ZRC\",variant:\"wukUcLxd3\",vf4UTeqXM:Wr4U0itgU,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})}),visible8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z9meyy-container\",layoutDependency:layoutDependency,layoutId:\"pVQKTqY7M-container\",nodeId:\"pVQKTqY7M\",rendersWithMotion:true,scopeId:\"Y7Vpnh0eD\",children:/*#__PURE__*/_jsx(ChipTubAccounting,{height:\"100%\",id:\"pVQKTqY7M\",layoutId:\"pVQKTqY7M\",variant:\"wukUcLxd3\",vf4UTeqXM:seELPwTLB,width:\"100%\",...addPropertyOverrides({d0hfwNnqq:{variant:\"KWjJyYlLD\"}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-14ovh4w\",\"data-styles-preset\":\"i_p4CQqJA\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(34, 34, 34))\"},children:\"Enty covers any accounting issue you might face\"})}),className:\"framer-8o93sm\",\"data-framer-name\":\"Enty covers any accounting issue you might face\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Vxct6kdFG\",style:{\"--extracted-1eung3n\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:gK1Yaqdcs,verticalAlignment:\"center\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qanP6.framer-o982fo, .framer-qanP6 .framer-o982fo { display: block; }\",\".framer-qanP6.framer-18mfxf5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 64px 64px 64px; position: relative; width: 1072px; }\",\".framer-qanP6 .framer-of7mv9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qanP6 .framer-1d2z36a { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qanP6 .framer-c9ot83 { 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-qanP6 .framer-1si646d { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qanP6 .framer-b5nrsz-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-qanP6 .framer-1rzy87w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qanP6 .framer-sbfdyb, .framer-qanP6 .framer-ok5xi3 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qanP6 .framer-lgalr2, .framer-qanP6 .framer-1k7aal3, .framer-qanP6 .framer-gpuja4 { flex: none; gap: 0px; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-qanP6 .framer-nyzabp { bottom: 3px; flex: none; left: 1px; position: absolute; right: 3px; top: 1px; }\",\".framer-qanP6 .framer-wsuohe, .framer-qanP6 .framer-add7dg, .framer-qanP6 .framer-q24ruz, .framer-qanP6 .framer-fhvzg, .framer-qanP6 .framer-lfun49, .framer-qanP6 .framer-18fo1op, .framer-qanP6 .framer-994qfy, .framer-qanP6 .framer-1m57fnb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-qanP6 .framer-1o3clmx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qanP6 .framer-z8gjzl { bottom: 3px; flex: none; left: 0px; position: absolute; right: 3px; top: 1px; }\",\".framer-qanP6 .framer-1d57aj9 { bottom: 3px; flex: none; left: 0px; position: absolute; right: 4px; top: 1px; }\",\".framer-qanP6 .framer-17xp9rj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: flex-start; min-height: 450px; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-qanP6 .framer-1e95rew { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 424px; }\",\".framer-qanP6 .framer-zsd1my { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qanP6 .framer-teds6g-container { flex: none; height: 56px; position: relative; width: auto; }\",\".framer-qanP6 .framer-jrx0ad { aspect-ratio: 1.7567569422379634 / 1; bottom: -64px; flex: none; height: var(--framer-aspect-ratio-supported, 209px); left: 40px; position: absolute; width: 368px; z-index: 1; }\",\".framer-qanP6 .framer-17ezme4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-qanP6 .framer-1k0l04i-container, .framer-qanP6 .framer-151yegt-container, .framer-qanP6 .framer-svbkgm-container, .framer-qanP6 .framer-1k4ghwi-container, .framer-qanP6 .framer-10dnuw4-container, .framer-qanP6 .framer-1m58rby-container, .framer-qanP6 .framer-1a7nwmj-container, .framer-qanP6 .framer-tr4lqt-container, .framer-qanP6 .framer-jul2qz-container, .framer-qanP6 .framer-9zetrt-container, .framer-qanP6 .framer-1x6zrjr-container, .framer-qanP6 .framer-16ocn7s-container, .framer-qanP6 .framer-1wwurxe-container, .framer-qanP6 .framer-1gyqwha-container, .framer-qanP6 .framer-yp2czj-container, .framer-qanP6 .framer-t4ptb3-container, .framer-qanP6 .framer-z9meyy-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-qanP6 .framer-8o93sm { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-qanP6.framer-v-co9cl5.framer-18mfxf5 { gap: 80px; padding: 70px 56px 56px 56px; width: 731px; }\",\".framer-qanP6.framer-v-co9cl5 .framer-1d2z36a { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 8px; }\",\".framer-qanP6.framer-v-co9cl5 .framer-b5nrsz-container, .framer-qanP6.framer-v-co9cl5 .framer-1o3clmx, .framer-qanP6.framer-v-g4porg .framer-b5nrsz-container { flex: none; width: 100%; }\",\".framer-qanP6.framer-v-co9cl5 .framer-1rzy87w, .framer-qanP6.framer-v-g4porg .framer-1rzy87w { flex-direction: column; }\",\".framer-qanP6.framer-v-co9cl5 .framer-sbfdyb, .framer-qanP6.framer-v-co9cl5 .framer-ok5xi3 { align-self: unset; flex: none; height: min-content; width: 100%; }\",\".framer-qanP6.framer-v-co9cl5 .framer-17xp9rj { flex-direction: column; padding: 32px 32px 0px 32px; }\",\".framer-qanP6.framer-v-co9cl5 .framer-1e95rew, .framer-qanP6.framer-v-g4porg .framer-1k0l04i-container { order: 0; }\",\".framer-qanP6.framer-v-co9cl5 .framer-jrx0ad { aspect-ratio: unset; bottom: unset; height: 230px; left: unset; order: 2; overflow: visible; position: relative; width: 100%; }\",\".framer-qanP6.framer-v-co9cl5 .framer-17ezme4 { flex: none; order: 1; width: 100%; }\",\".framer-qanP6.framer-v-g4porg.framer-18mfxf5 { gap: 52px; padding: 40px 16px 20px 16px; width: 320px; }\",\".framer-qanP6.framer-v-g4porg .framer-1d2z36a { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 4px; }\",\".framer-qanP6.framer-v-g4porg .framer-sbfdyb, .framer-qanP6.framer-v-g4porg .framer-ok5xi3 { align-self: unset; flex: none; gap: 12px; height: min-content; padding: 24px; width: 100%; }\",\".framer-qanP6.framer-v-g4porg .framer-1o3clmx { flex: none; gap: 12px; padding: 24px; width: 100%; }\",\".framer-qanP6.framer-v-g4porg .framer-17xp9rj { flex-direction: column; gap: 40px; padding: 32px 20px 0px 20px; }\",\".framer-qanP6.framer-v-g4porg .framer-1e95rew { order: 2; width: 100%; }\",\".framer-qanP6.framer-v-g4porg .framer-teds6g-container { height: 48px; min-width: 163px; }\",\".framer-qanP6.framer-v-g4porg .framer-jrx0ad { aspect-ratio: unset; bottom: unset; height: 110px; left: unset; order: 3; overflow: visible; position: relative; width: 100%; }\",\".framer-qanP6.framer-v-g4porg .framer-17ezme4 { flex: none; gap: 8px; order: 1; width: 100%; }\",\".framer-qanP6.framer-v-g4porg .framer-151yegt-container { order: 2; }\",\".framer-qanP6.framer-v-g4porg .framer-svbkgm-container { order: 4; }\",\".framer-qanP6.framer-v-g4porg .framer-1k4ghwi-container { order: 5; }\",\".framer-qanP6.framer-v-g4porg .framer-10dnuw4-container { order: 6; }\",\".framer-qanP6.framer-v-g4porg .framer-1m58rby-container { order: 7; }\",\".framer-qanP6.framer-v-g4porg .framer-1a7nwmj-container { order: 8; }\",\".framer-qanP6.framer-v-g4porg .framer-tr4lqt-container { order: 9; }\",\".framer-qanP6.framer-v-g4porg .framer-jul2qz-container { order: 1; }\",\".framer-qanP6.framer-v-g4porg .framer-9zetrt-container { order: 10; }\",\".framer-qanP6.framer-v-g4porg .framer-1x6zrjr-container { order: 11; }\",\".framer-qanP6.framer-v-g4porg .framer-16ocn7s-container { order: 3; }\",\".framer-qanP6.framer-v-g4porg .framer-1wwurxe-container { order: 12; }\",\".framer-qanP6.framer-v-g4porg .framer-1gyqwha-container { order: 13; }\",\".framer-qanP6.framer-v-g4porg .framer-yp2czj-container { order: 15; }\",\".framer-qanP6.framer-v-g4porg .framer-t4ptb3-container { order: 16; }\",\".framer-qanP6.framer-v-g4porg .framer-z9meyy-container { order: 14; }\",\".framer-qanP6.framer-v-g4porg .framer-8o93sm { flex: none; order: 0; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1332\n * @framerIntrinsicWidth 1072\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nKcsUT7TE\":{\"layout\":[\"fixed\",\"auto\"]},\"d0hfwNnqq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ub3mUaorx\":\"title\",\"FWtQWSDhA\":\"typeMachine\",\"JQDT0rKed\":\"_1CardTitle\",\"SpZSXjSvD\":\"_1CardDescription\",\"j6rmcQLFH\":\"_2CardTitle\",\"us0XOnmPL\":\"_2CardDescription\",\"DlV3NaG5Y\":\"_3CardTitle\",\"U83m3QfOh\":\"_3CardDescription\",\"gK1Yaqdcs\":\"serviceTitle\",\"iC2n7PvBP\":\"serviceDescription\",\"S44ZbqGNn\":\"buttonText\",\"kMlyhqpxL\":\"buttonLink\",\"DLzNBaVWy\":\"tub1\",\"Pnsc7BSUD\":\"tub2\",\"uAUK_zDcS\":\"tub3\",\"COlAxdhI1\":\"tub4\",\"ux09ANfb8\":\"tub5\",\"aKYO7qL_A\":\"tub6\",\"ol5ncrwbn\":\"tub7\",\"OiZTYSWHE\":\"tub8\",\"dm4iD3pPC\":\"tub9\",\"k4gV949qD\":\"tub10\",\"zISi0bMLZ\":\"tub11\",\"by91BJQPs\":\"tub12\",\"wEojdBhyg\":\"tub13\",\"WVNEiCKCd\":\"tub14\",\"SjlCpJ31l\":\"tub15\",\"Wr4U0itgU\":\"tub16\",\"seELPwTLB\":\"tub17\",\"Z2VAE1OUh\":\"bookACall\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerY7Vpnh0eD=withCSS(Component,css,\"framer-qanP6\");export default FramerY7Vpnh0eD;FramerY7Vpnh0eD.displayName=\"We are help\";FramerY7Vpnh0eD.defaultProps={height:1332,width:1072};addPropertyControls(FramerY7Vpnh0eD,{variant:{options:[\"glqoN4UwR\",\"nKcsUT7TE\",\"d0hfwNnqq\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},ub3mUaorx:{defaultValue:\"We are here to help\",displayTextArea:false,title:\"Title\",type:ControlType.String},FWtQWSDhA:TypeMachineControls?.[\"variant\"]&&{...TypeMachineControls[\"variant\"],defaultValue:\"hPWYiCYlp\",description:undefined,hidden:undefined,title:\"Type Machine\"},JQDT0rKed:{defaultValue:\"New businesses\",displayTextArea:false,title:\"1 Card title\",type:ControlType.String},SpZSXjSvD:{defaultValue:\"New to accounting in Estonia? Let us handle it from day one and set it up the best way\",displayTextArea:false,title:\"1 Card description\",type:ControlType.String},j6rmcQLFH:{defaultValue:\"Established companies\",displayTextArea:false,title:\"2 Card title\",type:ControlType.String},us0XOnmPL:{defaultValue:\"We take accounting issues from your up-and-running business with a simple transfer process\",displayTextArea:false,title:\"2 Card description\",type:ControlType.String},DlV3NaG5Y:{defaultValue:\"Challenging cases\",displayTextArea:false,title:\"3 Card title\",type:ControlType.String},U83m3QfOh:{defaultValue:\"If you neglected accounting and things are a bit messy, we can put everything on the shelves\",displayTextArea:false,title:\"3 Card description\",type:ControlType.String},gK1Yaqdcs:{defaultValue:\"Enty covers any accounting issue you might face\",displayTextArea:false,title:\"Service title\",type:ControlType.String},iC2n7PvBP:{defaultValue:\"<p>There\u2019s no stupid question about accounting<br>Let\u2019s talk on a free call!</p>\",title:\"Service description\",type:ControlType.RichText},S44ZbqGNn:{defaultValue:\"Book a call\",displayTextArea:false,title:\"Button Text\",type:ControlType.String},kMlyhqpxL:{title:\"Button Link\",type:ControlType.Link},DLzNBaVWy:{defaultValue:\"Annual report\",displayTextArea:false,title:\"Tub 1\",type:ControlType.String},Pnsc7BSUD:{defaultValue:\"VAT declaration\",displayTextArea:false,title:\"Tub 2\",type:ControlType.String},uAUK_zDcS:{defaultValue:\"Employer declaration (TSD)\",displayTextArea:false,title:\"Tub 3\",type:ControlType.String},COlAxdhI1:{defaultValue:\"Employee registration\",displayTextArea:false,title:\"Tub 4\",type:ControlType.String},ux09ANfb8:{defaultValue:\"E-stat\",displayTextArea:false,title:\"Tub 5\",type:ControlType.String},aKYO7qL_A:{defaultValue:\"Board member registration\",displayTextArea:false,title:\"Tub 6\",type:ControlType.String},ol5ncrwbn:{defaultValue:\"Profit & Loss statement\",displayTextArea:false,title:\"Tub 7\",type:ControlType.String},OiZTYSWHE:{defaultValue:\"Calculation of fixed and intangible assets\",displayTextArea:false,title:\"Tub 8\",type:ControlType.String},dm4iD3pPC:{defaultValue:\"Consultation\",displayTextArea:false,title:\"Tub 9\",type:ControlType.String},k4gV949qD:{defaultValue:\"Payroll\",displayTextArea:false,title:\"Tub 10\",type:ControlType.String},zISi0bMLZ:{defaultValue:\"IOSS/OSS declaration\",displayTextArea:false,title:\"Tub 11\",type:ControlType.String},by91BJQPs:{defaultValue:\"Zero declaration\",displayTextArea:false,title:\"Tub 12\",type:ControlType.String},wEojdBhyg:{defaultValue:\"Corrections to submitted declarations\",displayTextArea:false,title:\"Tub 13\",type:ControlType.String},WVNEiCKCd:{defaultValue:\"Liquidation report\",displayTextArea:false,title:\"Tub 14\",type:ControlType.String},SjlCpJ31l:{defaultValue:\"Foreign trade services\",displayTextArea:false,title:\"Tub 15\",type:ControlType.String},Wr4U0itgU:{defaultValue:\"Incapacity certificate\",displayTextArea:false,title:\"Tub 16\",type:ControlType.String},seELPwTLB:{defaultValue:\"Late declaration\",displayTextArea:false,title:\"Tub 17\",type:ControlType.String},Z2VAE1OUh:{defaultValue:true,title:\"Book a call?\",type:ControlType.Boolean}});addFonts(FramerY7Vpnh0eD,[{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\"}]},...TypeMachineFonts,...BasicComponentsButtonFonts,...ChipTubAccountingFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...componentPresets.fonts?.[\"WeePTqWVx\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"WeePTqWVx\"]):[],...componentPresets.fonts?.[\"IdIFoh1hb\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"IdIFoh1hb\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerY7Vpnh0eD\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1332\",\"framerVariables\":\"{\\\"ub3mUaorx\\\":\\\"title\\\",\\\"FWtQWSDhA\\\":\\\"typeMachine\\\",\\\"JQDT0rKed\\\":\\\"_1CardTitle\\\",\\\"SpZSXjSvD\\\":\\\"_1CardDescription\\\",\\\"j6rmcQLFH\\\":\\\"_2CardTitle\\\",\\\"us0XOnmPL\\\":\\\"_2CardDescription\\\",\\\"DlV3NaG5Y\\\":\\\"_3CardTitle\\\",\\\"U83m3QfOh\\\":\\\"_3CardDescription\\\",\\\"gK1Yaqdcs\\\":\\\"serviceTitle\\\",\\\"iC2n7PvBP\\\":\\\"serviceDescription\\\",\\\"S44ZbqGNn\\\":\\\"buttonText\\\",\\\"kMlyhqpxL\\\":\\\"buttonLink\\\",\\\"DLzNBaVWy\\\":\\\"tub1\\\",\\\"Pnsc7BSUD\\\":\\\"tub2\\\",\\\"uAUK_zDcS\\\":\\\"tub3\\\",\\\"COlAxdhI1\\\":\\\"tub4\\\",\\\"ux09ANfb8\\\":\\\"tub5\\\",\\\"aKYO7qL_A\\\":\\\"tub6\\\",\\\"ol5ncrwbn\\\":\\\"tub7\\\",\\\"OiZTYSWHE\\\":\\\"tub8\\\",\\\"dm4iD3pPC\\\":\\\"tub9\\\",\\\"k4gV949qD\\\":\\\"tub10\\\",\\\"zISi0bMLZ\\\":\\\"tub11\\\",\\\"by91BJQPs\\\":\\\"tub12\\\",\\\"wEojdBhyg\\\":\\\"tub13\\\",\\\"WVNEiCKCd\\\":\\\"tub14\\\",\\\"SjlCpJ31l\\\":\\\"tub15\\\",\\\"Wr4U0itgU\\\":\\\"tub16\\\",\\\"seELPwTLB\\\":\\\"tub17\\\",\\\"Z2VAE1OUh\\\":\\\"bookACall\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1072\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nKcsUT7TE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d0hfwNnqq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Y7Vpnh0eD.map"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "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", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "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", "index", "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", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "transition5", "toResponsiveImage", "value", "transition6", "animation", "animation1", "animation2", "animation3", "transition7", "animation4", "transition8", "animation5", "Transition", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "gif1AccountingActiveBoard", "gif1AccountingBoard", "gif1AugustBoard", "gif1Message", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Urf3peRq3", "VUjqF0OcD", "sJCJo6GhR", "Zv0QFeP_x", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1086a7x", "args", "onAppeartqarhw", "onAppear98tt85", "onAppear79mspd", "onAppear1tbkana", "onAppear16p7ycz", "onAppear1fovhi2", "onAppear19s25uv", "onAppear1y299j9", "onAppear1cyvl5z", "onAppear1hpch50", "onAppear15q3cyw", "onAppear1biq9gb", "onAppear1xgzn3x", "onAppearxqixii", "onAppear15ihw3q", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "getLoadingLazyAtYPosition", "css", "FramerAoTHhKeo5", "withCSS", "AoTHhKeo5_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFX", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "toResponsiveImage", "value", "transition3", "animation", "transformTemplate1", "_", "t", "animation1", "Transition", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "gif3ScrollPage", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Scg7Li1sv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear113g0sx", "args", "onAppearfzp69x", "onAppear1e16j6w", "onAppearsae7l0", "onAppearm9wl8z", "onAppear1m2utdn", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "getLoadingLazyAtYPosition", "css", "FramerD7SwoOSR4", "withCSS", "D7SwoOSR4_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "transition2", "animation", "animation1", "animation2", "Transition", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "gif2Message1", "gif2Message2", "gif2Message3", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Md4PnYKdx", "nYeTFnU8h", "C6Wq2Ge0W", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1cq9n05", "args", "onAppear7p0fhz", "onAppear120dnnl", "onAppear1pn56wr", "onAppear1ykc11j", "onAppear1nrf4gs", "onAppear17fcrx7", "onAppearcubxub", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "getLoadingLazyAtYPosition", "css", "Frameru429wWSda", "withCSS", "u429wWSda_default", "addPropertyControls", "ControlType", "addFonts", "UserComponentFonts", "getFonts", "AoTHhKeo5_default", "UserComponent1Fonts", "u429wWSda_default", "UserComponent2Fonts", "D7SwoOSR4_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "_1CardDescription", "_1CardTitle", "_2CardDescription", "_2CardTitle", "_3CardDescription", "_3CardTitle", "gif1AccountingActiveBoard", "gif1AccountingBoard", "gif1AugustBoard", "gif1Message", "gif2Message1", "gif2Message2", "gif2Message3", "gif3ScrollPage", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ukvPM0Asg", "Doccn4v00", "hPoy756Lv", "dSVG1UDwL", "iehFag_le", "OUmP_XVaY", "fLguHleFM", "QLYPLbeQN", "oilDfCSXV", "JNU1lcRVG", "TtAgBUah3", "RRsbtCgyb", "vADFp43nN", "LK1qmO92X", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear22tt51", "args", "onAppear17cmxe1", "onAppear19x41si", "onTapgefxi1", "onTapovrc7i", "onTap7h7lnj", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerBzEpqCzzt", "withCSS", "BzEpqCzzt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transformTemplate1", "_", "t", "animation2", "animation3", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "card3", "description", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "phWaLNTMZ", "uRLIIvw7l", "ozYdELxlc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "RichText2", "getLoadingLazyAtYPosition", "css", "FramerJKRiAg0IF", "withCSS", "JKRiAg0IF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "card5", "description", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "VQ3OCutbJ", "Zb5GDk5Tq", "R46pNLrxu", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "RichText2", "css", "FramerlD039myne", "withCSS", "lD039myne_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithFX", "withFX", "RichText2", "ImageWithFX", "Image2", "MotionDivWithFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "animation2", "animation3", "Transition", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "card1", "description", "form", "height", "id", "notific", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "KIWoNu3bZ", "jSYH81VSl", "xpxWrYKee", "dvcIDmwzj", "AJkgGzf74", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "getLoadingLazyAtYPosition", "css", "FramerqR7rMFEgN", "withCSS", "qR7rMFEgN_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "animation2", "animation3", "animation4", "animation5", "Transition", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "buttonsCard", "card4", "description", "height", "id", "title", "width", "workerCard", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "L_AhZFkNc", "FSr04dmGy", "cvRIf8Nj4", "sNr0Hv4q8", "ijT8a02Hk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "RichText2", "getLoadingLazyAtYPosition", "css", "FramertbnlS9zFZ", "withCSS", "tbnlS9zFZ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithFX", "withFX", "RichText2", "ImageWithFX", "Image2", "MotionDivWithFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "card2", "description", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "gaLHpEMS8", "haGEkmxjA", "WyfUt87aK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "getLoadingLazyAtYPosition", "css", "FramerUMVL6xv3i", "withCSS", "UMVL6xv3i_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "card6", "description", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "YNiKriV_I", "X8NSWmKAP", "EBMjmAcHU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "RichText2", "getLoadingLazyAtYPosition", "css", "FramerwIGrQcA0r", "withCSS", "wIGrQcA0r_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tubText", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vf4UTeqXM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "RichText2", "css", "FramergqqtBQjBY", "withCSS", "gqqtBQjBY_default", "addPropertyControls", "ControlType", "addFonts", "TypeIt", "phrases", "typingSpeed", "erasingSpeed", "delayBetween", "fontSize", "fontFamily", "fontWeight", "color", "fixedTextColor", "letterSpacing", "lineHeight", "prefixText", "suffixText", "direction", "spacing", "verticalAlignment", "currentPhraseIndex", "setCurrentPhraseIndex", "ye", "displayedText", "setDisplayedText", "isErasing", "setIsErasing", "adjustedTypingSpeed", "adjustedErasingSpeed", "ue", "currentPhrase", "timeout", "prev", "p", "motion", "addPropertyControls", "ControlType", "props", "TypeItFonts", "getFonts", "TypeIt", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framery5soMwTMG", "withCSS", "y5soMwTMG_default", "addPropertyControls", "ControlType", "addFonts", "TypeMachineFonts", "getFonts", "y5soMwTMG_default", "BasicComponentsButtonFonts", "XOy8p8KMz_default", "ChipTubAccountingFonts", "gqqtBQjBY_default", "TypeMachineControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "Transition", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "_1CardDescription", "_1CardTitle", "_2CardDescription", "_2CardTitle", "_3CardDescription", "_3CardTitle", "bookACall", "buttonLink", "buttonText", "height", "id", "serviceDescription", "serviceTitle", "title", "tub1", "tub10", "tub11", "tub12", "tub13", "tub14", "tub15", "tub16", "tub17", "tub2", "tub3", "tub4", "tub5", "tub6", "tub7", "tub8", "tub9", "typeMachine", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ub3mUaorx", "FWtQWSDhA", "JQDT0rKed", "SpZSXjSvD", "j6rmcQLFH", "us0XOnmPL", "DlV3NaG5Y", "U83m3QfOh", "gK1Yaqdcs", "iC2n7PvBP", "S44ZbqGNn", "kMlyhqpxL", "DLzNBaVWy", "Pnsc7BSUD", "uAUK_zDcS", "COlAxdhI1", "ux09ANfb8", "aKYO7qL_A", "ol5ncrwbn", "OiZTYSWHE", "dm4iD3pPC", "k4gV949qD", "zISi0bMLZ", "by91BJQPs", "wEojdBhyg", "WVNEiCKCd", "SjlCpJ31l", "Wr4U0itgU", "seELPwTLB", "Z2VAE1OUh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "isDisplayed1", "LayoutGroup", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "ComponentPresetsProvider", "Image2", "css", "FramerY7Vpnh0eD", "withCSS", "Y7Vpnh0eD_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset"]
}
