{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js", "ssg:https://framerusercontent.com/modules/1qRv7ABYoNCf1qxPba87/SQFCtbXXZJWp4Zd6sQAE/Yeb8FubXB.js", "ssg:https://framerusercontent.com/modules/SxcR6Mz1dghmh4cTJ09R/doLY7cC6hURSkiGSX4xM/hNHEfcoqs.js", "ssg:https://framerusercontent.com/modules/ntLifq9kODHeZZRSTHDY/z1DQQ4MDUCbS8PVNG9fd/CzHS4t1Pr.js", "ssg:https://framerusercontent.com/modules/8uCD90D7dJ4vxxf13Fs4/IQeEjTF7mDX2bNpshctp/L_7Ssr_se.js", "ssg:https://framerusercontent.com/modules/wvAfcPsrmj4yMjdoPoxU/L657xGVkk0Acc20hrhQ6/Hsm4dM52D.js", "ssg:https://framerusercontent.com/modules/wGYPndkdsGQvQlrrtDd8/ibbVQAnTcb0AayixVcXg/i5tW49nCD.js", "ssg:https://framerusercontent.com/modules/0bipv5KaKOoHVgLOGehv/rwXSVO0sv72mzabOc4ZW/JM7jN8Cl9.js", "ssg:https://framerusercontent.com/modules/gdZzEwnYvtmp6Wn6PVK2/4kAcNNMFws4EeM4OqH3D/pOinAICx8.js", "ssg:https://framerusercontent.com/modules/iQTqtavcTeEGRpDFrXX5/pYiHb3wei6nDYRZfsuac/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));/*if (snap && (snapEdge === \"start\" || snapEdge === \"end\") && delta >= 1)\n            delta = delta + 0.4 // this ensures it doesn't snap back to previous page*/gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},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:0,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:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},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:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&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,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};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\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */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\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={dzTfEDzbU:{hover:true}};const cycleOrder=[\"dzTfEDzbU\",\"nPmEmENRM\"];const serializationHash=\"framer-yXRhw\";const variantClassNames={dzTfEDzbU:\"framer-v-9oh1t8\",nPmEmENRM:\"framer-v-1r0ewzg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:0,delay:0,duration:.8,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={\"High opacity - hover\":\"nPmEmENRM\",\"Low opacity\":\"dzTfEDzbU\"};const getProps=({height,id,image,mouseEnter,width,...props})=>{return{...props,h5TSGb319:image??props.h5TSGb319,mk2YLIF3l:mouseEnter??props.mk2YLIF3l,variant:humanReadableVariantMap[props.variant]??props.variant??\"dzTfEDzbU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,h5TSGb319,mk2YLIF3l,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dzTfEDzbU\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1o4661y=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(mk2YLIF3l){const res=await mk2YLIF3l(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(h5TSGb319),...{positionX:\"center\",positionY:\"center\"}},className:cx(scopingClassNames,\"framer-9oh1t8\",className,classNames),\"data-framer-name\":\"Low opacity\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dzTfEDzbU\",onMouseEnter:onMouseEnter1o4661y,ref:ref??ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"dzTfEDzbU-hover\":{\"data-framer-name\":undefined},nPmEmENRM:{\"data-framer-name\":\"High opacity - hover\"}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yXRhw.framer-1wp1mid, .framer-yXRhw .framer-1wp1mid { display: block; }\",\".framer-yXRhw.framer-9oh1t8 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: 90px; justify-content: center; overflow: hidden; padding: 25px; position: relative; width: 280px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yXRhw.framer-9oh1t8 { gap: 0px; } .framer-yXRhw.framer-9oh1t8 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-yXRhw.framer-9oh1t8 > :first-child { margin-top: 0px; } .framer-yXRhw.framer-9oh1t8 > :last-child { margin-bottom: 0px; } }\",\".framer-yXRhw.framer-v-1r0ewzg.framer-9oh1t8 { aspect-ratio: 3.111111111111111 / 1; cursor: unset; height: var(--framer-aspect-ratio-supported, 90px); }\",\".framer-yXRhw.framer-v-9oh1t8.hover.framer-9oh1t8 { aspect-ratio: 3.106194690265487 / 1; height: var(--framer-aspect-ratio-supported, 90px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 90\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nPmEmENRM\":{\"layout\":[\"fixed\",\"fixed\"]},\"Vk4xWSzEu\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"h5TSGb319\":\"image\",\"mk2YLIF3l\":\"mouseEnter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYeb8FubXB=withCSS(Component,css,\"framer-yXRhw\");export default FramerYeb8FubXB;FramerYeb8FubXB.displayName=\"Card\";FramerYeb8FubXB.defaultProps={height:90,width:280};addPropertyControls(FramerYeb8FubXB,{variant:{options:[\"dzTfEDzbU\",\"nPmEmENRM\"],optionTitles:[\"Low opacity\",\"High opacity - hover\"],title:\"Variant\",type:ControlType.Enum},h5TSGb319:{title:\"Image\",type:ControlType.ResponsiveImage},mk2YLIF3l:{title:\"Mouse Enter\",type:ControlType.EventHandler}});addFonts(FramerYeb8FubXB,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYeb8FubXB\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"h5TSGb319\\\":\\\"image\\\",\\\"mk2YLIF3l\\\":\\\"mouseEnter\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nPmEmENRM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Vk4xWSzEu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"280\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"90\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Yeb8FubXB.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Card from\"https://framerusercontent.com/modules/1qRv7ABYoNCf1qxPba87/SQFCtbXXZJWp4Zd6sQAE/Yeb8FubXB.js\";const CardFonts=getFonts(Card);const cycleOrder=[\"nzq4JUD4q\",\"jnDHnzT_o\",\"qczd6zbgZ\",\"MrKz9UT7N\"];const serializationHash=\"framer-l2xmv\";const variantClassNames={jnDHnzT_o:\"framer-v-ri36at\",MrKz9UT7N:\"framer-v-1ug4poa\",nzq4JUD4q:\"framer-v-1265rgw\",qczd6zbgZ:\"framer-v-1ca7onh\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1\":\"jnDHnzT_o\",\"2\":\"qczd6zbgZ\",\"3\":\"MrKz9UT7N\",Neutral:\"nzq4JUD4q\"};const getProps=({height,hover,id,visible,width,...props})=>{return{...props,bbO3AO60M:visible??props.bbO3AO60M??true,g88FU9Gnu:hover??props.g88FU9Gnu,variant:humanReadableVariantMap[props.variant]??props.variant??\"nzq4JUD4q\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,g88FU9Gnu,bbO3AO60M,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nzq4JUD4q\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter19x7j8h=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(g88FU9Gnu){const res=await g88FU9Gnu(...args);if(res===false)return false;}});const onMouseEnter19sh89b=activeVariantCallback(async(...args)=>{setVariant(\"MrKz9UT7N\");});const onMouseLeave9gq06a=activeVariantCallback(async(...args)=>{setVariant(\"nzq4JUD4q\");});const onMouseEnteri1mh0t=activeVariantCallback(async(...args)=>{setVariant(\"qczd6zbgZ\");});const onMouseEntervuwum2=activeVariantCallback(async(...args)=>{setVariant(\"jnDHnzT_o\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:bbO3AO60M&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1265rgw\",className,classNames),\"data-framer-name\":\"Neutral\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nzq4JUD4q\",onMouseEnter:onMouseEnter19x7j8h,ref:ref??ref1,style:{...style},...addPropertyOverrides({jnDHnzT_o:{\"data-framer-name\":\"1\"},MrKz9UT7N:{\"data-framer-name\":\"3\"},qczd6zbgZ:{\"data-framer-name\":\"2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rs83mq\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Fit7gUrFP\",onMouseEnter:onMouseEnter19sh89b,style:{skewY:-10},...addPropertyOverrides({MrKz9UT7N:{onMouseEnter:undefined,onMouseLeave:onMouseLeave9gq06a}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:131,width:\"353px\",y:(componentViewport?.y||0)+110+2842170943040401e-29,...addPropertyOverrides({MrKz9UT7N:{y:(componentViewport?.y||0)+20.5+2842170943040401e-29}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wghaeq-container\",layoutDependency:layoutDependency,layoutId:\"ZCy6RGeAq-container\",children:/*#__PURE__*/_jsx(Card,{h5TSGb319:addImageAlt({src:\"https://framerusercontent.com/images/451T6nAXSzoysqtvulWMMa16w.svg\"},\"\"),height:\"100%\",id:\"ZCy6RGeAq\",layoutId:\"ZCy6RGeAq\",style:{height:\"100%\",width:\"100%\"},variant:\"dzTfEDzbU\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vaajwp\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"q5ZAl4vP_\",onMouseEnter:onMouseEnteri1mh0t,style:{skewY:-10},...addPropertyOverrides({qczd6zbgZ:{onMouseEnter:undefined,onMouseLeave:onMouseLeave9gq06a}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:131,width:\"353px\",y:(componentViewport?.y||0)+((componentViewport?.height||412)*.4781553398058255-65.5)+2842170943040401e-29,...addPropertyOverrides({qczd6zbgZ:{y:(componentViewport?.y||0)+49.5+2842170943040401e-29}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19wy3nd-container\",layoutDependency:layoutDependency,layoutId:\"QJdF4oAkn-container\",children:/*#__PURE__*/_jsx(Card,{h5TSGb319:addImageAlt({src:\"https://framerusercontent.com/images/yx84cbNpCtEUnbAyLq77KaBNv1w.svg\"},\"\"),height:\"100%\",id:\"QJdF4oAkn\",layoutId:\"QJdF4oAkn\",style:{height:\"100%\",width:\"100%\"},variant:\"dzTfEDzbU\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pi38hn\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"R6zrgmMrQ\",onMouseEnter:onMouseEntervuwum2,style:{skewY:-10},transformTemplate:transformTemplate1,...addPropertyOverrides({jnDHnzT_o:{onMouseEnter:undefined,onMouseLeave:onMouseLeave9gq06a,transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"353px\",y:(componentViewport?.y||0)+((componentViewport?.height||412)*.5194174757281556-65.5)+20.50000000000003,...addPropertyOverrides({jnDHnzT_o:{y:(componentViewport?.y||0)+72+19.50000000000003}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rtdnfl-container\",layoutDependency:layoutDependency,layoutId:\"o071pXiXv-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(Card,{h5TSGb319:addImageAlt({src:\"https://framerusercontent.com/images/ptW0E5V4Q1V3e1hWOxHO2mCXnOA.svg\"},\"\"),height:\"100%\",id:\"o071pXiXv\",layoutId:\"o071pXiXv\",style:{width:\"100%\"},variant:\"nPmEmENRM\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-l2xmv.framer-cswsps, .framer-l2xmv .framer-cswsps { display: block; }\",\".framer-l2xmv.framer-1265rgw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 412px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 509px; }\",\".framer-l2xmv .framer-1rs83mq { flex: none; height: 131px; left: 44px; overflow: hidden; position: absolute; right: 111px; top: 110px; z-index: 1; }\",\".framer-l2xmv .framer-1wghaeq-container, .framer-l2xmv .framer-19wy3nd-container { flex: none; height: 131px; left: calc(50.00000000000002% - 353px / 2); position: absolute; top: calc(50.00000000000002% - 131px / 2); width: 353px; z-index: 1; }\",\".framer-l2xmv .framer-1vaajwp { flex: none; height: 131px; overflow: hidden; position: absolute; right: 57px; top: calc(47.81553398058255% - 131px / 2); width: 354px; z-index: 1; }\",\".framer-l2xmv .framer-pi38hn { aspect-ratio: 2.7022900763358777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 131px); left: 155px; overflow: hidden; position: absolute; right: 0px; top: 52%; z-index: 1; }\",\".framer-l2xmv .framer-rtdnfl-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; width: 353px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l2xmv.framer-1265rgw { gap: 0px; } .framer-l2xmv.framer-1265rgw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-l2xmv.framer-1265rgw > :first-child { margin-top: 0px; } .framer-l2xmv.framer-1265rgw > :last-child { margin-bottom: 0px; } }\",\".framer-l2xmv.framer-v-ri36at .framer-pi38hn { top: 72px; }\",\".framer-l2xmv.framer-v-1ca7onh .framer-1vaajwp { top: 50px; }\",\".framer-l2xmv.framer-v-1ug4poa .framer-1rs83mq { top: 21px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 412\n * @framerIntrinsicWidth 509\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jnDHnzT_o\":{\"layout\":[\"fixed\",\"fixed\"]},\"qczd6zbgZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"MrKz9UT7N\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"g88FU9Gnu\":\"hover\",\"bbO3AO60M\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhNHEfcoqs=withCSS(Component,css,\"framer-l2xmv\");export default FramerhNHEfcoqs;FramerhNHEfcoqs.displayName=\"Card Jump\";FramerhNHEfcoqs.defaultProps={height:412,width:509};addPropertyControls(FramerhNHEfcoqs,{variant:{options:[\"nzq4JUD4q\",\"jnDHnzT_o\",\"qczd6zbgZ\",\"MrKz9UT7N\"],optionTitles:[\"Neutral\",\"1\",\"2\",\"3\"],title:\"Variant\",type:ControlType.Enum},g88FU9Gnu:{title:\"Hover\",type:ControlType.EventHandler},bbO3AO60M:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(FramerhNHEfcoqs,[{explicitInter:true,fonts:[]},...CardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhNHEfcoqs\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"509\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"412\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"g88FU9Gnu\\\":\\\"hover\\\",\\\"bbO3AO60M\\\":\\\"visible\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jnDHnzT_o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qczd6zbgZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MrKz9UT7N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e1a43d5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"KIFey48xS\",\"qXeDdffv2\",\"O5t8cDfXI\"];const serializationHash=\"framer-aIrAg\";const variantClassNames={KIFey48xS:\"framer-v-1pec7up\",O5t8cDfXI:\"framer-v-1elibln\",qXeDdffv2:\"framer-v-1ywh3z8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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:\"KIFey48xS\",Laptop:\"qXeDdffv2\",Mobile:\"O5t8cDfXI\"};const getProps=({height,id,image,shadow,tap,width,...props})=>{return{...props,F9r1QETbU:tap??props.F9r1QETbU,nNX2BwciB:shadow??props.nNX2BwciB??\"6px 6px 15px 0px rgba(0, 0, 0, 0.35)\",rhl2zfrPb:image??props.rhl2zfrPb??{src:\"https://framerusercontent.com/images/47Mq3pwzAUIqAXGLLR3Zl8syFI.png\",srcSet:\"https://framerusercontent.com/images/47Mq3pwzAUIqAXGLLR3Zl8syFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/47Mq3pwzAUIqAXGLLR3Zl8syFI.png 750w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"KIFey48xS\"};};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,rhl2zfrPb,F9r1QETbU,nNX2BwciB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KIFey48xS\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapt2dhss=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(F9r1QETbU){const res=await F9r1QETbU(...args);if(res===false)return false;}});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-1pec7up\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KIFey48xS\",onTap:onTapt2dhss,ref:refBinding,style:{\"--j0mhnk\":nNX2BwciB,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"var(--j0mhnk)\",...style},...addPropertyOverrides({O5t8cDfXI:{\"data-framer-name\":\"Mobile\"},qXeDdffv2:{\"data-framer-name\":\"Laptop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:647,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||477)-0-((componentViewport?.height||477)-0)*1)/2)),pixelHeight:647,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(rhl2zfrPb),...{positionX:\"left\",positionY:\"top\"}},className:\"framer-115v9au\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Uk22N9Xa7\",...addPropertyOverrides({O5t8cDfXI:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:647,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||215.5)-0-((componentViewport?.height||215.5)-0)*1)/2)),pixelHeight:647,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(rhl2zfrPb),...{positionX:\"left\",positionY:\"top\"}}},qXeDdffv2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:647,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||258.5)-0-((componentViewport?.height||258.5)-0)*1)/2)),pixelHeight:647,pixelWidth:750,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(rhl2zfrPb),...{positionX:\"left\",positionY:\"top\"}}}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aIrAg.framer-1aox14t, .framer-aIrAg .framer-1aox14t { display: block; }\",\".framer-aIrAg.framer-1pec7up { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 477px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 554px; }\",\".framer-aIrAg .framer-115v9au { flex: none; height: 100%; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aIrAg.framer-1pec7up { gap: 0px; } .framer-aIrAg.framer-1pec7up > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aIrAg.framer-1pec7up > :first-child { margin-left: 0px; } .framer-aIrAg.framer-1pec7up > :last-child { margin-right: 0px; } }\",\".framer-aIrAg.framer-v-1ywh3z8.framer-1pec7up { aspect-ratio: 1.1609907120743035 / 1; height: var(--framer-aspect-ratio-supported, 259px); width: 300px; }\",\".framer-aIrAg.framer-v-1elibln.framer-1pec7up { aspect-ratio: 1.1609907120743035 / 1; height: var(--framer-aspect-ratio-supported, 216px); width: 250px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 477\n * @framerIntrinsicWidth 554\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qXeDdffv2\":{\"layout\":[\"fixed\",\"fixed\"]},\"O5t8cDfXI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"rhl2zfrPb\":\"image\",\"F9r1QETbU\":\"tap\",\"nNX2BwciB\":\"shadow\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCzHS4t1Pr=withCSS(Component,css,\"framer-aIrAg\");export default FramerCzHS4t1Pr;FramerCzHS4t1Pr.displayName=\"Tab Image 01\";FramerCzHS4t1Pr.defaultProps={height:477,width:554};addPropertyControls(FramerCzHS4t1Pr,{variant:{options:[\"KIFey48xS\",\"qXeDdffv2\",\"O5t8cDfXI\"],optionTitles:[\"Desktop\",\"Laptop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},rhl2zfrPb:{__defaultAssetReference:\"data:framer/asset-reference,47Mq3pwzAUIqAXGLLR3Zl8syFI.png?originalFilename=Chart.png&preferredSize=auto\",title:\" Image\",type:ControlType.ResponsiveImage},F9r1QETbU:{title:\"Tap\",type:ControlType.EventHandler},nNX2BwciB:{defaultValue:[{blur:15,color:\"rgba(0, 0, 0, 0.35)\",diffusion:.5,focus:.5,inset:false,spread:0,type:\"box\",x:6,y:6}],title:\"Shadow\",type:ControlType.BoxShadow}});addFonts(FramerCzHS4t1Pr,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCzHS4t1Pr\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"rhl2zfrPb\\\":\\\"image\\\",\\\"F9r1QETbU\\\":\\\"tap\\\",\\\"nNX2BwciB\\\":\\\"shadow\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"554\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qXeDdffv2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O5t8cDfXI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"477\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CzHS4t1Pr.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/dP06Xc9Ptgg2DNP11uvj/fEiFUSV2vit93miKod1Q/Ijk4Qs6Tg.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/20ZAgfocYNrejzQ3xUIT/TMJR9nTMzAQTFh9rAXMn/xQbrqwvts.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={omxZCu3tg:{hover:true}};const cycleOrder=[\"omxZCu3tg\",\"ILPCZvBic\",\"aUYTVY8T6\"];const serializationHash=\"framer-QbMlD\";const variantClassNames={aUYTVY8T6:\"framer-v-1caw3fo\",ILPCZvBic:\"framer-v-1vm3u2q\",omxZCu3tg:\"framer-v-ja5m2p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 2\":\"ILPCZvBic\",Desktop:\"omxZCu3tg\",Variant:\"aUYTVY8T6\"};const getProps=({height,icon,id,paragraph,title,width,...props})=>{return{...props,BhHM3TElp:icon??props.BhHM3TElp??{src:\"https://framerusercontent.com/images/Avc5aAIKc6KVxiQX8VvQGVGLlqo.svg\"},p2WSoDKS0:title??props.p2WSoDKS0??\"Order Dashboard\",variant:humanReadableVariantMap[props.variant]??props.variant??\"omxZCu3tg\",XFh7JJDCR:paragraph??props.XFh7JJDCR??\"Track active and past jobs with real-time visibility and control.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BhHM3TElp,p2WSoDKS0,XFh7JJDCR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"omxZCu3tg\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ja5m2p\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"omxZCu3tg\",ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-5faac03b-3520-402e-b6b0-fae17c157fe3, rgb(247, 246, 244))\",...style},variants:{\"omxZCu3tg-hover\":{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-5333d6f3-310f-4a70-8d78-a8a05431c2e6, rgb(0, 222, 55))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d624bab6-2e79-4b2b-942d-b7a193232c83, rgb(255, 255, 255))\"},aUYTVY8T6:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},ILPCZvBic:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-5333d6f3-310f-4a70-8d78-a8a05431c2e6, rgb(0, 222, 55))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d624bab6-2e79-4b2b-942d-b7a193232c83, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"omxZCu3tg-hover\":{\"data-border\":true,\"data-framer-name\":undefined},aUYTVY8T6:{\"data-framer-name\":undefined},ILPCZvBic:{\"data-border\":true,\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-eunl83\",\"data-framer-name\":\"Icon Image\",layoutDependency:layoutDependency,layoutId:\"y1b_3qGBs\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+5),pixelHeight:24,pixelWidth:24,sizes:\"24px\",...toResponsiveImage(BhHM3TElp)},className:\"framer-14ai3uq\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"KrX9qdlKB\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zmg7fp\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"TgXYXiMJV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g0bsoa\",\"data-styles-preset\":\"xQbrqwvts\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(22, 21, 37)))\"},children:\"Automatic Expense Tracking\"})}),className:\"framer-hgohjy\",\"data-framer-name\":\"Automatic Expense Tracking\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F04ZF16_j\",style:{\"--extracted-r6o4lv\":\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(22, 21, 37))\",\"--framer-paragraph-spacing\":\"0px\"},text:p2WSoDKS0,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({aUYTVY8T6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g0bsoa\",\"data-styles-preset\":\"xQbrqwvts\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(22, 21, 37)))\"},children:\"Title\"})}),text:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1288qtq\",\"data-styles-preset\":\"Ijk4Qs6Tg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, rgb(95, 95, 105)))\"},children:\"Automatically categorize expenses to see where money goes.\"})}),className:\"framer-14fvhp1\",\"data-framer-name\":\"Automatically categorize expenses to see where money goes.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OR9ugQyma\",style:{\"--extracted-r6o4lv\":\"var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, rgb(95, 95, 105))\",\"--framer-paragraph-spacing\":\"0px\"},text:XFh7JJDCR,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w0q48\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"rUkoDSwwQ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mxcmig-container\",layoutDependency:layoutDependency,layoutId:\"M4zWqItrl-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(22, 21, 37))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"chevron-right\",id:\"M4zWqItrl\",layoutId:\"M4zWqItrl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QbMlD.framer-8fl509, .framer-QbMlD .framer-8fl509 { display: block; }\",\".framer-QbMlD.framer-ja5m2p { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 400px; }\",\".framer-QbMlD .framer-eunl83 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-QbMlD .framer-14ai3uq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-QbMlD .framer-zmg7fp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QbMlD .framer-hgohjy, .framer-QbMlD .framer-14fvhp1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QbMlD .framer-1w0q48 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-QbMlD .framer-mxcmig-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QbMlD.framer-ja5m2p, .framer-QbMlD .framer-eunl83, .framer-QbMlD .framer-zmg7fp, .framer-QbMlD .framer-1w0q48 { gap: 0px; } .framer-QbMlD.framer-ja5m2p > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-QbMlD.framer-ja5m2p > :first-child, .framer-QbMlD .framer-eunl83 > :first-child, .framer-QbMlD .framer-1w0q48 > :first-child { margin-left: 0px; } .framer-QbMlD.framer-ja5m2p > :last-child, .framer-QbMlD .framer-eunl83 > :last-child, .framer-QbMlD .framer-1w0q48 > :last-child { margin-right: 0px; } .framer-QbMlD .framer-eunl83 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QbMlD .framer-zmg7fp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QbMlD .framer-zmg7fp > :first-child { margin-top: 0px; } .framer-QbMlD .framer-zmg7fp > :last-child { margin-bottom: 0px; } .framer-QbMlD .framer-1w0q48 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-QbMlD.framer-v-1vm3u2q.framer-ja5m2p, .framer-QbMlD.framer-v-1caw3fo.framer-ja5m2p { cursor: unset; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-QbMlD[data-border=\"true\"]::after, .framer-QbMlD [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 146.5\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ILPCZvBic\":{\"layout\":[\"fixed\",\"auto\"]},\"aUYTVY8T6\":{\"layout\":[\"fixed\",\"auto\"]},\"pujSJ9XRn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BhHM3TElp\":\"icon\",\"p2WSoDKS0\":\"title\",\"XFh7JJDCR\":\"paragraph\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerL_7Ssr_se=withCSS(Component,css,\"framer-QbMlD\");export default FramerL_7Ssr_se;FramerL_7Ssr_se.displayName=\"Icon Box\";FramerL_7Ssr_se.defaultProps={height:146.5,width:400};addPropertyControls(FramerL_7Ssr_se,{variant:{options:[\"omxZCu3tg\",\"ILPCZvBic\",\"aUYTVY8T6\"],optionTitles:[\"Desktop\",\"Variant 2\",\"Variant\"],title:\"Variant\",type:ControlType.Enum},BhHM3TElp:{__defaultAssetReference:\"data:framer/asset-reference,Avc5aAIKc6KVxiQX8VvQGVGLlqo.svg?originalFilename=credit-card-pos.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},p2WSoDKS0:{defaultValue:\"Order Dashboard\",description:\"\",displayTextArea:false,title:\"Title\",type:ControlType.String},XFh7JJDCR:{defaultValue:\"Track active and past jobs with real-time visibility and control.\",displayTextArea:false,title:\"paragraph\",type:ControlType.String}});addFonts(FramerL_7Ssr_se,[{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\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerL_7Ssr_se\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"BhHM3TElp\\\":\\\"icon\\\",\\\"p2WSoDKS0\\\":\\\"title\\\",\\\"XFh7JJDCR\\\":\\\"paragraph\\\"}\",\"framerIntrinsicHeight\":\"146.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ILPCZvBic\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aUYTVY8T6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pujSJ9XRn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./L_7Ssr_se.map", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import TabImage01 from\"https://framerusercontent.com/modules/ntLifq9kODHeZZRSTHDY/z1DQQ4MDUCbS8PVNG9fd/CzHS4t1Pr.js\";import IconBox from\"https://framerusercontent.com/modules/8uCD90D7dJ4vxxf13Fs4/IQeEjTF7mDX2bNpshctp/L_7Ssr_se.js\";const IconBoxFonts=getFonts(IconBox);const TabImage01Fonts=getFonts(TabImage01);const cycleOrder=[\"gUoAGuerm\",\"JJ_4o0Rb5\",\"pL7F1S702\",\"WbAvBNuGA\",\"QVuNnnVyO\",\"whlkYaFkd\",\"C0KHVpnB8\",\"wiaqlR36W\",\"laTlbJqYL\",\"PyKCVi6z6\",\"fnHH2Loi8\",\"py2Wyyjwb\",\"ZK0oc8LHe\",\"bwn9gZB0N\",\"cesqbS1uK\",\"r7KzMC3wg\",\"jJ7cBEN1R\",\"bulq7i9id\",\"FnIwIR1yq\",\"Y1RCaq6TP\"];const serializationHash=\"framer-xvn45\";const variantClassNames={bulq7i9id:\"framer-v-15grar0\",bwn9gZB0N:\"framer-v-1q0fmp3\",C0KHVpnB8:\"framer-v-1xo01ub\",cesqbS1uK:\"framer-v-ymdaw5\",fnHH2Loi8:\"framer-v-26l6vl\",FnIwIR1yq:\"framer-v-yj8k78\",gUoAGuerm:\"framer-v-jkrgos\",JJ_4o0Rb5:\"framer-v-1rtag3d\",jJ7cBEN1R:\"framer-v-1wa7j09\",laTlbJqYL:\"framer-v-1srltf9\",pL7F1S702:\"framer-v-yf2fbn\",py2Wyyjwb:\"framer-v-19dw1g6\",PyKCVi6z6:\"framer-v-mukwoo\",QVuNnnVyO:\"framer-v-1cmsovl\",r7KzMC3wg:\"framer-v-1gyc10e\",WbAvBNuGA:\"framer-v-1sdpgv0\",whlkYaFkd:\"framer-v-p9ac1g\",wiaqlR36W:\"framer-v-1woc4g8\",Y1RCaq6TP:\"framer-v-1qojhe3\",ZK0oc8LHe:\"framer-v-1ojwi2a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 01\":\"gUoAGuerm\",\"Desktop 02\":\"JJ_4o0Rb5\",\"Desktop 03\":\"pL7F1S702\",\"Desktop 04\":\"WbAvBNuGA\",\"Laptop 01\":\"QVuNnnVyO\",\"Laptop 02\":\"whlkYaFkd\",\"Laptop 03\":\"C0KHVpnB8\",\"Laptop 04\":\"wiaqlR36W\",\"Laptop 05\":\"jJ7cBEN1R\",\"Mobile 01\":\"ZK0oc8LHe\",\"Mobile 02\":\"bwn9gZB0N\",\"Mobile 03\":\"cesqbS1uK\",\"Mobile 04\":\"r7KzMC3wg\",\"Mobile 05\":\"FnIwIR1yq\",\"Tablet 01\":\"laTlbJqYL\",\"Tablet 02\":\"PyKCVi6z6\",\"Tablet 03\":\"fnHH2Loi8\",\"Tablet 04\":\"py2Wyyjwb\",\"Tablet 05\":\"bulq7i9id\",\"Variant 20\":\"Y1RCaq6TP\"};const getProps=({height,id,title,width,...props})=>{return{...props,kzMN15MDe:title??props.kzMN15MDe??\"Order Dashboard\",variant:humanReadableVariantMap[props.variant]??props.variant??\"gUoAGuerm\"};};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,kzMN15MDe,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gUoAGuerm\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap28sms5=activeVariantCallback(async(...args)=>{setVariant(\"gUoAGuerm\");});const onTap1t72bmx=activeVariantCallback(async(...args)=>{setVariant(\"QVuNnnVyO\");});const onTapy6stnb=activeVariantCallback(async(...args)=>{setVariant(\"laTlbJqYL\");});const onTapo0y54k=activeVariantCallback(async(...args)=>{setVariant(\"ZK0oc8LHe\");});const onTap1cuip4m=activeVariantCallback(async(...args)=>{setVariant(\"JJ_4o0Rb5\");});const onTap16ib9c=activeVariantCallback(async(...args)=>{setVariant(\"whlkYaFkd\");});const onTapsjiyvt=activeVariantCallback(async(...args)=>{setVariant(\"PyKCVi6z6\");});const onTapcw1xms=activeVariantCallback(async(...args)=>{setVariant(\"bwn9gZB0N\");});const onTapkhul6f=activeVariantCallback(async(...args)=>{setVariant(\"pL7F1S702\");});const onTap1xyrqoh=activeVariantCallback(async(...args)=>{setVariant(\"C0KHVpnB8\");});const onTap3525eo=activeVariantCallback(async(...args)=>{setVariant(\"fnHH2Loi8\");});const onTapjdqugo=activeVariantCallback(async(...args)=>{setVariant(\"cesqbS1uK\");});const onTapa8yba5=activeVariantCallback(async(...args)=>{setVariant(\"WbAvBNuGA\");});const onTap101qvbx=activeVariantCallback(async(...args)=>{setVariant(\"wiaqlR36W\");});const onTap49x5dx=activeVariantCallback(async(...args)=>{setVariant(\"py2Wyyjwb\");});const onTap836yny=activeVariantCallback(async(...args)=>{setVariant(\"r7KzMC3wg\");});const onTapmm5cf=activeVariantCallback(async(...args)=>{setVariant(\"Y1RCaq6TP\");});const onTapa7baay=activeVariantCallback(async(...args)=>{setVariant(\"jJ7cBEN1R\");});const onTape5f6dp=activeVariantCallback(async(...args)=>{setVariant(\"bulq7i9id\");});const F9r1QETbU28sms5=activeVariantCallback(async(...args)=>{setVariant(\"gUoAGuerm\");});const F9r1QETbU1t72bmx=activeVariantCallback(async(...args)=>{setVariant(\"QVuNnnVyO\");});const F9r1QETbUy6stnb=activeVariantCallback(async(...args)=>{setVariant(\"laTlbJqYL\");});const F9r1QETbUo0y54k=activeVariantCallback(async(...args)=>{setVariant(\"ZK0oc8LHe\");});const F9r1QETbU101qvbx=activeVariantCallback(async(...args)=>{setVariant(\"wiaqlR36W\");});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jkrgos\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop 01\",layoutDependency:layoutDependency,layoutId:\"gUoAGuerm\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(112, 112, 112, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({bulq7i9id:{\"data-framer-name\":\"Tablet 05\"},bwn9gZB0N:{\"data-framer-name\":\"Mobile 02\"},C0KHVpnB8:{\"data-framer-name\":\"Laptop 03\"},cesqbS1uK:{\"data-framer-name\":\"Mobile 03\"},fnHH2Loi8:{\"data-framer-name\":\"Tablet 03\"},FnIwIR1yq:{\"data-framer-name\":\"Mobile 05\"},JJ_4o0Rb5:{\"data-framer-name\":\"Desktop 02\"},jJ7cBEN1R:{\"data-framer-name\":\"Laptop 05\"},laTlbJqYL:{\"data-framer-name\":\"Tablet 01\"},pL7F1S702:{\"data-framer-name\":\"Desktop 03\"},py2Wyyjwb:{\"data-framer-name\":\"Tablet 04\"},PyKCVi6z6:{\"data-framer-name\":\"Tablet 02\"},QVuNnnVyO:{\"data-framer-name\":\"Laptop 01\"},r7KzMC3wg:{\"data-framer-name\":\"Mobile 04\"},WbAvBNuGA:{\"data-framer-name\":\"Desktop 04\"},whlkYaFkd:{\"data-framer-name\":\"Laptop 02\"},wiaqlR36W:{\"data-framer-name\":\"Laptop 04\"},Y1RCaq6TP:{\"data-framer-name\":\"Variant 20\"},ZK0oc8LHe:{\"data-framer-name\":\"Mobile 01\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-61z51n\",\"data-border\":true,\"data-framer-name\":\"Icon Box List\",layoutDependency:layoutDependency,layoutId:\"KOANP8kqm\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.06)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f9ewlk\",\"data-border\":true,\"data-framer-name\":\"Singel Icon Box\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"O8xWcNS3O\",onTap:onTap28sms5,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(22, 21, 37, 0.06)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{laTlbJqYL:{\"--border-top-width\":\"1px\"},PyKCVi6z6:{\"--border-top-width\":\"1px\"}},...addPropertyOverrides({bulq7i9id:{onTap:onTapy6stnb},bwn9gZB0N:{onTap:onTapo0y54k},C0KHVpnB8:{onTap:onTap1t72bmx},cesqbS1uK:{onTap:onTapo0y54k},fnHH2Loi8:{onTap:onTapy6stnb},FnIwIR1yq:{onTap:onTapo0y54k},jJ7cBEN1R:{onTap:onTap1t72bmx},laTlbJqYL:{onTap:onTapy6stnb},py2Wyyjwb:{onTap:onTapy6stnb},PyKCVi6z6:{onTap:onTapy6stnb},QVuNnnVyO:{onTap:onTap1t72bmx},r7KzMC3wg:{onTap:onTapo0y54k},whlkYaFkd:{onTap:onTap1t72bmx},wiaqlR36W:{onTap:onTap1t72bmx},ZK0oc8LHe:{onTap:onTapo0y54k}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-730)/2)+0+0+0,...addPropertyOverrides({bulq7i9id:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+0+0},bwn9gZB0N:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+0+0},cesqbS1uK:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+0+0},fnHH2Loi8:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+0+0},FnIwIR1yq:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+0+0},laTlbJqYL:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+0+0},py2Wyyjwb:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+0+0},PyKCVi6z6:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+0+0},r7KzMC3wg:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+0+0},ZK0oc8LHe:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1g21r02-container\",layoutDependency:layoutDependency,layoutId:\"XeT9PMKZc-container\",nodeId:\"XeT9PMKZc\",rendersWithMotion:true,scopeId:\"Hsm4dM52D\",children:/*#__PURE__*/_jsx(IconBox,{BhHM3TElp:addImageAlt({src:\"https://framerusercontent.com/images/kKGEj8N1tcQO6b82agXhD6igFn8.svg\",srcSet:\"https://framerusercontent.com/images/kKGEj8N1tcQO6b82agXhD6igFn8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/kKGEj8N1tcQO6b82agXhD6igFn8.svg 960w\"},\"\"),height:\"100%\",id:\"XeT9PMKZc\",layoutId:\"XeT9PMKZc\",p2WSoDKS0:kzMN15MDe,variant:\"ILPCZvBic\",width:\"100%\",XFh7JJDCR:\"Track active and past jobs with real-time visibility and control.\",...addPropertyOverrides({bulq7i9id:{style:{width:\"100%\"},variant:\"omxZCu3tg\"},bwn9gZB0N:{style:{width:\"100%\"},variant:\"omxZCu3tg\"},C0KHVpnB8:{variant:\"omxZCu3tg\"},cesqbS1uK:{style:{width:\"100%\"},variant:\"omxZCu3tg\"},fnHH2Loi8:{style:{width:\"100%\"},variant:\"omxZCu3tg\"},FnIwIR1yq:{style:{width:\"100%\"},variant:\"omxZCu3tg\"},JJ_4o0Rb5:{variant:\"omxZCu3tg\"},jJ7cBEN1R:{variant:\"omxZCu3tg\"},laTlbJqYL:{style:{width:\"100%\"}},pL7F1S702:{variant:\"omxZCu3tg\"},py2Wyyjwb:{style:{width:\"100%\"},variant:\"omxZCu3tg\"},PyKCVi6z6:{style:{width:\"100%\"},variant:\"omxZCu3tg\"},r7KzMC3wg:{style:{width:\"100%\"},variant:\"omxZCu3tg\"},WbAvBNuGA:{variant:\"omxZCu3tg\"},whlkYaFkd:{variant:\"omxZCu3tg\"},wiaqlR36W:{variant:\"omxZCu3tg\"},Y1RCaq6TP:{variant:\"omxZCu3tg\"},ZK0oc8LHe:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p9qo8x\",\"data-border\":true,\"data-framer-name\":\"Singel Icon Box\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KqBGs5D_R\",onTap:onTap1cuip4m,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(22, 21, 37, 0.06)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},...addPropertyOverrides({bulq7i9id:{onTap:onTapsjiyvt},bwn9gZB0N:{onTap:onTapcw1xms},C0KHVpnB8:{onTap:onTap16ib9c},cesqbS1uK:{onTap:onTapcw1xms},fnHH2Loi8:{onTap:onTapsjiyvt},FnIwIR1yq:{onTap:onTapcw1xms},jJ7cBEN1R:{onTap:onTap16ib9c},laTlbJqYL:{onTap:onTapsjiyvt},py2Wyyjwb:{onTap:onTapsjiyvt},PyKCVi6z6:{onTap:onTapsjiyvt},QVuNnnVyO:{onTap:onTap16ib9c},r7KzMC3wg:{onTap:onTapcw1xms},whlkYaFkd:{onTap:onTap16ib9c},wiaqlR36W:{onTap:onTap16ib9c},ZK0oc8LHe:{onTap:onTapcw1xms}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-730)/2)+0+146+0,...addPropertyOverrides({bulq7i9id:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+146+0},bwn9gZB0N:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+146+0},cesqbS1uK:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+146+0},fnHH2Loi8:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+146+0},FnIwIR1yq:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+146+0},laTlbJqYL:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+146+0},py2Wyyjwb:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+146+0},PyKCVi6z6:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+146+0},r7KzMC3wg:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+146+0},ZK0oc8LHe:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+146+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ouk635-container\",layoutDependency:layoutDependency,layoutId:\"tTP2kWHXm-container\",nodeId:\"tTP2kWHXm\",rendersWithMotion:true,scopeId:\"Hsm4dM52D\",children:/*#__PURE__*/_jsx(IconBox,{BhHM3TElp:addImageAlt({src:\"https://framerusercontent.com/images/DLwvtaruyYaMPtnNM2WXs6Owik.svg\",srcSet:\"https://framerusercontent.com/images/DLwvtaruyYaMPtnNM2WXs6Owik.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DLwvtaruyYaMPtnNM2WXs6Owik.svg 960w\"},\"\"),height:\"100%\",id:\"tTP2kWHXm\",layoutId:\"tTP2kWHXm\",p2WSoDKS0:\"Job Workflows\",variant:\"omxZCu3tg\",width:\"100%\",XFh7JJDCR:\"Easily create dynamic workflows for different products or services tailored for your operations, the installers doing the work, and your customers\",...addPropertyOverrides({bulq7i9id:{style:{width:\"100%\"}},bwn9gZB0N:{style:{width:\"100%\"},variant:\"ILPCZvBic\"},cesqbS1uK:{style:{width:\"100%\"}},fnHH2Loi8:{style:{width:\"100%\"}},FnIwIR1yq:{style:{width:\"100%\"}},JJ_4o0Rb5:{variant:\"ILPCZvBic\"},laTlbJqYL:{style:{width:\"100%\"}},py2Wyyjwb:{style:{width:\"100%\"}},PyKCVi6z6:{style:{width:\"100%\"},variant:\"ILPCZvBic\"},r7KzMC3wg:{style:{width:\"100%\"}},whlkYaFkd:{variant:\"ILPCZvBic\"},ZK0oc8LHe:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wn043z\",\"data-border\":true,\"data-framer-name\":\"Singel Icon Box\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"S6TNpw88o\",onTap:onTapkhul6f,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(22, 21, 37, 0.06)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},...addPropertyOverrides({bulq7i9id:{onTap:onTap3525eo},bwn9gZB0N:{onTap:onTapjdqugo},C0KHVpnB8:{onTap:onTap1xyrqoh},cesqbS1uK:{onTap:onTapjdqugo},fnHH2Loi8:{onTap:onTap3525eo},FnIwIR1yq:{onTap:onTapjdqugo},jJ7cBEN1R:{onTap:onTap1xyrqoh},laTlbJqYL:{onTap:onTap3525eo},py2Wyyjwb:{onTap:onTap3525eo},PyKCVi6z6:{onTap:onTap3525eo},QVuNnnVyO:{onTap:onTap1xyrqoh},r7KzMC3wg:{onTap:onTapjdqugo},whlkYaFkd:{onTap:onTap1xyrqoh},wiaqlR36W:{onTap:onTap1xyrqoh},ZK0oc8LHe:{onTap:onTapjdqugo}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-730)/2)+0+292+0,...addPropertyOverrides({bulq7i9id:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+292+0},bwn9gZB0N:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+292+0},cesqbS1uK:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+292+0},fnHH2Loi8:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+292+0},FnIwIR1yq:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+292+0},laTlbJqYL:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+292+0},py2Wyyjwb:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+292+0},PyKCVi6z6:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+292+0},r7KzMC3wg:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+292+0},ZK0oc8LHe:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+292+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1njhaom-container\",layoutDependency:layoutDependency,layoutId:\"YJ2puhoYx-container\",nodeId:\"YJ2puhoYx\",rendersWithMotion:true,scopeId:\"Hsm4dM52D\",children:/*#__PURE__*/_jsx(IconBox,{BhHM3TElp:addImageAlt({src:\"https://framerusercontent.com/images/BlXKBYuiPLHsU7hSqGm4Y2MomE.svg\",srcSet:\"https://framerusercontent.com/images/BlXKBYuiPLHsU7hSqGm4Y2MomE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/BlXKBYuiPLHsU7hSqGm4Y2MomE.svg 960w\"},\"\"),height:\"100%\",id:\"YJ2puhoYx\",layoutId:\"YJ2puhoYx\",p2WSoDKS0:\"Installer Network\",variant:\"omxZCu3tg\",width:\"100%\",XFh7JJDCR:\"Work with your existing installer partners or find new ones through our installer marketplace\",...addPropertyOverrides({bulq7i9id:{style:{width:\"100%\"}},bwn9gZB0N:{style:{width:\"100%\"}},C0KHVpnB8:{variant:\"ILPCZvBic\"},cesqbS1uK:{style:{width:\"100%\"},variant:\"ILPCZvBic\"},fnHH2Loi8:{style:{width:\"100%\"},variant:\"ILPCZvBic\"},FnIwIR1yq:{style:{width:\"100%\"}},laTlbJqYL:{style:{width:\"100%\"}},pL7F1S702:{variant:\"ILPCZvBic\"},py2Wyyjwb:{style:{width:\"100%\"}},PyKCVi6z6:{style:{width:\"100%\"}},r7KzMC3wg:{style:{width:\"100%\"}},Y1RCaq6TP:{XFh7JJDCR:\"Discover new partners to cover your gaps and potential growth areas\"},ZK0oc8LHe:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-amicpv\",\"data-framer-name\":\"Singel Icon Box\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XjE8zDh6_\",onTap:onTapa8yba5,...addPropertyOverrides({bulq7i9id:{onTap:onTap49x5dx},bwn9gZB0N:{onTap:onTap836yny},C0KHVpnB8:{onTap:onTap101qvbx},cesqbS1uK:{onTap:onTap836yny},fnHH2Loi8:{onTap:onTap49x5dx},FnIwIR1yq:{onTap:onTap836yny},jJ7cBEN1R:{onTap:onTap101qvbx},laTlbJqYL:{onTap:onTap49x5dx},py2Wyyjwb:{onTap:onTap49x5dx},PyKCVi6z6:{onTap:onTap49x5dx},QVuNnnVyO:{onTap:onTap101qvbx},r7KzMC3wg:{onTap:onTap836yny},whlkYaFkd:{onTap:onTap101qvbx},wiaqlR36W:{onTap:onTap101qvbx},ZK0oc8LHe:{onTap:onTap836yny}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-730)/2)+0+438+0,...addPropertyOverrides({bulq7i9id:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+438+0},bwn9gZB0N:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+438+0},cesqbS1uK:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+438+0},fnHH2Loi8:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+438+0},FnIwIR1yq:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+438+0},laTlbJqYL:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+438+0},py2Wyyjwb:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+438+0},PyKCVi6z6:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+438+0},r7KzMC3wg:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+438+0},ZK0oc8LHe:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+438+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yvbal7-container\",layoutDependency:layoutDependency,layoutId:\"UT0y3Ue9B-container\",nodeId:\"UT0y3Ue9B\",rendersWithMotion:true,scopeId:\"Hsm4dM52D\",children:/*#__PURE__*/_jsx(IconBox,{BhHM3TElp:addImageAlt({src:\"https://framerusercontent.com/images/6cDgyOQJiyKHSUm5k3CTcdByg.svg\",srcSet:\"https://framerusercontent.com/images/6cDgyOQJiyKHSUm5k3CTcdByg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6cDgyOQJiyKHSUm5k3CTcdByg.svg 960w\"},\"\"),height:\"100%\",id:\"UT0y3Ue9B\",layoutId:\"UT0y3Ue9B\",p2WSoDKS0:\"Data Analytics\",variant:\"omxZCu3tg\",width:\"100%\",XFh7JJDCR:\"Access mission-critical analytics on every aspect of your installer collaboration\",...addPropertyOverrides({bulq7i9id:{style:{width:\"100%\"}},bwn9gZB0N:{style:{width:\"100%\"}},cesqbS1uK:{style:{width:\"100%\"}},fnHH2Loi8:{style:{width:\"100%\"}},FnIwIR1yq:{style:{width:\"100%\"}},laTlbJqYL:{style:{width:\"100%\"}},py2Wyyjwb:{style:{width:\"100%\"},variant:\"ILPCZvBic\"},PyKCVi6z6:{style:{width:\"100%\"}},r7KzMC3wg:{style:{width:\"100%\"},variant:\"ILPCZvBic\"},WbAvBNuGA:{variant:\"ILPCZvBic\"},wiaqlR36W:{variant:\"ILPCZvBic\"},ZK0oc8LHe:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yk9ost\",\"data-framer-name\":\"Singel Icon Box\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qKNL2U_J0\",onTap:onTapmm5cf,...addPropertyOverrides({bulq7i9id:{onTap:onTap49x5dx},bwn9gZB0N:{onTap:onTap836yny},C0KHVpnB8:{onTap:onTap101qvbx},cesqbS1uK:{onTap:onTap836yny},fnHH2Loi8:{onTap:onTap49x5dx},FnIwIR1yq:{onTap:onTap836yny},jJ7cBEN1R:{onTap:onTap101qvbx},laTlbJqYL:{onTap:onTape5f6dp},py2Wyyjwb:{onTap:onTape5f6dp},PyKCVi6z6:{onTap:onTap49x5dx},QVuNnnVyO:{onTap:onTap101qvbx},r7KzMC3wg:{onTap:onTap836yny},whlkYaFkd:{onTap:onTap101qvbx},wiaqlR36W:{onTap:onTapa7baay},ZK0oc8LHe:{onTap:onTap836yny}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-730)/2)+0+584+0,...addPropertyOverrides({bulq7i9id:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+584+0},bwn9gZB0N:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+584+0},cesqbS1uK:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+584+0},fnHH2Loi8:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+584+0},FnIwIR1yq:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+584+0},laTlbJqYL:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+584+0},py2Wyyjwb:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+584+0},PyKCVi6z6:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+0+584+0},r7KzMC3wg:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+584+0},ZK0oc8LHe:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+40)+0+584+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i4yk1z-container\",layoutDependency:layoutDependency,layoutId:\"J0InV57oJ-container\",nodeId:\"J0InV57oJ\",rendersWithMotion:true,scopeId:\"Hsm4dM52D\",children:/*#__PURE__*/_jsx(IconBox,{BhHM3TElp:addImageAlt({src:\"https://framerusercontent.com/images/MXuxRt91m3fTp5SOkBE7bs8s.svg\",srcSet:\"https://framerusercontent.com/images/MXuxRt91m3fTp5SOkBE7bs8s.svg?scale-down-to=512 512w,https://framerusercontent.com/images/MXuxRt91m3fTp5SOkBE7bs8s.svg 960w\"},\"\"),height:\"100%\",id:\"J0InV57oJ\",layoutId:\"J0InV57oJ\",p2WSoDKS0:\"Digital Customer Journey\",variant:\"omxZCu3tg\",width:\"100%\",XFh7JJDCR:\"Provide your B2B or B2C customers with an amazing white-labelled customer experience\",...addPropertyOverrides({bulq7i9id:{style:{width:\"100%\"},variant:\"ILPCZvBic\"},bwn9gZB0N:{style:{width:\"100%\"}},cesqbS1uK:{style:{width:\"100%\"}},fnHH2Loi8:{style:{width:\"100%\"}},FnIwIR1yq:{style:{width:\"100%\"},variant:\"ILPCZvBic\"},jJ7cBEN1R:{variant:\"ILPCZvBic\"},laTlbJqYL:{style:{width:\"100%\"}},py2Wyyjwb:{style:{width:\"100%\"}},PyKCVi6z6:{style:{width:\"100%\"}},r7KzMC3wg:{style:{width:\"100%\"}},WbAvBNuGA:{BhHM3TElp:toResponsiveImage(\"https://framerusercontent.com/images/WfZRbiiDmOGui01qi7m2VCTlNQ.svg\"),XFh7JJDCR:\"Provide your B2B or B2C customer with an amazing customer experience\"},Y1RCaq6TP:{BhHM3TElp:toResponsiveImage(\"https://framerusercontent.com/images/WfZRbiiDmOGui01qi7m2VCTlNQ.svg\"),variant:\"ILPCZvBic\",XFh7JJDCR:\"Provide your B2B or B2C customer with an amazing customer experience\"},ZK0oc8LHe:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i91wh3\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"tPrk1tcJC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-keet4\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"WeeNNgP43\",transformTemplate:transformTemplate1,...addPropertyOverrides({bulq7i9id:{transformTemplate:undefined},fnHH2Loi8:{transformTemplate:undefined},py2Wyyjwb:{transformTemplate:undefined},PyKCVi6z6:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:711,width:\"812px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.49916247906197675-355.5)+0,...addPropertyOverrides({bulq7i9id:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},bwn9gZB0N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-355.5+0},cesqbS1uK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-355.5+0},fnHH2Loi8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},FnIwIR1yq:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-355.5+0},laTlbJqYL:{height:508,width:\"658px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+-254+0},py2Wyyjwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},PyKCVi6z6:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},QVuNnnVyO:{height:450,width:\"717px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.49916247906197675-225)+0},r7KzMC3wg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-355.5+0},ZK0oc8LHe:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-355.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-oiv6ko-container\",layoutDependency:layoutDependency,layoutId:\"DDUIqVMVG-container\",nodeId:\"DDUIqVMVG\",rendersWithMotion:true,scopeId:\"Hsm4dM52D\",children:/*#__PURE__*/_jsx(TabImage01,{F9r1QETbU:F9r1QETbU28sms5,height:\"100%\",id:\"DDUIqVMVG\",layoutId:\"DDUIqVMVG\",nNX2BwciB:\"6px 6px 15px 0px rgba(0, 0, 0, 0.35)\",rhl2zfrPb:addImageAlt({src:\"https://framerusercontent.com/images/dmUW3BCynxvphSucpYiF2LMw3Y.svg\",srcSet:\"https://framerusercontent.com/images/dmUW3BCynxvphSucpYiF2LMw3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/dmUW3BCynxvphSucpYiF2LMw3Y.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dmUW3BCynxvphSucpYiF2LMw3Y.svg 2006w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"KIFey48xS\",width:\"100%\",...addPropertyOverrides({bulq7i9id:{F9r1QETbU:F9r1QETbUy6stnb},bwn9gZB0N:{F9r1QETbU:F9r1QETbUo0y54k,rhl2zfrPb:addImageAlt({src:\"https://framerusercontent.com/images/JEgobMSY7PDghQGCXPmMELo2g.png\",srcSet:\"https://framerusercontent.com/images/JEgobMSY7PDghQGCXPmMELo2g.png?scale-down-to=512 512w,https://framerusercontent.com/images/JEgobMSY7PDghQGCXPmMELo2g.png 678w\"},\"\"),variant:\"O5t8cDfXI\"},C0KHVpnB8:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},cesqbS1uK:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},fnHH2Loi8:{F9r1QETbU:F9r1QETbUy6stnb},FnIwIR1yq:{F9r1QETbU:F9r1QETbUo0y54k,rhl2zfrPb:addImageAlt({src:\"https://framerusercontent.com/images/JEgobMSY7PDghQGCXPmMELo2g.png\",srcSet:\"https://framerusercontent.com/images/JEgobMSY7PDghQGCXPmMELo2g.png?scale-down-to=512 512w,https://framerusercontent.com/images/JEgobMSY7PDghQGCXPmMELo2g.png 678w\"},\"\"),variant:\"O5t8cDfXI\"},jJ7cBEN1R:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},laTlbJqYL:{F9r1QETbU:F9r1QETbUy6stnb},py2Wyyjwb:{F9r1QETbU:F9r1QETbUy6stnb},PyKCVi6z6:{F9r1QETbU:F9r1QETbUy6stnb},QVuNnnVyO:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},r7KzMC3wg:{F9r1QETbU:F9r1QETbUo0y54k,rhl2zfrPb:addImageAlt({src:\"https://framerusercontent.com/images/JEgobMSY7PDghQGCXPmMELo2g.png\",srcSet:\"https://framerusercontent.com/images/JEgobMSY7PDghQGCXPmMELo2g.png?scale-down-to=512 512w,https://framerusercontent.com/images/JEgobMSY7PDghQGCXPmMELo2g.png 678w\"},\"\"),variant:\"O5t8cDfXI\"},whlkYaFkd:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},wiaqlR36W:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},ZK0oc8LHe:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11z9cew\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"EBybvtTBN\",transformTemplate:transformTemplate1,...addPropertyOverrides({bulq7i9id:{transformTemplate:undefined},fnHH2Loi8:{transformTemplate:undefined},py2Wyyjwb:{transformTemplate:undefined},PyKCVi6z6:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:530,width:\"660px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.4993141289437588-265)+0,...addPropertyOverrides({bulq7i9id:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},bwn9gZB0N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},cesqbS1uK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},fnHH2Loi8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},FnIwIR1yq:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},JJ_4o0Rb5:{height:584,width:\"808px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.49916247906197675-292)+0},laTlbJqYL:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+-265+0},py2Wyyjwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},PyKCVi6z6:{height:482,width:\"600px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+-241+0},r7KzMC3wg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},whlkYaFkd:{height:400,width:\"498.1132px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.49916247906197675-200)+0},ZK0oc8LHe:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x5qluo-container\",layoutDependency:layoutDependency,layoutId:\"yoMNnIMSe-container\",nodeId:\"yoMNnIMSe\",rendersWithMotion:true,scopeId:\"Hsm4dM52D\",children:/*#__PURE__*/_jsx(TabImage01,{F9r1QETbU:F9r1QETbU28sms5,height:\"100%\",id:\"yoMNnIMSe\",layoutId:\"yoMNnIMSe\",nNX2BwciB:\"6px 6px 15px 0px rgba(0, 0, 0, 0.35)\",rhl2zfrPb:addImageAlt({src:\"https://framerusercontent.com/images/yrfmeDtTYs1fzeZAeMGKtTflIg.webp\",srcSet:\"https://framerusercontent.com/images/yrfmeDtTYs1fzeZAeMGKtTflIg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yrfmeDtTYs1fzeZAeMGKtTflIg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/yrfmeDtTYs1fzeZAeMGKtTflIg.webp 1320w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"KIFey48xS\",width:\"100%\",...addPropertyOverrides({bulq7i9id:{F9r1QETbU:F9r1QETbUy6stnb},bwn9gZB0N:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},C0KHVpnB8:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},cesqbS1uK:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},fnHH2Loi8:{F9r1QETbU:F9r1QETbUy6stnb},FnIwIR1yq:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},JJ_4o0Rb5:{nNX2BwciB:\"\",rhl2zfrPb:addImageAlt({src:\"https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png\",srcSet:\"https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=512 512w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png 2155w\"},\"\")},jJ7cBEN1R:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},laTlbJqYL:{F9r1QETbU:F9r1QETbUy6stnb},py2Wyyjwb:{F9r1QETbU:F9r1QETbUy6stnb},PyKCVi6z6:{F9r1QETbU:F9r1QETbUy6stnb,nNX2BwciB:\"\",rhl2zfrPb:addImageAlt({positionX:\"59.1%\",positionY:\"47.8%\",src:\"https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png\",srcSet:\"https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=512 512w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png 2155w\"},\"\"),variant:\"qXeDdffv2\"},QVuNnnVyO:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},r7KzMC3wg:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},whlkYaFkd:{F9r1QETbU:F9r1QETbU1t72bmx,nNX2BwciB:\"\",rhl2zfrPb:addImageAlt({src:\"https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png\",srcSet:\"https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=512 512w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png 2155w\"},\"\"),variant:\"qXeDdffv2\"},wiaqlR36W:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},ZK0oc8LHe:{F9r1QETbU:F9r1QETbUo0y54k,rhl2zfrPb:addImageAlt({src:\"https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png\",srcSet:\"https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=512 512w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/klQhQbm8johbPYf2zbGVvkpT8U.png 2155w\"},\"\"),variant:\"O5t8cDfXI\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1be0c64\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"v1htqH6li\",transformTemplate:transformTemplate1,...addPropertyOverrides({bulq7i9id:{transformTemplate:undefined},fnHH2Loi8:{transformTemplate:transformTemplate2},py2Wyyjwb:{transformTemplate:undefined},PyKCVi6z6:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:530,width:\"900px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.4993141289437588-265)+0,...addPropertyOverrides({bulq7i9id:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},bwn9gZB0N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},C0KHVpnB8:{height:367,width:\"623px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.4993141289437588-183.5)+0},cesqbS1uK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},fnHH2Loi8:{height:394,width:\"624px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+-197+0},FnIwIR1yq:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},JJ_4o0Rb5:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.49916247906197675-265)+0},laTlbJqYL:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+-265+0},pL7F1S702:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.49916247906197675-265)+0},py2Wyyjwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},PyKCVi6z6:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},r7KzMC3wg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},ZK0oc8LHe:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5nswpq-container\",layoutDependency:layoutDependency,layoutId:\"IispfU40S-container\",nodeId:\"IispfU40S\",rendersWithMotion:true,scopeId:\"Hsm4dM52D\",children:/*#__PURE__*/_jsx(TabImage01,{F9r1QETbU:F9r1QETbU28sms5,height:\"100%\",id:\"IispfU40S\",layoutId:\"IispfU40S\",nNX2BwciB:\"6px 6px 15px 0px rgba(0, 0, 0, 0.35)\",rhl2zfrPb:addImageAlt({src:\"https://framerusercontent.com/images/jWwOVW30dodaiCCx9VQRwrE90.webp\",srcSet:\"https://framerusercontent.com/images/jWwOVW30dodaiCCx9VQRwrE90.webp?scale-down-to=512 512w,https://framerusercontent.com/images/jWwOVW30dodaiCCx9VQRwrE90.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/jWwOVW30dodaiCCx9VQRwrE90.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/jWwOVW30dodaiCCx9VQRwrE90.webp 2640w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"KIFey48xS\",width:\"100%\",...addPropertyOverrides({bulq7i9id:{F9r1QETbU:F9r1QETbUy6stnb},bwn9gZB0N:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},C0KHVpnB8:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},cesqbS1uK:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},fnHH2Loi8:{F9r1QETbU:F9r1QETbUy6stnb},FnIwIR1yq:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},jJ7cBEN1R:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},laTlbJqYL:{F9r1QETbU:F9r1QETbUy6stnb},py2Wyyjwb:{F9r1QETbU:F9r1QETbUy6stnb},PyKCVi6z6:{F9r1QETbU:F9r1QETbUy6stnb},QVuNnnVyO:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},r7KzMC3wg:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},whlkYaFkd:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},wiaqlR36W:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},ZK0oc8LHe:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xshdab\",\"data-framer-name\":\"Image 4\",layoutDependency:layoutDependency,layoutId:\"KNmt1rWWd\",transformTemplate:transformTemplate1,...addPropertyOverrides({bulq7i9id:{transformTemplate:undefined},fnHH2Loi8:{transformTemplate:undefined},py2Wyyjwb:{transformTemplate:transformTemplate2},PyKCVi6z6:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:530,width:\"655px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.4993141289437588-265)+0,...addPropertyOverrides({bulq7i9id:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},bwn9gZB0N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},cesqbS1uK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},fnHH2Loi8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},FnIwIR1yq:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},laTlbJqYL:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+-265+0},py2Wyyjwb:{height:417,width:\"583px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+-208.5+0},PyKCVi6z6:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},r7KzMC3wg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},WbAvBNuGA:{width:\"740px\"},ZK0oc8LHe:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r885f0-container\",layoutDependency:layoutDependency,layoutId:\"OAlt8dipb-container\",nodeId:\"OAlt8dipb\",rendersWithMotion:true,scopeId:\"Hsm4dM52D\",children:/*#__PURE__*/_jsx(TabImage01,{F9r1QETbU:F9r1QETbU28sms5,height:\"100%\",id:\"OAlt8dipb\",layoutId:\"OAlt8dipb\",nNX2BwciB:\"6px 6px 15px 0px rgba(0, 0, 0, 0.35)\",rhl2zfrPb:addImageAlt({src:\"https://framerusercontent.com/images/u4gE4TQim5wpAkpU5ZQjmKk.webp\",srcSet:\"https://framerusercontent.com/images/u4gE4TQim5wpAkpU5ZQjmKk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/u4gE4TQim5wpAkpU5ZQjmKk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/u4gE4TQim5wpAkpU5ZQjmKk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/u4gE4TQim5wpAkpU5ZQjmKk.webp 2121w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"KIFey48xS\",width:\"100%\",...addPropertyOverrides({bulq7i9id:{F9r1QETbU:F9r1QETbUy6stnb},bwn9gZB0N:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},C0KHVpnB8:{F9r1QETbU:F9r1QETbU101qvbx,variant:\"qXeDdffv2\"},cesqbS1uK:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},fnHH2Loi8:{F9r1QETbU:F9r1QETbUy6stnb},FnIwIR1yq:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},jJ7cBEN1R:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},laTlbJqYL:{F9r1QETbU:F9r1QETbUy6stnb},py2Wyyjwb:{F9r1QETbU:F9r1QETbUy6stnb},PyKCVi6z6:{F9r1QETbU:F9r1QETbUy6stnb},QVuNnnVyO:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},r7KzMC3wg:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},whlkYaFkd:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},wiaqlR36W:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},ZK0oc8LHe:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cpk0ia\",\"data-framer-name\":\"Image 5\",layoutDependency:layoutDependency,layoutId:\"g6yaWJtV8\",transformTemplate:transformTemplate1,...addPropertyOverrides({bulq7i9id:{transformTemplate:transformTemplate2},fnHH2Loi8:{transformTemplate:undefined},py2Wyyjwb:{transformTemplate:undefined},PyKCVi6z6:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:530,width:\"713px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.4993141289437588-265)+0,...addPropertyOverrides({bulq7i9id:{height:450,width:\"605px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+-225+0},bwn9gZB0N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},cesqbS1uK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},fnHH2Loi8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},FnIwIR1yq:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},jJ7cBEN1R:{height:440,width:\"591.9245px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.4993141289437588-220)+0},laTlbJqYL:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+-265+0},py2Wyyjwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},PyKCVi6z6:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1007.5)-0-730)/2+0+0)+20+0},r7KzMC3wg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0},WbAvBNuGA:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.4990780577750463-265)+0},Y1RCaq6TP:{width:\"732px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||895.5)-0-((componentViewport?.height||895.5)-0)*1)/2)+(((componentViewport?.height||895.5)-0)*1*.4990780577750463-265)+0},ZK0oc8LHe:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-770)/2+0+0)+-265+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nmzvqp-container\",layoutDependency:layoutDependency,layoutId:\"bYiifwoW_-container\",nodeId:\"bYiifwoW_\",rendersWithMotion:true,scopeId:\"Hsm4dM52D\",children:/*#__PURE__*/_jsx(TabImage01,{F9r1QETbU:F9r1QETbU28sms5,height:\"100%\",id:\"bYiifwoW_\",layoutId:\"bYiifwoW_\",nNX2BwciB:\"6px 6px 15px 0px rgba(0, 0, 0, 0.35)\",rhl2zfrPb:addImageAlt({src:\"https://framerusercontent.com/images/hZwqR9PKbrKmzAyYyTi1xblb30.webp\",srcSet:\"https://framerusercontent.com/images/hZwqR9PKbrKmzAyYyTi1xblb30.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hZwqR9PKbrKmzAyYyTi1xblb30.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZwqR9PKbrKmzAyYyTi1xblb30.webp 1989w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"KIFey48xS\",width:\"100%\",...addPropertyOverrides({bulq7i9id:{F9r1QETbU:F9r1QETbUy6stnb},bwn9gZB0N:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},C0KHVpnB8:{F9r1QETbU:F9r1QETbU101qvbx,variant:\"qXeDdffv2\"},cesqbS1uK:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},fnHH2Loi8:{F9r1QETbU:F9r1QETbUy6stnb},FnIwIR1yq:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},jJ7cBEN1R:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},laTlbJqYL:{F9r1QETbU:F9r1QETbUy6stnb},py2Wyyjwb:{F9r1QETbU:F9r1QETbUy6stnb},PyKCVi6z6:{F9r1QETbU:F9r1QETbUy6stnb},QVuNnnVyO:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},r7KzMC3wg:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"},whlkYaFkd:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},wiaqlR36W:{F9r1QETbU:F9r1QETbU1t72bmx,variant:\"qXeDdffv2\"},ZK0oc8LHe:{F9r1QETbU:F9r1QETbUo0y54k,variant:\"O5t8cDfXI\"}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xvn45.framer-1wlqgz3, .framer-xvn45 .framer-1wlqgz3 { display: block; }\",\".framer-xvn45.framer-jkrgos { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xvn45 .framer-61z51n { 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: visible; padding: 0px; position: relative; width: min-content; z-index: 0; }\",\".framer-xvn45 .framer-1f9ewlk, .framer-xvn45 .framer-p9qo8x, .framer-xvn45 .framer-1wn043z, .framer-xvn45 .framer-amicpv, .framer-xvn45 .framer-yk9ost { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-xvn45 .framer-1g21r02-container, .framer-xvn45 .framer-ouk635-container, .framer-xvn45 .framer-1njhaom-container, .framer-xvn45 .framer-1yvbal7-container, .framer-xvn45 .framer-i4yk1z-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-xvn45 .framer-i91wh3 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xvn45 .framer-keet4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -4px; top: 50%; width: min-content; z-index: 1; }\",\".framer-xvn45 .framer-oiv6ko-container { flex: none; height: 711px; position: relative; width: 812px; }\",\".framer-xvn45 .framer-11z9cew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -722px; top: 50%; width: min-content; z-index: 1; }\",\".framer-xvn45 .framer-x5qluo-container { flex: none; height: 530px; position: relative; width: 660px; }\",\".framer-xvn45 .framer-1be0c64 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -983px; top: 50%; width: min-content; z-index: 1; }\",\".framer-xvn45 .framer-5nswpq-container { flex: none; height: 530px; position: relative; width: 900px; }\",\".framer-xvn45 .framer-xshdab { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -763px; top: 50%; width: min-content; z-index: 1; }\",\".framer-xvn45 .framer-r885f0-container { flex: none; height: 530px; position: relative; width: 655px; }\",\".framer-xvn45 .framer-1cpk0ia { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -852px; top: 50%; width: min-content; z-index: 1; }\",\".framer-xvn45 .framer-1nmzvqp-container { flex: none; height: 530px; position: relative; width: 713px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xvn45 .framer-61z51n, .framer-xvn45 .framer-1f9ewlk, .framer-xvn45 .framer-p9qo8x, .framer-xvn45 .framer-1wn043z, .framer-xvn45 .framer-amicpv, .framer-xvn45 .framer-yk9ost, .framer-xvn45 .framer-i91wh3, .framer-xvn45 .framer-keet4, .framer-xvn45 .framer-11z9cew, .framer-xvn45 .framer-1be0c64, .framer-xvn45 .framer-xshdab, .framer-xvn45 .framer-1cpk0ia { gap: 0px; } .framer-xvn45 .framer-61z51n > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xvn45 .framer-61z51n > :first-child { margin-top: 0px; } .framer-xvn45 .framer-61z51n > :last-child { margin-bottom: 0px; } .framer-xvn45 .framer-1f9ewlk > *, .framer-xvn45 .framer-p9qo8x > *, .framer-xvn45 .framer-1wn043z > *, .framer-xvn45 .framer-amicpv > *, .framer-xvn45 .framer-yk9ost > *, .framer-xvn45 .framer-i91wh3 > *, .framer-xvn45 .framer-keet4 > *, .framer-xvn45 .framer-11z9cew > *, .framer-xvn45 .framer-1be0c64 > *, .framer-xvn45 .framer-xshdab > *, .framer-xvn45 .framer-1cpk0ia > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xvn45 .framer-1f9ewlk > :first-child, .framer-xvn45 .framer-p9qo8x > :first-child, .framer-xvn45 .framer-1wn043z > :first-child, .framer-xvn45 .framer-amicpv > :first-child, .framer-xvn45 .framer-yk9ost > :first-child, .framer-xvn45 .framer-i91wh3 > :first-child, .framer-xvn45 .framer-keet4 > :first-child, .framer-xvn45 .framer-11z9cew > :first-child, .framer-xvn45 .framer-1be0c64 > :first-child, .framer-xvn45 .framer-xshdab > :first-child, .framer-xvn45 .framer-1cpk0ia > :first-child { margin-left: 0px; } .framer-xvn45 .framer-1f9ewlk > :last-child, .framer-xvn45 .framer-p9qo8x > :last-child, .framer-xvn45 .framer-1wn043z > :last-child, .framer-xvn45 .framer-amicpv > :last-child, .framer-xvn45 .framer-yk9ost > :last-child, .framer-xvn45 .framer-i91wh3 > :last-child, .framer-xvn45 .framer-keet4 > :last-child, .framer-xvn45 .framer-11z9cew > :last-child, .framer-xvn45 .framer-1be0c64 > :last-child, .framer-xvn45 .framer-xshdab > :last-child, .framer-xvn45 .framer-1cpk0ia > :last-child { margin-right: 0px; } }\",\".framer-xvn45.framer-v-1rtag3d .framer-keet4, .framer-xvn45.framer-v-yf2fbn .framer-keet4, .framer-xvn45.framer-v-yf2fbn .framer-11z9cew, .framer-xvn45.framer-v-1sdpgv0 .framer-keet4, .framer-xvn45.framer-v-1sdpgv0 .framer-11z9cew, .framer-xvn45.framer-v-1sdpgv0 .framer-1be0c64, .framer-xvn45.framer-v-1qojhe3 .framer-keet4, .framer-xvn45.framer-v-1qojhe3 .framer-11z9cew, .framer-xvn45.framer-v-1qojhe3 .framer-1be0c64 { right: 940px; }\",\".framer-xvn45.framer-v-1rtag3d .framer-11z9cew, .framer-xvn45.framer-v-1q0fmp3 .framer-11z9cew, .framer-xvn45.framer-v-ymdaw5 .framer-1be0c64, .framer-xvn45.framer-v-1gyc10e .framer-xshdab, .framer-xvn45.framer-v-1gyc10e .framer-1cpk0ia, .framer-xvn45.framer-v-yj8k78 .framer-xshdab, .framer-xvn45.framer-v-yj8k78 .framer-1cpk0ia { right: 80px; top: 50%; }\",\".framer-xvn45.framer-v-1rtag3d .framer-x5qluo-container { height: 584px; order: 0; width: 808px; }\",\".framer-xvn45.framer-v-1rtag3d .framer-1be0c64 { right: -860px; top: 50%; }\",\".framer-xvn45.framer-v-yf2fbn .framer-1be0c64 { right: -17px; top: 50%; }\",\".framer-xvn45.framer-v-yf2fbn .framer-5nswpq-container, .framer-xvn45.framer-v-1sdpgv0 .framer-61z51n, .framer-xvn45.framer-v-mukwoo .framer-5nswpq-container, .framer-xvn45.framer-v-1q0fmp3 .framer-5nswpq-container { order: 0; }\",\".framer-xvn45.framer-v-yf2fbn .framer-xshdab { right: -724px; }\",\".framer-xvn45.framer-v-yf2fbn .framer-1cpk0ia { right: -908px; }\",\".framer-xvn45.framer-v-1sdpgv0 .framer-i91wh3 { order: 1; }\",\".framer-xvn45.framer-v-1sdpgv0 .framer-xshdab { right: 80px; width: 741px; }\",\".framer-xvn45.framer-v-1sdpgv0 .framer-r885f0-container { width: 740px; }\",\".framer-xvn45.framer-v-1sdpgv0 .framer-1cpk0ia { right: -685px; top: 50%; }\",\".framer-xvn45.framer-v-1cmsovl.framer-jkrgos, .framer-xvn45.framer-v-p9ac1g.framer-jkrgos, .framer-xvn45.framer-v-1xo01ub.framer-jkrgos, .framer-xvn45.framer-v-1woc4g8.framer-jkrgos, .framer-xvn45.framer-v-1wa7j09.framer-jkrgos { width: 932px; }\",\".framer-xvn45.framer-v-1cmsovl .framer-keet4 { right: -220px; }\",\".framer-xvn45.framer-v-1cmsovl .framer-oiv6ko-container { height: 450px; width: 717px; }\",\".framer-xvn45.framer-v-1cmsovl .framer-11z9cew { right: -682px; }\",\".framer-xvn45.framer-v-1cmsovl .framer-1be0c64, .framer-xvn45.framer-v-p9ac1g .framer-xshdab { right: -1443px; }\",\".framer-xvn45.framer-v-1cmsovl .framer-xshdab { right: -1223px; }\",\".framer-xvn45.framer-v-1cmsovl .framer-1cpk0ia { right: -1312px; }\",\".framer-xvn45.framer-v-p9ac1g .framer-keet4 { right: 690px; width: 732px; }\",\".framer-xvn45.framer-v-p9ac1g .framer-11z9cew { right: 19px; top: 50%; }\",\".framer-xvn45.framer-v-p9ac1g .framer-x5qluo-container { aspect-ratio: 1.2452830188679245 / 1; height: var(--framer-aspect-ratio-supported, 400px); width: 498px; }\",\".framer-xvn45.framer-v-p9ac1g .framer-1be0c64 { right: -902px; }\",\".framer-xvn45.framer-v-p9ac1g .framer-1cpk0ia { right: -1532px; }\",\".framer-xvn45.framer-v-1xo01ub .framer-keet4 { right: 680px; }\",\".framer-xvn45.framer-v-1xo01ub .framer-11z9cew { right: 630px; }\",\".framer-xvn45.framer-v-1xo01ub .framer-1be0c64 { right: -130px; }\",\".framer-xvn45.framer-v-1xo01ub .framer-5nswpq-container { aspect-ratio: 1.6981132075471699 / 1; height: var(--framer-aspect-ratio-supported, 367px); width: 623px; }\",\".framer-xvn45.framer-v-1xo01ub .framer-xshdab, .framer-xvn45.framer-v-1xo01ub .framer-1cpk0ia { right: -752px; }\",\".framer-xvn45.framer-v-1woc4g8 .framer-keet4, .framer-xvn45.framer-v-1wa7j09 .framer-keet4 { right: 800px; }\",\".framer-xvn45.framer-v-1woc4g8 .framer-11z9cew, .framer-xvn45.framer-v-1wa7j09 .framer-11z9cew { right: 750px; }\",\".framer-xvn45.framer-v-1woc4g8 .framer-1be0c64, .framer-xvn45.framer-v-1wa7j09 .framer-1be0c64 { right: 720px; }\",\".framer-xvn45.framer-v-1woc4g8 .framer-xshdab { right: -173px; }\",\".framer-xvn45.framer-v-1woc4g8 .framer-1cpk0ia { right: -720px; }\",\".framer-xvn45.framer-v-1woc4g8 .framer-1nmzvqp-container { aspect-ratio: 1.3452830188679246 / 1; width: var(--framer-aspect-ratio-supported, 713px); }\",\".framer-xvn45.framer-v-1srltf9.framer-jkrgos, .framer-xvn45.framer-v-mukwoo.framer-jkrgos, .framer-xvn45.framer-v-26l6vl.framer-jkrgos, .framer-xvn45.framer-v-19dw1g6.framer-jkrgos, .framer-xvn45.framer-v-15grar0.framer-jkrgos { flex-direction: column; gap: 0px; justify-content: center; width: 750px; }\",\".framer-xvn45.framer-v-1srltf9 .framer-61z51n, .framer-xvn45.framer-v-mukwoo .framer-61z51n, .framer-xvn45.framer-v-26l6vl .framer-61z51n, .framer-xvn45.framer-v-19dw1g6 .framer-61z51n, .framer-xvn45.framer-v-1ojwi2a .framer-61z51n, .framer-xvn45.framer-v-1q0fmp3 .framer-61z51n, .framer-xvn45.framer-v-ymdaw5 .framer-61z51n, .framer-xvn45.framer-v-1gyc10e .framer-61z51n, .framer-xvn45.framer-v-15grar0 .framer-61z51n, .framer-xvn45.framer-v-yj8k78 .framer-61z51n { order: 1; width: 100%; }\",\".framer-xvn45.framer-v-1srltf9 .framer-1f9ewlk, .framer-xvn45.framer-v-1srltf9 .framer-p9qo8x, .framer-xvn45.framer-v-1srltf9 .framer-1wn043z, .framer-xvn45.framer-v-1srltf9 .framer-amicpv, .framer-xvn45.framer-v-1srltf9 .framer-yk9ost, .framer-xvn45.framer-v-mukwoo .framer-1f9ewlk, .framer-xvn45.framer-v-mukwoo .framer-p9qo8x, .framer-xvn45.framer-v-mukwoo .framer-1wn043z, .framer-xvn45.framer-v-mukwoo .framer-amicpv, .framer-xvn45.framer-v-mukwoo .framer-yk9ost, .framer-xvn45.framer-v-26l6vl .framer-1f9ewlk, .framer-xvn45.framer-v-26l6vl .framer-p9qo8x, .framer-xvn45.framer-v-26l6vl .framer-1wn043z, .framer-xvn45.framer-v-26l6vl .framer-amicpv, .framer-xvn45.framer-v-26l6vl .framer-yk9ost, .framer-xvn45.framer-v-19dw1g6 .framer-1f9ewlk, .framer-xvn45.framer-v-19dw1g6 .framer-p9qo8x, .framer-xvn45.framer-v-19dw1g6 .framer-1wn043z, .framer-xvn45.framer-v-19dw1g6 .framer-amicpv, .framer-xvn45.framer-v-19dw1g6 .framer-yk9ost, .framer-xvn45.framer-v-1ojwi2a .framer-1f9ewlk, .framer-xvn45.framer-v-1ojwi2a .framer-p9qo8x, .framer-xvn45.framer-v-1ojwi2a .framer-1wn043z, .framer-xvn45.framer-v-1ojwi2a .framer-amicpv, .framer-xvn45.framer-v-1ojwi2a .framer-yk9ost, .framer-xvn45.framer-v-1q0fmp3 .framer-1f9ewlk, .framer-xvn45.framer-v-1q0fmp3 .framer-p9qo8x, .framer-xvn45.framer-v-1q0fmp3 .framer-1wn043z, .framer-xvn45.framer-v-1q0fmp3 .framer-amicpv, .framer-xvn45.framer-v-1q0fmp3 .framer-yk9ost, .framer-xvn45.framer-v-ymdaw5 .framer-1f9ewlk, .framer-xvn45.framer-v-ymdaw5 .framer-p9qo8x, .framer-xvn45.framer-v-ymdaw5 .framer-1wn043z, .framer-xvn45.framer-v-ymdaw5 .framer-amicpv, .framer-xvn45.framer-v-ymdaw5 .framer-yk9ost, .framer-xvn45.framer-v-1gyc10e .framer-1f9ewlk, .framer-xvn45.framer-v-1gyc10e .framer-p9qo8x, .framer-xvn45.framer-v-1gyc10e .framer-1wn043z, .framer-xvn45.framer-v-1gyc10e .framer-amicpv, .framer-xvn45.framer-v-1gyc10e .framer-yk9ost, .framer-xvn45.framer-v-15grar0 .framer-1f9ewlk, .framer-xvn45.framer-v-15grar0 .framer-p9qo8x, .framer-xvn45.framer-v-15grar0 .framer-1wn043z, .framer-xvn45.framer-v-15grar0 .framer-amicpv, .framer-xvn45.framer-v-15grar0 .framer-yk9ost, .framer-xvn45.framer-v-yj8k78 .framer-1f9ewlk, .framer-xvn45.framer-v-yj8k78 .framer-p9qo8x, .framer-xvn45.framer-v-yj8k78 .framer-1wn043z, .framer-xvn45.framer-v-yj8k78 .framer-amicpv, .framer-xvn45.framer-v-yj8k78 .framer-yk9ost { width: 100%; }\",\".framer-xvn45.framer-v-1srltf9 .framer-1g21r02-container, .framer-xvn45.framer-v-1srltf9 .framer-ouk635-container, .framer-xvn45.framer-v-1srltf9 .framer-1njhaom-container, .framer-xvn45.framer-v-1srltf9 .framer-1yvbal7-container, .framer-xvn45.framer-v-1srltf9 .framer-i4yk1z-container, .framer-xvn45.framer-v-mukwoo .framer-1g21r02-container, .framer-xvn45.framer-v-mukwoo .framer-ouk635-container, .framer-xvn45.framer-v-mukwoo .framer-1njhaom-container, .framer-xvn45.framer-v-mukwoo .framer-1yvbal7-container, .framer-xvn45.framer-v-mukwoo .framer-i4yk1z-container, .framer-xvn45.framer-v-26l6vl .framer-1g21r02-container, .framer-xvn45.framer-v-26l6vl .framer-ouk635-container, .framer-xvn45.framer-v-26l6vl .framer-1njhaom-container, .framer-xvn45.framer-v-26l6vl .framer-1yvbal7-container, .framer-xvn45.framer-v-26l6vl .framer-i4yk1z-container, .framer-xvn45.framer-v-19dw1g6 .framer-1g21r02-container, .framer-xvn45.framer-v-19dw1g6 .framer-ouk635-container, .framer-xvn45.framer-v-19dw1g6 .framer-1njhaom-container, .framer-xvn45.framer-v-19dw1g6 .framer-1yvbal7-container, .framer-xvn45.framer-v-19dw1g6 .framer-i4yk1z-container, .framer-xvn45.framer-v-1ojwi2a .framer-1g21r02-container, .framer-xvn45.framer-v-1ojwi2a .framer-ouk635-container, .framer-xvn45.framer-v-1ojwi2a .framer-1njhaom-container, .framer-xvn45.framer-v-1ojwi2a .framer-1yvbal7-container, .framer-xvn45.framer-v-1ojwi2a .framer-i4yk1z-container, .framer-xvn45.framer-v-1q0fmp3 .framer-1g21r02-container, .framer-xvn45.framer-v-1q0fmp3 .framer-ouk635-container, .framer-xvn45.framer-v-1q0fmp3 .framer-1njhaom-container, .framer-xvn45.framer-v-1q0fmp3 .framer-1yvbal7-container, .framer-xvn45.framer-v-1q0fmp3 .framer-i4yk1z-container, .framer-xvn45.framer-v-ymdaw5 .framer-1g21r02-container, .framer-xvn45.framer-v-ymdaw5 .framer-ouk635-container, .framer-xvn45.framer-v-ymdaw5 .framer-1njhaom-container, .framer-xvn45.framer-v-ymdaw5 .framer-1yvbal7-container, .framer-xvn45.framer-v-ymdaw5 .framer-i4yk1z-container, .framer-xvn45.framer-v-1gyc10e .framer-1g21r02-container, .framer-xvn45.framer-v-1gyc10e .framer-ouk635-container, .framer-xvn45.framer-v-1gyc10e .framer-1njhaom-container, .framer-xvn45.framer-v-1gyc10e .framer-1yvbal7-container, .framer-xvn45.framer-v-1gyc10e .framer-i4yk1z-container, .framer-xvn45.framer-v-15grar0 .framer-1g21r02-container, .framer-xvn45.framer-v-15grar0 .framer-ouk635-container, .framer-xvn45.framer-v-15grar0 .framer-1njhaom-container, .framer-xvn45.framer-v-15grar0 .framer-1yvbal7-container, .framer-xvn45.framer-v-15grar0 .framer-i4yk1z-container, .framer-xvn45.framer-v-yj8k78 .framer-1g21r02-container, .framer-xvn45.framer-v-yj8k78 .framer-ouk635-container, .framer-xvn45.framer-v-yj8k78 .framer-1njhaom-container, .framer-xvn45.framer-v-yj8k78 .framer-1yvbal7-container, .framer-xvn45.framer-v-yj8k78 .framer-i4yk1z-container { flex: 1 0 0px; width: 1px; }\",\".framer-xvn45.framer-v-1srltf9 .framer-i91wh3, .framer-xvn45.framer-v-mukwoo .framer-i91wh3, .framer-xvn45.framer-v-26l6vl .framer-i91wh3, .framer-xvn45.framer-v-19dw1g6 .framer-i91wh3, .framer-xvn45.framer-v-15grar0 .framer-i91wh3 { align-self: unset; flex: none; height: min-content; min-height: 330px; order: 0; width: 100%; }\",\".framer-xvn45.framer-v-1srltf9 .framer-keet4 { right: -9px; top: 86%; }\",\".framer-xvn45.framer-v-1srltf9 .framer-oiv6ko-container { height: 508px; width: 658px; }\",\".framer-xvn45.framer-v-1srltf9 .framer-11z9cew { right: -720px; top: 86%; }\",\".framer-xvn45.framer-v-1srltf9 .framer-1be0c64, .framer-xvn45.framer-v-1srltf9 .framer-xshdab, .framer-xvn45.framer-v-1srltf9 .framer-1cpk0ia { top: 86%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xvn45.framer-v-1srltf9.framer-jkrgos { gap: 0px; } .framer-xvn45.framer-v-1srltf9.framer-jkrgos > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xvn45.framer-v-1srltf9.framer-jkrgos > :first-child { margin-top: 0px; } .framer-xvn45.framer-v-1srltf9.framer-jkrgos > :last-child { margin-bottom: 0px; } }\",\".framer-xvn45.framer-v-mukwoo .framer-keet4, .framer-xvn45.framer-v-26l6vl .framer-keet4, .framer-xvn45.framer-v-19dw1g6 .framer-keet4, .framer-xvn45.framer-v-19dw1g6 .framer-1be0c64, .framer-xvn45.framer-v-15grar0 .framer-keet4 { right: 800px; top: 20px; }\",\".framer-xvn45.framer-v-mukwoo .framer-11z9cew { height: 482px; left: calc(50.00000000000002% - 78.125% / 2); right: unset; top: calc(79.09090909090911% - 482px / 2); width: 78%; }\",\".framer-xvn45.framer-v-mukwoo .framer-x5qluo-container { aspect-ratio: 1.2448132780082988 / 1; height: 100%; width: var(--framer-aspect-ratio-supported, 600px); }\",\".framer-xvn45.framer-v-mukwoo .framer-1be0c64 { right: -922px; top: 20px; }\",\".framer-xvn45.framer-v-mukwoo .framer-xshdab { top: 20px; }\",\".framer-xvn45.framer-v-mukwoo .framer-1cpk0ia { right: -752px; top: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xvn45.framer-v-mukwoo.framer-jkrgos { gap: 0px; } .framer-xvn45.framer-v-mukwoo.framer-jkrgos > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xvn45.framer-v-mukwoo.framer-jkrgos > :first-child { margin-top: 0px; } .framer-xvn45.framer-v-mukwoo.framer-jkrgos > :last-child { margin-bottom: 0px; } }\",\".framer-xvn45.framer-v-26l6vl .framer-11z9cew { right: 819px; top: 20px; }\",\".framer-xvn45.framer-v-26l6vl .framer-1be0c64 { height: 394px; left: 50%; right: unset; top: 66%; }\",\".framer-xvn45.framer-v-26l6vl .framer-5nswpq-container { aspect-ratio: 1.583756345177665 / 1; height: 100%; width: var(--framer-aspect-ratio-supported, 624px); }\",\".framer-xvn45.framer-v-26l6vl .framer-xshdab { right: -676px; top: 20px; }\",\".framer-xvn45.framer-v-26l6vl .framer-1cpk0ia { right: -736px; top: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xvn45.framer-v-26l6vl.framer-jkrgos { gap: 0px; } .framer-xvn45.framer-v-26l6vl.framer-jkrgos > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xvn45.framer-v-26l6vl.framer-jkrgos > :first-child { margin-top: 0px; } .framer-xvn45.framer-v-26l6vl.framer-jkrgos > :last-child { margin-bottom: 0px; } }\",\".framer-xvn45.framer-v-19dw1g6 .framer-11z9cew { right: 790px; top: 20px; }\",\".framer-xvn45.framer-v-19dw1g6 .framer-xshdab { height: 417px; left: 50%; right: unset; top: 69%; }\",\".framer-xvn45.framer-v-19dw1g6 .framer-r885f0-container { aspect-ratio: 1.3980815347721822 / 1; height: 100%; width: var(--framer-aspect-ratio-supported, 583px); }\",\".framer-xvn45.framer-v-19dw1g6 .framer-1cpk0ia { right: -740px; top: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xvn45.framer-v-19dw1g6.framer-jkrgos { gap: 0px; } .framer-xvn45.framer-v-19dw1g6.framer-jkrgos > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xvn45.framer-v-19dw1g6.framer-jkrgos > :first-child { margin-top: 0px; } .framer-xvn45.framer-v-19dw1g6.framer-jkrgos > :last-child { margin-bottom: 0px; } }\",\".framer-xvn45.framer-v-1ojwi2a.framer-jkrgos, .framer-xvn45.framer-v-1q0fmp3.framer-jkrgos, .framer-xvn45.framer-v-ymdaw5.framer-jkrgos, .framer-xvn45.framer-v-1gyc10e.framer-jkrgos, .framer-xvn45.framer-v-yj8k78.framer-jkrgos { flex-direction: column; gap: 40px; justify-content: center; width: 390px; }\",\".framer-xvn45.framer-v-1ojwi2a .framer-i91wh3, .framer-xvn45.framer-v-1q0fmp3 .framer-i91wh3, .framer-xvn45.framer-v-ymdaw5 .framer-i91wh3, .framer-xvn45.framer-v-1gyc10e .framer-i91wh3, .framer-xvn45.framer-v-yj8k78 .framer-i91wh3 { align-self: unset; flex: none; height: min-content; min-height: 230px; order: 0; width: 100%; }\",\".framer-xvn45.framer-v-1ojwi2a .framer-keet4 { gap: 0px; right: 80px; top: 50%; }\",\".framer-xvn45.framer-v-1ojwi2a .framer-11z9cew, .framer-xvn45.framer-v-1q0fmp3 .framer-1be0c64, .framer-xvn45.framer-v-ymdaw5 .framer-xshdab, .framer-xvn45.framer-v-ymdaw5 .framer-1cpk0ia { right: -210px; top: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xvn45.framer-v-1ojwi2a.framer-jkrgos, .framer-xvn45.framer-v-1ojwi2a .framer-keet4 { gap: 0px; } .framer-xvn45.framer-v-1ojwi2a.framer-jkrgos > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xvn45.framer-v-1ojwi2a.framer-jkrgos > :first-child { margin-top: 0px; } .framer-xvn45.framer-v-1ojwi2a.framer-jkrgos > :last-child { margin-bottom: 0px; } .framer-xvn45.framer-v-1ojwi2a .framer-keet4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xvn45.framer-v-1ojwi2a .framer-keet4 > :first-child { margin-left: 0px; } .framer-xvn45.framer-v-1ojwi2a .framer-keet4 > :last-child { margin-right: 0px; } }\",\".framer-xvn45.framer-v-1q0fmp3 .framer-keet4, .framer-xvn45.framer-v-ymdaw5 .framer-keet4, .framer-xvn45.framer-v-1gyc10e .framer-keet4, .framer-xvn45.framer-v-yj8k78 .framer-keet4 { gap: 0px; right: 450px; top: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xvn45.framer-v-1q0fmp3.framer-jkrgos, .framer-xvn45.framer-v-1q0fmp3 .framer-keet4 { gap: 0px; } .framer-xvn45.framer-v-1q0fmp3.framer-jkrgos > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xvn45.framer-v-1q0fmp3.framer-jkrgos > :first-child { margin-top: 0px; } .framer-xvn45.framer-v-1q0fmp3.framer-jkrgos > :last-child { margin-bottom: 0px; } .framer-xvn45.framer-v-1q0fmp3 .framer-keet4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xvn45.framer-v-1q0fmp3 .framer-keet4 > :first-child { margin-left: 0px; } .framer-xvn45.framer-v-1q0fmp3 .framer-keet4 > :last-child { margin-right: 0px; } }\",\".framer-xvn45.framer-v-ymdaw5 .framer-11z9cew { right: 420px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xvn45.framer-v-ymdaw5.framer-jkrgos, .framer-xvn45.framer-v-ymdaw5 .framer-keet4 { gap: 0px; } .framer-xvn45.framer-v-ymdaw5.framer-jkrgos > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xvn45.framer-v-ymdaw5.framer-jkrgos > :first-child { margin-top: 0px; } .framer-xvn45.framer-v-ymdaw5.framer-jkrgos > :last-child { margin-bottom: 0px; } .framer-xvn45.framer-v-ymdaw5 .framer-keet4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xvn45.framer-v-ymdaw5 .framer-keet4 > :first-child { margin-left: 0px; } .framer-xvn45.framer-v-ymdaw5 .framer-keet4 > :last-child { margin-right: 0px; } }\",\".framer-xvn45.framer-v-1gyc10e .framer-11z9cew, .framer-xvn45.framer-v-yj8k78 .framer-11z9cew { right: 430px; top: 50%; }\",\".framer-xvn45.framer-v-1gyc10e .framer-1be0c64, .framer-xvn45.framer-v-yj8k78 .framer-1be0c64 { right: 410px; top: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xvn45.framer-v-1gyc10e.framer-jkrgos, .framer-xvn45.framer-v-1gyc10e .framer-keet4 { gap: 0px; } .framer-xvn45.framer-v-1gyc10e.framer-jkrgos > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xvn45.framer-v-1gyc10e.framer-jkrgos > :first-child { margin-top: 0px; } .framer-xvn45.framer-v-1gyc10e.framer-jkrgos > :last-child { margin-bottom: 0px; } .framer-xvn45.framer-v-1gyc10e .framer-keet4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xvn45.framer-v-1gyc10e .framer-keet4 > :first-child { margin-left: 0px; } .framer-xvn45.framer-v-1gyc10e .framer-keet4 > :last-child { margin-right: 0px; } }\",\".framer-xvn45.framer-v-1wa7j09 .framer-xshdab { right: 620px; }\",\".framer-xvn45.framer-v-1wa7j09 .framer-1cpk0ia { right: -95px; }\",\".framer-xvn45.framer-v-1wa7j09 .framer-1nmzvqp-container { aspect-ratio: 1.3452830188679246 / 1; height: 440px; width: var(--framer-aspect-ratio-supported, 592px); }\",\".framer-xvn45.framer-v-15grar0 .framer-11z9cew { right: 840px; top: 20px; }\",\".framer-xvn45.framer-v-15grar0 .framer-1be0c64 { right: 810px; top: 20px; }\",\".framer-xvn45.framer-v-15grar0 .framer-xshdab { right: 785px; top: 20px; }\",\".framer-xvn45.framer-v-15grar0 .framer-1cpk0ia { height: 450px; left: 50%; right: unset; top: 74%; }\",\".framer-xvn45.framer-v-15grar0 .framer-1nmzvqp-container { aspect-ratio: 1.3444444444444446 / 1; height: 100%; width: var(--framer-aspect-ratio-supported, 605px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xvn45.framer-v-15grar0.framer-jkrgos { gap: 0px; } .framer-xvn45.framer-v-15grar0.framer-jkrgos > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xvn45.framer-v-15grar0.framer-jkrgos > :first-child { margin-top: 0px; } .framer-xvn45.framer-v-15grar0.framer-jkrgos > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xvn45.framer-v-yj8k78.framer-jkrgos, .framer-xvn45.framer-v-yj8k78 .framer-keet4 { gap: 0px; } .framer-xvn45.framer-v-yj8k78.framer-jkrgos > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xvn45.framer-v-yj8k78.framer-jkrgos > :first-child { margin-top: 0px; } .framer-xvn45.framer-v-yj8k78.framer-jkrgos > :last-child { margin-bottom: 0px; } .framer-xvn45.framer-v-yj8k78 .framer-keet4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xvn45.framer-v-yj8k78 .framer-keet4 > :first-child { margin-left: 0px; } .framer-xvn45.framer-v-yj8k78 .framer-keet4 > :last-child { margin-right: 0px; } }\",\".framer-xvn45.framer-v-1qojhe3 .framer-xshdab { right: 930px; }\",\".framer-xvn45.framer-v-1qojhe3 .framer-1cpk0ia { right: 96px; top: 50%; }\",\".framer-xvn45.framer-v-1qojhe3 .framer-1nmzvqp-container { width: 732px; }\",'.framer-xvn45[data-border=\"true\"]::after, .framer-xvn45 [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 895.5\n * @framerIntrinsicWidth 1320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JJ_4o0Rb5\":{\"layout\":[\"fixed\",\"auto\"]},\"pL7F1S702\":{\"layout\":[\"fixed\",\"auto\"]},\"WbAvBNuGA\":{\"layout\":[\"fixed\",\"auto\"]},\"QVuNnnVyO\":{\"layout\":[\"fixed\",\"auto\"]},\"whlkYaFkd\":{\"layout\":[\"fixed\",\"auto\"]},\"C0KHVpnB8\":{\"layout\":[\"fixed\",\"auto\"]},\"wiaqlR36W\":{\"layout\":[\"fixed\",\"auto\"]},\"laTlbJqYL\":{\"layout\":[\"fixed\",\"auto\"]},\"PyKCVi6z6\":{\"layout\":[\"fixed\",\"auto\"]},\"fnHH2Loi8\":{\"layout\":[\"fixed\",\"auto\"]},\"py2Wyyjwb\":{\"layout\":[\"fixed\",\"auto\"]},\"ZK0oc8LHe\":{\"layout\":[\"fixed\",\"auto\"]},\"bwn9gZB0N\":{\"layout\":[\"fixed\",\"auto\"]},\"cesqbS1uK\":{\"layout\":[\"fixed\",\"auto\"]},\"r7KzMC3wg\":{\"layout\":[\"fixed\",\"auto\"]},\"jJ7cBEN1R\":{\"layout\":[\"fixed\",\"auto\"]},\"bulq7i9id\":{\"layout\":[\"fixed\",\"auto\"]},\"FnIwIR1yq\":{\"layout\":[\"fixed\",\"auto\"]},\"Y1RCaq6TP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"kzMN15MDe\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerHsm4dM52D=withCSS(Component,css,\"framer-xvn45\");export default FramerHsm4dM52D;FramerHsm4dM52D.displayName=\"Tab\";FramerHsm4dM52D.defaultProps={height:895.5,width:1320};addPropertyControls(FramerHsm4dM52D,{variant:{options:[\"gUoAGuerm\",\"JJ_4o0Rb5\",\"pL7F1S702\",\"WbAvBNuGA\",\"QVuNnnVyO\",\"whlkYaFkd\",\"C0KHVpnB8\",\"wiaqlR36W\",\"laTlbJqYL\",\"PyKCVi6z6\",\"fnHH2Loi8\",\"py2Wyyjwb\",\"ZK0oc8LHe\",\"bwn9gZB0N\",\"cesqbS1uK\",\"r7KzMC3wg\",\"jJ7cBEN1R\",\"bulq7i9id\",\"FnIwIR1yq\",\"Y1RCaq6TP\"],optionTitles:[\"Desktop 01\",\"Desktop 02\",\"Desktop 03\",\"Desktop 04\",\"Laptop 01\",\"Laptop 02\",\"Laptop 03\",\"Laptop 04\",\"Tablet 01\",\"Tablet 02\",\"Tablet 03\",\"Tablet 04\",\"Mobile 01\",\"Mobile 02\",\"Mobile 03\",\"Mobile 04\",\"Laptop 05\",\"Tablet 05\",\"Mobile 05\",\"Variant 20\"],title:\"Variant\",type:ControlType.Enum},kzMN15MDe:{defaultValue:\"Order Dashboard\",displayTextArea:true,placeholder:\"\",title:\"Title\",type:ControlType.String}});addFonts(FramerHsm4dM52D,[{explicitInter:true,fonts:[]},...IconBoxFonts,...TabImage01Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHsm4dM52D\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1320\",\"framerVariables\":\"{\\\"kzMN15MDe\\\":\\\"title\\\"}\",\"framerIntrinsicHeight\":\"895.5\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JJ_4o0Rb5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pL7F1S702\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WbAvBNuGA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QVuNnnVyO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"whlkYaFkd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C0KHVpnB8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wiaqlR36W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"laTlbJqYL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PyKCVi6z6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fnHH2Loi8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"py2Wyyjwb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZK0oc8LHe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bwn9gZB0N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cesqbS1uK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r7KzMC3wg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jJ7cBEN1R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bulq7i9id\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FnIwIR1yq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y1RCaq6TP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hsm4dM52D.map", "// Generated by Framer (465c266)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/3aID076ghQ8FgQnIbsFv/DqQUT9pChlrMa1hBGuw9/m7bvF07Hd.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/n5aZOPvU0uUUTNuqRbzL/ZYv3FgbmDiGDjWGArpR6/sbyheXbBq.js\";const enabledGestures={ibitGIO43:{hover:true}};const serializationHash=\"framer-iBcVM\";const variantClassNames={ibitGIO43:\"framer-v-1hsch7r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({category,date,height,id,image,link,title,width,...props})=>{return{...props,jFFRxQr2X:category??props.jFFRxQr2X??\"text\",Kf4YkwRS5:title??props.Kf4YkwRS5??\"The Installer Outsourcing Trap\",Og2LutR4F:image??props.Og2LutR4F,oyGqyLxOw:link??props.oyGqyLxOw,R9tfgJlnZ:date??props.R9tfgJlnZ??\"APRIL 02, 2023\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,oyGqyLxOw,Og2LutR4F,R9tfgJlnZ,Kf4YkwRS5,jFFRxQr2X,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ibitGIO43\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:oyGqyLxOw,nodeId:\"ibitGIO43\",children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Og2LutR4F)},className:`${cx(scopingClassNames,\"framer-1hsch7r\",className,classNames)} framer-zijjjz`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ibitGIO43\",ref:ref??ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:1,...style},variants:{\"ibitGIO43-hover\":{opacity:.75}},...addPropertyOverrides({\"ibitGIO43-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4q87r6\",layoutDependency:layoutDependency,layoutId:\"DByPeSwWO\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lp1cpt\",\"data-styles-preset\":\"m7bvF07Hd\",children:\"APRIL 02, 2023\"})}),className:\"framer-1t42lrh\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Wku9MXBf3\",text:R9tfgJlnZ,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bz132c\",layoutDependency:layoutDependency,layoutId:\"eHrZHxKMF\",style:{backdropFilter:\"blur(12px)\",background:\"linear-gradient(180deg, rgba(179, 179, 179, 0.11) 0%, rgb(84, 84, 84) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,WebkitBackdropFilter:\"blur(12px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lp1cpt\",\"data-styles-preset\":\"m7bvF07Hd\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"APRIL 02, 2023\"})}),className:\"framer-ms8jf8\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dllpBvWVJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:jFFRxQr2X,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"The Installer Outsourcing Trap\"})}),className:\"framer-3508bs\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m8BVT2k0w\",style:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\"},text:Kf4YkwRS5,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iBcVM.framer-zijjjz, .framer-iBcVM .framer-zijjjz { display: block; }\",\".framer-iBcVM.framer-1hsch7r { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 387px; }\",\".framer-iBcVM .framer-4q87r6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 285px; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-iBcVM .framer-1t42lrh { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-iBcVM .framer-bz132c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 220px; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iBcVM .framer-ms8jf8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 294px; word-break: break-word; word-wrap: break-word; }\",\".framer-iBcVM .framer-3508bs { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iBcVM.framer-1hsch7r, .framer-iBcVM .framer-4q87r6, .framer-iBcVM .framer-bz132c { gap: 0px; } .framer-iBcVM.framer-1hsch7r > *, .framer-iBcVM .framer-bz132c > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-iBcVM.framer-1hsch7r > :first-child, .framer-iBcVM .framer-bz132c > :first-child { margin-top: 0px; } .framer-iBcVM.framer-1hsch7r > :last-child, .framer-iBcVM .framer-bz132c > :last-child { margin-bottom: 0px; } .framer-iBcVM .framer-4q87r6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-iBcVM .framer-4q87r6 > :first-child { margin-left: 0px; } .framer-iBcVM .framer-4q87r6 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 515\n * @framerIntrinsicWidth 387\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Rd02CwWEr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"oyGqyLxOw\":\"link\",\"Og2LutR4F\":\"image\",\"R9tfgJlnZ\":\"date\",\"Kf4YkwRS5\":\"title\",\"jFFRxQr2X\":\"category\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameri5tW49nCD=withCSS(Component,css,\"framer-iBcVM\");export default Frameri5tW49nCD;Frameri5tW49nCD.displayName=\"Article card\";Frameri5tW49nCD.defaultProps={height:515,width:387};addPropertyControls(Frameri5tW49nCD,{oyGqyLxOw:{title:\"Link\",type:ControlType.Link},Og2LutR4F:{title:\"Image\",type:ControlType.ResponsiveImage},R9tfgJlnZ:{defaultValue:\"APRIL 02, 2023\",title:\"Date\",type:ControlType.String},Kf4YkwRS5:{defaultValue:\"The Installer Outsourcing Trap\",title:\"Title\",type:ControlType.String},jFFRxQr2X:{defaultValue:\"text\",displayTextArea:false,title:\"Category\",type:ControlType.String}});addFonts(Frameri5tW49nCD,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameri5tW49nCD\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"oyGqyLxOw\\\":\\\"link\\\",\\\"Og2LutR4F\\\":\\\"image\\\",\\\"R9tfgJlnZ\\\":\\\"date\\\",\\\"Kf4YkwRS5\\\":\\\"title\\\",\\\"jFFRxQr2X\\\":\\\"category\\\"}\",\"framerIntrinsicHeight\":\"515\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rd02CwWEr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"387\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./i5tW49nCD.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Card from\"https://framerusercontent.com/modules/1qRv7ABYoNCf1qxPba87/SQFCtbXXZJWp4Zd6sQAE/Yeb8FubXB.js\";const CardFonts=getFonts(Card);const cycleOrder=[\"BxDPcDkcm\",\"RDjcS48Wc\",\"g1erN6gPw\",\"NuksIuwT1\"];const serializationHash=\"framer-fzyCn\";const variantClassNames={BxDPcDkcm:\"framer-v-1m47lo1\",g1erN6gPw:\"framer-v-dvcdlc\",NuksIuwT1:\"framer-v-1yjjmao\",RDjcS48Wc:\"framer-v-1j85bt9\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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\":\"RDjcS48Wc\",\"2\":\"g1erN6gPw\",\"3\":\"NuksIuwT1\",Neutral:\"BxDPcDkcm\"};const getProps=({height,hover,id,visible,width,...props})=>{return{...props,bbO3AO60M:visible??props.bbO3AO60M??true,g88FU9Gnu:hover??props.g88FU9Gnu,variant:humanReadableVariantMap[props.variant]??props.variant??\"BxDPcDkcm\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,g88FU9Gnu,bbO3AO60M,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BxDPcDkcm\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter19x7j8h=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(g88FU9Gnu){const res=await g88FU9Gnu(...args);if(res===false)return false;}});const onMouseLeave1hpxsr7=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"BxDPcDkcm\");});const onMouseEnter1bzoclt=activeVariantCallback(async(...args)=>{setVariant(\"NuksIuwT1\");});const onMouseLeavep4cxi5=activeVariantCallback(async(...args)=>{setVariant(\"BxDPcDkcm\");});const onMouseEnterw05df1=activeVariantCallback(async(...args)=>{setVariant(\"g1erN6gPw\");});const onMouseEntera9k1wa=activeVariantCallback(async(...args)=>{setVariant(\"RDjcS48Wc\");});const mk2YLIF3la9k1wa=activeVariantCallback(async(...args)=>{setVariant(\"RDjcS48Wc\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:bbO3AO60M&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1m47lo1\",className,classNames),\"data-framer-name\":\"Neutral\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BxDPcDkcm\",onMouseEnter:onMouseEnter19x7j8h,ref:ref??ref1,style:{...style},...addPropertyOverrides({g1erN6gPw:{\"data-framer-name\":\"2\"},NuksIuwT1:{\"data-framer-name\":\"3\"},RDjcS48Wc:{\"data-framer-name\":\"1\",onMouseLeave:onMouseLeave1hpxsr7}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fce4xr\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nyr57H3rj\",onMouseEnter:onMouseEnter1bzoclt,style:{skewY:-10},...addPropertyOverrides({NuksIuwT1:{onMouseEnter:undefined,onMouseLeave:onMouseLeavep4cxi5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"281px\",y:(componentViewport?.y||0)+((componentViewport?.height||287)*.38327526132404205-45)+0,...addPropertyOverrides({NuksIuwT1:{y:(componentViewport?.y||0)+((componentViewport?.height||287)*.2334494773519166-45)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2jdfsi-container\",layoutDependency:layoutDependency,layoutId:\"Cm7Efstt1-container\",children:/*#__PURE__*/_jsx(Card,{h5TSGb319:addImageAlt({src:\"https://framerusercontent.com/images/451T6nAXSzoysqtvulWMMa16w.svg\"},\"\"),height:\"100%\",id:\"Cm7Efstt1\",layoutId:\"Cm7Efstt1\",style:{height:\"100%\",width:\"100%\"},variant:\"dzTfEDzbU\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ba5jbb\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"q96Fk72yf\",onMouseEnter:onMouseEnterw05df1,style:{skewY:-10},...addPropertyOverrides({g1erN6gPw:{onMouseEnter:undefined,onMouseLeave:onMouseLeavep4cxi5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:\"281px\",y:(componentViewport?.y||0)+((componentViewport?.height||287)*.47410358565737076-45)+0,...addPropertyOverrides({g1erN6gPw:{y:(componentViewport?.y||0)+((componentViewport?.height||287)*.2996515679442511-45)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16evas6-container\",layoutDependency:layoutDependency,layoutId:\"lS52Q8VGl-container\",children:/*#__PURE__*/_jsx(Card,{h5TSGb319:addImageAlt({src:\"https://framerusercontent.com/images/yx84cbNpCtEUnbAyLq77KaBNv1w.svg\"},\"\"),height:\"100%\",id:\"lS52Q8VGl\",layoutId:\"lS52Q8VGl\",style:{height:\"100%\",width:\"100%\"},variant:\"dzTfEDzbU\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j9iy67\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gb3sOmriu\",onMouseEnter:onMouseEntera9k1wa,style:{skewY:-10},...addPropertyOverrides({RDjcS48Wc:{onMouseEnter:undefined,onMouseLeave:onMouseLeavep4cxi5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"281px\",y:(componentViewport?.y||0)+((componentViewport?.height||287)*.5505226480836239-45)+0,...addPropertyOverrides({RDjcS48Wc:{y:(componentViewport?.y||0)+((componentViewport?.height||287)*.3763066202090595-45)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vrjhk0-container\",layoutDependency:layoutDependency,layoutId:\"TYFCqtlVJ-container\",children:/*#__PURE__*/_jsx(Card,{h5TSGb319:addImageAlt({src:\"https://framerusercontent.com/images/ptW0E5V4Q1V3e1hWOxHO2mCXnOA.svg\"},\"\"),height:\"100%\",id:\"TYFCqtlVJ\",layoutId:\"TYFCqtlVJ\",mk2YLIF3l:mk2YLIF3la9k1wa,style:{height:\"100%\",width:\"100%\"},variant:\"nPmEmENRM\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fzyCn.framer-1e4nr2s, .framer-fzyCn .framer-1e4nr2s { display: block; }\",\".framer-fzyCn.framer-1m47lo1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 287px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 402px; }\",\".framer-fzyCn .framer-1fce4xr { flex: none; height: 90px; overflow: hidden; position: absolute; right: 115px; top: calc(38.3275261324042% - 90px / 2); width: 281px; z-index: 1; }\",\".framer-fzyCn .framer-2jdfsi-container, .framer-fzyCn .framer-1vrjhk0-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-fzyCn .framer-1ba5jbb { flex: none; height: 90px; overflow: hidden; position: absolute; right: 59px; top: calc(47.41035856573708% - 90px / 2); width: 281px; z-index: 1; }\",\".framer-fzyCn .framer-16evas6-container { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-fzyCn .framer-j9iy67 { flex: none; height: 90px; overflow: hidden; position: absolute; right: 1px; top: calc(55.052264808362395% - 90px / 2); width: 281px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fzyCn.framer-1m47lo1 { gap: 0px; } .framer-fzyCn.framer-1m47lo1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fzyCn.framer-1m47lo1 > :first-child { margin-top: 0px; } .framer-fzyCn.framer-1m47lo1 > :last-child { margin-bottom: 0px; } }\",\".framer-fzyCn.framer-v-1j85bt9 .framer-j9iy67 { top: calc(37.630662020905945% - 90px / 2); }\",\".framer-fzyCn.framer-v-dvcdlc .framer-1ba5jbb { top: calc(29.965156794425106% - 90px / 2); }\",\".framer-fzyCn.framer-v-1yjjmao .framer-1fce4xr { top: calc(23.34494773519166% - 90px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 287\n * @framerIntrinsicWidth 402\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"RDjcS48Wc\":{\"layout\":[\"fixed\",\"fixed\"]},\"g1erN6gPw\":{\"layout\":[\"fixed\",\"fixed\"]},\"NuksIuwT1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"g88FU9Gnu\":\"hover\",\"bbO3AO60M\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJM7jN8Cl9=withCSS(Component,css,\"framer-fzyCn\");export default FramerJM7jN8Cl9;FramerJM7jN8Cl9.displayName=\"Card Jump Tablet\";FramerJM7jN8Cl9.defaultProps={height:287,width:402};addPropertyControls(FramerJM7jN8Cl9,{variant:{options:[\"BxDPcDkcm\",\"RDjcS48Wc\",\"g1erN6gPw\",\"NuksIuwT1\"],optionTitles:[\"Neutral\",\"1\",\"2\",\"3\"],title:\"Variant\",type:ControlType.Enum},g88FU9Gnu:{title:\"Hover\",type:ControlType.EventHandler},bbO3AO60M:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(FramerJM7jN8Cl9,[{explicitInter:true,fonts:[]},...CardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJM7jN8Cl9\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"287\",\"framerVariables\":\"{\\\"g88FU9Gnu\\\":\\\"hover\\\",\\\"bbO3AO60M\\\":\\\"visible\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RDjcS48Wc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g1erN6gPw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NuksIuwT1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"402\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JM7jN8Cl9.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/cDBst3UWD8WICPC5AzlH/AfU18YzMPAQnlROl4WRh/LzAEXSRAY.js\";const cycleOrder=[\"ggs9X99Rz\",\"aG2_bD1Ok\",\"GxEXhDpNk\",\"ArazZTN0w\",\"ZwJPXYaYt\"];const serializationHash=\"framer-qxPrX\";const variantClassNames={aG2_bD1Ok:\"framer-v-18pcgkh\",ArazZTN0w:\"framer-v-e9y7vl\",ggs9X99Rz:\"framer-v-hjoqpj\",GxEXhDpNk:\"framer-v-125adxi\",ZwJPXYaYt:\"framer-v-1hsjp4f\"};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={duration:0,type:\"tween\"};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={\"Variant 1 - desktop - laptop -tablet\":\"ggs9X99Rz\",\"Variant 2\":\"aG2_bD1Ok\",\"Variant 3\":\"GxEXhDpNk\",\"Variant 4\":\"ArazZTN0w\",\"Variant 5\":\"ZwJPXYaYt\"};const getProps=({height,id,title,title2,title3,title4,width,...props})=>{return{...props,AjLtZe2_Y:title??props.AjLtZe2_Y??\"Instantly.\",gInxNjDFi:title2??props.gInxNjDFi??\"Effectively\",JRH2wQKr6:title4??props.JRH2wQKr6??\"Successfully\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ggs9X99Rz\",zaCRG43gK:title3??props.zaCRG43gK??\"Effortlessly\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,AjLtZe2_Y,gInxNjDFi,zaCRG43gK,JRH2wQKr6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ggs9X99Rz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear15nnr0i=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"aG2_bD1Ok\"),1500);});const onAppearcclrla=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"GxEXhDpNk\"),1500);});const onAppear10f3fnx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ArazZTN0w\"),1500);});const onAppear1n3fh8p=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ZwJPXYaYt\"),1500);});const onAppear104l6th=activeVariantCallback(async(...args)=>{setVariant(\"ggs9X99Rz\");});useOnVariantChange(baseVariant,{aG2_bD1Ok:onAppearcclrla,ArazZTN0w:onAppear1n3fh8p,default:onAppear15nnr0i,GxEXhDpNk:onAppear10f3fnx,ZwJPXYaYt:onAppear104l6th});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({ZwJPXYaYt:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-hjoqpj\",className,classNames),\"data-framer-name\":\"Variant 1 - desktop - laptop -tablet\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ggs9X99Rz\",ref:ref??ref1,style:{...style},...addPropertyOverrides({aG2_bD1Ok:{\"data-framer-name\":\"Variant 2\"},ArazZTN0w:{\"data-framer-name\":\"Variant 4\"},GxEXhDpNk:{\"data-framer-name\":\"Variant 3\"},ZwJPXYaYt:{\"data-framer-name\":\"Variant 5\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176)))\"},children:\"Instantly.\"})}),className:\"framer-g4s6uu\",\"data-framer-name\":\"Text 1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gv8lqI4Fu\",style:{\"--extracted-gdpscs\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:AjLtZe2_Y,variants:{aG2_bD1Ok:{opacity:0},ArazZTN0w:{opacity:0},GxEXhDpNk:{opacity:0},ZwJPXYaYt:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176)))\"},children:\"Effectively\"})}),className:\"framer-mfx5rn\",\"data-framer-name\":\"Text 2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LKvfEFh6N\",style:{\"--extracted-gdpscs\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},text:gInxNjDFi,variants:{aG2_bD1Ok:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176)))\"},children:\"Effortlessly\"})}),className:\"framer-tr54rw\",\"data-framer-name\":\"Text 3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IpkY5DTeG\",style:{\"--extracted-gdpscs\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},text:zaCRG43gK,variants:{GxEXhDpNk:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176)))\"},children:\"Successfully\"})}),className:\"framer-il2cnw\",\"data-framer-name\":\"Text 4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"orStDDj_t\",style:{\"--extracted-gdpscs\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},text:JRH2wQKr6,variants:{ArazZTN0w:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176)))\"},children:\"Instantly.\"})}),className:\"framer-1fee5zn\",\"data-framer-name\":\"Text 1 (2nd)\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uJIlBOYWY\",style:{\"--extracted-gdpscs\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{ZwJPXYaYt:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qxPrX.framer-10b1il9, .framer-qxPrX .framer-10b1il9 { display: block; }\",\".framer-qxPrX.framer-hjoqpj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 70px; overflow: visible; padding: 0px; position: relative; width: 347px; }\",\".framer-qxPrX .framer-g4s6uu { bottom: 0px; flex: none; height: 70px; left: 0px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-qxPrX .framer-mfx5rn { bottom: -67px; flex: none; height: 67px; left: 0px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-qxPrX .framer-tr54rw { bottom: -134px; flex: none; height: 67px; left: 0px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-qxPrX .framer-il2cnw { bottom: -201px; flex: none; height: 67px; left: 0px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-qxPrX .framer-1fee5zn { bottom: -271px; flex: none; height: 70px; left: 0px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qxPrX.framer-hjoqpj { gap: 0px; } .framer-qxPrX.framer-hjoqpj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qxPrX.framer-hjoqpj > :first-child { margin-left: 0px; } .framer-qxPrX.framer-hjoqpj > :last-child { margin-right: 0px; } }\",\".framer-qxPrX.framer-v-18pcgkh.framer-hjoqpj, .framer-qxPrX.framer-v-125adxi.framer-hjoqpj, .framer-qxPrX.framer-v-e9y7vl.framer-hjoqpj, .framer-qxPrX.framer-v-1hsjp4f.framer-hjoqpj { justify-content: flex-start; min-height: unset; }\",\".framer-qxPrX.framer-v-18pcgkh .framer-g4s6uu { bottom: 67px; order: 0; }\",\".framer-qxPrX.framer-v-18pcgkh .framer-mfx5rn { bottom: unset; left: unset; order: 1; position: relative; }\",\".framer-qxPrX.framer-v-18pcgkh .framer-tr54rw { bottom: -67px; order: 2; }\",\".framer-qxPrX.framer-v-18pcgkh .framer-il2cnw { bottom: -134px; order: 3; }\",\".framer-qxPrX.framer-v-18pcgkh .framer-1fee5zn { bottom: -204px; order: 4; }\",\".framer-qxPrX.framer-v-125adxi .framer-g4s6uu { bottom: 137px; }\",\".framer-qxPrX.framer-v-125adxi .framer-mfx5rn { bottom: 67px; height: 70px; }\",\".framer-qxPrX.framer-v-125adxi .framer-tr54rw, .framer-qxPrX.framer-v-e9y7vl .framer-il2cnw, .framer-qxPrX.framer-v-1hsjp4f .framer-1fee5zn { bottom: unset; left: unset; position: relative; }\",\".framer-qxPrX.framer-v-125adxi .framer-il2cnw { bottom: -67px; }\",\".framer-qxPrX.framer-v-125adxi .framer-1fee5zn { bottom: -137px; }\",\".framer-qxPrX.framer-v-e9y7vl .framer-g4s6uu { bottom: 204px; }\",\".framer-qxPrX.framer-v-e9y7vl .framer-mfx5rn { bottom: 134px; height: 70px; }\",\".framer-qxPrX.framer-v-e9y7vl .framer-tr54rw { bottom: 67px; }\",\".framer-qxPrX.framer-v-e9y7vl .framer-1fee5zn { bottom: -70px; }\",\".framer-qxPrX.framer-v-1hsjp4f .framer-g4s6uu { bottom: 277px; }\",\".framer-qxPrX.framer-v-1hsjp4f .framer-mfx5rn { bottom: 207px; height: 70px; }\",\".framer-qxPrX.framer-v-1hsjp4f .framer-tr54rw { bottom: 140px; }\",\".framer-qxPrX.framer-v-1hsjp4f .framer-il2cnw { bottom: 70px; height: 70px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 70\n * @framerIntrinsicWidth 347\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aG2_bD1Ok\":{\"layout\":[\"fixed\",\"auto\"]},\"GxEXhDpNk\":{\"layout\":[\"fixed\",\"auto\"]},\"ArazZTN0w\":{\"layout\":[\"fixed\",\"auto\"]},\"ZwJPXYaYt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"AjLtZe2_Y\":\"title\",\"gInxNjDFi\":\"title2\",\"zaCRG43gK\":\"title3\",\"JRH2wQKr6\":\"title4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpOinAICx8=withCSS(Component,css,\"framer-qxPrX\");export default FramerpOinAICx8;FramerpOinAICx8.displayName=\"Flipping words\";FramerpOinAICx8.defaultProps={height:70,width:347};addPropertyControls(FramerpOinAICx8,{variant:{options:[\"ggs9X99Rz\",\"aG2_bD1Ok\",\"GxEXhDpNk\",\"ArazZTN0w\",\"ZwJPXYaYt\"],optionTitles:[\"Variant 1 - desktop - laptop -tablet\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum},AjLtZe2_Y:{defaultValue:\"Instantly.\",displayTextArea:false,title:\"Title\",type:ControlType.String},gInxNjDFi:{defaultValue:\"Effectively\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},zaCRG43gK:{defaultValue:\"Effortlessly\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},JRH2wQKr6:{defaultValue:\"Successfully\",displayTextArea:false,title:\"Title 4\",type:ControlType.String}});addFonts(FramerpOinAICx8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpOinAICx8\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aG2_bD1Ok\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GxEXhDpNk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ArazZTN0w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZwJPXYaYt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"AjLtZe2_Y\\\":\\\"title\\\",\\\"gInxNjDFi\\\":\\\"title2\\\",\\\"zaCRG43gK\\\":\\\"title3\\\",\\\"JRH2wQKr6\\\":\\\"title4\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"70\",\"framerIntrinsicWidth\":\"347\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,FormContainer,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import NavbarBannerDesktop from\"#framer/local/canvasComponent/CkPmzATJd/CkPmzATJd.js\";import FAQ from\"#framer/local/canvasComponent/FgoBYhIxV/FgoBYhIxV.js\";import ReviewCard2 from\"#framer/local/canvasComponent/fxUvcG0gA/fxUvcG0gA.js\";import CardJump from\"#framer/local/canvasComponent/hNHEfcoqs/hNHEfcoqs.js\";import Tab from\"#framer/local/canvasComponent/Hsm4dM52D/Hsm4dM52D.js\";import ArticleCard from\"#framer/local/canvasComponent/i5tW49nCD/i5tW49nCD.js\";import CardJumpTablet from\"#framer/local/canvasComponent/JM7jN8Cl9/JM7jN8Cl9.js\";import Footer from\"#framer/local/canvasComponent/muwELOiTK/muwELOiTK.js\";import FlippingWords from\"#framer/local/canvasComponent/pOinAICx8/pOinAICx8.js\";import BrandTicker from\"#framer/local/canvasComponent/qGje7eo2W/qGje7eo2W.js\";import BottomSection from\"#framer/local/canvasComponent/rEggKL3AX/rEggKL3AX.js\";import Button from\"#framer/local/canvasComponent/VOynT_b_v/VOynT_b_v.js\";import Blog from\"#framer/local/collection/oRXr591Ze/oRXr591Ze.js\";import*as sharedStyle6 from\"#framer/local/css/aYrCX43rl/aYrCX43rl.js\";import*as sharedStyle8 from\"#framer/local/css/Ijk4Qs6Tg/Ijk4Qs6Tg.js\";import*as sharedStyle1 from\"#framer/local/css/LzAEXSRAY/LzAEXSRAY.js\";import*as sharedStyle2 from\"#framer/local/css/m7bvF07Hd/m7bvF07Hd.js\";import*as sharedStyle7 from\"#framer/local/css/mHTgjaKAx/mHTgjaKAx.js\";import*as sharedStyle3 from\"#framer/local/css/sbyheXbBq/sbyheXbBq.js\";import*as sharedStyle5 from\"#framer/local/css/Uc8U6QkVc/Uc8U6QkVc.js\";import*as sharedStyle4 from\"#framer/local/css/Vo1sNe3uA/Vo1sNe3uA.js\";import*as sharedStyle from\"#framer/local/css/Y8Dewl14B/Y8Dewl14B.js\";import*as sharedStyle9 from\"#framer/local/css/yrsGIxqQ4/yrsGIxqQ4.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarBannerDesktopFonts=getFonts(NavbarBannerDesktop);const RichTextWithFX=withFX(RichText);const FlippingWordsFonts=getFonts(FlippingWords);const ContainerWithFX=withFX(Container);const ButtonFonts=getFonts(Button);const BrandTickerFonts=getFonts(BrandTicker);const VimeoFonts=getFonts(Vimeo);const MotionDivWithFX=withFX(motion.div);const TabFonts=getFonts(Tab);const CarouselFonts=getFonts(Carousel);const CardJumpTabletFonts=getFonts(CardJumpTablet);const CardJumpFonts=getFonts(CardJump);const SlideshowFonts=getFonts(Slideshow);const ArticleCardFonts=getFonts(ArticleCard);const ImageWithFX=withFX(Image);const ReviewCard2Fonts=getFonts(ReviewCard2);const FAQFonts=getFonts(FAQ);const FooterFonts=getFonts(Footer);const BottomSectionFonts=getFonts(BottomSection);const breakpoints={o_6C2gw4T:\"(min-width: 992px) and (max-width: 1439px)\",qKfmuAscl:\"(min-width: 768px) and (max-width: 991px)\",WQLkyLRf1:\"(min-width: 1440px)\",y9F_ZK1jT:\"(max-width: 767px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-TknN4\";const variantClassNames={o_6C2gw4T:\"framer-v-uqau7o\",qKfmuAscl:\"framer-v-1e91bvc\",WQLkyLRf1:\"framer-v-72rtr7\",y9F_ZK1jT:\"framer-v-13m43dp\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition2={bounce:.2,delay:.5,duration:.4,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const transition3={damping:60,delay:.6,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition5={damping:60,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition6={damping:60,delay:0,mass:1,stiffness:400,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 QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition7={damping:60,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:30};const inertia={bounceDamping:30,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const animation7={cursor:\"grabbing\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Laptop:\"o_6C2gw4T\",Phone:\"y9F_ZK1jT\",Tablet:\"qKfmuAscl\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,CE3Ccv5Q4sGImIHPry,rQcV7vlpHsGImIHPry,ANOEAKCQKsGImIHPry,bjAEz1hEHsGImIHPry,idsGImIHPry,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"Rua3pIvNt\");const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"o_6C2gw4T\",\"qKfmuAscl\",\"y9F_ZK1jT\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"y9F_ZK1jT\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"qKfmuAscl\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"qKfmuAscl\")return false;return true;};const elementId1=useRouteElementId(\"bYeqaQz22\");const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId2=useRouteElementId(\"mx82DJwKK\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"tobXdbnXd\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-d624bab6-2e79-4b2b-942d-b7a193232c83, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y9F_ZK1jT:{width:\"96.0256vw\",y:24}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:\"96.0069vw\",y:14,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f3d0wy-container\",layoutScroll:true,nodeId:\"WKK67oSzb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{variant:\"sbH1_tuao\"},qKfmuAscl:{variant:\"DUPuM0XXm\"},y9F_ZK1jT:{variant:\"Ap37zKcDF\"}},children:/*#__PURE__*/_jsx(NavbarBannerDesktop,{height:\"100%\",id:\"WKK67oSzb\",layoutId:\"WKK67oSzb\",style:{width:\"100%\"},variant:\"oAe65IZnd\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rssdkj\",\"data-framer-name\":\"Hero section\",children:/*#__PURE__*/_jsx(\"header\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1isa7c1\",\"data-framer-name\":\"Hero Section \",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7kqnmx\",\"data-framer-name\":\"Content container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y50ay4\",\"data-framer-name\":\"Hero Top\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z1mk00\",\"data-framer-name\":\"Content & buttons\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w2zojg\",\"data-framer-name\":\"Section Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pv0jbc\",\"data-framer-name\":\"heading text container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y9F_ZK1jT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"TAKE CHARGE OF\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h6em90\",\"data-styles-preset\":\"Y8Dewl14B\",children:\"TAKE CHARGE OF\"})}),className:\"framer-1a2okt6\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Installer Collaboration\"})})},qKfmuAscl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Installer Collaboration\"})})},y9F_ZK1jT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",children:\"Installer Collaboration\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Installer Collaboration\"})}),className:\"framer-xc1bsu\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{width:\"694px\",y:(componentViewport?.y||0)+0+0+100+0+0+30+0+0+0+0+0+0+0+0+267},qKfmuAscl:{y:(componentViewport?.y||0)+0+0+100+0+0+30+0+0+0+0+0+0+0+0+267},y9F_ZK1jT:{y:(componentViewport?.y||0)+0+0+100+20+0+0+0+0+0+0+0+0+0+0+192}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,y:(componentViewport?.y||0)+0+0+100+10+0+0+0+0+0+0+0+0+0+0+267,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ojbfum-container\",nodeId:\"aWUEHTktj\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(FlippingWords,{AjLtZe2_Y:\"Instantly.\",gInxNjDFi:\"Effortlessly.\",height:\"100%\",id:\"aWUEHTktj\",JRH2wQKr6:\"Now. \",layoutId:\"aWUEHTktj\",style:{height:\"100%\"},variant:\"ggs9X99Rz\",width:\"100%\",zaCRG43gK:\"Successfully.\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-edw8ix\",\"data-framer-name\":\"Text + button\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yn6du6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Optimize installations, maintenance, and lead dispatch with our all-in-one platform.\"})}),className:\"framer-1jpyf5d\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{y:(componentViewport?.y||0)+0+0+100+0+0+30+0+0+0+0+0+0+0+0+347+0+0+0+190},qKfmuAscl:{y:(componentViewport?.y||0)+0+0+100+0+0+30+0+0+0+0+0+0+0+0+347+0+0+0+190},y9F_ZK1jT:{y:(componentViewport?.y||0)+0+0+100+20+0+0+0+0+0+0+0+0+0+0+272+0+0+0+190}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+0+100+10+0+0+0+0+0+0+0+0+0+0+347+0+0+0+190,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19eo79y-container\",id:elementId,nodeId:\"Rua3pIvNt\",ref:ref1,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{Ksxs8VRHP:resolvedLinks[1]},qKfmuAscl:{Ksxs8VRHP:resolvedLinks[2]},y9F_ZK1jT:{Ksxs8VRHP:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{EcvBm7eDp:\"GET IN TOUCH\",height:\"100%\",id:\"Rua3pIvNt\",kDRKTcpDG:\"chevron-right\",Ksxs8VRHP:resolvedLinks[0],layoutId:\"Rua3pIvNt\",NWWstEagL:true,variant:\"LrRkBsvJR\",width:\"100%\"})})})})})})]})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gw1ck4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18n6rcw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+0+30+0+0+615+0+-52),pixelHeight:1326,pixelWidth:2400,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/EMWIKmQAtdEnddd7x9jADWVn1jU.webp\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+0+30+0+0+615+401+-13),pixelHeight:1326,pixelWidth:2400,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/EMWIKmQAtdEnddd7x9jADWVn1jU.webp\"}},y9F_ZK1jT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+20+0+0+0+0+540+232+111),pixelHeight:1326,pixelWidth:2400,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/EMWIKmQAtdEnddd7x9jADWVn1jU.webp\"},style:{transformPerspective:2800}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+10+0+0+0+0+615+401+-377),pixelHeight:1326,pixelWidth:2400,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/EMWIKmQAtdEnddd7x9jADWVn1jU.webp\"},className:\"framer-zdevyc\",style:{rotate:-8,rotateX:10,rotateY:10,skewX:14,transformPerspective:2800}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mwc11c\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+0+30+0+0+615+0+-301),pixelHeight:1846,pixelWidth:3341,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/ONGSCmjNb1SizPBedzAxgmFByvg.webp\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+0+30+0+0+615+401+-283),pixelHeight:1846,pixelWidth:3341,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/ONGSCmjNb1SizPBedzAxgmFByvg.webp\"}},y9F_ZK1jT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+20+0+0+0+0+540+232+217),pixelHeight:1846,pixelWidth:3341,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/ONGSCmjNb1SizPBedzAxgmFByvg.webp\"},style:{transformPerspective:2800}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+10+0+0+0+0+615+401+-265),pixelHeight:1846,pixelWidth:3341,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/ONGSCmjNb1SizPBedzAxgmFByvg.webp\"},className:\"framer-etaf0d\",style:{rotate:-7,rotateX:10,rotateY:10,skewX:17,transformPerspective:2800}})})})]})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j14onu\",\"data-framer-name\":\"Trusted by brands\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1lp1cpt\",\"data-styles-preset\":\"m7bvF07Hd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, rgb(112, 112, 112))\"},children:[\"Powering \",/*#__PURE__*/_jsx(\"strong\",{children:\"industry leaders\"}),\" working with installers\"]})}),className:\"framer-tg6hyj\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tmy11i\",\"data-framer-name\":\"Brand area\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKfmuAscl:{y:(componentViewport?.y||0)+0+1168+40+203+0},y9F_ZK1jT:{y:(componentViewport?.y||0)+0+1168+40+203+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.8)`,y:(componentViewport?.y||0)+0+1168+40+198+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fkik03-container\",nodeId:\"I67Pd2Zki\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandTicker,{height:\"100%\",id:\"I67Pd2Zki\",layoutId:\"I67Pd2Zki\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-19mse9o\",\"data-framer-name\":\"Feature Section 01\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c5mke1\",\"data-framer-name\":\"Video frame\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yvaa5f-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"M7YzOPOdV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"M7YzOPOdV\",isMixedBorderRadius:false,layoutId:\"M7YzOPOdV\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/1054129242?share=copy\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18dp9zo\",\"data-framer-name\":\"Feature content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y9F_ZK1jT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Installer \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"explained\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Installer \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"explained\"})]})}),className:\"framer-1nmrrlp\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c1e4yr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w4c925\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y9F_ZK1jT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, rgb(95, 95, 105))\"},children:\"Transform how you collaborate with installers. Tailor your workflows, connect with new partners, and deliver a seamless customer journey from start to finish.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, rgb(95, 95, 105))\"},children:\"Transform how you collaborate with installers. Tailor your workflows, connect with new partners, and deliver a seamless customer journey from start to finish.\"})}),className:\"framer-f5bvm9\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/f9c84963-f1b0-4210-9e59-f7d59643a9a5/submit\",className:\"framer-2le1o6\",nodeId:\"ItS7xTRKk\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-covnw8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Sign up for a demo\"})}),className:\"framer-10zmnhl\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wznko7\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{y:(componentViewport?.y||0)+0+1470+50+633+0+107+0+0+0+41.6+20+34.4+0},qKfmuAscl:{y:(componentViewport?.y||0)+0+1475+35+700+0+107+0+0+0+41.6+20+34.4+0},y9F_ZK1jT:{y:(componentViewport?.y||0)+0+1475+25+457+0+102+0+0+0+49.6+20+34.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+1470+100+700+0+99+0+0+0+41.6+20+34.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19cth9t-container\",nodeId:\"o2vYrox2o\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{Ksxs8VRHP:resolvedLinks1[1]},qKfmuAscl:{Ksxs8VRHP:resolvedLinks1[2]},y9F_ZK1jT:{Ksxs8VRHP:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Button,{EcvBm7eDp:\"Get started\",height:\"100%\",id:\"o2vYrox2o\",kDRKTcpDG:\"chevron-right\",Ksxs8VRHP:resolvedLinks1[0],layoutId:\"o2vYrox2o\",NWWstEagL:true,variant:\"LrRkBsvJR\",width:\"100%\"})})})})})})})]})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19jkeb0\",\"data-framer-name\":\"Templates\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-625ghs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lbphpj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14sxlct\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Installer collaboration\",/*#__PURE__*/_jsx(\"br\",{}),\"is broken\"]})})},qKfmuAscl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Installer collaboration\",/*#__PURE__*/_jsx(\"br\",{}),\"is broken\"]})})},y9F_ZK1jT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Installer collaboration\",/*#__PURE__*/_jsx(\"br\",{}),\"is broken\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"right\"},children:[\"Installer collaboration\",/*#__PURE__*/_jsx(\"br\",{}),\"is broken\"]})}),className:\"framer-1u3ywyq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"A tangled web of inefficiencies \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"costing you time and money\"})]})})},qKfmuAscl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"A tangled web of inefficiencies \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"costing you time and money\"})]})})},y9F_ZK1jT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"A tangled web of inefficiencies \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"costing you time and money\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"A tangled web of inefficiencies \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"costing you time and money\"})]})}),className:\"framer-ozkl7e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2473+110+0+0+730-654),pixelHeight:1018,pixelWidth:1235,positionX:\"center\",positionY:\"center\",sizes:\"807px\",src:\"https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png\",srcSet:\"https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png 1235w\"},style:{rotate:-6}},qKfmuAscl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2520+0+0+0+130.6-49),pixelHeight:1018,pixelWidth:1235,positionX:\"center\",positionY:\"center\",sizes:\"698px\",src:\"https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png\",srcSet:\"https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png 1235w\"},style:{rotate:12}},y9F_ZK1jT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2260+60+0+0+0+0+150.6),pixelHeight:1018,pixelWidth:1235,positionX:\"center\",positionY:\"center\",sizes:\"582px\",src:\"https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png\",srcSet:\"https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png 1235w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2532+110+0+0+-110),pixelHeight:1018,pixelWidth:1235,positionX:\"center\",positionY:\"center\",sizes:\"807px\",src:\"https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png\",srcSet:\"https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pmd9AN2QXQHcm1Sc1K8C6JOjzw.png 1235w\"},className:\"framer-rr1sub\",\"data-framer-name\":\"Image\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fbtvdi\",\"data-framer-name\":\"Templates\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17mju7a\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ylmnza\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kq2f0k\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",children:\"Let's fix it\"})}),className:\"framer-hl7vm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"We put you back in the driver's seat. Manage all your installers and workflows with ease\"})}),className:\"framer-17x0w3l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14k1w60\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3313+47+292.7+0+0+160.6+74),pixelHeight:823,pixelWidth:1693,positionX:\"center\",positionY:\"center\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/p2VYistYHIM29cXJAXSmSiqLA.png\",srcSet:\"https://framerusercontent.com/images/p2VYistYHIM29cXJAXSmSiqLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/p2VYistYHIM29cXJAXSmSiqLA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/p2VYistYHIM29cXJAXSmSiqLA.png 1693w\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3335+80+0+0+0+160.6+0-562),pixelHeight:408,pixelWidth:448,src:\"https://framerusercontent.com/images/YO9rbmVMlJf12h1bR3ocVYUC0s.png\"}},y9F_ZK1jT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3260+60+0+0+0+0+160.6+82.5),pixelHeight:408,pixelWidth:448,src:\"https://framerusercontent.com/images/YO9rbmVMlJf12h1bR3ocVYUC0s.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3267+47+0+0+0+160.6+0),pixelHeight:823,pixelWidth:1693,sizes:\"1200px\",src:\"https://framerusercontent.com/images/p2VYistYHIM29cXJAXSmSiqLA.png\",srcSet:\"https://framerusercontent.com/images/p2VYistYHIM29cXJAXSmSiqLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/p2VYistYHIM29cXJAXSmSiqLA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/p2VYistYHIM29cXJAXSmSiqLA.png 1693w\"},className:\"framer-qrwfey\",\"data-framer-name\":\"Image\"})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-o4gziz\",\"data-framer-name\":\"Feature Section 01\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ielvvl\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ismen8\",\"data-framer-name\":\"Feature content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yorfv6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hutdpa\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"The solution\"})}),className:\"framer-14dnrmy\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Where platform \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"serves true impact \"})]})}),className:\"framer-1q4wr7j\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-color\":\"var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, rgb(95, 95, 105))\"},children:\"You bring the vision\u2014we provide the platform. With every aspect and feature covered, our infrastructure is the foundation to start, manage, and grow your installer collaboration\"})}),className:\"framer-1bjyrn8\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-104lkp8\",\"data-framer-name\":\"Tab\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tar0wd\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{width:\"932px\",y:(componentViewport?.y||0)+0+4106+50+285+0+0},qKfmuAscl:{y:(componentViewport?.y||0)+0+3655.6+10+245+0+0},y9F_ZK1jT:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1320px), 1px)`,y:(componentViewport?.y||0)+0+3480.6+25+245+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:895,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1320px), 1px)`,y:(componentViewport?.y||0)+0+3474.6+0+285+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q3k33i-container\",nodeId:\"rs4lM3OYO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{variant:\"QVuNnnVyO\"},qKfmuAscl:{variant:\"laTlbJqYL\"},y9F_ZK1jT:{variant:\"ZK0oc8LHe\"}},children:/*#__PURE__*/_jsx(Tab,{height:\"100%\",id:\"rs4lM3OYO\",kzMN15MDe:\"Order Dashboard\",layoutId:\"rs4lM3OYO\",style:{width:\"100%\"},variant:\"gUoAGuerm\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oh30uf\",\"data-framer-name\":\"Top 3 Value Props\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8n0j4d\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7uf7ld\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"TOP VALUE PROPS\"})}),className:\"framer-1qntype\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1enz01k\",\"data-framer-name\":\"Heading and paragraph\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zxdrrc\",\"data-framer-name\":\"Section Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1rvssff\",\"data-styles-preset\":\"Vo1sNe3uA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(51, 51, 51))\"},children:\"For everyone \"}),\"from fast-growing companies to enterprises\"]})})},y9F_ZK1jT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1rvssff\",\"data-styles-preset\":\"Vo1sNe3uA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(51, 51, 51))\"},children:\"For everyone \"}),\"from fast-growing companies to enterprises\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(51, 51, 51))\"},children:\"For everyone \"}),\"from fast-growing companies to enterprises\"]})}),className:\"framer-twfbaa\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xdwze hidden-uqau7o hidden-1e91bvc hidden-13m43dp\",\"data-framer-name\":\"Section Title\"})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{y:(componentViewport?.y||0)+0+5386+60+0+0+120},qKfmuAscl:{y:(componentViewport?.y||0)+0+4845.6+60+0+0+139.4},y9F_ZK1jT:{y:(componentViewport?.y||0)+0+4675.6+60+0+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+4654.6+60+0+0+139.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-177dkt3-container\",nodeId:\"qyyrERmIN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{Ksxs8VRHP:resolvedLinks2[1]},qKfmuAscl:{Ksxs8VRHP:resolvedLinks2[2]},y9F_ZK1jT:{Ksxs8VRHP:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Button,{EcvBm7eDp:\"LEARN MORE\",height:\"100%\",id:\"qyyrERmIN\",kDRKTcpDG:\"chevron-right\",Ksxs8VRHP:resolvedLinks2[0],layoutId:\"qyyrERmIN\",NWWstEagL:true,variant:\"LrRkBsvJR\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q2auxt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jisq5x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SyC_Ra9Nl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"columns\"}},qKfmuAscl:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.39)\",arrowPadding:16,arrowRadius:40,arrowSize:58,showMouseControls:true},progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"}},y9F_ZK1jT:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.53)\",arrowPadding:31,arrowRadius:40,arrowSize:40,showMouseControls:true},progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:40},gap:10,height:\"100%\",id:\"SyC_Ra9Nl\",layoutId:\"SyC_Ra9Nl\",padding:10,paddingBottom:80,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:20,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:4,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qhvx5y\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d7uc48\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sbm7tb\",\"data-framer-name\":\"Chart data_54dp_000000_FILL0_wght400_GRAD0_opsz48\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" viewBox=\"0 -960 960 960\" width=\"48\"><path d=\"m296-334 122-122 80 80 152-151v77h60v-180H530v60h77L498-461l-80-80-164 165 42 42ZM180-120q-24 0-42-18t-18-42v-600q0-24 18-42t42-18h600q24 0 42 18t18 42v600q0 24-18 42t-42 18H180Zm0-60h600v-600H180v600Zm0-600v600-600Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u35qcz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\"},children:[\"Unlock \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\" \"}),\"scalability\"]})}),className:\"framer-ec6rt4\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eayshe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(10, 194, 47)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(0, 227, 106) 0%, rgb(10, 194, 96) 100%)\"},children:\"90%\"})})}),className:\"framer-1tllbc2\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-35559g\",\"data-styles-preset\":\"Uc8U6QkVc\",children:\"in reduced OPEX managing installers delivering jobs on your behalf\"})}),className:\"framer-uxhth\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2bwoh9\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3t461v\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s6uc09\",\"data-framer-name\":\"Finance mode_54dp_000000_FILL0_wght400_GRAD0_opsz48\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" viewBox=\"0 -960 960 960\" width=\"48\"><path d=\"M318-420v-295h90v295l-45-45-45 45Zm194 91v-551h90v461l-90 90ZM124-229v-320h90v230l-90 90Zm-4 111 246-246 149 132 262-262h-88v-60h191v190h-60v-88L517-149 368-280 206-118h-86Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zuivyf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\"},children:\"Drive revenue growth\"})}),className:\"framer-3tujw4\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bzsp4a\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(10, 194, 47)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(0, 227, 106) 0%, rgb(10, 194, 96) 100%)\"},children:\"3X\"})})}),className:\"framer-llyevl\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-35559g\",\"data-styles-preset\":\"Uc8U6QkVc\",children:\"by unlocking new commercial models, higher conversions, and increased volumes.\"})}),className:\"framer-1mcbv6n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l8iyx2\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10iahuv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1p22c6n\",\"data-framer-name\":\"Loyalty 54dp_000000_FILL0_wght400_GRAD0_opsz48\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" viewBox=\"0 -960 960 960\" width=\"48\"><path d=\"m523.5-263 139.54-140Q674-414 679-427.4q5-13.41 5-28.6 0-31.93-22.54-54.46Q638.93-533 607-533q-20.36 0-40.18 13T523-478q-24-29-43.29-42T440-533q-31.93 0-54.46 22.54Q363-487.93 363-456q0 15.19 5 28.6 5 13.4 15.96 24.4L523.5-263ZM863-404 557-97q-9 8.5-20.25 12.75T514.25-80Q503-80 492-84.5T472-97L98-472q-8-8-13-18.96-5-10.95-5-23.04v-306q0-24.75 17.63-42.38Q115.25-880 140-880h307q12.07 0 23.39 4.87Q481.7-870.25 490-862l373 373q9.39 9 13.7 20.25 4.3 11.25 4.3 22.5t-4.5 22.75Q872-412 863-404ZM516-138l306-307-375-375H140v304l376 378ZM245-664q21 0 36.5-15.5T297-716q0-21-15.5-36.5T245-768q-21 0-36.5 15.5T193-716q0 21 15.5 36.5T245-664Zm236 185Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rga73z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\"},children:\"Create loyal customers\"})}),className:\"framer-jwl2bu\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c3wgxe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(10, 194, 47)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(0, 227, 106) 0%, rgb(10, 194, 96) 100%)\"},children:\"5X\"})})}),className:\"framer-iut9r4\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-35559g\",\"data-styles-preset\":\"Uc8U6QkVc\",children:\"in increased customer satisfaction having full visibility in the customer journey\"})}),className:\"framer-1ss2dq1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5914),pixelHeight:1222,pixelWidth:2367,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png\",srcSet:\"https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=512 512w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png 2367w\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5392),pixelHeight:1222,pixelWidth:2367,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png\",srcSet:\"https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=512 512w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png 2367w\"}},y9F_ZK1jT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5203.6),pixelHeight:1222,pixelWidth:2367,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png\",srcSet:\"https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=512 512w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png 2367w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5202),pixelHeight:1222,pixelWidth:2367,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png\",srcSet:\"https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=512 512w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/w9koeAFdFnyZhe7xSmNAjBdezI.png 2367w\"},className:\"framer-615x4z\",children:/*#__PURE__*/_jsx(\"header\",{className:\"framer-1gpvdut\",\"data-framer-name\":\"Header Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-clxi4b\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o4tydx\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5914+0+0+323.2+30+0),pixelHeight:150,pixelWidth:157,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bhD2CTIfDoNFPjIxMeVH2Ii3Tt4.svg\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5392+0+0+332.9+30+0),pixelHeight:150,pixelWidth:157,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bhD2CTIfDoNFPjIxMeVH2Ii3Tt4.svg\"}},y9F_ZK1jT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5203.6+0+125+60+30+0),pixelHeight:150,pixelWidth:157,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bhD2CTIfDoNFPjIxMeVH2Ii3Tt4.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5202+0+0+383.2+30+0),pixelHeight:150,pixelWidth:157,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bhD2CTIfDoNFPjIxMeVH2Ii3Tt4.svg\"},className:\"framer-1wrftba\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ve8wi8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKfmuAscl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1rvssff\",\"data-styles-preset\":\"Vo1sNe3uA\",children:[\"Install anything. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"Globally.\"})]})})},y9F_ZK1jT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1rvssff\",\"data-styles-preset\":\"Vo1sNe3uA\",children:[\"Install anything. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"Globally.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",children:[\"Install anything. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"Globally.\"})]})}),className:\"framer-1kvv9ix\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lp1cpt\",\"data-styles-preset\":\"m7bvF07Hd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Instantly collaborate with top-tier partners, saving time, cost, and effort\u2014whether you're starting fresh or optimizing your existing installer network\"})}),className:\"framer-xucqyf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{y:(componentViewport?.y||0)+0+5914+0+0+323.2+30+246.6},qKfmuAscl:{y:(componentViewport?.y||0)+0+5392+0+0+332.9+30+227.2},y9F_ZK1jT:{y:(componentViewport?.y||0)+0+5203.6+0+125+60+30+349.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+5202+0+0+383.2+30+246.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b0rgdl-container\",nodeId:\"MsdeNxqjw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{Ksxs8VRHP:resolvedLinks3[1]},qKfmuAscl:{Ksxs8VRHP:resolvedLinks3[2]},y9F_ZK1jT:{Ksxs8VRHP:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(Button,{EcvBm7eDp:\"LEARN MORE\",height:\"100%\",id:\"MsdeNxqjw\",kDRKTcpDG:\"chevron-right\",Ksxs8VRHP:resolvedLinks3[0],layoutId:\"MsdeNxqjw\",NWWstEagL:true,variant:\"LrRkBsvJR\",width:\"100%\"})})})})})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{\"data-framer-name\":\"Tablet\",background:{alt:\"Background Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6914),pixelHeight:2001,pixelWidth:3e3,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mY3PakCPPxGaXr2aHNM4gup5JuA.webp\",srcSet:\"https://framerusercontent.com/images/mY3PakCPPxGaXr2aHNM4gup5JuA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/mY3PakCPPxGaXr2aHNM4gup5JuA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/mY3PakCPPxGaXr2aHNM4gup5JuA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/mY3PakCPPxGaXr2aHNM4gup5JuA.webp 3000w\"}},qKfmuAscl:{\"data-framer-name\":\"Tablet\",background:{alt:\"Background Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6392),pixelHeight:1334,pixelWidth:1065,positionX:\"center\",positionY:\"top\",sizes:\"768px\",src:\"https://framerusercontent.com/images/5uFgDGB5v9NZwkD7W9wGRaisBcE.webp\",srcSet:\"https://framerusercontent.com/images/5uFgDGB5v9NZwkD7W9wGRaisBcE.webp?scale-down-to=1024 817w,https://framerusercontent.com/images/5uFgDGB5v9NZwkD7W9wGRaisBcE.webp 1065w\"}},y9F_ZK1jT:{\"data-framer-name\":\"Phone\",background:{alt:\"Background Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6453.6),pixelHeight:2002,pixelWidth:903,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/dGUkQ1YLjvDiRG7e1sAymKgxZVA.webp\",srcSet:\"https://framerusercontent.com/images/dGUkQ1YLjvDiRG7e1sAymKgxZVA.webp 903w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"Background Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6322),pixelHeight:2001,pixelWidth:3e3,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mY3PakCPPxGaXr2aHNM4gup5JuA.webp\",srcSet:\"https://framerusercontent.com/images/mY3PakCPPxGaXr2aHNM4gup5JuA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/mY3PakCPPxGaXr2aHNM4gup5JuA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/mY3PakCPPxGaXr2aHNM4gup5JuA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/mY3PakCPPxGaXr2aHNM4gup5JuA.webp 3000w\"},className:\"framer-1yo2lsk\",\"data-framer-name\":\"Numbers section phone\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vu00w\",\"data-framer-name\":\"Overlay\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13e13u8 hidden-13m43dp\",\"data-border\":true,\"data-framer-name\":\"Graphic\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gkxshg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mrbcpw\",\"data-framer-name\":\"Counter Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"Access the best\"})}),className:\"framer-afam0f\",\"data-framer-name\":\"50%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o5j8b9\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"lnstaller tiers to match requirements\"})}),className:\"framer-lk5cfs\",\"data-framer-name\":\"Operational Costs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mi9pwu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13rib1\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"Improve your installer collaboration with access to data-driven installer tiers\"})}),className:\"framer-184lpr3\",\"data-framer-name\":\"Efficient financial management with we can cut operational costs by 50%.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKfmuAscl:{height:321,width:\"373px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fzhdqw-container hidden-72rtr7 hidden-uqau7o\",nodeId:\"Jy4HIm4Q2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardJumpTablet,{bbO3AO60M:true,height:\"100%\",id:\"Jy4HIm4Q2\",layoutId:\"Jy4HIm4Q2\",style:{height:\"100%\",width:\"100%\"},variant:\"BxDPcDkcm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x0ehhd\",children:isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:412,width:\"516px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h2jjne-container hidden-1e91bvc\",nodeId:\"hp_vJggOP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardJump,{bbO3AO60M:true,height:\"100%\",id:\"hp_vJggOP\",layoutId:\"hp_vJggOP\",style:{height:\"100%\",width:\"100%\"},variant:\"nzq4JUD4q\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-tc1ye4\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-110e3hr\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wwrubc\",\"data-framer-name\":\"Counter LIst\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eool7b\",\"data-framer-name\":\"Counter Card 5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"9.4/10 \"})}),className:\"framer-a1568q\",\"data-framer-name\":\"50%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j38sio\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"Customer satisfaction score\"})}),className:\"framer-18cweqc\",\"data-framer-name\":\"Operational Costs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tbd1sj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hev1y2\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"Exceptional customer satisfaction driven by seamless installer collaboration and efficient operations\"})}),className:\"framer-1iiaykm\",\"data-framer-name\":\"Efficient financial management with we can cut operational costs by 50%.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7r5e1\",\"data-framer-name\":\"Counter Card 4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"1M+\"})}),className:\"framer-1x04u6g\",\"data-framer-name\":\"50%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dzpnhw\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"Jobs unlocked\"})}),className:\"framer-1vq8vlq\",\"data-framer-name\":\"Operational Costs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i69oxu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1abszde\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"Proven platform scalability, efficient job dispatch, and optimized resource allocation\"})}),className:\"framer-10tuez4\",\"data-framer-name\":\"Efficient financial management with we can cut operational costs by 50%.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h2ypy6\",\"data-framer-name\":\"Counter Card 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"~75%\"})}),className:\"framer-uq2354\",\"data-framer-name\":\"50%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qwsrc3\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"Reduce lead time for jobs\"})}),className:\"framer-1e98tyo\",\"data-framer-name\":\"Operational Costs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u5x86q\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8x6tfx\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"Dramatically reduce lead times, accelerating project completion and boosting overall efficiency\"})}),className:\"framer-ijpny9\",\"data-framer-name\":\"Efficient financial management with we can cut operational costs by 50%.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m76x51\",\"data-framer-name\":\"Counter Card 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"~50%\"})}),className:\"framer-151np21\",\"data-framer-name\":\"50%\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aq8nci\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"less errors on jobs\"})}),className:\"framer-txp42u\",\"data-framer-name\":\"Operational Costs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-110rdyl\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4sktqz\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-54c93f86-add2-4db9-9090-f2d27136f826, rgb(255, 255, 255))\"},children:\"Enhanced accuracy minimizes errors and maximizes cost savings through tailored workflows\"})}),className:\"framer-1ilfxpy\",\"data-framer-name\":\"Efficient financial management with we can cut operational costs by 50%.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6viv3\",\"data-framer-name\":\"Testimonials Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t32mq4\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x1owc4\",\"data-framer-name\":\"row\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wbd836\",\"data-framer-name\":\"testimonial-content\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rnasbf\",\"data-framer-name\":\"section-title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKfmuAscl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rvssff\",\"data-styles-preset\":\"Vo1sNe3uA\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hear what our customers say\"})})},y9F_ZK1jT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-usph7o\",\"data-styles-preset\":\"aYrCX43rl\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hear what our customers say\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hear what our customers say\"})}),className:\"framer-8omzh2\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(235, 235, 235)\"},children:\"Our customers appreciate innovation that simplifies processes and enhances efficiency. See what they have to say.\"})}),className:\"framer-ugem9m\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ux0wv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j9mewz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SReAFfbcD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y9F_ZK1jT:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:56,showMouseControls:true},dragControl:true,fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false}}},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:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:14,height:\"100%\",id:\"SReAFfbcD\",intervalControl:2,itemAmount:1,layoutId:\"SReAFfbcD\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vLQsFrTbQ\"},motionChild:true,nodeId:\"aj07vKXlY\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:1200,sizes:\"1200px\",src:\"https://framerusercontent.com/images/4TQScIKxRkQIHOWkGxjUD3HtLh4.webp\",srcSet:\"https://framerusercontent.com/images/4TQScIKxRkQIHOWkGxjUD3HtLh4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4TQScIKxRkQIHOWkGxjUD3HtLh4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4TQScIKxRkQIHOWkGxjUD3HtLh4.webp 1200w\"},className:\"framer-nd7c4c framer-lux5qc\",\"data-framer-name\":\"testimonial-card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vd76s5\",\"data-framer-name\":\"contents\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1its7r2\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rsuatg\",\"data-framer-name\":\"Logo stack\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"185px\",src:\"https://framerusercontent.com/images/keKQSfs88zmGVVQtjDkHFS0varY.png\",srcSet:\"https://framerusercontent.com/images/keKQSfs88zmGVVQtjDkHFS0varY.png?scale-down-to=512 512w,https://framerusercontent.com/images/keKQSfs88zmGVVQtjDkHFS0varY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/keKQSfs88zmGVVQtjDkHFS0varY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/keKQSfs88zmGVVQtjDkHFS0varY.png 3247w\"},className:\"framer-1xqpuk2\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10sfaxp\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yn052o\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"Reshaping the digital customer journey\"'})}),className:\"framer-i00f5h\",\"data-framer-name\":\"TM-paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h9xsz\",\"data-styles-preset\":\"mHTgjaKAx\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Stefan Dekker, Easee\"})}),className:\"framer-lk5ptq\",\"data-framer-name\":\"Client-name\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eOAsCT10Y\"},motionChild:true,nodeId:\"DLomYZ0Xe\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:1200,sizes:\"1200px\",src:\"https://framerusercontent.com/images/81kXOnVQDAdiBtN9RdUwVrQTY.png\",srcSet:\"https://framerusercontent.com/images/81kXOnVQDAdiBtN9RdUwVrQTY.png?scale-down-to=512 512w,https://framerusercontent.com/images/81kXOnVQDAdiBtN9RdUwVrQTY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/81kXOnVQDAdiBtN9RdUwVrQTY.png 1201w\"},className:\"framer-17fbbf8 framer-lux5qc\",\"data-framer-name\":\"testimonial-card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aq8uwj\",\"data-framer-name\":\"contents\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-572p3r\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17pf26l\",\"data-framer-name\":\"Logo stack\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AEIR5sL6jdl6YYWQSKmaB0yMWtE.svg\"},className:\"framer-1eevd8a\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ox8hm\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jbzwjm\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"Transforming the commercial model for OEM sales through distribution channels\"'})}),className:\"framer-1n77y2j\",\"data-framer-name\":\"TM-paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h9xsz\",\"data-styles-preset\":\"mHTgjaKAx\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Erik Stokkeland, Futurehome\"})}),className:\"framer-cpbr7l\",\"data-framer-name\":\"Client-name\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QYLL_8kQ3\"},motionChild:true,nodeId:\"gDjGJcu8j\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:1200,sizes:\"1200px\",src:\"https://framerusercontent.com/images/sq1o881M5zbYaS2OG1NFmoCxAZE.png\",srcSet:\"https://framerusercontent.com/images/sq1o881M5zbYaS2OG1NFmoCxAZE.png?scale-down-to=512 512w,https://framerusercontent.com/images/sq1o881M5zbYaS2OG1NFmoCxAZE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sq1o881M5zbYaS2OG1NFmoCxAZE.png 1200w\"},className:\"framer-10742ln framer-lux5qc\",\"data-framer-name\":\"testimonial-card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-161rt7z\",\"data-framer-name\":\"contents\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ijvvmf\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kcmkml\",\"data-framer-name\":\"Logo stack\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YCuyNo7muUulhezP2LwQqd6ap8.svg\"},className:\"framer-1mbuw9i\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b4599r\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sikd58\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"The industry\\'s most data-driven and efficent ops for maintenance jobs\"'})}),className:\"framer-lqguk4\",\"data-framer-name\":\"TM-paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h9xsz\",\"data-styles-preset\":\"mHTgjaKAx\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Mari Moxnes Karlsen, Aneo Mobility\"})}),className:\"framer-1hl64k9\",\"data-framer-name\":\"Client-name\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})})})],startFrom:1,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2o4r06\",\"data-border\":true,\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c09cg8\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gflq83\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(51, 51, 51))\"},children:\"Drill down \"}),\"on the details\"]})}),className:\"framer-19ckcg\",\"data-framer-name\":\"Get In Touch\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kinec\",\"data-styles-preset\":\"sbyheXbBq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, rgb(112, 112, 112))\"},children:\"Get expert knowledge about how to redefine installer collaboration from our blog\"})}),className:\"framer-lvttqu\",\"data-framer-name\":\"FramerBite gives you the blocks needed to create a truly professional website for your SaaS is a long established fact that a reader.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nwpz70\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"sGImIHPry\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"sGImIHPry\",direction:\"desc\",name:\"ANOEAKCQK\",type:\"Identifier\"}],select:[{collection:\"sGImIHPry\",name:\"CE3Ccv5Q4\",type:\"Identifier\"},{collection:\"sGImIHPry\",name:\"rQcV7vlpH\",type:\"Identifier\"},{collection:\"sGImIHPry\",name:\"ANOEAKCQK\",type:\"Identifier\"},{collection:\"sGImIHPry\",name:\"bjAEz1hEH\",type:\"Identifier\"},{collection:\"sGImIHPry\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({ANOEAKCQK:ANOEAKCQKsGImIHPry,bjAEz1hEH:bjAEz1hEHsGImIHPry,CE3Ccv5Q4:CE3Ccv5Q4sGImIHPry,id:idsGImIHPry,rQcV7vlpH:rQcV7vlpHsGImIHPry},index)=>{CE3Ccv5Q4sGImIHPry??=\"\";ANOEAKCQKsGImIHPry??=\"\";bjAEz1hEHsGImIHPry??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`sGImIHPry-${idsGImIHPry}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{CE3Ccv5Q4:CE3Ccv5Q4sGImIHPry},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{CE3Ccv5Q4:CE3Ccv5Q4sGImIHPry},webPageId:\"M3V8u9rfQ\"},implicitPathVariables:undefined},{href:{pathVariables:{CE3Ccv5Q4:CE3Ccv5Q4sGImIHPry},webPageId:\"M3V8u9rfQ\"},implicitPathVariables:undefined},{href:{pathVariables:{CE3Ccv5Q4:CE3Ccv5Q4sGImIHPry},webPageId:\"M3V8u9rfQ\"},implicitPathVariables:undefined},{href:{pathVariables:{CE3Ccv5Q4:CE3Ccv5Q4sGImIHPry},webPageId:\"M3V8u9rfQ\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+8930+30+224+0+127+0},qKfmuAscl:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+8392+0+234+0+127+20},y9F_ZK1jT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+8355+0+0+40+176.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:515,width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px)`,y:(componentViewport?.y||0)+0+8572+0+254+0+127+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hhrtzu-container\",nodeId:\"ZLpePqLBS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{oyGqyLxOw:resolvedLinks4[1]},qKfmuAscl:{oyGqyLxOw:resolvedLinks4[2]},y9F_ZK1jT:{oyGqyLxOw:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(ArticleCard,{height:\"100%\",id:\"ZLpePqLBS\",jFFRxQr2X:\"News\",Kf4YkwRS5:bjAEz1hEHsGImIHPry,layoutId:\"ZLpePqLBS\",Og2LutR4F:toResponsiveImage(rQcV7vlpHsGImIHPry),oyGqyLxOw:resolvedLinks4[0],R9tfgJlnZ:ANOEAKCQKsGImIHPry,style:{width:\"100%\"},width:\"100%\"})})})})})})})},idsGImIHPry);})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{\"data-framer-name\":\"Tablet\"},qKfmuAscl:{\"data-framer-name\":\"Tablet\"},y9F_ZK1jT:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-a1p17b\",\"data-framer-name\":\"Integration 20\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4a3wmh\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xhfnor\",\"data-framer-name\":\"Row\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h8i2mi\",\"data-framer-name\":\"Section-Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfjqtt\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1288qtq\",\"data-styles-preset\":\"Ijk4Qs6Tg\",children:\"SOME OF OUR INTEGRATIONS\"})}),className:\"framer-1hr9s5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Let your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"data flow\"})]})}),className:\"framer-8113mf\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined},{href:{webPageId:\"f16laqsmb\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{y:(componentViewport?.y||0)+0+10080+359.5+0+0+0+0+264},qKfmuAscl:{y:(componentViewport?.y||0)+0+9542+284.5+0+0+0+0+264},y9F_ZK1jT:{y:(componentViewport?.y||0)+0+11760.6+394.5+0+0+0+0+214.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+9722+339.5+0+0+0+0+264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xz5i8p-container\",nodeId:\"Wxl8kn0_R\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{Ksxs8VRHP:resolvedLinks5[1]},qKfmuAscl:{Ksxs8VRHP:resolvedLinks5[2]},y9F_ZK1jT:{Ksxs8VRHP:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(Button,{EcvBm7eDp:\"LEARN MORE\",height:\"100%\",id:\"Wxl8kn0_R\",kDRKTcpDG:\"chevron-right\",Ksxs8VRHP:resolvedLinks5[0],layoutId:\"Wxl8kn0_R\",NWWstEagL:true,variant:\"LrRkBsvJR\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10080+359.5+0+311- -159),pixelHeight:2160,pixelWidth:3840,sizes:\"140px\",src:\"https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=512 512w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png 3840w\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9542+284.5+0+311- -146),pixelHeight:2160,pixelWidth:3840,sizes:\"140px\",src:\"https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=512 512w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png 3840w\"}},y9F_ZK1jT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11760.6+394.5+0+311- -39),pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=512 512w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png 3840w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9722+339.5+0+311- -170),pixelHeight:2160,pixelWidth:3840,sizes:\"140px\",src:\"https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=512 512w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/T8VmegiHMwEBgL1qsT5QbcOx2A.png 3840w\"},className:\"framer-u6q1po\",\"data-framer-name\":\"Brand-Logo\",drag:true,dragMomentum:true,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,whileTap:animation7})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10080+359.5+0+311- -94),pixelHeight:420,pixelWidth:1456,sizes:\"200px\",src:\"https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png 1456w\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9542+284.5+0+311- -180),pixelHeight:420,pixelWidth:1456,sizes:\"200px\",src:\"https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png 1456w\"}},y9F_ZK1jT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11760.6+394.5+0+311- -10),pixelHeight:420,pixelWidth:1456,positionX:\"center\",positionY:\"center\",sizes:\"151px\",src:\"https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png 1456w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9722+339.5+0+311- -137.5),pixelHeight:420,pixelWidth:1456,sizes:\"200px\",src:\"https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iRnvzaGrfFIvRfsXt0doKoidLiA.png 1456w\"},className:\"framer-1mdtt9v\",\"data-framer-name\":\"Brand-Logo\",drag:true,dragMomentum:true,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,whileTap:animation7})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10080+359.5+0+27),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/GoFcLxQSotYoNRIP6HB4nQliOEg.svg\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9542+284.5+0+50),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/GoFcLxQSotYoNRIP6HB4nQliOEg.svg\"}},y9F_ZK1jT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11760.6+394.5+0+-100),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/GoFcLxQSotYoNRIP6HB4nQliOEg.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9722+339.5+0+86),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/GoFcLxQSotYoNRIP6HB4nQliOEg.svg\"},className:\"framer-qo64ol\",\"data-framer-name\":\"Brand-Logo\",drag:true,dragMomentum:true,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,whileTap:animation7})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10080+359.5+0+311-436),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/vh08fh5AjUx2KTML4XxobWEn5r4.svg\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9542+284.5+0+311-361),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/vh08fh5AjUx2KTML4XxobWEn5r4.svg\"}},y9F_ZK1jT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11760.6+394.5+0+311-373),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/vh08fh5AjUx2KTML4XxobWEn5r4.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9722+339.5+0+311-346),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/vh08fh5AjUx2KTML4XxobWEn5r4.svg\"},className:\"framer-iqtar4\",\"data-framer-name\":\"Brand-Logo\",drag:true,dragMomentum:true,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,whileTap:animation7})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:216,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10080+359.5+0+311-497),pixelHeight:2160,pixelWidth:3840,sizes:\"140px\",src:\"https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=512 512w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png 3840w\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:216,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9542+284.5+0+311-511),pixelHeight:2160,pixelWidth:3840,sizes:\"140px\",src:\"https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=512 512w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png 3840w\"}},y9F_ZK1jT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:216,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11760.6+394.5+0+311-328),pixelHeight:2160,pixelWidth:3840,sizes:\"99px\",src:\"https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=512 512w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png 3840w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:216,intrinsicWidth:216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9722+339.5+0+311-465),pixelHeight:2160,pixelWidth:3840,sizes:\"140px\",src:\"https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=512 512w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/deH1rjHwpnnCIdghjxn7SZxrEc.png 3840w\"},className:\"framer-7nliu6\",\"data-framer-name\":\"Brand-Logo\",drag:true,dragMomentum:true,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,whileTap:animation7})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10080+359.5+0+311-32),pixelHeight:550,pixelWidth:1200,sizes:\"140px\",src:\"https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png 1200w\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9542+284.5+0+311-0),pixelHeight:550,pixelWidth:1200,sizes:\"140px\",src:\"https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png 1200w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9722+339.5+0+311- -48),pixelHeight:550,pixelWidth:1200,sizes:\"140px\",src:\"https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iSDvR8deC7zvwe7s8HiAL2l4HjQ.png 1200w\"},className:\"framer-ukrqir hidden-13m43dp\",\"data-framer-name\":\"Brand-Logo\",drag:true,dragMomentum:true,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,whileTap:animation7})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10080+359.5+0+311-187),pixelHeight:2160,pixelWidth:3840,sizes:\"80px\",src:\"https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=512 512w,https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png 3840w\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9542+284.5+0+311-221),pixelHeight:2160,pixelWidth:3840,sizes:\"80px\",src:\"https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=512 512w,https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png 3840w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9722+339.5+0+311-208),pixelHeight:2160,pixelWidth:3840,sizes:\"80px\",src:\"https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=512 512w,https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AwTZSuJel2pHHYHmUFE2vHsv2l4.png 3840w\"},className:\"framer-1jxixv2 hidden-13m43dp\",\"data-framer-name\":\"Brand-Logo\",drag:true,dragMomentum:true,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,whileTap:animation7})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10080+359.5+0+311-504),pixelHeight:2500,pixelWidth:2192,src:\"https://framerusercontent.com/images/jhdHQKz8nA2pnUVTCJ9a9QfqMuI.svg\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9542+284.5+0+311-478),pixelHeight:2500,pixelWidth:2192,src:\"https://framerusercontent.com/images/jhdHQKz8nA2pnUVTCJ9a9QfqMuI.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9722+339.5+0+311-510),pixelHeight:2500,pixelWidth:2192,src:\"https://framerusercontent.com/images/jhdHQKz8nA2pnUVTCJ9a9QfqMuI.svg\"},className:\"framer-ufqvts hidden-13m43dp\",\"data-framer-name\":\"Brand-Logo\",drag:true,dragMomentum:true,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,whileTap:animation7})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:232,intrinsicWidth:232,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10080+359.5+0+311-447),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/ViVs456j5Ug8XV0rXCboW5nsB0s.webp\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:232,intrinsicWidth:232,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9542+284.5+0+311-398),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/ViVs456j5Ug8XV0rXCboW5nsB0s.webp\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:232,intrinsicWidth:232,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9722+339.5+0+311-379),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/ViVs456j5Ug8XV0rXCboW5nsB0s.webp\"},className:\"framer-pdzq64 hidden-13m43dp\",\"data-framer-name\":\"Brand-Logo\",drag:true,dragMomentum:true,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,whileTap:animation7})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10080+359.5+0+311-127),pixelHeight:1750,pixelWidth:2500,sizes:\"140px\",src:\"https://framerusercontent.com/images/CaP8gD05K0yPEu6NuRXJSlEfuSw.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CaP8gD05K0yPEu6NuRXJSlEfuSw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/CaP8gD05K0yPEu6NuRXJSlEfuSw.svg 999w\"}},qKfmuAscl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9542+284.5+0+311-71.5),pixelHeight:1750,pixelWidth:2500,sizes:\"140px\",src:\"https://framerusercontent.com/images/CaP8gD05K0yPEu6NuRXJSlEfuSw.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CaP8gD05K0yPEu6NuRXJSlEfuSw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/CaP8gD05K0yPEu6NuRXJSlEfuSw.svg 999w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9722+339.5+0+311-28.5),pixelHeight:1750,pixelWidth:2500,sizes:\"140px\",src:\"https://framerusercontent.com/images/CaP8gD05K0yPEu6NuRXJSlEfuSw.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CaP8gD05K0yPEu6NuRXJSlEfuSw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/CaP8gD05K0yPEu6NuRXJSlEfuSw.svg 999w\"},className:\"framer-hi02t6 hidden-13m43dp\",\"data-framer-name\":\"Brand-Logo\",drag:true,dragMomentum:true,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,whileTap:animation7})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{\"data-framer-name\":\"Tablet\"},qKfmuAscl:{\"data-framer-name\":\"Tablet\"},y9F_ZK1jT:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19gcfu2\",\"data-framer-name\":\"Testimonial 65\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cef9k4\",\"data-framer-name\":\"Testimonials section\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Customers of the businesses \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, rgb(176, 176, 176))\"},children:\"using our platform.\"})]})}),className:\"framer-1wdyrli\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dbtejp\",\"data-framer-name\":\"Review List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+11230+80+0+0+127+0+0},qKfmuAscl:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+10542+80+0+0+127+0+0},y9F_ZK1jT:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 50px)`,y:(componentViewport?.y||0)+0+9106.6+30+0+0+107+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+10872+60+0+0+141+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o29fcl-container\",nodeId:\"EH4TgTosP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard2,{height:\"100%\",id:\"EH4TgTosP\",layoutId:\"EH4TgTosP\",ma6X3uIur:\"Good communication, precise and friendly.\",olfjqWKqZ:\"Easee Customer\",style:{width:\"100%\"},variant:\"SoRi7m2TY\",width:\"100%\",xCAUUpmtl:\"Great communication, friendly contractor, and excellent attention to detail. Even gave helpful maintenance tips\",Y0YcbWuaG:addImageAlt({src:\"https://framerusercontent.com/images/2cTMVmfU1pumpyrynfZcApKdnjo.png\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+11230+80+0+0+127+0+0},qKfmuAscl:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+10542+80+0+0+127+0+0},y9F_ZK1jT:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 50px)`,y:(componentViewport?.y||0)+0+9106.6+30+0+0+107+0+404}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+10872+60+0+0+141+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u1mq3s-container\",nodeId:\"tb4VcsQbo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard2,{height:\"100%\",id:\"tb4VcsQbo\",layoutId:\"tb4VcsQbo\",ma6X3uIur:\"Good customer service, quick responses when I had questions.\",olfjqWKqZ:\"Sungrow Customer\",style:{width:\"100%\"},variant:\"SoRi7m2TY\",width:\"100%\",xCAUUpmtl:\"Quick, clear, and thorough. Everything was done right, and they made maintenance easy to manage.\",Y0YcbWuaG:addImageAlt({src:\"https://framerusercontent.com/images/wGoMRjNnRKs9qAkU8VRtH8OFfBY.png\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+11230+80+0+0+127+0+404},qKfmuAscl:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+10542+80+0+0+127+0+404},y9F_ZK1jT:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 50px)`,y:(componentViewport?.y||0)+0+9106.6+30+0+0+107+0+808}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+10872+60+0+0+141+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g840v-container\",nodeId:\"SmSTWjb5S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard2,{height:\"100%\",id:\"SmSTWjb5S\",layoutId:\"SmSTWjb5S\",ma6X3uIur:\"A responsible installer who is meticulous and provides the customer with all the answers and information needed. A fantastic experience!\",olfjqWKqZ:\"Obs BYGG Montering Customer\",style:{width:\"100%\"},variant:\"SoRi7m2TY\",width:\"100%\",xCAUUpmtl:\"\",Y0YcbWuaG:addImageAlt({src:\"https://framerusercontent.com/images/ljvXQAxNswXeDTo9o3nFrUws.svg\",srcSet:\"https://framerusercontent.com/images/ljvXQAxNswXeDTo9o3nFrUws.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ljvXQAxNswXeDTo9o3nFrUws.svg 544w\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+11230+80+0+0+127+0+404},qKfmuAscl:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+10542+80+0+0+127+0+404},y9F_ZK1jT:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 50px)`,y:(componentViewport?.y||0)+0+9106.6+30+0+0+107+0+1212}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+10872+60+0+0+141+0+404,children:/*#__PURE__*/_jsx(Container,{className:\"framer-js68lr-container\",nodeId:\"g4IOrdUcX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard2,{height:\"100%\",id:\"g4IOrdUcX\",layoutId:\"g4IOrdUcX\",ma6X3uIur:\"Skilled installer who carried out the installation\",olfjqWKqZ:\"EL-PROFFEN\",style:{width:\"100%\"},variant:\"SoRi7m2TY\",width:\"100%\",xCAUUpmtl:\"Super easy to work with! Precise, efficient, and left everything in perfect shape.\",Y0YcbWuaG:addImageAlt({src:\"https://framerusercontent.com/images/2clmO1fwrjGLMdw24vvniVja8Gs.png\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+11230+80+0+0+127+0+808},qKfmuAscl:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+10542+80+0+0+127+0+808},y9F_ZK1jT:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 50px)`,y:(componentViewport?.y||0)+0+9106.6+30+0+0+107+0+1616}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+10872+60+0+0+141+0+404,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ay4fw5-container\",nodeId:\"DdQ9MjiSb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard2,{height:\"100%\",id:\"DdQ9MjiSb\",layoutId:\"DdQ9MjiSb\",ma6X3uIur:\"Highly Recommended!\",olfjqWKqZ:\"Aneo Customer\",style:{width:\"100%\"},variant:\"SoRi7m2TY\",width:\"100%\",xCAUUpmtl:\"They really care about their work. Communicative, detail-oriented, and great at explaining maintenance.\",Y0YcbWuaG:addImageAlt({src:\"https://framerusercontent.com/images/q6kZ9tfhnZi0eYIKEZA2N333sh4.png\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+11230+80+0+0+127+0+808},qKfmuAscl:{width:`max((${componentViewport?.width||\"100vw\"} - 84px) / 2, 50px)`,y:(componentViewport?.y||0)+0+10542+80+0+0+127+0+808},y9F_ZK1jT:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 50px)`,y:(componentViewport?.y||0)+0+9106.6+30+0+0+107+0+2020}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+10872+60+0+0+141+0+404,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nld429-container\",nodeId:\"JjKwcerxJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard2,{height:\"100%\",id:\"JjKwcerxJ\",layoutId:\"JjKwcerxJ\",ma6X3uIur:\"Friendly and helpful people! Everything went smoothly, and the result was great!\",olfjqWKqZ:\"Futurehome Customer\",style:{width:\"100%\"},variant:\"SoRi7m2TY\",width:\"100%\",xCAUUpmtl:\"Attention to detail, smooth process, and great customer service. Maintenance was well explained, too!\",Y0YcbWuaG:addImageAlt({src:\"https://framerusercontent.com/images/vWJHCpROiwfk56JD6vCaVkkxiU.png\"},\"\")})})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WcHYzP8ZT\"},implicitPathVariables:undefined},{href:{webPageId:\"WcHYzP8ZT\"},implicitPathVariables:undefined},{href:{webPageId:\"WcHYzP8ZT\"},implicitPathVariables:undefined},{href:{webPageId:\"WcHYzP8ZT\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{y:(componentViewport?.y||0)+0+11230+80+1355},qKfmuAscl:{y:(componentViewport?.y||0)+0+10542+80+1355},y9F_ZK1jT:{y:(componentViewport?.y||0)+0+9106.6+30+2547}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+10872+60+965,children:/*#__PURE__*/_jsx(Container,{className:\"framer-145z651-container\",nodeId:\"Q1wgA11HJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{Ksxs8VRHP:resolvedLinks6[1]},qKfmuAscl:{Ksxs8VRHP:resolvedLinks6[2]},y9F_ZK1jT:{Ksxs8VRHP:resolvedLinks6[3]}},children:/*#__PURE__*/_jsx(Button,{EcvBm7eDp:\"More reviews\",height:\"100%\",id:\"Q1wgA11HJ\",kDRKTcpDG:\"chevron-right\",Ksxs8VRHP:resolvedLinks6[0],layoutId:\"Q1wgA11HJ\",NWWstEagL:true,variant:\"LrRkBsvJR\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-edqk92\",\"data-framer-name\":\"Footer Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3f1fao\",\"data-framer-name\":\"FAQ Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19efimm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r773wq\",\"data-framer-name\":\"Section Title\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-j39pb7\",\"data-styles-preset\":\"LzAEXSRAY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8600bd4a-2601-4d0d-aeb5-81c2fa93656d, rgb(22, 21, 37))\"},children:\"Frequently Asked Questions\"})}),className:\"framer-gfvarf\",\"data-framer-name\":\"Trusted by 12,500+ happy users\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qoqjcc\",\"data-framer-name\":\"Faq\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1000px)`,y:(componentViewport?.y||0)+0+12792+0+0+45+0+117+0+0},qKfmuAscl:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 768px)`,y:(componentViewport?.y||0)+0+12104+0+0+35+0+117+0+0},y9F_ZK1jT:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 390px)`,y:(componentViewport?.y||0)+0+12910.6+0+0+25+0+112+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:930,width:\"1160px\",y:(componentViewport?.y||0)+0+12064+0+0+60+0+117+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2qlpg4-container\",nodeId:\"g84y92lEP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y9F_ZK1jT:{variant:\"MDvqQ39Dr\"}},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"g84y92lEP\",layoutId:\"g84y92lEP\",style:{width:\"100%\"},variant:\"Wz9Y19RgM\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2486xv\",\"data-framer-name\":\"Button Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5kkla3\",\"data-framer-name\":\"Button Text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1288qtq\",\"data-styles-preset\":\"Ijk4Qs6Tg\",style:{\"--framer-text-color\":\"var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, rgb(95, 95, 105))\"},children:\"Have more questions?\"})}),className:\"framer-w2nr3b\",\"data-framer-name\":\"Have more questions? Contact our support\",fonts:[\"Inter\"],id:elementId2,ref:ref3,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1288qtq\",\"data-styles-preset\":\"Ijk4Qs6Tg\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f16laqsmb\"},motionChild:true,nodeId:\"tobXdbnXd\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19spalq\",\"data-styles-preset\":\"yrsGIxqQ4\",children:\"Get in touch with us!\"})})})}),className:\"framer-10ed3rx\",\"data-framer-name\":\"Have more questions? Contact our support\",fonts:[\"Inter\"],id:elementId3,ref:ref4,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{y:(componentViewport?.y||0)+0+12792+0+1294.2},qKfmuAscl:{y:(componentViewport?.y||0)+0+12104+0+1264.2},y9F_ZK1jT:{y:(componentViewport?.y||0)+0+12910.6+0+1229.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:618,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+12064+0+1339.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bk7nm1-container\",nodeId:\"t1__i6T8H\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{variant:\"RB80MiyFo\"},qKfmuAscl:{variant:\"LdvJbfwEZ\"},y9F_ZK1jT:{variant:\"hmtcQV70l\"}},children:/*#__PURE__*/_jsx(Footer,{C5oBbe37R:\"rgb(230, 230, 230)\",height:\"100%\",id:\"t1__i6T8H\",layoutId:\"t1__i6T8H\",sErtOixge:\"0px 2px 5px 0px rgba(0,0,0,0.25)\",style:{width:\"100%\"},variant:\"LuDZy6SPL\",width:\"100%\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{y:(componentViewport?.y||0)+0+14704.2},qKfmuAscl:{y:(componentViewport?.y||0)+0+13986.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+14021.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zyh8nn-container hidden-13m43dp\",nodeId:\"Gh_ms7u9U\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_6C2gw4T:{variant:\"zumuBdIF9\"},qKfmuAscl:{variant:\"opIsMR3Pm\"}},children:/*#__PURE__*/_jsx(BottomSection,{height:\"100%\",id:\"Gh_ms7u9U\",layoutId:\"Gh_ms7u9U\",style:{height:\"100%\",width:\"100%\"},variant:\"YzQqvnFE2\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TknN4.framer-lux5qc, .framer-TknN4 .framer-lux5qc { display: block; }\",\".framer-TknN4.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-d624bab6-2e79-4b2b-942d-b7a193232c83, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-TknN4 .framer-1f3d0wy-container { flex: none; height: auto; left: 50%; position: fixed; top: 14px; transform: translateX(-50%); width: 96%; z-index: 4; }\",\".framer-TknN4 .framer-rssdkj { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, #e1e1e3 0%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1168px; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-TknN4 .framer-1isa7c1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 315px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-TknN4 .framer-7kqnmx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-TknN4 .framer-1y50ay4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 698px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-TknN4 .framer-z1mk00 { 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: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-TknN4 .framer-1w2zojg { 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: center; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-TknN4 .framer-1pv0jbc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: -1; }\",\".framer-TknN4 .framer-1a2okt6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1031px; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-xc1bsu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TknN4 .framer-ojbfum-container { flex: none; height: 70px; position: relative; width: auto; }\",\".framer-TknN4 .framer-edw8ix { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-TknN4 .framer-1yn6du6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 2px 0px 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-TknN4 .framer-1jpyf5d { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 408px; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-19eo79y-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-TknN4 .framer-gw1ck4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 802px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-TknN4 .framer-18n6rcw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 717px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 0; }\",\".framer-TknN4 .framer-zdevyc { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 754px; left: 30px; overflow: visible; position: absolute; top: calc(38.49372384937241% - 754px / 2); width: 1355px; z-index: 0; }\",\".framer-TknN4 .framer-1mwc11c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 474px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 0; }\",\".framer-TknN4 .framer-etaf0d { flex: none; height: 530px; left: calc(67.83333333333336% - 947px / 2); overflow: visible; position: absolute; top: calc(-29.535864978902932% - 530px / 2); width: 947px; z-index: 0; }\",\".framer-TknN4 .framer-j14onu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: visible; padding: 40px 24px 24px 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-TknN4 .framer-tg6hyj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-TknN4 .framer-tmy11i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-TknN4 .framer-fkik03-container { flex: none; height: auto; position: relative; width: 80%; z-index: 1; }\",\".framer-TknN4 .framer-19mse9o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-end; overflow: visible; padding: 100px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1c5mke1 { flex: none; height: 670px; max-width: 1200px; overflow: hidden; position: relative; width: 1161px; }\",\".framer-TknN4 .framer-yvaa5f-container { flex: none; height: 733px; position: absolute; right: -191px; top: -40px; width: 1433px; z-index: 0; }\",\".framer-TknN4 .framer-18dp9zo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1nmrrlp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 68%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-TknN4 .framer-1c1e4yr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; z-index: 1; }\",\".framer-TknN4 .framer-w4c925 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-f5bvm9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 56%; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-2le1o6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 50%; }\",\".framer-TknN4 .framer-covnw8, .framer-TknN4 .framer-wznko7, .framer-TknN4 .framer-615x4z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-10zmnhl, .framer-TknN4 .framer-lk5ptq, .framer-TknN4 .framer-cpbr7l, .framer-TknN4 .framer-1hl64k9, .framer-TknN4 .framer-1hr9s5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TknN4 .framer-19cth9t-container, .framer-TknN4 .framer-177dkt3-container, .framer-TknN4 .framer-b0rgdl-container, .framer-TknN4 .framer-1xz5i8p-container, .framer-TknN4 .framer-145z651-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-TknN4 .framer-19jkeb0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 110px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-625ghs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-TknN4 .framer-1lbphpj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 625px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TknN4 .framer-14sxlct { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 50%; padding: 0px; position: absolute; top: 6px; transform: translateX(-50%); width: 1200px; z-index: 1; }\",\".framer-TknN4 .framer-1u3ywyq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 626px; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-ozkl7e { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-rr1sub { bottom: -33px; flex: none; left: -28px; overflow: visible; position: absolute; top: -110px; width: 807px; z-index: 1; }\",\".framer-TknN4 .framer-fbtvdi { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 47px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-17mju7a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1ylmnza { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TknN4 .framer-1kq2f0k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-hl7vm, .framer-TknN4 .framer-14dnrmy, .framer-TknN4 .framer-1qntype { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-TknN4 .framer-17x0w3l { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 757px; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-14k1w60 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 582px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-qrwfey { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 0px; flex: none; left: calc(50.00000000000002% - 1200px / 2); overflow: visible; position: absolute; top: 0px; width: 1200px; z-index: 1; }\",\".framer-TknN4 .framer-o4gziz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1ielvvl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-ismen8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 60px 0px 60px 0px; position: relative; width: 1px; }\",\".framer-TknN4 .framer-yorfv6 { 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: center; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1hutdpa, .framer-TknN4 .framer-7uf7ld { --border-bottom-width: 1px; --border-color: var(--token-21c6d2dd-0a7f-4a5f-844f-14f4bbf90075, #707070); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 2px 10px 0px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-TknN4 .framer-1q4wr7j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 92%; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-1bjyrn8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-104lkp8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-tar0wd { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TknN4 .framer-q3k33i-container, .framer-TknN4 .framer-hhrtzu-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-TknN4 .framer-1oh30uf { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 12%, rgb(220, 220, 220) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 30px 61px 30px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-8n0j4d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1enz01k { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-zxdrrc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1004px; }\",\".framer-TknN4 .framer-twfbaa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; }\",\".framer-TknN4 .framer-1xdwze { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 123px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-TknN4 .framer-q2auxt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1jisq5x-container { flex: none; height: auto; position: relative; width: 1203px; }\",\".framer-TknN4 .framer-qhvx5y, .framer-TknN4 .framer-2bwoh9, .framer-TknN4 .framer-l8iyx2 { -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); background: linear-gradient(201deg, #ededed 0%, rgb(255, 255, 255) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 480px; justify-content: flex-start; overflow: visible; padding: 35px; position: relative; width: 304px; }\",\".framer-TknN4 .framer-1d7uc48, .framer-TknN4 .framer-3t461v, .framer-TknN4 .framer-10iahuv, .framer-TknN4 .framer-1ve8wi8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-sbm7tb, .framer-TknN4 .framer-s6uc09, .framer-TknN4 .framer-1p22c6n { aspect-ratio: 1 / 1; flex: none; height: 67px; position: relative; width: var(--framer-aspect-ratio-supported, 67px); }\",\".framer-TknN4 .framer-1u35qcz, .framer-TknN4 .framer-zuivyf, .framer-TknN4 .framer-rga73z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-ec6rt4, .framer-TknN4 .framer-uxhth, .framer-TknN4 .framer-3tujw4, .framer-TknN4 .framer-1mcbv6n, .framer-TknN4 .framer-jwl2bu, .framer-TknN4 .framer-1ss2dq1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-eayshe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TknN4 .framer-1tllbc2, .framer-TknN4 .framer-llyevl, .framer-TknN4 .framer-iut9r4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TknN4 .framer-bzsp4a, .framer-TknN4 .framer-1c3wgxe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TknN4 .framer-1gpvdut { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(250, 250, 250, 0) 57.567919481981974%, rgba(0, 0, 0, 0.04) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 112.00000000000001vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-clxi4b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 100%; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TknN4 .framer-o4tydx { --border-bottom-width: 1px; --border-color: var(--token-63ac10dd-1dd4-4f4d-8ac4-f9e3673c1798, #b0b0b0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(10px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(10px); background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: -9px 18px 32px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 450px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-TknN4 .framer-1wrftba { flex: none; height: 67px; overflow: hidden; position: relative; width: 80px; }\",\".framer-TknN4 .framer-1kvv9ix { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 541px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-TknN4 .framer-xucqyf { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 614px; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-TknN4 .framer-1yo2lsk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 114.99999999999999vh; justify-content: flex-end; overflow: visible; padding: 120px 30px 120px 30px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-vu00w { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(0, 0, 0, 0.07) 0%, rgba(0, 0, 0, 0.89) 98%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-TknN4 .framer-13e13u8 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.35); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1gkxshg, .framer-TknN4 .framer-1its7r2, .framer-TknN4 .framer-572p3r, .framer-TknN4 .framer-1ijvvmf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1mrbcpw, .framer-TknN4 .framer-eool7b, .framer-TknN4 .framer-7r5e1, .framer-TknN4 .framer-1h2ypy6, .framer-TknN4 .framer-m76x51 { 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: 24%; }\",\".framer-TknN4 .framer-afam0f, .framer-TknN4 .framer-lk5cfs, .framer-TknN4 .framer-184lpr3, .framer-TknN4 .framer-a1568q, .framer-TknN4 .framer-18cweqc, .framer-TknN4 .framer-1iiaykm, .framer-TknN4 .framer-1x04u6g, .framer-TknN4 .framer-1vq8vlq, .framer-TknN4 .framer-10tuez4, .framer-TknN4 .framer-uq2354, .framer-TknN4 .framer-1e98tyo, .framer-TknN4 .framer-ijpny9, .framer-TknN4 .framer-151np21, .framer-TknN4 .framer-txp42u, .framer-TknN4 .framer-1ilfxpy, .framer-TknN4 .framer-gfvarf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-1o5j8b9, .framer-TknN4 .framer-j38sio, .framer-TknN4 .framer-dzpnhw, .framer-TknN4 .framer-qwsrc3, .framer-TknN4 .framer-1aq8nci { 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: 100%; }\",\".framer-TknN4 .framer-mi9pwu, .framer-TknN4 .framer-tbd1sj, .framer-TknN4 .framer-i69oxu, .framer-TknN4 .framer-1u5x86q, .framer-TknN4 .framer-110rdyl, .framer-TknN4 .framer-1x1owc4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-13rib1, .framer-TknN4 .framer-hev1y2, .framer-TknN4 .framer-1abszde, .framer-TknN4 .framer-8x6tfx, .framer-TknN4 .framer-4sktqz { align-content: center; align-items: center; background-color: var(--token-54c93f86-add2-4db9-9090-f2d27136f826, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; opacity: 0.3; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-fzhdqw-container { flex: none; height: 321px; position: relative; width: 373px; }\",\".framer-TknN4 .framer-1x0ehhd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-TknN4 .framer-1h2jjne-container { flex: none; height: 412px; position: relative; width: 516px; }\",\".framer-TknN4 .framer-tc1ye4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-TknN4 .framer-110e3hr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1wwrubc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-h6viv3 { align-content: center; align-items: center; background: linear-gradient(180deg, #050505 80.03765484234235%, rgb(0, 27, 33) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 110.00000000000001vh; justify-content: center; overflow: hidden; padding: 100px 80px 160px 80px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1t32mq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1140px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1wbd836 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1rnasbf { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-8omzh2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 43%; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-ugem9m { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 48%; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-13ux0wv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1j9mewz-container { flex: none; height: 600px; max-width: 1200px; position: relative; width: 1200px; }\",\".framer-TknN4 .framer-nd7c4c, .framer-TknN4 .framer-17fbbf8, .framer-TknN4 .framer-10742ln { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: flex-end; overflow: hidden; padding: 40px; position: relative; text-decoration: none; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TknN4 .framer-vd76s5, .framer-TknN4 .framer-1aq8uwj, .framer-TknN4 .framer-161rt7z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1rsuatg, .framer-TknN4 .framer-17pf26l, .framer-TknN4 .framer-1kcmkml { align-content: center; align-items: center; background-color: rgba(51, 51, 51, 0.53); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 102px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 205px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TknN4 .framer-1xqpuk2, .framer-TknN4 .framer-1eevd8a, .framer-TknN4 .framer-1mbuw9i { flex: none; height: 87px; overflow: hidden; position: relative; width: 185px; }\",\".framer-TknN4 .framer-10sfaxp, .framer-TknN4 .framer-4ox8hm, .framer-TknN4 .framer-1b4599r { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1yn052o, .framer-TknN4 .framer-1jbzwjm, .framer-TknN4 .framer-1sikd58 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-i00f5h, .framer-TknN4 .framer-1n77y2j, .framer-TknN4 .framer-lqguk4, .framer-TknN4 .framer-8113mf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-2o4r06 { --border-bottom-width: 0px; --border-color: var(--token-c14bc02b-61cb-4ca5-a985-42153a72f1ae, #d4d4d4); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 114.99999999999999vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-c09cg8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1gflq83 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-19ckcg { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-lvttqu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 46%; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-1nwpz70 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-a1p17b { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgb(235, 235, 235) 44.77934966216216%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 114.99999999999999vh; justify-content: center; overflow: hidden; padding: 190px 0px 350px 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-4a3wmh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TknN4 .framer-xhfnor { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TknN4 .framer-1h8i2mi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 311px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1cfjqtt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 672px; }\",\".framer-TknN4 .framer-u6q1po { -webkit-filter: grayscale(1); aspect-ratio: 2.1 / 1; bottom: -237px; cursor: grab; filter: grayscale(1); flex: none; height: var(--framer-aspect-ratio-supported, 67px); position: absolute; right: 313px; width: 140px; z-index: 1; }\",\".framer-TknN4 .framer-1mdtt9v { -webkit-filter: grayscale(0); aspect-ratio: 3.04 / 1; bottom: -203px; cursor: grab; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 66px); left: 258px; position: absolute; width: 200px; z-index: 1; }\",\".framer-TknN4 .framer-qo64ol { -webkit-filter: grayscale(0); aspect-ratio: 1 / 1; cursor: grab; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 123px; position: absolute; top: 86px; width: 80px; z-index: 1; }\",\".framer-TknN4 .framer-iqtar4 { -webkit-filter: grayscale(0); aspect-ratio: 1 / 1; bottom: 276px; cursor: grab; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: 383px; position: absolute; width: 70px; z-index: 1; }\",\".framer-TknN4 .framer-7nliu6 { -webkit-filter: grayscale(1); aspect-ratio: 2.15 / 1; bottom: 400px; cursor: grab; filter: grayscale(1); flex: none; height: var(--framer-aspect-ratio-supported, 65px); left: -17px; position: absolute; width: 140px; z-index: 1; }\",\".framer-TknN4 .framer-ukrqir { -webkit-filter: grayscale(0); aspect-ratio: 2.21 / 1; bottom: -111px; cursor: grab; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: absolute; right: 107px; width: 140px; z-index: 1; }\",\".framer-TknN4 .framer-1jxixv2 { -webkit-filter: grayscale(0); aspect-ratio: 1 / 1; bottom: 128px; cursor: grab; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: absolute; right: -40px; width: 80px; z-index: 1; }\",\".framer-TknN4 .framer-ufqvts { -webkit-filter: grayscale(0); aspect-ratio: 1 / 1; bottom: 430px; cursor: grab; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: absolute; right: 27px; width: 80px; z-index: 1; }\",\".framer-TknN4 .framer-pdzq64 { -webkit-filter: grayscale(1); aspect-ratio: 1.46 / 1; bottom: 311px; cursor: grab; filter: grayscale(1); flex: none; height: var(--framer-aspect-ratio-supported, 69px); position: absolute; right: 274px; width: 100px; z-index: 1; }\",\".framer-TknN4 .framer-hi02t6 { -webkit-filter: grayscale(0); aspect-ratio: 1.3934426229508197 / 1; bottom: -72px; cursor: grab; filter: grayscale(0); flex: none; height: var(--framer-aspect-ratio-supported, 101px); left: 24px; position: absolute; width: 140px; z-index: 1; }\",\".framer-TknN4 .framer-19gcfu2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 30px 120px 30px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1cef9k4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1224px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1wdyrli { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-TknN4 .framer-dbtejp { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-1o29fcl-container, .framer-TknN4 .framer-u1mq3s-container, .framer-TknN4 .framer-g840v-container, .framer-TknN4 .framer-js68lr-container, .framer-TknN4 .framer-1ay4fw5-container, .framer-TknN4 .framer-nld429-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-TknN4 .framer-edqk92 { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgb(237, 237, 237) 100%); box-shadow: 0px 46px 50px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-TknN4 .framer-3f1fao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 30px 125px 30px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-19efimm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TknN4 .framer-r773wq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TknN4 .framer-qoqjcc { 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: visible; padding: 0px; position: relative; width: 1160px; }\",\".framer-TknN4 .framer-2qlpg4-container, .framer-TknN4 .framer-1bk7nm1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-TknN4 .framer-2486xv, .framer-TknN4 .framer-5kkla3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TknN4 .framer-w2nr3b, .framer-TknN4 .framer-10ed3rx { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TknN4 .framer-zyh8nn-container { flex: none; height: 500px; position: relative; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TknN4.framer-72rtr7, .framer-TknN4 .framer-rssdkj, .framer-TknN4 .framer-1isa7c1, .framer-TknN4 .framer-7kqnmx, .framer-TknN4 .framer-1y50ay4, .framer-TknN4 .framer-z1mk00, .framer-TknN4 .framer-1w2zojg, .framer-TknN4 .framer-1pv0jbc, .framer-TknN4 .framer-edw8ix, .framer-TknN4 .framer-1yn6du6, .framer-TknN4 .framer-gw1ck4, .framer-TknN4 .framer-18n6rcw, .framer-TknN4 .framer-1mwc11c, .framer-TknN4 .framer-j14onu, .framer-TknN4 .framer-tmy11i, .framer-TknN4 .framer-19mse9o, .framer-TknN4 .framer-18dp9zo, .framer-TknN4 .framer-1c1e4yr, .framer-TknN4 .framer-w4c925, .framer-TknN4 .framer-2le1o6, .framer-TknN4 .framer-covnw8, .framer-TknN4 .framer-wznko7, .framer-TknN4 .framer-19jkeb0, .framer-TknN4 .framer-625ghs, .framer-TknN4 .framer-1lbphpj, .framer-TknN4 .framer-14sxlct, .framer-TknN4 .framer-fbtvdi, .framer-TknN4 .framer-17mju7a, .framer-TknN4 .framer-1ylmnza, .framer-TknN4 .framer-1kq2f0k, .framer-TknN4 .framer-14k1w60, .framer-TknN4 .framer-o4gziz, .framer-TknN4 .framer-1ielvvl, .framer-TknN4 .framer-ismen8, .framer-TknN4 .framer-yorfv6, .framer-TknN4 .framer-1hutdpa, .framer-TknN4 .framer-104lkp8, .framer-TknN4 .framer-tar0wd, .framer-TknN4 .framer-1oh30uf, .framer-TknN4 .framer-8n0j4d, .framer-TknN4 .framer-7uf7ld, .framer-TknN4 .framer-1enz01k, .framer-TknN4 .framer-zxdrrc, .framer-TknN4 .framer-1xdwze, .framer-TknN4 .framer-q2auxt, .framer-TknN4 .framer-qhvx5y, .framer-TknN4 .framer-1d7uc48, .framer-TknN4 .framer-1u35qcz, .framer-TknN4 .framer-eayshe, .framer-TknN4 .framer-2bwoh9, .framer-TknN4 .framer-3t461v, .framer-TknN4 .framer-zuivyf, .framer-TknN4 .framer-bzsp4a, .framer-TknN4 .framer-l8iyx2, .framer-TknN4 .framer-10iahuv, .framer-TknN4 .framer-rga73z, .framer-TknN4 .framer-1c3wgxe, .framer-TknN4 .framer-615x4z, .framer-TknN4 .framer-1gpvdut, .framer-TknN4 .framer-clxi4b, .framer-TknN4 .framer-o4tydx, .framer-TknN4 .framer-1ve8wi8, .framer-TknN4 .framer-1yo2lsk, .framer-TknN4 .framer-vu00w, .framer-TknN4 .framer-13e13u8, .framer-TknN4 .framer-1gkxshg, .framer-TknN4 .framer-1mrbcpw, .framer-TknN4 .framer-1o5j8b9, .framer-TknN4 .framer-mi9pwu, .framer-TknN4 .framer-13rib1, .framer-TknN4 .framer-1x0ehhd, .framer-TknN4 .framer-tc1ye4, .framer-TknN4 .framer-110e3hr, .framer-TknN4 .framer-eool7b, .framer-TknN4 .framer-j38sio, .framer-TknN4 .framer-tbd1sj, .framer-TknN4 .framer-hev1y2, .framer-TknN4 .framer-7r5e1, .framer-TknN4 .framer-dzpnhw, .framer-TknN4 .framer-i69oxu, .framer-TknN4 .framer-1abszde, .framer-TknN4 .framer-1h2ypy6, .framer-TknN4 .framer-qwsrc3, .framer-TknN4 .framer-1u5x86q, .framer-TknN4 .framer-8x6tfx, .framer-TknN4 .framer-m76x51, .framer-TknN4 .framer-1aq8nci, .framer-TknN4 .framer-110rdyl, .framer-TknN4 .framer-4sktqz, .framer-TknN4 .framer-h6viv3, .framer-TknN4 .framer-1t32mq4, .framer-TknN4 .framer-1x1owc4, .framer-TknN4 .framer-1wbd836, .framer-TknN4 .framer-13ux0wv, .framer-TknN4 .framer-nd7c4c, .framer-TknN4 .framer-vd76s5, .framer-TknN4 .framer-1its7r2, .framer-TknN4 .framer-1rsuatg, .framer-TknN4 .framer-1yn052o, .framer-TknN4 .framer-17fbbf8, .framer-TknN4 .framer-1aq8uwj, .framer-TknN4 .framer-572p3r, .framer-TknN4 .framer-17pf26l, .framer-TknN4 .framer-1jbzwjm, .framer-TknN4 .framer-10742ln, .framer-TknN4 .framer-161rt7z, .framer-TknN4 .framer-1ijvvmf, .framer-TknN4 .framer-1kcmkml, .framer-TknN4 .framer-1sikd58, .framer-TknN4 .framer-2o4r06, .framer-TknN4 .framer-c09cg8, .framer-TknN4 .framer-1gflq83, .framer-TknN4 .framer-1nwpz70, .framer-TknN4 .framer-a1p17b, .framer-TknN4 .framer-4a3wmh, .framer-TknN4 .framer-xhfnor, .framer-TknN4 .framer-1h8i2mi, .framer-TknN4 .framer-1cfjqtt, .framer-TknN4 .framer-19gcfu2, .framer-TknN4 .framer-1cef9k4, .framer-TknN4 .framer-edqk92, .framer-TknN4 .framer-3f1fao, .framer-TknN4 .framer-19efimm, .framer-TknN4 .framer-r773wq, .framer-TknN4 .framer-qoqjcc, .framer-TknN4 .framer-2486xv, .framer-TknN4 .framer-5kkla3 { gap: 0px; } .framer-TknN4.framer-72rtr7 > *, .framer-TknN4 .framer-7kqnmx > *, .framer-TknN4 .framer-z1mk00 > *, .framer-TknN4 .framer-o4gziz > *, .framer-TknN4 .framer-eayshe > *, .framer-TknN4 .framer-bzsp4a > *, .framer-TknN4 .framer-1c3wgxe > *, .framer-TknN4 .framer-vd76s5 > *, .framer-TknN4 .framer-1aq8uwj > *, .framer-TknN4 .framer-161rt7z > *, .framer-TknN4 .framer-2o4r06 > *, .framer-TknN4 .framer-qoqjcc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TknN4.framer-72rtr7 > :first-child, .framer-TknN4 .framer-1isa7c1 > :first-child, .framer-TknN4 .framer-7kqnmx > :first-child, .framer-TknN4 .framer-1y50ay4 > :first-child, .framer-TknN4 .framer-z1mk00 > :first-child, .framer-TknN4 .framer-1w2zojg > :first-child, .framer-TknN4 .framer-1pv0jbc > :first-child, .framer-TknN4 .framer-edw8ix > :first-child, .framer-TknN4 .framer-1yn6du6 > :first-child, .framer-TknN4 .framer-18n6rcw > :first-child, .framer-TknN4 .framer-1mwc11c > :first-child, .framer-TknN4 .framer-j14onu > :first-child, .framer-TknN4 .framer-19mse9o > :first-child, .framer-TknN4 .framer-18dp9zo > :first-child, .framer-TknN4 .framer-1c1e4yr > :first-child, .framer-TknN4 .framer-w4c925 > :first-child, .framer-TknN4 .framer-2le1o6 > :first-child, .framer-TknN4 .framer-19jkeb0 > :first-child, .framer-TknN4 .framer-1lbphpj > :first-child, .framer-TknN4 .framer-14sxlct > :first-child, .framer-TknN4 .framer-fbtvdi > :first-child, .framer-TknN4 .framer-1ylmnza > :first-child, .framer-TknN4 .framer-1kq2f0k > :first-child, .framer-TknN4 .framer-o4gziz > :first-child, .framer-TknN4 .framer-ismen8 > :first-child, .framer-TknN4 .framer-yorfv6 > :first-child, .framer-TknN4 .framer-1oh30uf > :first-child, .framer-TknN4 .framer-8n0j4d > :first-child, .framer-TknN4 .framer-zxdrrc > :first-child, .framer-TknN4 .framer-q2auxt > :first-child, .framer-TknN4 .framer-qhvx5y > :first-child, .framer-TknN4 .framer-1d7uc48 > :first-child, .framer-TknN4 .framer-1u35qcz > :first-child, .framer-TknN4 .framer-eayshe > :first-child, .framer-TknN4 .framer-2bwoh9 > :first-child, .framer-TknN4 .framer-3t461v > :first-child, .framer-TknN4 .framer-zuivyf > :first-child, .framer-TknN4 .framer-bzsp4a > :first-child, .framer-TknN4 .framer-l8iyx2 > :first-child, .framer-TknN4 .framer-10iahuv > :first-child, .framer-TknN4 .framer-rga73z > :first-child, .framer-TknN4 .framer-1c3wgxe > :first-child, .framer-TknN4 .framer-o4tydx > :first-child, .framer-TknN4 .framer-1ve8wi8 > :first-child, .framer-TknN4 .framer-1yo2lsk > :first-child, .framer-TknN4 .framer-13e13u8 > :first-child, .framer-TknN4 .framer-1mrbcpw > :first-child, .framer-TknN4 .framer-1o5j8b9 > :first-child, .framer-TknN4 .framer-mi9pwu > :first-child, .framer-TknN4 .framer-tc1ye4 > :first-child, .framer-TknN4 .framer-110e3hr > :first-child, .framer-TknN4 .framer-eool7b > :first-child, .framer-TknN4 .framer-j38sio > :first-child, .framer-TknN4 .framer-tbd1sj > :first-child, .framer-TknN4 .framer-7r5e1 > :first-child, .framer-TknN4 .framer-dzpnhw > :first-child, .framer-TknN4 .framer-i69oxu > :first-child, .framer-TknN4 .framer-1h2ypy6 > :first-child, .framer-TknN4 .framer-qwsrc3 > :first-child, .framer-TknN4 .framer-1u5x86q > :first-child, .framer-TknN4 .framer-m76x51 > :first-child, .framer-TknN4 .framer-1aq8nci > :first-child, .framer-TknN4 .framer-110rdyl > :first-child, .framer-TknN4 .framer-h6viv3 > :first-child, .framer-TknN4 .framer-1t32mq4 > :first-child, .framer-TknN4 .framer-1x1owc4 > :first-child, .framer-TknN4 .framer-1wbd836 > :first-child, .framer-TknN4 .framer-nd7c4c > :first-child, .framer-TknN4 .framer-vd76s5 > :first-child, .framer-TknN4 .framer-1yn052o > :first-child, .framer-TknN4 .framer-17fbbf8 > :first-child, .framer-TknN4 .framer-1aq8uwj > :first-child, .framer-TknN4 .framer-1jbzwjm > :first-child, .framer-TknN4 .framer-10742ln > :first-child, .framer-TknN4 .framer-161rt7z > :first-child, .framer-TknN4 .framer-1sikd58 > :first-child, .framer-TknN4 .framer-2o4r06 > :first-child, .framer-TknN4 .framer-c09cg8 > :first-child, .framer-TknN4 .framer-xhfnor > :first-child, .framer-TknN4 .framer-1h8i2mi > :first-child, .framer-TknN4 .framer-1cfjqtt > :first-child, .framer-TknN4 .framer-19gcfu2 > :first-child, .framer-TknN4 .framer-1cef9k4 > :first-child, .framer-TknN4 .framer-edqk92 > :first-child, .framer-TknN4 .framer-19efimm > :first-child, .framer-TknN4 .framer-r773wq > :first-child, .framer-TknN4 .framer-qoqjcc > :first-child { margin-top: 0px; } .framer-TknN4.framer-72rtr7 > :last-child, .framer-TknN4 .framer-1isa7c1 > :last-child, .framer-TknN4 .framer-7kqnmx > :last-child, .framer-TknN4 .framer-1y50ay4 > :last-child, .framer-TknN4 .framer-z1mk00 > :last-child, .framer-TknN4 .framer-1w2zojg > :last-child, .framer-TknN4 .framer-1pv0jbc > :last-child, .framer-TknN4 .framer-edw8ix > :last-child, .framer-TknN4 .framer-1yn6du6 > :last-child, .framer-TknN4 .framer-18n6rcw > :last-child, .framer-TknN4 .framer-1mwc11c > :last-child, .framer-TknN4 .framer-j14onu > :last-child, .framer-TknN4 .framer-19mse9o > :last-child, .framer-TknN4 .framer-18dp9zo > :last-child, .framer-TknN4 .framer-1c1e4yr > :last-child, .framer-TknN4 .framer-w4c925 > :last-child, .framer-TknN4 .framer-2le1o6 > :last-child, .framer-TknN4 .framer-19jkeb0 > :last-child, .framer-TknN4 .framer-1lbphpj > :last-child, .framer-TknN4 .framer-14sxlct > :last-child, .framer-TknN4 .framer-fbtvdi > :last-child, .framer-TknN4 .framer-1ylmnza > :last-child, .framer-TknN4 .framer-1kq2f0k > :last-child, .framer-TknN4 .framer-o4gziz > :last-child, .framer-TknN4 .framer-ismen8 > :last-child, .framer-TknN4 .framer-yorfv6 > :last-child, .framer-TknN4 .framer-1oh30uf > :last-child, .framer-TknN4 .framer-8n0j4d > :last-child, .framer-TknN4 .framer-zxdrrc > :last-child, .framer-TknN4 .framer-q2auxt > :last-child, .framer-TknN4 .framer-qhvx5y > :last-child, .framer-TknN4 .framer-1d7uc48 > :last-child, .framer-TknN4 .framer-1u35qcz > :last-child, .framer-TknN4 .framer-eayshe > :last-child, .framer-TknN4 .framer-2bwoh9 > :last-child, .framer-TknN4 .framer-3t461v > :last-child, .framer-TknN4 .framer-zuivyf > :last-child, .framer-TknN4 .framer-bzsp4a > :last-child, .framer-TknN4 .framer-l8iyx2 > :last-child, .framer-TknN4 .framer-10iahuv > :last-child, .framer-TknN4 .framer-rga73z > :last-child, .framer-TknN4 .framer-1c3wgxe > :last-child, .framer-TknN4 .framer-o4tydx > :last-child, .framer-TknN4 .framer-1ve8wi8 > :last-child, .framer-TknN4 .framer-1yo2lsk > :last-child, .framer-TknN4 .framer-13e13u8 > :last-child, .framer-TknN4 .framer-1mrbcpw > :last-child, .framer-TknN4 .framer-1o5j8b9 > :last-child, .framer-TknN4 .framer-mi9pwu > :last-child, .framer-TknN4 .framer-tc1ye4 > :last-child, .framer-TknN4 .framer-110e3hr > :last-child, .framer-TknN4 .framer-eool7b > :last-child, .framer-TknN4 .framer-j38sio > :last-child, .framer-TknN4 .framer-tbd1sj > :last-child, .framer-TknN4 .framer-7r5e1 > :last-child, .framer-TknN4 .framer-dzpnhw > :last-child, .framer-TknN4 .framer-i69oxu > :last-child, .framer-TknN4 .framer-1h2ypy6 > :last-child, .framer-TknN4 .framer-qwsrc3 > :last-child, .framer-TknN4 .framer-1u5x86q > :last-child, .framer-TknN4 .framer-m76x51 > :last-child, .framer-TknN4 .framer-1aq8nci > :last-child, .framer-TknN4 .framer-110rdyl > :last-child, .framer-TknN4 .framer-h6viv3 > :last-child, .framer-TknN4 .framer-1t32mq4 > :last-child, .framer-TknN4 .framer-1x1owc4 > :last-child, .framer-TknN4 .framer-1wbd836 > :last-child, .framer-TknN4 .framer-nd7c4c > :last-child, .framer-TknN4 .framer-vd76s5 > :last-child, .framer-TknN4 .framer-1yn052o > :last-child, .framer-TknN4 .framer-17fbbf8 > :last-child, .framer-TknN4 .framer-1aq8uwj > :last-child, .framer-TknN4 .framer-1jbzwjm > :last-child, .framer-TknN4 .framer-10742ln > :last-child, .framer-TknN4 .framer-161rt7z > :last-child, .framer-TknN4 .framer-1sikd58 > :last-child, .framer-TknN4 .framer-2o4r06 > :last-child, .framer-TknN4 .framer-c09cg8 > :last-child, .framer-TknN4 .framer-xhfnor > :last-child, .framer-TknN4 .framer-1h8i2mi > :last-child, .framer-TknN4 .framer-1cfjqtt > :last-child, .framer-TknN4 .framer-19gcfu2 > :last-child, .framer-TknN4 .framer-1cef9k4 > :last-child, .framer-TknN4 .framer-edqk92 > :last-child, .framer-TknN4 .framer-19efimm > :last-child, .framer-TknN4 .framer-r773wq > :last-child, .framer-TknN4 .framer-qoqjcc > :last-child { margin-bottom: 0px; } .framer-TknN4 .framer-rssdkj > *, .framer-TknN4 .framer-tmy11i > *, .framer-TknN4 .framer-covnw8 > *, .framer-TknN4 .framer-wznko7 > *, .framer-TknN4 .framer-14k1w60 > *, .framer-TknN4 .framer-1hutdpa > *, .framer-TknN4 .framer-104lkp8 > *, .framer-TknN4 .framer-tar0wd > *, .framer-TknN4 .framer-7uf7ld > *, .framer-TknN4 .framer-1xdwze > *, .framer-TknN4 .framer-615x4z > *, .framer-TknN4 .framer-vu00w > *, .framer-TknN4 .framer-1gkxshg > *, .framer-TknN4 .framer-13rib1 > *, .framer-TknN4 .framer-1x0ehhd > *, .framer-TknN4 .framer-hev1y2 > *, .framer-TknN4 .framer-1abszde > *, .framer-TknN4 .framer-8x6tfx > *, .framer-TknN4 .framer-4sktqz > *, .framer-TknN4 .framer-13ux0wv > *, .framer-TknN4 .framer-1its7r2 > *, .framer-TknN4 .framer-1rsuatg > *, .framer-TknN4 .framer-572p3r > *, .framer-TknN4 .framer-17pf26l > *, .framer-TknN4 .framer-1ijvvmf > *, .framer-TknN4 .framer-1kcmkml > *, .framer-TknN4 .framer-a1p17b > *, .framer-TknN4 .framer-4a3wmh > *, .framer-TknN4 .framer-3f1fao > *, .framer-TknN4 .framer-2486xv > *, .framer-TknN4 .framer-5kkla3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TknN4 .framer-rssdkj > :first-child, .framer-TknN4 .framer-gw1ck4 > :first-child, .framer-TknN4 .framer-tmy11i > :first-child, .framer-TknN4 .framer-covnw8 > :first-child, .framer-TknN4 .framer-wznko7 > :first-child, .framer-TknN4 .framer-625ghs > :first-child, .framer-TknN4 .framer-17mju7a > :first-child, .framer-TknN4 .framer-14k1w60 > :first-child, .framer-TknN4 .framer-1ielvvl > :first-child, .framer-TknN4 .framer-1hutdpa > :first-child, .framer-TknN4 .framer-104lkp8 > :first-child, .framer-TknN4 .framer-tar0wd > :first-child, .framer-TknN4 .framer-7uf7ld > :first-child, .framer-TknN4 .framer-1enz01k > :first-child, .framer-TknN4 .framer-1xdwze > :first-child, .framer-TknN4 .framer-615x4z > :first-child, .framer-TknN4 .framer-1gpvdut > :first-child, .framer-TknN4 .framer-clxi4b > :first-child, .framer-TknN4 .framer-vu00w > :first-child, .framer-TknN4 .framer-1gkxshg > :first-child, .framer-TknN4 .framer-13rib1 > :first-child, .framer-TknN4 .framer-1x0ehhd > :first-child, .framer-TknN4 .framer-hev1y2 > :first-child, .framer-TknN4 .framer-1abszde > :first-child, .framer-TknN4 .framer-8x6tfx > :first-child, .framer-TknN4 .framer-4sktqz > :first-child, .framer-TknN4 .framer-13ux0wv > :first-child, .framer-TknN4 .framer-1its7r2 > :first-child, .framer-TknN4 .framer-1rsuatg > :first-child, .framer-TknN4 .framer-572p3r > :first-child, .framer-TknN4 .framer-17pf26l > :first-child, .framer-TknN4 .framer-1ijvvmf > :first-child, .framer-TknN4 .framer-1kcmkml > :first-child, .framer-TknN4 .framer-1gflq83 > :first-child, .framer-TknN4 .framer-1nwpz70 > :first-child, .framer-TknN4 .framer-a1p17b > :first-child, .framer-TknN4 .framer-4a3wmh > :first-child, .framer-TknN4 .framer-3f1fao > :first-child, .framer-TknN4 .framer-2486xv > :first-child, .framer-TknN4 .framer-5kkla3 > :first-child { margin-left: 0px; } .framer-TknN4 .framer-rssdkj > :last-child, .framer-TknN4 .framer-gw1ck4 > :last-child, .framer-TknN4 .framer-tmy11i > :last-child, .framer-TknN4 .framer-covnw8 > :last-child, .framer-TknN4 .framer-wznko7 > :last-child, .framer-TknN4 .framer-625ghs > :last-child, .framer-TknN4 .framer-17mju7a > :last-child, .framer-TknN4 .framer-14k1w60 > :last-child, .framer-TknN4 .framer-1ielvvl > :last-child, .framer-TknN4 .framer-1hutdpa > :last-child, .framer-TknN4 .framer-104lkp8 > :last-child, .framer-TknN4 .framer-tar0wd > :last-child, .framer-TknN4 .framer-7uf7ld > :last-child, .framer-TknN4 .framer-1enz01k > :last-child, .framer-TknN4 .framer-1xdwze > :last-child, .framer-TknN4 .framer-615x4z > :last-child, .framer-TknN4 .framer-1gpvdut > :last-child, .framer-TknN4 .framer-clxi4b > :last-child, .framer-TknN4 .framer-vu00w > :last-child, .framer-TknN4 .framer-1gkxshg > :last-child, .framer-TknN4 .framer-13rib1 > :last-child, .framer-TknN4 .framer-1x0ehhd > :last-child, .framer-TknN4 .framer-hev1y2 > :last-child, .framer-TknN4 .framer-1abszde > :last-child, .framer-TknN4 .framer-8x6tfx > :last-child, .framer-TknN4 .framer-4sktqz > :last-child, .framer-TknN4 .framer-13ux0wv > :last-child, .framer-TknN4 .framer-1its7r2 > :last-child, .framer-TknN4 .framer-1rsuatg > :last-child, .framer-TknN4 .framer-572p3r > :last-child, .framer-TknN4 .framer-17pf26l > :last-child, .framer-TknN4 .framer-1ijvvmf > :last-child, .framer-TknN4 .framer-1kcmkml > :last-child, .framer-TknN4 .framer-1gflq83 > :last-child, .framer-TknN4 .framer-1nwpz70 > :last-child, .framer-TknN4 .framer-a1p17b > :last-child, .framer-TknN4 .framer-4a3wmh > :last-child, .framer-TknN4 .framer-3f1fao > :last-child, .framer-TknN4 .framer-2486xv > :last-child, .framer-TknN4 .framer-5kkla3 > :last-child { margin-right: 0px; } .framer-TknN4 .framer-1isa7c1 > *, .framer-TknN4 .framer-19mse9o > *, .framer-TknN4 .framer-1lbphpj > *, .framer-TknN4 .framer-1ylmnza > *, .framer-TknN4 .framer-h6viv3 > *, .framer-TknN4 .framer-1cfjqtt > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-TknN4 .framer-1y50ay4 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-TknN4 .framer-1w2zojg > *, .framer-TknN4 .framer-qhvx5y > *, .framer-TknN4 .framer-2bwoh9 > *, .framer-TknN4 .framer-l8iyx2 > *, .framer-TknN4 .framer-o4tydx > *, .framer-TknN4 .framer-1o5j8b9 > *, .framer-TknN4 .framer-j38sio > *, .framer-TknN4 .framer-dzpnhw > *, .framer-TknN4 .framer-qwsrc3 > *, .framer-TknN4 .framer-1aq8nci > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-TknN4 .framer-1pv0jbc > *, .framer-TknN4 .framer-edw8ix > *, .framer-TknN4 .framer-18n6rcw > *, .framer-TknN4 .framer-1mwc11c > *, .framer-TknN4 .framer-1c1e4yr > *, .framer-TknN4 .framer-zxdrrc > *, .framer-TknN4 .framer-q2auxt > *, .framer-TknN4 .framer-1d7uc48 > *, .framer-TknN4 .framer-1u35qcz > *, .framer-TknN4 .framer-3t461v > *, .framer-TknN4 .framer-zuivyf > *, .framer-TknN4 .framer-10iahuv > *, .framer-TknN4 .framer-rga73z > *, .framer-TknN4 .framer-1ve8wi8 > *, .framer-TknN4 .framer-13e13u8 > *, .framer-TknN4 .framer-mi9pwu > *, .framer-TknN4 .framer-tbd1sj > *, .framer-TknN4 .framer-i69oxu > *, .framer-TknN4 .framer-1u5x86q > *, .framer-TknN4 .framer-110rdyl > *, .framer-TknN4 .framer-1t32mq4 > *, .framer-TknN4 .framer-1x1owc4 > *, .framer-TknN4 .framer-nd7c4c > *, .framer-TknN4 .framer-1yn052o > *, .framer-TknN4 .framer-17fbbf8 > *, .framer-TknN4 .framer-1jbzwjm > *, .framer-TknN4 .framer-10742ln > *, .framer-TknN4 .framer-1sikd58 > *, .framer-TknN4 .framer-xhfnor > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TknN4 .framer-1yn6du6 > *, .framer-TknN4 .framer-2le1o6 > *, .framer-TknN4 .framer-14sxlct > *, .framer-TknN4 .framer-1kq2f0k > *, .framer-TknN4 .framer-8n0j4d > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-TknN4 .framer-gw1ck4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-TknN4 .framer-j14onu > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-TknN4 .framer-18dp9zo > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-TknN4 .framer-w4c925 > *, .framer-TknN4 .framer-1mrbcpw > *, .framer-TknN4 .framer-eool7b > *, .framer-TknN4 .framer-7r5e1 > *, .framer-TknN4 .framer-1h2ypy6 > *, .framer-TknN4 .framer-m76x51 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-TknN4 .framer-19jkeb0 > *, .framer-TknN4 .framer-fbtvdi > *, .framer-TknN4 .framer-1wbd836 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-TknN4 .framer-625ghs > *, .framer-TknN4 .framer-17mju7a > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-TknN4 .framer-1ielvvl > *, .framer-TknN4 .framer-1enz01k > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-TknN4 .framer-ismen8 > *, .framer-TknN4 .framer-1oh30uf > *, .framer-TknN4 .framer-1yo2lsk > *, .framer-TknN4 .framer-19gcfu2 > *, .framer-TknN4 .framer-edqk92 > *, .framer-TknN4 .framer-19efimm > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-TknN4 .framer-yorfv6 > *, .framer-TknN4 .framer-1h8i2mi > *, .framer-TknN4 .framer-r773wq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-TknN4 .framer-1gpvdut > *, .framer-TknN4 .framer-clxi4b > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-TknN4 .framer-tc1ye4 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-TknN4 .framer-110e3hr > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-TknN4 .framer-c09cg8 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-TknN4 .framer-1gflq83 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-TknN4 .framer-1nwpz70 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-TknN4 .framer-1cef9k4 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-TknN4[data-border=\"true\"]::after, .framer-TknN4 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 992px) and (max-width: 1439px) { .framer-TknN4.framer-72rtr7 { width: 992px; } .framer-TknN4 .framer-1isa7c1 { height: 100vh; padding: 0px 0px 100px 0px; } .framer-TknN4 .framer-7kqnmx { max-width: 1000px; padding: 30px; } .framer-TknN4 .framer-z1mk00 { width: 75%; } .framer-TknN4 .framer-1a2okt6, .framer-TknN4 .framer-ojbfum-container { width: 694px; } .framer-TknN4 .framer-xc1bsu { white-space: pre-wrap; width: 694px; word-break: break-word; word-wrap: break-word; } .framer-TknN4 .framer-1jpyf5d { width: 435px; } .framer-TknN4 .framer-gw1ck4, .framer-TknN4 .framer-h6viv3 { height: min-content; } .framer-TknN4 .framer-18n6rcw, .framer-TknN4 .framer-1gkxshg { order: 0; } .framer-TknN4 .framer-zdevyc { bottom: 176px; height: unset; left: 89px; right: -908px; top: -52px; width: unset; } .framer-TknN4 .framer-1mwc11c, .framer-TknN4 .framer-1bk7nm1-container { order: 1; } .framer-TknN4 .framer-etaf0d { bottom: 419px; height: unset; left: -3px; right: -278px; top: -301px; width: unset; } .framer-TknN4 .framer-19mse9o, .framer-TknN4 .framer-o4gziz { padding: 50px 30px 50px 30px; } .framer-TknN4 .framer-1c5mke1 { height: 603px; } .framer-TknN4 .framer-yvaa5f-container { height: 660px; width: 1289px; } .framer-TknN4 .framer-18dp9zo, .framer-TknN4 .framer-ismen8 { gap: 30px; } .framer-TknN4 .framer-1nmrrlp, .framer-TknN4 .framer-1c1e4yr, .framer-TknN4 .framer-f5bvm9, .framer-TknN4 .framer-1q4wr7j, .framer-TknN4 .framer-1bjyrn8, .framer-TknN4 .framer-zxdrrc, .framer-TknN4 .framer-1jisq5x-container, .framer-TknN4 .framer-qoqjcc { width: 100%; } .framer-TknN4 .framer-1lbphpj { height: 730px; order: 0; } .framer-TknN4 .framer-14sxlct { align-content: flex-start; align-items: flex-start; order: 0; top: 0px; width: 741px; } .framer-TknN4 .framer-rr1sub { bottom: -114px; height: 768px; left: unset; order: 1; right: -79px; top: unset; } .framer-TknN4 .framer-fbtvdi { height: 793px; overflow: visible; } .framer-TknN4 .framer-14k1w60 { overflow: visible; } .framer-TknN4 .framer-qrwfey { bottom: unset; height: 462px; top: 74px; } .framer-TknN4 .framer-1ielvvl { gap: 90px; max-width: 1000px; } .framer-TknN4 .framer-q3k33i-container { flex: none; width: 932px; } .framer-TknN4 .framer-8n0j4d { padding: 0px 30px 0px 0px; } .framer-TknN4 .framer-1enz01k { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-TknN4 .framer-1gpvdut, .framer-TknN4 .framer-vu00w { height: 100vh; } .framer-TknN4 .framer-clxi4b { gap: 0px; padding: 40px; } .framer-TknN4 .framer-o4tydx { width: 388px; } .framer-TknN4 .framer-1yo2lsk { height: 100vh; padding: 80px 30px 80px 30px; } .framer-TknN4 .framer-13e13u8 { align-content: center; align-items: center; width: 96%; } .framer-TknN4 .framer-1mrbcpw { width: 41%; } .framer-TknN4 .framer-tc1ye4 { max-width: unset; } .framer-TknN4 .framer-110e3hr { gap: 50px; } .framer-TknN4 .framer-1wwrubc { gap: 40px; justify-content: center; } .framer-TknN4 .framer-eool7b, .framer-TknN4 .framer-7r5e1, .framer-TknN4 .framer-1h2ypy6, .framer-TknN4 .framer-m76x51 { width: 46%; } .framer-TknN4 .framer-1j9mewz-container { flex: 1 0 0px; width: 1px; } .framer-TknN4 .framer-2o4r06 { padding: 30px; } .framer-TknN4 .framer-a1p17b { padding: 150px 0px 270px 0px; } .framer-TknN4 .framer-4a3wmh { max-width: 100%; } .framer-TknN4 .framer-1cfjqtt { width: 68%; } .framer-TknN4 .framer-u6q1po { bottom: -226px; right: 220px; } .framer-TknN4 .framer-1mdtt9v { bottom: -160px; left: 228px; } .framer-TknN4 .framer-qo64ol { left: -112px; top: 27px; } .framer-TknN4 .framer-iqtar4 { bottom: 366px; left: 379px; } .framer-TknN4 .framer-7nliu6 { bottom: 432px; left: 91px; } .framer-TknN4 .framer-ukrqir { bottom: -31px; right: 142px; } .framer-TknN4 .framer-1jxixv2 { bottom: 107px; right: 58px; } .framer-TknN4 .framer-ufqvts { bottom: 424px; right: 80px; } .framer-TknN4 .framer-pdzq64 { bottom: 379px; right: 260px; } .framer-TknN4 .framer-hi02t6 { bottom: 27px; left: 91px; } .framer-TknN4 .framer-19gcfu2 { padding: 80px 30px 80px 30px; } .framer-TknN4 .framer-1cef9k4 { gap: 50px; max-width: 100%; } .framer-TknN4 .framer-1wdyrli { width: 65%; } .framer-TknN4 .framer-dbtejp { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-TknN4 .framer-3f1fao { order: 0; padding: 45px 30px 95px 30px; } .framer-TknN4 .framer-19efimm { max-width: 1000px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TknN4 .framer-18dp9zo, .framer-TknN4 .framer-1ielvvl, .framer-TknN4 .framer-ismen8, .framer-TknN4 .framer-1enz01k, .framer-TknN4 .framer-clxi4b, .framer-TknN4 .framer-110e3hr, .framer-TknN4 .framer-1wwrubc, .framer-TknN4 .framer-1cef9k4 { gap: 0px; } .framer-TknN4 .framer-18dp9zo > *, .framer-TknN4 .framer-ismen8 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-TknN4 .framer-18dp9zo > :first-child, .framer-TknN4 .framer-ismen8 > :first-child, .framer-TknN4 .framer-1enz01k > :first-child, .framer-TknN4 .framer-110e3hr > :first-child, .framer-TknN4 .framer-1cef9k4 > :first-child { margin-top: 0px; } .framer-TknN4 .framer-18dp9zo > :last-child, .framer-TknN4 .framer-ismen8 > :last-child, .framer-TknN4 .framer-1enz01k > :last-child, .framer-TknN4 .framer-110e3hr > :last-child, .framer-TknN4 .framer-1cef9k4 > :last-child { margin-bottom: 0px; } .framer-TknN4 .framer-1ielvvl > * { margin: 0px; margin-left: calc(90px / 2); margin-right: calc(90px / 2); } .framer-TknN4 .framer-1ielvvl > :first-child, .framer-TknN4 .framer-clxi4b > :first-child, .framer-TknN4 .framer-1wwrubc > :first-child { margin-left: 0px; } .framer-TknN4 .framer-1ielvvl > :last-child, .framer-TknN4 .framer-clxi4b > :last-child, .framer-TknN4 .framer-1wwrubc > :last-child { margin-right: 0px; } .framer-TknN4 .framer-1enz01k > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-TknN4 .framer-clxi4b > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-TknN4 .framer-110e3hr > *, .framer-TknN4 .framer-1cef9k4 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-TknN4 .framer-1wwrubc > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }}\",\"@media (min-width: 768px) and (max-width: 991px) { .framer-TknN4.framer-72rtr7 { width: 768px; } .framer-TknN4 .framer-rssdkj { justify-content: flex-end; } .framer-TknN4 .framer-1isa7c1 { height: 100vh; padding: 0px 0px 80px 0px; } .framer-TknN4 .framer-7kqnmx { max-width: 768px; padding: 30px; } .framer-TknN4 .framer-z1mk00 { gap: 35px; width: 85%; } .framer-TknN4 .framer-xc1bsu { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-TknN4 .framer-1jpyf5d { width: 421px; } .framer-TknN4 .framer-zdevyc { bottom: 218px; height: unset; left: 81px; right: -799px; top: -13px; width: unset; } .framer-TknN4 .framer-etaf0d { bottom: 344px; height: unset; left: -12px; right: -373px; top: -283px; width: unset; } .framer-TknN4 .framer-j14onu, .framer-TknN4 .framer-110e3hr { gap: 50px; } .framer-TknN4 .framer-19mse9o { padding: 35px 30px 40px 30px; } .framer-TknN4 .framer-1c5mke1 { order: 0; } .framer-TknN4 .framer-yvaa5f-container { height: 567px; width: 1109px; } .framer-TknN4 .framer-18dp9zo { gap: 30px; order: 1; width: 80%; } .framer-TknN4 .framer-1nmrrlp, .framer-TknN4 .framer-1c1e4yr, .framer-TknN4 .framer-f5bvm9, .framer-TknN4 .framer-ozkl7e, .framer-TknN4 .framer-17x0w3l, .framer-TknN4 .framer-1q4wr7j, .framer-TknN4 .framer-1bjyrn8, .framer-TknN4 .framer-1jisq5x-container, .framer-TknN4 .framer-8omzh2, .framer-TknN4 .framer-ugem9m, .framer-TknN4 .framer-qoqjcc { width: 100%; } .framer-TknN4 .framer-19jkeb0 { height: 81.5vh; justify-content: flex-start; padding: 0px 40px 0px 40px; } .framer-TknN4 .framer-625ghs, .framer-TknN4 .framer-17mju7a, .framer-TknN4 .framer-13e13u8 { justify-content: flex-start; } .framer-TknN4 .framer-1lbphpj { height: min-content; } .framer-TknN4 .framer-14sxlct { align-content: center; align-items: center; justify-content: flex-start; left: unset; position: relative; top: unset; transform: unset; width: 100%; } .framer-TknN4 .framer-rr1sub { bottom: -615px; height: 664px; left: unset; right: -19px; top: unset; width: 698px; } .framer-TknN4 .framer-fbtvdi { padding: 80px 40px 80px 40px; } .framer-TknN4 .framer-14k1w60 { overflow: visible; } .framer-TknN4 .framer-qrwfey { bottom: -91px; height: 653px; left: -18px; right: -18px; top: unset; width: unset; } .framer-TknN4 .framer-o4gziz { padding: 10px 30px 40px 30px; } .framer-TknN4 .framer-1ielvvl { flex-direction: column; gap: 50px; max-width: 768px; } .framer-TknN4 .framer-ismen8 { flex: none; gap: 30px; order: 0; padding: 20px 0px 60px 0px; width: 80%; } .framer-TknN4 .framer-1oh30uf { align-content: flex-start; align-items: flex-start; padding: 60px 40px 60px 40px; } .framer-TknN4 .framer-1enz01k { flex-direction: column; justify-content: flex-start; } .framer-TknN4 .framer-zxdrrc { justify-content: flex-start; width: 100%; } .framer-TknN4 .framer-1gpvdut, .framer-TknN4 .framer-h6viv3 { height: 100vh; } .framer-TknN4 .framer-clxi4b { padding: 60px; } .framer-TknN4 .framer-o4tydx { width: 380px; } .framer-TknN4 .framer-1yo2lsk { height: 100vh; padding: 80px 20px 80px 20px; width: 768px; } .framer-TknN4 .framer-1gkxshg { justify-content: center; order: 0; overflow: visible; } .framer-TknN4 .framer-1mrbcpw, .framer-TknN4 .framer-eool7b, .framer-TknN4 .framer-7r5e1, .framer-TknN4 .framer-1h2ypy6, .framer-TknN4 .framer-m76x51 { width: 46%; } .framer-TknN4 .framer-1x0ehhd { min-height: 412px; } .framer-TknN4 .framer-tc1ye4, .framer-TknN4 .framer-4a3wmh { max-width: 100%; } .framer-TknN4 .framer-1wwrubc { gap: 40px; justify-content: center; } .framer-TknN4 .framer-1rnasbf { flex-direction: column; } .framer-TknN4 .framer-1j9mewz-container { flex: 1 0 0px; width: 1px; } .framer-TknN4 .framer-1gflq83 { padding: 0px 0px 0px 20px; } .framer-TknN4 .framer-1nwpz70 { padding: 20px; } .framer-TknN4 .framer-a1p17b { height: 100vh; padding: 150px 0px 270px 0px; } .framer-TknN4 .framer-u6q1po { bottom: -213px; right: 131px; } .framer-TknN4 .framer-1mdtt9v { bottom: -246px; left: 128px; } .framer-TknN4 .framer-qo64ol { left: 48px; top: 50px; } .framer-TknN4 .framer-iqtar4 { bottom: 291px; left: 267px; } .framer-TknN4 .framer-7nliu6 { bottom: 446px; left: 34px; } .framer-TknN4 .framer-ukrqir { bottom: -63px; right: 61px; } .framer-TknN4 .framer-1jxixv2 { bottom: 141px; right: 30px; } .framer-TknN4 .framer-ufqvts { bottom: 398px; right: 70px; } .framer-TknN4 .framer-pdzq64 { bottom: 330px; right: 253px; } .framer-TknN4 .framer-hi02t6 { bottom: -29px; } .framer-TknN4 .framer-19gcfu2 { padding: 80px 30px 80px 30px; } .framer-TknN4 .framer-1cef9k4 { gap: 50px; max-width: 100%; } .framer-TknN4 .framer-1wdyrli { width: 65%; } .framer-TknN4 .framer-dbtejp { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-TknN4 .framer-3f1fao { padding: 35px 30px 75px 30px; } .framer-TknN4 .framer-19efimm { max-width: 768px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TknN4 .framer-z1mk00, .framer-TknN4 .framer-j14onu, .framer-TknN4 .framer-18dp9zo, .framer-TknN4 .framer-1ielvvl, .framer-TknN4 .framer-ismen8, .framer-TknN4 .framer-1enz01k, .framer-TknN4 .framer-110e3hr, .framer-TknN4 .framer-1wwrubc, .framer-TknN4 .framer-1rnasbf, .framer-TknN4 .framer-1cef9k4 { gap: 0px; } .framer-TknN4 .framer-z1mk00 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-TknN4 .framer-z1mk00 > :first-child, .framer-TknN4 .framer-j14onu > :first-child, .framer-TknN4 .framer-18dp9zo > :first-child, .framer-TknN4 .framer-1ielvvl > :first-child, .framer-TknN4 .framer-ismen8 > :first-child, .framer-TknN4 .framer-1enz01k > :first-child, .framer-TknN4 .framer-110e3hr > :first-child, .framer-TknN4 .framer-1cef9k4 > :first-child { margin-top: 0px; } .framer-TknN4 .framer-z1mk00 > :last-child, .framer-TknN4 .framer-j14onu > :last-child, .framer-TknN4 .framer-18dp9zo > :last-child, .framer-TknN4 .framer-1ielvvl > :last-child, .framer-TknN4 .framer-ismen8 > :last-child, .framer-TknN4 .framer-1enz01k > :last-child, .framer-TknN4 .framer-110e3hr > :last-child, .framer-TknN4 .framer-1cef9k4 > :last-child { margin-bottom: 0px; } .framer-TknN4 .framer-j14onu > *, .framer-TknN4 .framer-1ielvvl > *, .framer-TknN4 .framer-110e3hr > *, .framer-TknN4 .framer-1cef9k4 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-TknN4 .framer-18dp9zo > *, .framer-TknN4 .framer-ismen8 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-TknN4 .framer-1enz01k > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-TknN4 .framer-1wwrubc > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-TknN4 .framer-1wwrubc > :first-child { margin-left: 0px; } .framer-TknN4 .framer-1wwrubc > :last-child { margin-right: 0px; } .framer-TknN4 .framer-1rnasbf > *, .framer-TknN4 .framer-1rnasbf > :first-child, .framer-TknN4 .framer-1rnasbf > :last-child { margin: 0px; } }}\",\"@media (max-width: 767px) { .framer-TknN4.framer-72rtr7 { width: 390px; } .framer-TknN4 .framer-1f3d0wy-container { order: 16; top: 24px; width: 96%; } .framer-TknN4 .framer-rssdkj, .framer-TknN4 .framer-1y50ay4, .framer-TknN4 .framer-18n6rcw, .framer-TknN4 .framer-1kq2f0k { order: 0; } .framer-TknN4 .framer-1isa7c1 { height: 100vh; padding: 20px 20px 60px 20px; } .framer-TknN4 .framer-7kqnmx { gap: 40px; max-width: 390px; } .framer-TknN4 .framer-z1mk00 { gap: 3px; order: 0; } .framer-TknN4 .framer-1a2okt6, .framer-TknN4 .framer-1yn6du6, .framer-TknN4 .framer-1jpyf5d, .framer-TknN4 .framer-1nmrrlp, .framer-TknN4 .framer-f5bvm9, .framer-TknN4 .framer-2le1o6, .framer-TknN4 .framer-1u3ywyq, .framer-TknN4 .framer-ozkl7e, .framer-TknN4 .framer-17x0w3l, .framer-TknN4 .framer-1q4wr7j, .framer-TknN4 .framer-1bjyrn8, .framer-TknN4 .framer-zxdrrc, .framer-TknN4 .framer-xucqyf, .framer-TknN4 .framer-eool7b, .framer-TknN4 .framer-7r5e1, .framer-TknN4 .framer-1h2ypy6, .framer-TknN4 .framer-m76x51, .framer-TknN4 .framer-8omzh2, .framer-TknN4 .framer-ugem9m, .framer-TknN4 .framer-lvttqu, .framer-TknN4 .framer-1wdyrli, .framer-TknN4 .framer-qoqjcc, .framer-TknN4 .framer-2486xv { width: 100%; } .framer-TknN4 .framer-xc1bsu { height: 53px; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-TknN4 .framer-edw8ix { justify-content: flex-start; width: 350px; } .framer-TknN4 .framer-gw1ck4 { height: 464px; order: 1; } .framer-TknN4 .framer-zdevyc { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; bottom: 270px; height: unset; left: 0px; right: -258px; top: 111px; width: unset; } .framer-TknN4 .framer-1mwc11c { flex: none; order: 1; width: 175px; } .framer-TknN4 .framer-etaf0d { bottom: 16px; height: unset; left: -156px; order: 0; right: -109px; top: 217px; width: unset; } .framer-TknN4 .framer-j14onu { gap: 50px; order: 1; } .framer-TknN4 .framer-19mse9o { height: 785px; order: 2; padding: 25px 20px 30px 20px; } .framer-TknN4 .framer-1c5mke1 { height: 371px; } .framer-TknN4 .framer-yvaa5f-container { height: 280px; left: -87px; right: -78px; top: 58px; width: unset; } .framer-TknN4 .framer-18dp9zo { gap: 25px; } .framer-TknN4 .framer-1c1e4yr { justify-content: flex-end; width: 100%; } .framer-TknN4 .framer-w4c925 { gap: 16px; } .framer-TknN4 .framer-19jkeb0 { height: 100vh; justify-content: flex-start; order: 3; padding: 60px 20px 60px 20px; } .framer-TknN4 .framer-625ghs { flex-direction: column; max-width: 308%; } .framer-TknN4 .framer-1lbphpj, .framer-TknN4 .framer-1cfjqtt { flex: none; height: min-content; width: 100%; } .framer-TknN4 .framer-14sxlct { gap: 10px; left: unset; order: 0; position: relative; top: unset; transform: unset; width: 100%; } .framer-TknN4 .framer-rr1sub { bottom: unset; height: 553px; left: unset; order: 1; overflow: hidden; position: relative; top: unset; width: 582px; } .framer-TknN4 .framer-fbtvdi { order: 4; padding: 60px 20px 0px 20px; } .framer-TknN4 .framer-17mju7a, .framer-TknN4 .framer-1rnasbf, .framer-TknN4 .framer-1gflq83, .framer-TknN4 .framer-1nwpz70 { flex-direction: column; } .framer-TknN4 .framer-1ylmnza, .framer-TknN4 .framer-19ckcg, .framer-TknN4 .framer-hhrtzu-container { flex: none; width: 100%; } .framer-TknN4 .framer-14k1w60 { order: 1; overflow: visible; } .framer-TknN4 .framer-qrwfey { bottom: unset; height: 358px; left: -20px; right: -25px; top: 83px; width: unset; } .framer-TknN4 .framer-o4gziz { order: 5; padding: 25px 20px 30px 20px; } .framer-TknN4 .framer-1ielvvl { flex-direction: column; max-width: 390px; } .framer-TknN4 .framer-ismen8 { flex: none; gap: 25px; order: 0; padding: 20px 0px 60px 0px; width: 100%; } .framer-TknN4 .framer-1oh30uf { order: 6; padding: 60px 0px 61px 30px; } .framer-TknN4 .framer-1enz01k { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 0px 30px 0px 0px; } .framer-TknN4 .framer-1jisq5x-container { width: 361px; } .framer-TknN4 .framer-615x4z { height: 125vh; order: 7; z-index: 2; } .framer-TknN4 .framer-1gpvdut { height: 100%; } .framer-TknN4 .framer-clxi4b { flex-direction: column; height: 100vh; padding: 20px; } .framer-TknN4 .framer-o4tydx { left: 50%; order: 0; position: absolute; top: 60px; transform: translateX(-50%); width: 350px; } .framer-TknN4 .framer-1yo2lsk { aspect-ratio: 0.41711229946524064 / 1; height: var(--framer-aspect-ratio-supported, 1022px); order: 8; padding: 30px 20px 30px 20px; } .framer-TknN4 .framer-tc1ye4, .framer-TknN4 .framer-4a3wmh { max-width: 100%; } .framer-TknN4 .framer-110e3hr { gap: 40px; } .framer-TknN4 .framer-1wwrubc { flex-direction: column; gap: 50px; justify-content: center; } .framer-TknN4 .framer-h6viv3 { height: min-content; order: 9; padding: 60px 20px 100px 20px; } .framer-TknN4 .framer-1j9mewz-container { flex: 1 0 0px; width: 1px; } .framer-TknN4 .framer-2o4r06 { height: min-content; order: 10; } .framer-TknN4 .framer-c09cg8 { padding: 40px 20px 20px 20px; } .framer-TknN4 .framer-a1p17b { order: 13; overflow: visible; padding: 100px 20px 150px 20px; z-index: 1; } .framer-TknN4 .framer-1h8i2mi { gap: 30px; } .framer-TknN4 .framer-u6q1po { aspect-ratio: 1.9012345679012346 / 1; bottom: -120px; height: var(--framer-aspect-ratio-supported, 81px); right: -15px; width: 154px; } .framer-TknN4 .framer-1mdtt9v { aspect-ratio: unset; bottom: -58px; height: 48px; left: -20px; width: 151px; } .framer-TknN4 .framer-qo64ol { height: var(--framer-aspect-ratio-supported, 64px); left: 0px; top: -100px; width: 64px; } .framer-TknN4 .framer-iqtar4 { bottom: 311px; height: var(--framer-aspect-ratio-supported, 62px); left: 288px; width: 62px; } .framer-TknN4 .framer-7nliu6 { aspect-ratio: 2.869565217391304 / 1; bottom: 294px; height: var(--framer-aspect-ratio-supported, 35px); left: 94px; width: 99px; } .framer-TknN4 .framer-19gcfu2 { order: 12; padding: 30px 20px 30px 20px; } .framer-TknN4 .framer-1cef9k4 { gap: 30px; max-width: 100%; } .framer-TknN4 .framer-dbtejp { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-TknN4 .framer-edqk92 { order: 14; } .framer-TknN4 .framer-3f1fao { padding: 25px 20px 60px 20px; } .framer-TknN4 .framer-19efimm { gap: 35px; max-width: 390px; } .framer-TknN4 .framer-r773wq { gap: 15px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TknN4 .framer-7kqnmx, .framer-TknN4 .framer-z1mk00, .framer-TknN4 .framer-j14onu, .framer-TknN4 .framer-18dp9zo, .framer-TknN4 .framer-w4c925, .framer-TknN4 .framer-625ghs, .framer-TknN4 .framer-14sxlct, .framer-TknN4 .framer-17mju7a, .framer-TknN4 .framer-1ielvvl, .framer-TknN4 .framer-ismen8, .framer-TknN4 .framer-1enz01k, .framer-TknN4 .framer-clxi4b, .framer-TknN4 .framer-110e3hr, .framer-TknN4 .framer-1wwrubc, .framer-TknN4 .framer-1rnasbf, .framer-TknN4 .framer-1gflq83, .framer-TknN4 .framer-1nwpz70, .framer-TknN4 .framer-1h8i2mi, .framer-TknN4 .framer-1cef9k4, .framer-TknN4 .framer-19efimm, .framer-TknN4 .framer-r773wq { gap: 0px; } .framer-TknN4 .framer-7kqnmx > *, .framer-TknN4 .framer-1ielvvl > *, .framer-TknN4 .framer-1enz01k > *, .framer-TknN4 .framer-110e3hr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-TknN4 .framer-7kqnmx > :first-child, .framer-TknN4 .framer-z1mk00 > :first-child, .framer-TknN4 .framer-j14onu > :first-child, .framer-TknN4 .framer-18dp9zo > :first-child, .framer-TknN4 .framer-w4c925 > :first-child, .framer-TknN4 .framer-625ghs > :first-child, .framer-TknN4 .framer-14sxlct > :first-child, .framer-TknN4 .framer-17mju7a > :first-child, .framer-TknN4 .framer-1ielvvl > :first-child, .framer-TknN4 .framer-ismen8 > :first-child, .framer-TknN4 .framer-1enz01k > :first-child, .framer-TknN4 .framer-clxi4b > :first-child, .framer-TknN4 .framer-110e3hr > :first-child, .framer-TknN4 .framer-1wwrubc > :first-child, .framer-TknN4 .framer-1gflq83 > :first-child, .framer-TknN4 .framer-1nwpz70 > :first-child, .framer-TknN4 .framer-1h8i2mi > :first-child, .framer-TknN4 .framer-1cef9k4 > :first-child, .framer-TknN4 .framer-19efimm > :first-child, .framer-TknN4 .framer-r773wq > :first-child { margin-top: 0px; } .framer-TknN4 .framer-7kqnmx > :last-child, .framer-TknN4 .framer-z1mk00 > :last-child, .framer-TknN4 .framer-j14onu > :last-child, .framer-TknN4 .framer-18dp9zo > :last-child, .framer-TknN4 .framer-w4c925 > :last-child, .framer-TknN4 .framer-625ghs > :last-child, .framer-TknN4 .framer-14sxlct > :last-child, .framer-TknN4 .framer-17mju7a > :last-child, .framer-TknN4 .framer-1ielvvl > :last-child, .framer-TknN4 .framer-ismen8 > :last-child, .framer-TknN4 .framer-1enz01k > :last-child, .framer-TknN4 .framer-clxi4b > :last-child, .framer-TknN4 .framer-110e3hr > :last-child, .framer-TknN4 .framer-1wwrubc > :last-child, .framer-TknN4 .framer-1gflq83 > :last-child, .framer-TknN4 .framer-1nwpz70 > :last-child, .framer-TknN4 .framer-1h8i2mi > :last-child, .framer-TknN4 .framer-1cef9k4 > :last-child, .framer-TknN4 .framer-19efimm > :last-child, .framer-TknN4 .framer-r773wq > :last-child { margin-bottom: 0px; } .framer-TknN4 .framer-z1mk00 > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-TknN4 .framer-j14onu > *, .framer-TknN4 .framer-1wwrubc > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-TknN4 .framer-18dp9zo > *, .framer-TknN4 .framer-ismen8 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-TknN4 .framer-w4c925 > *, .framer-TknN4 .framer-1gflq83 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-TknN4 .framer-625ghs > *, .framer-TknN4 .framer-17mju7a > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-TknN4 .framer-14sxlct > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TknN4 .framer-clxi4b > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-TknN4 .framer-1rnasbf > *, .framer-TknN4 .framer-1rnasbf > :first-child, .framer-TknN4 .framer-1rnasbf > :last-child { margin: 0px; } .framer-TknN4 .framer-1nwpz70 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-TknN4 .framer-1h8i2mi > *, .framer-TknN4 .framer-1cef9k4 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-TknN4 .framer-19efimm > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-TknN4 .framer-r773wq > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15175.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"o_6C2gw4T\":{\"layout\":[\"fixed\",\"auto\"]},\"qKfmuAscl\":{\"layout\":[\"fixed\",\"auto\"]},\"y9F_ZK1jT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Rua3pIvNt\":{\"pattern\":\":Rua3pIvNt\",\"name\":\"hero\"},\"bYeqaQz22\":{\"pattern\":\":bYeqaQz22\",\"name\":\"customer-stories\"},\"mx82DJwKK\":{\"pattern\":\":mx82DJwKK\",\"name\":\"faq\"},\"tobXdbnXd\":{\"pattern\":\":tobXdbnXd\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-TknN4\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:15175.5,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.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:\"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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{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/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{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/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{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/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{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/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{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/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"}]},...NavbarBannerDesktopFonts,...FlippingWordsFonts,...ButtonFonts,...BrandTickerFonts,...VimeoFonts,...TabFonts,...CarouselFonts,...CardJumpTabletFonts,...CardJumpFonts,...SlideshowFonts,...ArticleCardFonts,...ReviewCard2Fonts,...FAQFonts,...FooterFonts,...BottomSectionFonts,...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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"Rua3pIvNt\\\":{\\\"pattern\\\":\\\":Rua3pIvNt\\\",\\\"name\\\":\\\"hero\\\"},\\\"bYeqaQz22\\\":{\\\"pattern\\\":\\\":bYeqaQz22\\\",\\\"name\\\":\\\"customer-stories\\\"},\\\"mx82DJwKK\\\":{\\\"pattern\\\":\\\":mx82DJwKK\\\",\\\"name\\\":\\\"faq\\\"},\\\"tobXdbnXd\\\":{\\\"pattern\\\":\\\":tobXdbnXd\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"15175.5\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o_6C2gw4T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qKfmuAscl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y9F_ZK1jT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "e", "n", "progress", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "mouseEnter", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "h5TSGb319", "mk2YLIF3l", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1o4661y", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerYeb8FubXB", "withCSS", "Yeb8FubXB_default", "addPropertyControls", "ControlType", "addFonts", "CardFonts", "getFonts", "Yeb8FubXB_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "g88FU9Gnu", "bbO3AO60M", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter19x7j8h", "args", "onMouseEnter19sh89b", "onMouseLeave9gq06a", "onMouseEnteri1mh0t", "onMouseEntervuwum2", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerhNHEfcoqs", "withCSS", "hNHEfcoqs_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "shadow", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "rhl2zfrPb", "F9r1QETbU", "nNX2BwciB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapt2dhss", "args", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerCzHS4t1Pr", "withCSS", "CzHS4t1Pr_default", "addPropertyControls", "ControlType", "addFonts", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "paragraph", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BhHM3TElp", "p2WSoDKS0", "XFh7JJDCR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "FramerL_7Ssr_se", "withCSS", "L_7Ssr_se_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "IconBoxFonts", "getFonts", "L_7Ssr_se_default", "TabImage01Fonts", "CzHS4t1Pr_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "kzMN15MDe", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap28sms5", "args", "onTap1t72bmx", "onTapy6stnb", "onTapo0y54k", "onTap1cuip4m", "onTap16ib9c", "onTapsjiyvt", "onTapcw1xms", "onTapkhul6f", "onTap1xyrqoh", "onTap3525eo", "onTapjdqugo", "onTapa8yba5", "onTap101qvbx", "onTap49x5dx", "onTap836yny", "onTapmm5cf", "onTapa7baay", "onTape5f6dp", "F9r1QETbU28sms5", "F9r1QETbU1t72bmx", "F9r1QETbUy6stnb", "F9r1QETbUo0y54k", "F9r1QETbU101qvbx", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerHsm4dM52D", "withCSS", "Hsm4dM52D_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "category", "date", "height", "id", "image", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "oyGqyLxOw", "Og2LutR4F", "R9tfgJlnZ", "Kf4YkwRS5", "jFFRxQr2X", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Frameri5tW49nCD", "withCSS", "i5tW49nCD_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CardFonts", "getFonts", "Yeb8FubXB_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "g88FU9Gnu", "bbO3AO60M", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter19x7j8h", "args", "onMouseLeave1hpxsr7", "onMouseEnter1bzoclt", "onMouseLeavep4cxi5", "onMouseEnterw05df1", "onMouseEntera9k1wa", "mk2YLIF3la9k1wa", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerJM7jN8Cl9", "withCSS", "JM7jN8Cl9_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "title2", "title3", "title4", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AjLtZe2_Y", "gInxNjDFi", "zaCRG43gK", "JRH2wQKr6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear15nnr0i", "args", "onAppearcclrla", "onAppear10f3fnx", "onAppear1n3fh8p", "onAppear104l6th", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FramerpOinAICx8", "withCSS", "pOinAICx8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavbarBannerDesktopFonts", "getFonts", "CkPmzATJd_default", "RichTextWithFX", "withFX", "RichText2", "FlippingWordsFonts", "pOinAICx8_default", "ContainerWithFX", "Container", "ButtonFonts", "VOynT_b_v_default", "BrandTickerFonts", "qGje7eo2W_default", "VimeoFonts", "Vimeo_default", "MotionDivWithFX", "motion", "TabFonts", "Hsm4dM52D_default", "CarouselFonts", "Carousel", "CardJumpTabletFonts", "JM7jN8Cl9_default", "CardJumpFonts", "hNHEfcoqs_default", "SlideshowFonts", "Slideshow", "ArticleCardFonts", "i5tW49nCD_default", "ImageWithFX", "Image2", "ReviewCard2Fonts", "fxUvcG0gA_default", "FAQFonts", "FgoBYhIxV_default", "FooterFonts", "muwELOiTK_default", "BottomSectionFonts", "rEggKL3AX_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "transition5", "animation4", "transition6", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation5", "transition7", "animation6", "inertia", "preventDefault", "e", "animation7", "addImageAlt", "image", "alt", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "CE3Ccv5Q4sGImIHPry", "rQcV7vlpHsGImIHPry", "ANOEAKCQKsGImIHPry", "bjAEz1hEHsGImIHPry", "idsGImIHPry", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId1", "ref2", "ref3", "elementId2", "ref4", "elementId3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "FormContainer", "formState", "l", "resolvedLinks1", "resolvedLinks2", "SVG", "resolvedLinks3", "Link", "ChildrenCanSuspend", "oRXr591Ze_default", "collection", "paginationInfo", "loadMore", "index", "PathVariablesContext", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
