{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/oZVVAHI9BPD1Hr0VwZQj/s3AJJqKaHmrwgQR5eAZ4/ICOxHiCj3.js", "ssg:https://framerusercontent.com/modules/Xrkp5tt5L0w5qpmd7Ewh/wmQitnax5N40sNuAYFe7/IslImVgiO.js", "ssg:https://framerusercontent.com/modules/S5nKHwXNxp5aXoyfYNwR/l0W7R3iKm7DQpz8QtAHs/iRNTJh8ys.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}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(()=>{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));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\",{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\",{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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (20caf11)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={biXtMDV5y:{hover:true},GPhkHkuSE:{hover:true},o19NPfJRz:{hover:true},oTXsW1d7R:{hover:true},xhh2mIrgp:{hover:true},XoulufatZ:{hover:true}};const cycleOrder=[\"XoulufatZ\",\"oTXsW1d7R\",\"xhh2mIrgp\",\"GPhkHkuSE\",\"o19NPfJRz\",\"biXtMDV5y\"];const serializationHash=\"framer-HkJ1r\";const variantClassNames={biXtMDV5y:\"framer-v-nigxh1\",GPhkHkuSE:\"framer-v-19fzh9c\",o19NPfJRz:\"framer-v-1obqg06\",oTXsW1d7R:\"framer-v-130w7tx\",xhh2mIrgp:\"framer-v-ii5h6w\",XoulufatZ:\"framer-v-k4xdpl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"people manage\":\"oTXsW1d7R\",cashout:\"GPhkHkuSE\",payroll:\"xhh2mIrgp\",reports:\"biXtMDV5y\",scheduling:\"o19NPfJRz\",time:\"XoulufatZ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"XoulufatZ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XoulufatZ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dHc28374c\"},...addPropertyOverrides({biXtMDV5y:{href:{webPageId:\"XbQ_GNPg_\"},openInNewTab:false},GPhkHkuSE:{href:{webPageId:\"gQu6jXsT6\"},openInNewTab:false},o19NPfJRz:{href:{webPageId:\"ImvvTDQAZ\"},openInNewTab:false},oTXsW1d7R:{href:{webPageId:\"UkT9TG2dp\"},openInNewTab:false},xhh2mIrgp:{href:{webPageId:\"HwgeLGAZK\"},openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-k4xdpl\",className,classNames)} framer-r88fwh`,\"data-framer-name\":\"time\",layoutDependency:layoutDependency,layoutId:\"XoulufatZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({\"biXtMDV5y-hover\":{\"data-framer-name\":undefined},\"GPhkHkuSE-hover\":{\"data-framer-name\":undefined},\"o19NPfJRz-hover\":{\"data-framer-name\":undefined},\"oTXsW1d7R-hover\":{\"data-framer-name\":undefined},\"xhh2mIrgp-hover\":{\"data-framer-name\":undefined},\"XoulufatZ-hover\":{\"data-framer-name\":undefined},biXtMDV5y:{\"data-framer-name\":\"reports\"},GPhkHkuSE:{\"data-framer-name\":\"cashout\"},o19NPfJRz:{\"data-framer-name\":\"scheduling\"},oTXsW1d7R:{\"data-framer-name\":\"people manage\"},xhh2mIrgp:{\"data-framer-name\":\"payroll\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 69, 212))\"},children:\"Learn more\"})}),className:\"framer-e4zsk7\",fonts:[\"GF;Open Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"jcMJ7yWIA\",style:{\"--extracted-r6o4lv\":\"rgb(23, 69, 212)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"biXtMDV5y-hover\":{\"--extracted-r6o4lv\":\"rgb(16, 49, 151)\"},\"GPhkHkuSE-hover\":{\"--extracted-r6o4lv\":\"rgb(16, 49, 151)\"},\"o19NPfJRz-hover\":{\"--extracted-r6o4lv\":\"rgb(16, 49, 151)\"},\"oTXsW1d7R-hover\":{\"--extracted-r6o4lv\":\"rgb(16, 49, 151)\"},\"xhh2mIrgp-hover\":{\"--extracted-r6o4lv\":\"rgb(16, 49, 151)\"},\"XoulufatZ-hover\":{\"--extracted-r6o4lv\":\"rgb(16, 49, 151)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"biXtMDV5y-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 49, 151))\",\"--framer-text-decoration\":\"underline\"},children:\"Learn more\"})})},\"GPhkHkuSE-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 49, 151))\",\"--framer-text-decoration\":\"underline\"},children:\"Learn more\"})})},\"o19NPfJRz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 49, 151))\",\"--framer-text-decoration\":\"underline\"},children:\"Learn more\"})})},\"oTXsW1d7R-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 49, 151))\",\"--framer-text-decoration\":\"underline\"},children:\"Learn more\"})})},\"xhh2mIrgp-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 49, 151))\",\"--framer-text-decoration\":\"underline\"},children:\"Learn more\"})})},\"XoulufatZ-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 49, 151))\",\"--framer-text-decoration\":\"underline\"},children:\"Learn more\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xj0ndm\",\"data-framer-name\":\"arrow\",fill:\"black\",intrinsicHeight:12,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"zkdTAgsAM\",svg:'<svg width=\"12\" height=\"12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 2.5 10.5 6m0 0L7 9.5M10.5 6h-9\" stroke=\"#1745D4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HkJ1r.framer-r88fwh, .framer-HkJ1r .framer-r88fwh { display: block; }\",\".framer-HkJ1r.framer-k4xdpl { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-HkJ1r .framer-e4zsk7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HkJ1r .framer-1xj0ndm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HkJ1r.framer-k4xdpl { gap: 0px; } .framer-HkJ1r.framer-k4xdpl > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-HkJ1r.framer-k4xdpl > :first-child { margin-left: 0px; } .framer-HkJ1r.framer-k4xdpl > :last-child { margin-right: 0px; } }\",\".framer-HkJ1r.framer-v-k4xdpl.hover.framer-k4xdpl, .framer-HkJ1r.framer-v-130w7tx.hover.framer-k4xdpl, .framer-HkJ1r.framer-v-ii5h6w.hover.framer-k4xdpl, .framer-HkJ1r.framer-v-19fzh9c.hover.framer-k4xdpl, .framer-HkJ1r.framer-v-1obqg06.hover.framer-k4xdpl, .framer-HkJ1r.framer-v-nigxh1.hover.framer-k4xdpl { gap: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HkJ1r.framer-v-k4xdpl.hover.framer-k4xdpl { gap: 0px; } .framer-HkJ1r.framer-v-k4xdpl.hover.framer-k4xdpl > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-HkJ1r.framer-v-k4xdpl.hover.framer-k4xdpl > :first-child { margin-left: 0px; } .framer-HkJ1r.framer-v-k4xdpl.hover.framer-k4xdpl > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HkJ1r.framer-v-130w7tx.hover.framer-k4xdpl { gap: 0px; } .framer-HkJ1r.framer-v-130w7tx.hover.framer-k4xdpl > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-HkJ1r.framer-v-130w7tx.hover.framer-k4xdpl > :first-child { margin-left: 0px; } .framer-HkJ1r.framer-v-130w7tx.hover.framer-k4xdpl > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HkJ1r.framer-v-ii5h6w.hover.framer-k4xdpl { gap: 0px; } .framer-HkJ1r.framer-v-ii5h6w.hover.framer-k4xdpl > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-HkJ1r.framer-v-ii5h6w.hover.framer-k4xdpl > :first-child { margin-left: 0px; } .framer-HkJ1r.framer-v-ii5h6w.hover.framer-k4xdpl > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HkJ1r.framer-v-19fzh9c.hover.framer-k4xdpl { gap: 0px; } .framer-HkJ1r.framer-v-19fzh9c.hover.framer-k4xdpl > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-HkJ1r.framer-v-19fzh9c.hover.framer-k4xdpl > :first-child { margin-left: 0px; } .framer-HkJ1r.framer-v-19fzh9c.hover.framer-k4xdpl > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HkJ1r.framer-v-1obqg06.hover.framer-k4xdpl { gap: 0px; } .framer-HkJ1r.framer-v-1obqg06.hover.framer-k4xdpl > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-HkJ1r.framer-v-1obqg06.hover.framer-k4xdpl > :first-child { margin-left: 0px; } .framer-HkJ1r.framer-v-1obqg06.hover.framer-k4xdpl > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HkJ1r.framer-v-nigxh1.hover.framer-k4xdpl { gap: 0px; } .framer-HkJ1r.framer-v-nigxh1.hover.framer-k4xdpl > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-HkJ1r.framer-v-nigxh1.hover.framer-k4xdpl > :first-child { margin-left: 0px; } .framer-HkJ1r.framer-v-nigxh1.hover.framer-k4xdpl > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 43\n * @framerIntrinsicWidth 106.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"oTXsW1d7R\":{\"layout\":[\"auto\",\"auto\"]},\"xhh2mIrgp\":{\"layout\":[\"auto\",\"auto\"]},\"GPhkHkuSE\":{\"layout\":[\"auto\",\"auto\"]},\"o19NPfJRz\":{\"layout\":[\"auto\",\"auto\"]},\"biXtMDV5y\":{\"layout\":[\"auto\",\"auto\"]},\"pFm0w1Xle\":{\"layout\":[\"auto\",\"auto\"]},\"Gl8xTWpHK\":{\"layout\":[\"auto\",\"auto\"]},\"eCHMs5iOQ\":{\"layout\":[\"auto\",\"auto\"]},\"hjlQn0UNE\":{\"layout\":[\"auto\",\"auto\"]},\"eG4WlzXCy\":{\"layout\":[\"auto\",\"auto\"]},\"TD_oY2Pjd\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerICOxHiCj3=withCSS(Component,css,\"framer-HkJ1r\");export default FramerICOxHiCj3;FramerICOxHiCj3.displayName=\"link\";FramerICOxHiCj3.defaultProps={height:43,width:106.5};addPropertyControls(FramerICOxHiCj3,{variant:{options:[\"XoulufatZ\",\"oTXsW1d7R\",\"xhh2mIrgp\",\"GPhkHkuSE\",\"o19NPfJRz\",\"biXtMDV5y\"],optionTitles:[\"time\",\"people manage\",\"payroll\",\"cashout\",\"scheduling\",\"reports\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerICOxHiCj3,[{explicitInter:true,fonts:[{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4iY1M2xLER.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerICOxHiCj3\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oTXsW1d7R\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xhh2mIrgp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GPhkHkuSE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"o19NPfJRz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"biXtMDV5y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pFm0w1Xle\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Gl8xTWpHK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eCHMs5iOQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hjlQn0UNE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eG4WlzXCy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TD_oY2Pjd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"43\",\"framerIntrinsicWidth\":\"106.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ICOxHiCj3.map", "// Generated by Framer (1be12e0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/S5XvuDvF2UVF7G04FP9B/aGqVwd2VSC1I0oxdXJRN/Ayv6VqwvD.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/CLOZsmp2KD0Kfmda7E2y/JP5STRXsexhTZxOdyPaX/i3J3gu8dc.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/1VYhg8y4p5M1dTLVgvRo/KbT8ptlNrh1fZgA8vDzM/lamLrFu15.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/Nh4nRxkPRxUTbRIAQEV0/NFU92U0IVV5TQXTTwjaM/LvD0_AToD.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/E3jfqFLmBvUTqHfRTXrW/ujPO3ZGtkvJIGqn91W0O/VqKVpJrG2.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Vc6F2zAy8hIEYI0IAuKX/vWsxU50LNH17WvSzTkuB/Wy_VHEAQO.js\";import Link from\"https://framerusercontent.com/modules/oZVVAHI9BPD1Hr0VwZQj/s3AJJqKaHmrwgQR5eAZ4/ICOxHiCj3.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const LinkFonts=getFonts(Link);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"Xzxgrlpmw\",\"StQRqK8xZ\"];const serializationHash=\"framer-A3HJD\";const variantClassNames={StQRqK8xZ:\"framer-v-jvy5mh\",Xzxgrlpmw:\"framer-v-1p01vrs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation2={boxShadow:\"0px 0.48174984141951427px 0.48174984141951427px -0.8333333333333333px rgba(0, 0, 0, 0.05), 0px 1.8308266425947657px 1.8308266425947657px -1.6666666666666665px rgba(0, 0, 0, 0.05), 0px 8px 8px -2.5px rgba(0, 0, 0, 0.05)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-5};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const transition3={bounce:.2,delay:0,duration:2.3,type:\"spring\"};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Feature Set\":\"Xzxgrlpmw\",\"Variant 2\":\"StQRqK8xZ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Xzxgrlpmw\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Xzxgrlpmw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1p01vrs\",className,classNames),\"data-framer-name\":\"Feature Set\",layoutDependency:layoutDependency,layoutId:\"Xzxgrlpmw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},...addPropertyOverrides({StQRqK8xZ:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1u7veox\",\"data-framer-appear-id\":\"1u7veox\",\"data-framer-name\":\"headline\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"SHuYGTgyD\",optimized:true,style:{backgroundColor:\"rgb(23, 69, 212)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"OUR FEATURES\"})}),className:\"framer-t98eka\",\"data-framer-name\":\"OUR FEATURES\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QX3v8MbNE\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-174u0ow\",layoutDependency:layoutDependency,layoutId:\"HTTWZsRqU\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ge0kzg\",\"data-styles-preset\":\"Wy_VHEAQO\",children:\"Software to track and manage your labor spend\"})}),className:\"framer-1ofby20\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hvlR6y81q\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({StQRqK8xZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-13qkcuq\",\"data-styles-preset\":\"i3J3gu8dc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Software to track and manage your labor spend\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lxqwi4\",\"data-framer-name\":\"Payroll\",layoutDependency:layoutDependency,layoutId:\"m735V6oU3\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},whileHover:animation2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-89ecv8\",layoutDependency:layoutDependency,layoutId:\"NVex3qNxj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m70gu0\",layoutDependency:layoutDependency,layoutId:\"Aj7KUjp6E\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-aulb7m\",\"data-framer-name\":\"Payroll_for_Construction_1_\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"fP4Uj6S38\",svg:'<svg width=\"80\" height=\"80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M47.53 30.983a1.5 1.5 0 1 0 2.265-1.966l-2.266 1.966ZM32.47 49.017a1.5 1.5 0 1 0-2.265 1.966l2.266-1.966Zm9.03-25.684a1.5 1.5 0 0 0-3 0h3Zm-3 33.334a1.5 1.5 0 0 0 3 0h-3ZM68.5 40c0 15.74-12.76 28.5-28.5 28.5v3c17.397 0 31.5-14.103 31.5-31.5h-3ZM40 68.5c-15.74 0-28.5-12.76-28.5-28.5h-3c0 17.397 14.103 31.5 31.5 31.5v-3ZM11.5 40c0-15.74 12.76-28.5 28.5-28.5v-3C22.603 8.5 8.5 22.603 8.5 40h3ZM40 11.5c15.74 0 28.5 12.76 28.5 28.5h3C71.5 22.603 57.397 8.5 40 8.5v3Zm0 27c-2.507 0-4.708-.68-6.239-1.7-1.542-1.028-2.261-2.283-2.261-3.467h-3c0 2.499 1.52 4.577 3.597 5.962C34.185 40.688 36.984 41.5 40 41.5v-3Zm-8.5-5.167c0-1.183.72-2.438 2.261-3.466 1.531-1.02 3.732-1.7 6.239-1.7v-3c-3.016 0-5.815.812-7.903 2.204-2.078 1.385-3.597 3.464-3.597 5.962h3Zm8.5-5.166c3.391 0 6.158 1.235 7.53 2.816l2.265-1.966c-2.087-2.405-5.784-3.85-9.795-3.85v3ZM40 41.5c2.507 0 4.708.68 6.24 1.7 1.54 1.028 2.26 2.283 2.26 3.467h3c0-2.499-1.519-4.577-3.597-5.962C45.815 39.312 43.016 38.5 40 38.5v3Zm-1.5-18.167v3.334h3v-3.334h-3Zm0 30v3.334h3v-3.334h-3Zm1.5-1.5c-3.391 0-6.158-1.236-7.53-2.816l-2.265 1.966c2.087 2.405 5.784 3.85 9.795 3.85v-3Zm8.5-5.166c0 1.183-.72 2.438-2.26 3.466-1.532 1.02-3.733 1.7-6.24 1.7v3c3.016 0 5.815-.812 7.903-2.204 2.078-1.385 3.597-3.464 3.597-5.962h-3Zm-10-20v26.666h3V26.667h-3Z\" fill=\"#2AC58C\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ze0wh3\",\"data-styles-preset\":\"VqKVpJrG2\",children:\"PAYROLL\"})}),className:\"framer-188gwnx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z2NqjK0UI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({StQRqK8xZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fb08e\",\"data-styles-preset\":\"lamLrFu15\",children:\"PAYROLL\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-blkzgg\",layoutDependency:layoutDependency,layoutId:\"q_o2fzJVG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",children:\"Effortless Payroll\"})}),className:\"framer-mfw2j4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"br_TBtSA0\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-164u4qx, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Weekly, bi-weekly, off-cycle, and instant pay options\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-a8q7bk, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Automated prevailing wage overrides\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-1vugffk, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Same line reimbursements and bonuses\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-15g32wx, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Multi-entity support\"})})]})}),className:\"framer-hfxfu4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hhUa3RnlZ\",style:{\"--extracted-15g32wx\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-164u4qx\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-1l7ec2w\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-1vugffk\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-a8q7bk\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({StQRqK8xZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-1fb08e\",\"data-styles-preset\":\"lamLrFu15\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:[/*#__PURE__*/_jsx(motion.li,{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-164u4qx, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Weekly, bi-weekly, off-cycle, and instant pay options\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-a8q7bk, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Automated prevailing wage overrides\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-1vugffk, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Same line reimbursements and bonuses\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-15g32wx, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Multi-entity support\"})})]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+194.4+36+0+41+0+565,...addPropertyOverrides({StQRqK8xZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+164.4+36+0+0+108.99999999999999+0+521}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p3ofu4-container\",layoutDependency:layoutDependency,layoutId:\"bLLvGu2gA-container\",children:/*#__PURE__*/_jsx(Link,{height:\"100%\",id:\"bLLvGu2gA\",layoutId:\"bLLvGu2gA\",variant:\"xhh2mIrgp\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+194.4+209.5),pixelHeight:1716,pixelWidth:2682,sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1250px) - 72px) * 0.45)`,src:\"https://framerusercontent.com/images/hvX7FVEjxHj3ts4W7719jETk.png\",srcSet:\"https://framerusercontent.com/images/hvX7FVEjxHj3ts4W7719jETk.png?scale-down-to=512 512w,https://framerusercontent.com/images/hvX7FVEjxHj3ts4W7719jETk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hvX7FVEjxHj3ts4W7719jETk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hvX7FVEjxHj3ts4W7719jETk.png 2682w\"},className:\"framer-nluwy1\",layoutDependency:layoutDependency,layoutId:\"IQbNbMmg1\",...addPropertyOverrides({StQRqK8xZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+164.4+36+683),pixelHeight:1716,pixelWidth:2682,sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px, 1250px) - 20px)`,src:\"https://framerusercontent.com/images/hvX7FVEjxHj3ts4W7719jETk.png\",srcSet:\"https://framerusercontent.com/images/hvX7FVEjxHj3ts4W7719jETk.png?scale-down-to=512 512w,https://framerusercontent.com/images/hvX7FVEjxHj3ts4W7719jETk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hvX7FVEjxHj3ts4W7719jETk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hvX7FVEjxHj3ts4W7719jETk.png 2682w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15cyoia\",\"data-framer-name\":\"Scheduling\",layoutDependency:layoutDependency,layoutId:\"v6XQfht4H\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},whileHover:animation2,children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+965.4+177.5),pixelHeight:1976,pixelWidth:2906,sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1250px) - 72px) * 0.45)`,src:\"https://framerusercontent.com/images/E2G21nn4ycUAqnTsD6FkroFe4w.png\",srcSet:\"https://framerusercontent.com/images/E2G21nn4ycUAqnTsD6FkroFe4w.png?scale-down-to=512 512w,https://framerusercontent.com/images/E2G21nn4ycUAqnTsD6FkroFe4w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E2G21nn4ycUAqnTsD6FkroFe4w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/E2G21nn4ycUAqnTsD6FkroFe4w.png 2906w\"},className:\"framer-mvy10z\",layoutDependency:layoutDependency,layoutId:\"lJwHaAEqG\",...addPropertyOverrides({StQRqK8xZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+1271.4+36+315),pixelHeight:1976,pixelWidth:2906,sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px, 1250px) - 20px)`,src:\"https://framerusercontent.com/images/E2G21nn4ycUAqnTsD6FkroFe4w.png\",srcSet:\"https://framerusercontent.com/images/E2G21nn4ycUAqnTsD6FkroFe4w.png?scale-down-to=512 512w,https://framerusercontent.com/images/E2G21nn4ycUAqnTsD6FkroFe4w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E2G21nn4ycUAqnTsD6FkroFe4w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/E2G21nn4ycUAqnTsD6FkroFe4w.png 2906w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eg6vqt\",layoutDependency:layoutDependency,layoutId:\"KoEywTcDX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c0s3vt\",layoutDependency:layoutDependency,layoutId:\"yjZTvJmdx\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1i2etgl\",\"data-framer-name\":\"Scheduling_shift_automation_1_\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"Hvh8RlHhd\",svg:'<svg width=\"80\" height=\"80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M26.667 23.333V10m26.666 13.333V10m-30 26.667h33.334M16.667 70h46.666A6.667 6.667 0 0 0 70 63.333v-40a6.667 6.667 0 0 0-6.667-6.666H16.667A6.667 6.667 0 0 0 10 23.333v40A6.667 6.667 0 0 0 16.667 70Z\" stroke=\"#9A1C00\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ze0wh3\",\"data-styles-preset\":\"VqKVpJrG2\",children:\"SCHEDULING AND TIMETRACKING\"})}),className:\"framer-ozznb9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VBwkZ9GB9\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({StQRqK8xZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fb08e\",\"data-styles-preset\":\"lamLrFu15\",children:\"SCHEDULING AND TIMETRACKING\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t3xrot\",layoutDependency:layoutDependency,layoutId:\"gY5WeUgfR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",children:\"Dynamic Scheduling \"})}),className:\"framer-97kn4e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PbPV4VrvC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-164u4qx, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Geolocation-based clock-ins and clock-outs\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-a8q7bk, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Auto-approvals\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-1vugffk, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Easy shift creation\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-15g32wx, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Real-time shift update notifications \"})})]})}),className:\"framer-exouad\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Uc1oXx4pc\",style:{\"--extracted-15g32wx\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-164u4qx\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-1l7ec2w\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-1vugffk\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-a8q7bk\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({StQRqK8xZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fb08e\",\"data-styles-preset\":\"lamLrFu15\",children:\"Shift automation\u30FBOne-click clock-in/out\u30FBAuto approvals \u30FBGeolocation\u30FB Shift update notifications\u30FBForeman mode\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+965.4+36+0+51+0+565,...addPropertyOverrides({StQRqK8xZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+1271.4+36+0+0+118.99999999999999+0+153}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iv07qf-container\",layoutDependency:layoutDependency,layoutId:\"liFqLmqvQ-container\",children:/*#__PURE__*/_jsx(Link,{height:\"100%\",id:\"liFqLmqvQ\",layoutId:\"liFqLmqvQ\",variant:\"o19NPfJRz\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1icavb4\",\"data-framer-name\":\"Reporting\",layoutDependency:layoutDependency,layoutId:\"G8VmAD_Ri\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},whileHover:animation2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bdak8n\",layoutDependency:layoutDependency,layoutId:\"O0sjaKGu1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p0i5tu\",layoutDependency:layoutDependency,layoutId:\"VSRzbNf9q\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-v1dhf\",\"data-framer-name\":\"Reporting_1_\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"Ujph9tawc\",svg:'<svg width=\"80\" height=\"80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M30 63.333v-20a6.667 6.667 0 0 0-6.667-6.666h-6.666A6.667 6.667 0 0 0 10 43.333v20A6.667 6.667 0 0 0 16.667 70h6.666A6.667 6.667 0 0 0 30 63.333Zm0 0V30a6.667 6.667 0 0 1 6.667-6.667h6.666A6.667 6.667 0 0 1 50 30v33.333m-20 0A6.667 6.667 0 0 0 36.667 70h6.666A6.667 6.667 0 0 0 50 63.333m0 0V16.667A6.667 6.667 0 0 1 56.667 10h6.666A6.667 6.667 0 0 1 70 16.667v46.666A6.667 6.667 0 0 1 63.333 70h-6.666A6.667 6.667 0 0 1 50 63.333Z\" stroke=\"#1E8C63\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ze0wh3\",\"data-styles-preset\":\"VqKVpJrG2\",children:\"PROJECTS AND REPORTING\"})}),className:\"framer-llzxfd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XOHovDXP1\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({StQRqK8xZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fb08e\",\"data-styles-preset\":\"lamLrFu15\",children:\"PROJECTS AND REPORTING\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ql4x7p\",layoutDependency:layoutDependency,layoutId:\"wYmWgN0oe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",children:\"Real-time labor tracking\"})}),className:\"framer-1w0nl24\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ID7oOUYeb\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-164u4qx, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"View and track labor costs as they hit\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a8q7bk, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Customizable reports\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1vugffk, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Certified payroll reports\"})})]})}),className:\"framer-1ebynbh\",\"data-highlight\":true,fonts:[\"Inter\"],id:`${layoutId}-1ebynbh`,layoutDependency:layoutDependency,layoutId:\"DmgDtQRDQ\",onMouseEnter:onMouseEnterizu9gt({overlay}),ref:ref2,style:{\"--extracted-164u4qx\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-1l7ec2w\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-1vugffk\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-a8q7bk\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({StQRqK8xZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fb08e\",\"data-styles-preset\":\"lamLrFu15\",children:\"Project tracking\u30FBView & download\u30FBLive data tracking\u30FBCustom dashboards\u30FBCertified payroll reports\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1ebynbh`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,className:\"framer-arul78\",exit:animation4,initial:animation6,layoutDependency:layoutDependency,layoutId:\"ej1kU8X9a\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"}})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+1736.4+95+0+41+0+124.5,...addPropertyOverrides({StQRqK8xZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+2074.4+36+0+0+41+0+122.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o0p0hm-container\",layoutDependency:layoutDependency,layoutId:\"rm8zDVk5a-container\",children:/*#__PURE__*/_jsx(Link,{height:\"100%\",id:\"rm8zDVk5a\",layoutId:\"rm8zDVk5a\",variant:\"biXtMDV5y\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1912,intrinsicWidth:3176,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+1736.4+203.75),pixelHeight:2190,pixelWidth:3070,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DSzOrcqcLiUxWM5DByJ3fVcRoyQ.png\"},className:\"framer-1gydvki\",\"data-framer-name\":\"hero_image_1_\",layoutDependency:layoutDependency,layoutId:\"kxDW7ZoNR\",style:{transformPerspective:1200},...addPropertyOverrides({StQRqK8xZ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1912,intrinsicWidth:3176,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+2074.4+36+216.5),pixelHeight:2190,pixelWidth:3070,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DSzOrcqcLiUxWM5DByJ3fVcRoyQ.png\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15wgruw\",\"data-framer-name\":\"Reporting\",layoutDependency:layoutDependency,layoutId:\"eqxxY9nzg\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},whileHover:animation2,children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1912,intrinsicWidth:3176,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+2184.9+182.5),pixelHeight:1912,pixelWidth:3176,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Y2jk41NMAEUhKfU7CAXzQAb0.png\"},className:\"framer-awoy4c\",\"data-framer-name\":\"hero_image_1_\",layoutDependency:layoutDependency,layoutId:\"fAx7RinQ6\",style:{transformPerspective:1200},...addPropertyOverrides({StQRqK8xZ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1912,intrinsicWidth:3176,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+2403.9+36+704),pixelHeight:1912,pixelWidth:3176,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Y2jk41NMAEUhKfU7CAXzQAb0.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n12944\",layoutDependency:layoutDependency,layoutId:\"PsgsFIBg4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fmenw4\",layoutDependency:layoutDependency,layoutId:\"xx7IZ1_ma\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vdu5hc\",\"data-framer-name\":\"People_Management_Onboarding_2_\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CIfFGzX5R\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 21.25 25 L 27.5 25 L 27.5 22.5 C 27.5 20.429 25.821 18.75 23.75 18.75 C 22.601 18.749 21.515 19.276 20.805 20.179 M 21.25 25 L 8.75 25 M 21.25 25 L 21.25 22.5 C 21.25 21.68 21.092 20.896 20.805 20.179 M 8.75 25 L 2.5 25 L 2.5 22.5 C 2.5 20.429 4.179 18.75 6.25 18.75 C 7.399 18.749 8.485 19.276 9.195 20.179 M 8.75 25 L 8.75 22.5 C 8.75 21.68 8.908 20.896 9.195 20.179 M 9.195 20.179 C 10.117 17.876 12.369 16.25 15 16.25 C 17.632 16.25 19.883 17.876 20.805 20.179 M 18.75 8.75 C 18.75 10.821 17.071 12.5 15 12.5 C 12.929 12.5 11.25 10.821 11.25 8.75 C 11.25 6.679 12.929 5 15 5 C 17.071 5 18.75 6.679 18.75 8.75 Z M 26.25 12.5 C 26.261 13.4 25.787 14.237 25.009 14.691 C 24.231 15.144 23.269 15.144 22.491 14.691 C 21.713 14.237 21.239 13.4 21.25 12.5 C 21.267 11.131 22.381 10.03 23.75 10.03 C 25.119 10.03 26.233 11.131 26.25 12.5 Z M 8.75 12.5 C 8.75 13.881 7.631 15 6.25 15 C 4.869 15 3.75 13.881 3.75 12.5 C 3.75 11.119 4.869 10 6.25 10 C 7.631 10 8.75 11.119 8.75 12.5 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 55, 212)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10988266038,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ze0wh3\",\"data-styles-preset\":\"VqKVpJrG2\",children:\"HR AND ONBOARDING\"})}),className:\"framer-eygf0z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BkkoL11Wf\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({StQRqK8xZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fb08e\",\"data-styles-preset\":\"lamLrFu15\",children:\"HR AND ONBOARDING\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15x7u5w\",layoutDependency:layoutDependency,layoutId:\"fWkNr7emG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",children:\"Simplified People Management\"})}),className:\"framer-15980ox\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WPQoaXHee\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-164u4qx, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Employee onboarding for W2 and 1099 workers\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-a8q7bk, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"PTO and sick day tracking\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-1vugffk, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Expense reimbursement portal\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-15g32wx, var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128)))\"},children:\"Certification tracking\"})})]})}),className:\"framer-wljtab\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Tiv9reQQw\",style:{\"--extracted-15g32wx\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-164u4qx\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-1l7ec2w\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-1vugffk\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--extracted-a8q7bk\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+2184.9+6+0+41+0+565,...addPropertyOverrides({StQRqK8xZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+2403.9+36+0+0+41+0+565}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-g2h6pq-container\",layoutDependency:layoutDependency,layoutId:\"w2NVQAwHq-container\",children:/*#__PURE__*/_jsx(Link,{height:\"100%\",id:\"w2NVQAwHq\",layoutId:\"w2NVQAwHq\",variant:\"oTXsW1d7R\",width:\"100%\"})})})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-A3HJD.framer-18fxt44, .framer-A3HJD .framer-18fxt44 { display: block; }\",\".framer-A3HJD.framer-1p01vrs { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 1250px; }\",\".framer-A3HJD .framer-1u7veox { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-A3HJD .framer-t98eka, .framer-A3HJD .framer-1ofby20, .framer-A3HJD .framer-188gwnx, .framer-A3HJD .framer-mfw2j4, .framer-A3HJD .framer-ozznb9, .framer-A3HJD .framer-97kn4e, .framer-A3HJD .framer-llzxfd, .framer-A3HJD .framer-1w0nl24, .framer-A3HJD .framer-eygf0z, .framer-A3HJD .framer-15980ox { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-A3HJD .framer-174u0ow { 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 0px 16px 0px; position: relative; width: 100%; }\",\".framer-A3HJD .framer-1lxqwi4, .framer-A3HJD .framer-15cyoia { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; max-width: 1250px; overflow: hidden; padding: 36px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-A3HJD .framer-89ecv8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-A3HJD .framer-1m70gu0, .framer-A3HJD .framer-p0i5tu, .framer-A3HJD .framer-1fmenw4 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-A3HJD .framer-aulb7m, .framer-A3HJD .framer-1i2etgl, .framer-A3HJD .framer-v1dhf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-A3HJD .framer-blkzgg, .framer-A3HJD .framer-ql4x7p, .framer-A3HJD .framer-15x7u5w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-A3HJD .framer-hfxfu4, .framer-A3HJD .framer-wljtab { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 375px; word-break: break-word; word-wrap: break-word; }\",\".framer-A3HJD .framer-p3ofu4-container, .framer-A3HJD .framer-1iv07qf-container, .framer-A3HJD .framer-o0p0hm-container, .framer-A3HJD .framer-g2h6pq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-A3HJD .framer-nluwy1 { aspect-ratio: 1.5535420098846788 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 341px); position: relative; width: 45%; }\",\".framer-A3HJD .framer-mvy10z { aspect-ratio: 1.4680851063829787 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 361px); position: relative; width: 45%; }\",\".framer-A3HJD .framer-1eg6vqt, .framer-A3HJD .framer-bdak8n, .framer-A3HJD .framer-n12944 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 11px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-A3HJD .framer-1c0s3vt { 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: visible; padding: 0px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-A3HJD .framer-1t3xrot { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-A3HJD .framer-exouad { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 376px; word-break: break-word; word-wrap: break-word; }\",\".framer-A3HJD .framer-1icavb4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 409px; justify-content: center; max-width: 1250px; overflow: hidden; padding: 0px 36px 0px 36px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-A3HJD .framer-1ebynbh { flex: none; height: 68px; position: relative; white-space: pre-wrap; width: 375px; word-break: break-word; word-wrap: break-word; }\",\".framer-A3HJD .framer-arul78 { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-A3HJD .framer-1gydvki { aspect-ratio: 1.6020942408376964 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 353px); overflow: visible; position: relative; width: 48%; }\",\".framer-A3HJD .framer-15wgruw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; max-width: 1250px; overflow: hidden; padding: 6px 36px 0px 36px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-A3HJD .framer-awoy4c { aspect-ratio: 1.6020942408376964 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 331px); overflow: visible; position: relative; width: 45%; }\",\".framer-A3HJD .framer-vdu5hc { flex: none; height: 30px; position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A3HJD.framer-1p01vrs, .framer-A3HJD .framer-1u7veox, .framer-A3HJD .framer-174u0ow, .framer-A3HJD .framer-1lxqwi4, .framer-A3HJD .framer-89ecv8, .framer-A3HJD .framer-1m70gu0, .framer-A3HJD .framer-blkzgg, .framer-A3HJD .framer-15cyoia, .framer-A3HJD .framer-1eg6vqt, .framer-A3HJD .framer-1c0s3vt, .framer-A3HJD .framer-1t3xrot, .framer-A3HJD .framer-1icavb4, .framer-A3HJD .framer-bdak8n, .framer-A3HJD .framer-p0i5tu, .framer-A3HJD .framer-ql4x7p, .framer-A3HJD .framer-15wgruw, .framer-A3HJD .framer-n12944, .framer-A3HJD .framer-1fmenw4, .framer-A3HJD .framer-15x7u5w { gap: 0px; } .framer-A3HJD.framer-1p01vrs > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-A3HJD.framer-1p01vrs > :first-child, .framer-A3HJD .framer-1u7veox > :first-child, .framer-A3HJD .framer-174u0ow > :first-child, .framer-A3HJD .framer-89ecv8 > :first-child, .framer-A3HJD .framer-blkzgg > :first-child, .framer-A3HJD .framer-1eg6vqt > :first-child, .framer-A3HJD .framer-1t3xrot > :first-child, .framer-A3HJD .framer-bdak8n > :first-child, .framer-A3HJD .framer-ql4x7p > :first-child, .framer-A3HJD .framer-n12944 > :first-child, .framer-A3HJD .framer-15x7u5w > :first-child { margin-top: 0px; } .framer-A3HJD.framer-1p01vrs > :last-child, .framer-A3HJD .framer-1u7veox > :last-child, .framer-A3HJD .framer-174u0ow > :last-child, .framer-A3HJD .framer-89ecv8 > :last-child, .framer-A3HJD .framer-blkzgg > :last-child, .framer-A3HJD .framer-1eg6vqt > :last-child, .framer-A3HJD .framer-1t3xrot > :last-child, .framer-A3HJD .framer-bdak8n > :last-child, .framer-A3HJD .framer-ql4x7p > :last-child, .framer-A3HJD .framer-n12944 > :last-child, .framer-A3HJD .framer-15x7u5w > :last-child { margin-bottom: 0px; } .framer-A3HJD .framer-1u7veox > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-A3HJD .framer-174u0ow > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-A3HJD .framer-1lxqwi4 > *, .framer-A3HJD .framer-15cyoia > *, .framer-A3HJD .framer-15wgruw > * { margin: 0px; margin-left: calc(45px / 2); margin-right: calc(45px / 2); } .framer-A3HJD .framer-1lxqwi4 > :first-child, .framer-A3HJD .framer-1m70gu0 > :first-child, .framer-A3HJD .framer-15cyoia > :first-child, .framer-A3HJD .framer-1c0s3vt > :first-child, .framer-A3HJD .framer-1icavb4 > :first-child, .framer-A3HJD .framer-p0i5tu > :first-child, .framer-A3HJD .framer-15wgruw > :first-child, .framer-A3HJD .framer-1fmenw4 > :first-child { margin-left: 0px; } .framer-A3HJD .framer-1lxqwi4 > :last-child, .framer-A3HJD .framer-1m70gu0 > :last-child, .framer-A3HJD .framer-15cyoia > :last-child, .framer-A3HJD .framer-1c0s3vt > :last-child, .framer-A3HJD .framer-1icavb4 > :last-child, .framer-A3HJD .framer-p0i5tu > :last-child, .framer-A3HJD .framer-15wgruw > :last-child, .framer-A3HJD .framer-1fmenw4 > :last-child { margin-right: 0px; } .framer-A3HJD .framer-89ecv8 > *, .framer-A3HJD .framer-blkzgg > *, .framer-A3HJD .framer-1eg6vqt > *, .framer-A3HJD .framer-1t3xrot > *, .framer-A3HJD .framer-bdak8n > *, .framer-A3HJD .framer-ql4x7p > *, .framer-A3HJD .framer-n12944 > *, .framer-A3HJD .framer-15x7u5w > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-A3HJD .framer-1m70gu0 > *, .framer-A3HJD .framer-1c0s3vt > *, .framer-A3HJD .framer-p0i5tu > *, .framer-A3HJD .framer-1fmenw4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-A3HJD .framer-1icavb4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-A3HJD.framer-v-jvy5mh.framer-1p01vrs { padding: 20px 10px 20px 10px; width: 390px; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-174u0ow { padding: 0px; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-1ofby20, .framer-A3HJD.framer-v-jvy5mh .framer-mfw2j4, .framer-A3HJD.framer-v-jvy5mh .framer-15980ox { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-1lxqwi4, .framer-A3HJD.framer-v-jvy5mh .framer-15cyoia { flex-direction: column; gap: 0px; padding: 36px 10px 36px 10px; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-89ecv8, .framer-A3HJD.framer-v-jvy5mh .framer-1eg6vqt, .framer-A3HJD.framer-v-jvy5mh .framer-bdak8n, .framer-A3HJD.framer-v-jvy5mh .framer-n12944 { order: 0; width: 100%; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-1m70gu0, .framer-A3HJD.framer-v-jvy5mh .framer-exouad, .framer-A3HJD.framer-v-jvy5mh .framer-1ebynbh, .framer-A3HJD.framer-v-jvy5mh .framer-15x7u5w, .framer-A3HJD.framer-v-jvy5mh .framer-wljtab { width: 100%; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-188gwnx, .framer-A3HJD.framer-v-jvy5mh .framer-ozznb9 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-blkzgg, .framer-A3HJD.framer-v-jvy5mh .framer-1t3xrot, .framer-A3HJD.framer-v-jvy5mh .framer-ql4x7p { gap: 10px; width: 100%; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-hfxfu4 { width: 90%; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-nluwy1 { height: var(--framer-aspect-ratio-supported, 226px); order: 1; width: 100%; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-mvy10z { height: var(--framer-aspect-ratio-supported, 239px); order: 1; width: 100%; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-1c0s3vt { width: 342px; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-1icavb4 { flex-direction: column; height: min-content; padding: 36px 10px 36px 10px; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-1gydvki, .framer-A3HJD.framer-v-jvy5mh .framer-awoy4c { height: var(--framer-aspect-ratio-supported, 219px); order: 1; width: 100%; }\",\".framer-A3HJD.framer-v-jvy5mh .framer-15wgruw { flex-direction: column; padding: 36px 10px 36px 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A3HJD.framer-v-jvy5mh .framer-1lxqwi4, .framer-A3HJD.framer-v-jvy5mh .framer-blkzgg, .framer-A3HJD.framer-v-jvy5mh .framer-15cyoia, .framer-A3HJD.framer-v-jvy5mh .framer-1t3xrot, .framer-A3HJD.framer-v-jvy5mh .framer-1icavb4, .framer-A3HJD.framer-v-jvy5mh .framer-ql4x7p, .framer-A3HJD.framer-v-jvy5mh .framer-15wgruw { gap: 0px; } .framer-A3HJD.framer-v-jvy5mh .framer-1lxqwi4 > *, .framer-A3HJD.framer-v-jvy5mh .framer-15cyoia > *, .framer-A3HJD.framer-v-jvy5mh .framer-1icavb4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-A3HJD.framer-v-jvy5mh .framer-1lxqwi4 > :first-child, .framer-A3HJD.framer-v-jvy5mh .framer-blkzgg > :first-child, .framer-A3HJD.framer-v-jvy5mh .framer-15cyoia > :first-child, .framer-A3HJD.framer-v-jvy5mh .framer-1t3xrot > :first-child, .framer-A3HJD.framer-v-jvy5mh .framer-1icavb4 > :first-child, .framer-A3HJD.framer-v-jvy5mh .framer-ql4x7p > :first-child, .framer-A3HJD.framer-v-jvy5mh .framer-15wgruw > :first-child { margin-top: 0px; } .framer-A3HJD.framer-v-jvy5mh .framer-1lxqwi4 > :last-child, .framer-A3HJD.framer-v-jvy5mh .framer-blkzgg > :last-child, .framer-A3HJD.framer-v-jvy5mh .framer-15cyoia > :last-child, .framer-A3HJD.framer-v-jvy5mh .framer-1t3xrot > :last-child, .framer-A3HJD.framer-v-jvy5mh .framer-1icavb4 > :last-child, .framer-A3HJD.framer-v-jvy5mh .framer-ql4x7p > :last-child, .framer-A3HJD.framer-v-jvy5mh .framer-15wgruw > :last-child { margin-bottom: 0px; } .framer-A3HJD.framer-v-jvy5mh .framer-blkzgg > *, .framer-A3HJD.framer-v-jvy5mh .framer-1t3xrot > *, .framer-A3HJD.framer-v-jvy5mh .framer-ql4x7p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-A3HJD.framer-v-jvy5mh .framer-15wgruw > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2034\n * @framerIntrinsicWidth 1250\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"StQRqK8xZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIslImVgiO=withCSS(Component,css,\"framer-A3HJD\");export default FramerIslImVgiO;FramerIslImVgiO.displayName=\"Feature-set\";FramerIslImVgiO.defaultProps={height:2034,width:1250};addPropertyControls(FramerIslImVgiO,{variant:{options:[\"Xzxgrlpmw\",\"StQRqK8xZ\"],optionTitles:[\"Feature Set\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIslImVgiO,[{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\"}]},...LinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIslImVgiO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"2034\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1250\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"StQRqK8xZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IslImVgiO.map", "// Generated by Framer (8f9ffef)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import FeatureSet from\"#framer/local/canvasComponent/IslImVgiO/IslImVgiO.js\";import CTA from\"#framer/local/canvasComponent/MoJCsMQxP/MoJCsMQxP.js\";import FooterBlue from\"#framer/local/canvasComponent/na1wsq_wt/na1wsq_wt.js\";import Navigation from\"#framer/local/canvasComponent/tEZfS4AuD/tEZfS4AuD.js\";import*as sharedStyle2 from\"#framer/local/css/Ayv6VqwvD/Ayv6VqwvD.js\";import*as sharedStyle4 from\"#framer/local/css/i3J3gu8dc/i3J3gu8dc.js\";import*as sharedStyle5 from\"#framer/local/css/LvD0_AToD/LvD0_AToD.js\";import*as sharedStyle1 from\"#framer/local/css/U7bDT0ZVU/U7bDT0ZVU.js\";import*as sharedStyle6 from\"#framer/local/css/VqKVpJrG2/VqKVpJrG2.js\";import*as sharedStyle3 from\"#framer/local/css/Wy_VHEAQO/Wy_VHEAQO.js\";import*as sharedStyle from\"#framer/local/css/XJr293YQa/XJr293YQa.js\";import metadataProvider from\"#framer/local/webPageMetadata/iRNTJh8ys/iRNTJh8ys.js\";const NavigationFonts=getFonts(Navigation);const CTAFonts=getFonts(CTA);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const TickerFonts=getFonts(Ticker);const FeatureSetFonts=getFonts(FeatureSet);const CarouselFonts=getFonts(Carousel);const FooterBlueFonts=getFonts(FooterBlue);const breakpoints={mRltvRK1h:\"(min-width: 810px) and (max-width: 1199px)\",pxPSk4M3N:\"(min-width: 1200px)\",w9PB41Fcj:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-GsLrC\";const variantClassNames={mRltvRK1h:\"framer-v-ptnvf1\",pxPSk4M3N:\"framer-v-6xjffm\",w9PB41Fcj:\"framer-v-1vh2uhb\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={bounce:.2,delay:0,duration:2.2,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"pxPSk4M3N\",Phone:\"w9PB41Fcj\",Tablet:\"mRltvRK1h\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pxPSk4M3N\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"lKUCkLRx8\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"kgrGdiHtr\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"gOoOCPGwM\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"mRltvRK1h\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"mRltvRK1h\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pxPSk4M3N\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-6xjffm\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wiiyzd\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9PB41Fcj:{width:`min(${componentViewport?.width||\"100vw\"}, 1400px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1400px)`,y:(componentViewport?.y||0)+0+0+20+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ijl9kj-container\",nodeId:\"M3gvQowS5\",scopeId:\"iRNTJh8ys\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{variant:\"Sh6Gwtozg\"},w9PB41Fcj:{variant:\"F4_CpN017\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"M3gvQowS5\",layoutId:\"M3gvQowS5\",style:{width:\"100%\"},variant:\"TmUU2cYKR\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mzuica\",\"data-framer-name\":\"hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-zxwucc\",\"data-framer-appear-id\":\"zxwucc\",\"data-framer-name\":\"headline\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9PB41Fcj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1s6hem\",\"data-styles-preset\":\"U7bDT0ZVU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Construction payroll and compliance, simplified\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xcm7ks\",\"data-styles-preset\":\"XJr293YQa\",style:{\"--framer-text-alignment\":\"center\"},children:\"Construction payroll and compliance, simplified\"})}),className:\"framer-17rhbcu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h3zv8n\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9PB41Fcj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+20+99+40+0+0+110.1+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,y:(componentViewport?.y||0)+0+0+20+119+0+0+71+121+.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eipxwq-container\",nodeId:\"E_Mloui5h\",scopeId:\"iRNTJh8ys\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9PB41Fcj:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"E_Mloui5h\",layoutId:\"E_Mloui5h\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":gOoOCPGwM\",webPageId:\"iRNTJh8ys\"},motionChild:true,nodeId:\"cfNKyXeIc\",openInNewTab:false,scopeId:\"iRNTJh8ys\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1yydhys framer-17d4ass\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(250, 250, 250)\"},children:\"Explore Trayd\"})}),className:\"framer-j88mls\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9PB41Fcj:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+99+40+256.5),pixelHeight:1076,pixelWidth:1605,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/yGct915bATcSpmComutWtPadaUA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+119+0+280.4),pixelHeight:1076,pixelWidth:1605,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/yGct915bATcSpmComutWtPadaUA.png\"},className:\"framer-1ggbx2d\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+119+0+280.4+0+307.5),pixelHeight:1894,pixelWidth:2666,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1400px) - 40px)`,src:\"https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png\",srcSet:\"https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png?scale-down-to=512 512w,https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png 2666w\"}},w9PB41Fcj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+99+40+256.5+20+132.1346),pixelHeight:1894,pixelWidth:2666,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px)`,src:\"https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png\",srcSet:\"https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png?scale-down-to=512 512w,https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png 2666w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+119+0+280.4+0+302),pixelHeight:1894,pixelWidth:2666,sizes:`calc((min(${componentViewport?.width||\"100vw\"} - 40px, 1400px) - 40px) * 0.8)`,src:\"https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png\",srcSet:\"https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png?scale-down-to=512 512w,https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2oj5rI7Amh1FQh3PGGhsdn3VQaw.png 2666w\"},className:\"framer-17qpyzb\",\"data-framer-appear-id\":\"17qpyzb\",initial:animation3,optimized:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sgdiem\",\"data-framer-name\":\" Ticker tape - clients\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(77, 77, 77)\"},children:\"TRUSTED BY CONTRACTORS ACROSS TRADES\"})}),className:\"framer-1xn6zpc\",fonts:[\"GF;Open Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qhnnn0-container\",isModuleExternal:true,nodeId:\"rE69JJMAG\",scopeId:\"iRNTJh8ys\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{gap:67},w9PB41Fcj:{gap:30}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:true},gap:100,height:\"100%\",hoverFactor:1,id:\"rE69JJMAG\",layoutId:\"rE69JJMAG\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:275.5,intrinsicWidth:258,pixelHeight:551,pixelWidth:516,sizes:\"90px\",src:\"https://framerusercontent.com/images/l4NEyZ3hesG7GOHIxhFohZ08xA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/l4NEyZ3hesG7GOHIxhFohZ08xA.png 516w\"},className:\"framer-zyuqy7\",\"data-framer-name\":\"FINAL_purple\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:459,pixelHeight:189,pixelWidth:459,src:\"https://framerusercontent.com/images/cZXth6qeFxOjMj0fvjygam39M38.png\"},className:\"framer-1fhxblw\",\"data-framer-name\":\"skye\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:666.5,pixelHeight:492,pixelWidth:1333,sizes:\"90px\",src:\"https://framerusercontent.com/images/cTjRiKCW5DdTt2l3A782IprBlfM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cTjRiKCW5DdTt2l3A782IprBlfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/cTjRiKCW5DdTt2l3A782IprBlfM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cTjRiKCW5DdTt2l3A782IprBlfM.png 1333w\"},className:\"framer-1lktlfw\",\"data-framer-name\":\"NCS_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:97,intrinsicWidth:226,pixelHeight:194,pixelWidth:452,src:\"https://framerusercontent.com/images/JzbzXKbVHGJJsgapD48DdQz7Y4.png\"},className:\"framer-mp5w8t\",\"data-framer-name\":\"Screen Shot 2025-01-27 at 12.06.10 PM 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:767,intrinsicWidth:1253,pixelHeight:1534,pixelWidth:2506,sizes:\"90px\",src:\"https://framerusercontent.com/images/yb8odeHvL88kq3ImQaeNPNE0Fk0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/yb8odeHvL88kq3ImQaeNPNE0Fk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/yb8odeHvL88kq3ImQaeNPNE0Fk0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yb8odeHvL88kq3ImQaeNPNE0Fk0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yb8odeHvL88kq3ImQaeNPNE0Fk0.png 2506w\"},className:\"framer-1sq9phf\",\"data-framer-name\":\"Screenshot_2024_04_05_at_2_17_30_PM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300.6249955203385,intrinsicWidth:324.3749951664359,pixelHeight:481,pixelWidth:519,sizes:\"90px\",src:\"https://framerusercontent.com/images/4ugXkA1W2yJWaqB8m89Gm2Rmk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4ugXkA1W2yJWaqB8m89Gm2Rmk.png?scale-down-to=512 512w,https://framerusercontent.com/images/4ugXkA1W2yJWaqB8m89Gm2Rmk.png 519w\"},className:\"framer-1rigglg\",\"data-framer-name\":\"Big_Logo_removebg_preview_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:154.5,intrinsicWidth:285.5,pixelHeight:309,pixelWidth:571,sizes:\"90px\",src:\"https://framerusercontent.com/images/3AhMCRS7imOIuFK53lo4bzEaSdM.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3AhMCRS7imOIuFK53lo4bzEaSdM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3AhMCRS7imOIuFK53lo4bzEaSdM.webp 571w\"},className:\"framer-15guaj\",\"data-framer-name\":\"Sullivan Construction\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68.5,intrinsicWidth:210,pixelHeight:137,pixelWidth:420,src:\"https://framerusercontent.com/images/6ZLTHw8ijCHeyQX0yGYbO7B3Y.png\"},className:\"framer-4mt7mi\",\"data-framer-name\":\"MOCC logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:149,intrinsicWidth:300,pixelHeight:298,pixelWidth:600,sizes:\"116px\",src:\"https://framerusercontent.com/images/APy41RhAoXH0L5EP8MmdJ0KWA.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/APy41RhAoXH0L5EP8MmdJ0KWA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/APy41RhAoXH0L5EP8MmdJ0KWA.webp 600w\"},className:\"framer-sdmgyp\",\"data-framer-name\":\"Tompkins\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:488,intrinsicWidth:489,pixelHeight:976,pixelWidth:978,sizes:\"88px\",src:\"https://framerusercontent.com/images/aTo86BoaXyrhoWdodW2r73Ktj60.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aTo86BoaXyrhoWdodW2r73Ktj60.png?scale-down-to=512 512w,https://framerusercontent.com/images/aTo86BoaXyrhoWdodW2r73Ktj60.png 978w\"},className:\"framer-8xs32f\",\"data-framer-name\":\"Fire-pump-testing-logo-enhanced\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:750,pixelHeight:300,pixelWidth:1500,sizes:\"148px\",src:\"https://framerusercontent.com/images/9xv63ooSCWv5xv4I5vRnnGh9HE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9xv63ooSCWv5xv4I5vRnnGh9HE.png?scale-down-to=512 512w,https://framerusercontent.com/images/9xv63ooSCWv5xv4I5vRnnGh9HE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9xv63ooSCWv5xv4I5vRnnGh9HE.png 1500w\"},className:\"framer-1tlvpxv\",\"data-framer-name\":\"First Standard Construction (1)\"})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{y:(componentViewport?.y||0)+0+0+20+1389.2},w9PB41Fcj:{width:`min(${componentViewport?.width||\"100vw\"}, 1400px)`,y:(componentViewport?.y||0)+0+0+20+983.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2034,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1400px)`,y:(componentViewport?.y||0)+0+0+20+1389.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d7ia67-container\",id:elementId2,nodeId:\"gOoOCPGwM\",ref:ref3,scopeId:\"iRNTJh8ys\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9PB41Fcj:{variant:\"StQRqK8xZ\"}},children:/*#__PURE__*/_jsx(FeatureSet,{height:\"100%\",id:\"gOoOCPGwM\",layoutId:\"gOoOCPGwM\",style:{width:\"100%\"},variant:\"Xzxgrlpmw\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujzpz3\",\"data-framer-name\":\"Templates\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8slyhn\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ipm5ps\",\"data-framer-appear-id\":\"1ipm5ps\",\"data-framer-name\":\"headline\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"WHO WE SERVE\"})}),className:\"framer-1tmeui9\",\"data-framer-name\":\"OUR FEATURES\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9PB41Fcj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-13qkcuq\",\"data-styles-preset\":\"i3J3gu8dc\",style:{\"--framer-text-alignment\":\"center\"},children:\"A single platform, for your whole team\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ge0kzg\",\"data-styles-preset\":\"Wy_VHEAQO\",children:\"A single platform, for your whole team\"})}),className:\"framer-uym5ei\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fu0j6v\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0x9eu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+3473.2+80+148.4+0+0+0),pixelHeight:407,pixelWidth:612,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1400px) - 124px) / 3, 1px)`,src:\"https://framerusercontent.com/images/wfb88P4L9Bl0AR9d7wSDtTaR9KQ.jpg\",srcSet:\"https://framerusercontent.com/images/wfb88P4L9Bl0AR9d7wSDtTaR9KQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wfb88P4L9Bl0AR9d7wSDtTaR9KQ.jpg 612w\"}},w9PB41Fcj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+3047.2+60+129.4+0+0+0+0),pixelHeight:407,pixelWidth:612,sizes:\"345.5px\",src:\"https://framerusercontent.com/images/wfb88P4L9Bl0AR9d7wSDtTaR9KQ.jpg\",srcSet:\"https://framerusercontent.com/images/wfb88P4L9Bl0AR9d7wSDtTaR9KQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wfb88P4L9Bl0AR9d7wSDtTaR9KQ.jpg 612w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+3473.7+30+148.4+0+0+0),pixelHeight:407,pixelWidth:612,sizes:\"345.5px\",src:\"https://framerusercontent.com/images/wfb88P4L9Bl0AR9d7wSDtTaR9KQ.jpg\",srcSet:\"https://framerusercontent.com/images/wfb88P4L9Bl0AR9d7wSDtTaR9KQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wfb88P4L9Bl0AR9d7wSDtTaR9KQ.jpg 612w\"},className:\"framer-5qnoca\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wfjinu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",children:\"Back Office \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",children:\"Back-Office \"})}),className:\"framer-1h177ij\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-color\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\"},children:\"Easy scheduling, automated time tracking, streamlined payroll, and best-in-class reporting and analytics. Built for your firm's growth and scale.\"})}),className:\"framer-17q8hq1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t271xh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+3473.2+80+148.4+0+0+0),pixelHeight:563,pixelWidth:1e3,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1400px) - 124px) / 3, 1px)`,src:\"https://framerusercontent.com/images/k8QE8lzpXctoHS8bs5s9X6Vf0J4.jpg\",srcSet:\"https://framerusercontent.com/images/k8QE8lzpXctoHS8bs5s9X6Vf0J4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/k8QE8lzpXctoHS8bs5s9X6Vf0J4.jpg 1000w\"}},w9PB41Fcj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+3047.2+60+129.4+0+529+0+0),pixelHeight:563,pixelWidth:1e3,sizes:\"345.5px\",src:\"https://framerusercontent.com/images/k8QE8lzpXctoHS8bs5s9X6Vf0J4.jpg\",srcSet:\"https://framerusercontent.com/images/k8QE8lzpXctoHS8bs5s9X6Vf0J4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/k8QE8lzpXctoHS8bs5s9X6Vf0J4.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+3473.7+30+148.4+0+0+0),pixelHeight:563,pixelWidth:1e3,sizes:\"345.5px\",src:\"https://framerusercontent.com/images/k8QE8lzpXctoHS8bs5s9X6Vf0J4.jpg\",srcSet:\"https://framerusercontent.com/images/k8QE8lzpXctoHS8bs5s9X6Vf0J4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/k8QE8lzpXctoHS8bs5s9X6Vf0J4.jpg 1000w\"},className:\"framer-1azj4u1\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5nxrd9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",children:\"Foremen\"})}),className:\"framer-17twz6g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-color\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\"},children:\"On-site check-ins, easy approvals of time tracking, in-schedule teams and more. Because no one knows your workers like you do.\"})}),className:\"framer-v2ea27\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e8kmaq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+3473.2+80+148.4+0+0+0),pixelHeight:4181,pixelWidth:6272,positionX:\"19.5%\",positionY:\"40.7%\",src:\"https://framerusercontent.com/images/szEI9Bt4Joe8YutEbiGyU353g9A.jpg?scale-down-to=2048\"}},w9PB41Fcj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+3047.2+60+129.4+0+1036+0+0),pixelHeight:4181,pixelWidth:6272,positionX:\"19.5%\",positionY:\"40.7%\",src:\"https://framerusercontent.com/images/szEI9Bt4Joe8YutEbiGyU353g9A.jpg?scale-down-to=2048\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+3473.7+30+148.4+0+0+0),pixelHeight:4181,pixelWidth:6272,positionX:\"19.5%\",positionY:\"40.7%\",src:\"https://framerusercontent.com/images/szEI9Bt4Joe8YutEbiGyU353g9A.jpg?scale-down-to=2048\"},className:\"framer-xmvg8g\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qkxodo\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",children:\"Workers\"})}),className:\"framer-xxj82r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-color\":\"var(--token-d625ff34-4518-4a6e-b069-1ef73f68af82, rgb(128, 128, 128))\"},children:\"One place to clock in, see paystubs, message your supervisors, request PTO, and see your schedule. All from the comfort of your phone.\"})}),className:\"framer-1crivrj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11mni13\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-p1atmw\",\"data-framer-appear-id\":\"p1atmw\",\"data-framer-name\":\"headline\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SEAMLESS INTEGRATIONS\"})}),className:\"framer-1g3og9o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b1s2hh\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2aucq\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:843,intrinsicWidth:1019,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+4662+24+74.4+20+0+0),pixelHeight:1686,pixelWidth:2038,sizes:\"400px\",src:\"https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png 2038w\"}},w9PB41Fcj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:843,intrinsicWidth:1019,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+5125+6+62.4+0+0+0),pixelHeight:1686,pixelWidth:2038,sizes:\"400px\",src:\"https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png 2038w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:843,intrinsicWidth:1019,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+4190.1+15+77.4+20+0),pixelHeight:1686,pixelWidth:2038,sizes:\"400px\",src:\"https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CjWKac0PK67Tg0gEN2VDO0FXl8.png 2038w\"},className:\"framer-19e3cmp\",\"data-framer-name\":\"Frame 7222 (2)\"})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-z65bwh\",\"data-framer-appear-id\":\"z65bwh\",\"data-framer-name\":\"headline\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-64635dc2-3cb6-4b46-ae90-29ad53bf8e9e, rgb(24, 69, 212))\"},children:\"Smart Clocking Across Devices\"})})},w9PB41Fcj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",style:{\"--framer-text-color\":\"var(--token-64635dc2-3cb6-4b46-ae90-29ad53bf8e9e, rgb(24, 69, 212))\"},children:\"Smart Clocking Across Devices\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",style:{\"--framer-text-color\":\"var(--token-64635dc2-3cb6-4b46-ae90-29ad53bf8e9e, rgb(24, 69, 212))\"},children:[\"Seamless Integration across your\",/*#__PURE__*/_jsx(\"br\",{}),\"ERP and Project Management Tools for real time job costing\"]})}),className:\"framer-1rg9s1n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bplqls\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ul4s1t\",\"data-framer-appear-id\":\"1ul4s1t\",\"data-framer-name\":\"headline\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"WHAT OUR CUSTOMERS ARE SAYING\"})}),className:\"framer-7hfhnb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pe75wt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Re5CNWF1p\",scopeId:\"iRNTJh8ys\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"}},w9PB41Fcj:{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:30,arrowRadius:100,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.25,fadeContent:true,fadeInset:20,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:29},gap:25,height:\"100%\",id:\"Re5CNWF1p\",layoutId:\"Re5CNWF1p\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,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:true},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-ju9gj1\",\"data-border\":true,\"data-framer-appear-id\":\"ju9gj1\",\"data-framer-name\":\"julian perez testimonial\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-color\":\"rgb(74, 74, 74)\"},children:\"After years of research, Trayd is unique from all other payroll companies I\u2019ve seen and used. Not only does the platform consolidate subcontractor, employee, and time and attendance data under one roof, but Trayd can customize your payroll, by job site and project, making it quick and easy to access real-time insights in just a few clicks.\"})}),className:\"framer-11swaej\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(55, 55, 55)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Julian Perez\"})}),/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(55, 55, 55)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"President, Nova Clean Solutions\"})})]}),className:\"framer-2r300p\",fonts:[\"GF;Open Sans-regular\",\"GF;Open Sans-700\",\"GF;Open Sans-300\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-10w6yz3\",\"data-border\":true,\"data-framer-appear-id\":\"10w6yz3\",\"data-framer-name\":\"nick singh testimonial\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-color\":\"rgb(74, 74, 74)\"},children:\"Trayd has been a game-changer for my company. I went to Trayd to find a fresh solution and was blown away by the overall program. Not only has payroll been a breeze, but now I\u2019m able to send shift assignments from my phone, track my guys hours any time, and run payroll in minutes. The Trayd team is extremely hands-on whenever I have a questions and have truly helped me focus on what really matters - completing projects on time.\"})}),className:\"framer-ngvnx9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(55, 55, 55)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Nick Singh\"})}),/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTMwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(55, 55, 55)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Owner, Sky Rise Construction\"})})]}),className:\"framer-1meebbd\",fonts:[\"GF;Open Sans-regular\",\"GF;Open Sans-700\",\"GF;Open Sans-300\"],verticalAlignment:\"top\",withExternalLayout:true})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dzqiuj hidden-ptnvf1\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-14wpl9w\",\"data-framer-appear-id\":\"14wpl9w\",\"data-framer-name\":\"headline\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"DOWNLOAD THE WORKER APP\"})}),className:\"framer-5wrbpi\",\"data-framer-name\":\"DOWNLOAD THE APP\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9PB41Fcj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ze0wh3\",\"data-styles-preset\":\"VqKVpJrG2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get started with the mobile app for shift management, time tracking, and payroll access. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get started with the mobile app for shift management, time tracking, and payroll access. \"})}),className:\"framer-muve75\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14og9oz\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/trayd-construction-time-pay/id6450680855\",motionChild:true,nodeId:\"VzRtOVjhg\",scopeId:\"iRNTJh8ys\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9PB41Fcj:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+5625.4+6+225.4+0+0),pixelHeight:80,pixelWidth:240,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fpe5BsGfNgsTEZhrRCnedCMwWw.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+5075.9+15+141.4+0),pixelHeight:80,pixelWidth:240,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fpe5BsGfNgsTEZhrRCnedCMwWw.png\"},className:\"framer-8vb2zb framer-17d4ass\",whileTap:animation4})})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.trayd.traydworker&hl=en_US&pli=1\",motionChild:true,nodeId:\"O7pjgZuPf\",scopeId:\"iRNTJh8ys\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w9PB41Fcj:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+5625.4+6+225.4+0+82),pixelHeight:80,pixelWidth:270,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AS7OS6g6kOLXmy7PX36MIRtQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+5075.9+15+141.4+0),pixelHeight:80,pixelWidth:270,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AS7OS6g6kOLXmy7PX36MIRtQ.png\"},className:\"framer-lgk1de framer-17d4ass\",whileTap:animation4})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{y:(componentViewport?.y||0)+0+0+20+5509.8},w9PB41Fcj:{width:undefined,y:(componentViewport?.y||0)+0+0+20+6037.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:452,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1400px)`,y:(componentViewport?.y||0)+0+0+20+5367.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17ejm38-container\",nodeId:\"ZsC1Z_riJ\",scopeId:\"iRNTJh8ys\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{variant:\"SPDVPnINp\"},w9PB41Fcj:{variant:\"AgWNY8DCT\"}},children:/*#__PURE__*/_jsx(FooterBlue,{height:\"100%\",id:\"ZsC1Z_riJ\",layoutId:\"ZsC1Z_riJ\",style:{width:\"100%\"},variant:\"mEj4MyOkK\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pg1g95 hidden-6xjffm hidden-1vh2uhb\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-9soc8o\",\"data-framer-appear-id\":\"9soc8o\",\"data-framer-name\":\"headline\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11p7bsv\",\"data-styles-preset\":\"Ayv6VqwvD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"DOWNLOAD THE WORKER APP\"})}),className:\"framer-r3v3mi\",\"data-framer-name\":\"DOWNLOAD THE APP\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ajlmuv\",\"data-styles-preset\":\"LvD0_AToD\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get started with the mobile app for shift management, time tracking, and payroll access. \"})}),className:\"framer-v8wss\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5u5zk\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/trayd-construction-time-pay/id6450680855\",motionChild:true,nodeId:\"BJAS8dFYB\",scopeId:\"iRNTJh8ys\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+5260.4+8+113.4+0),pixelHeight:80,pixelWidth:240,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fpe5BsGfNgsTEZhrRCnedCMwWw.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:80,pixelWidth:240,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fpe5BsGfNgsTEZhrRCnedCMwWw.png\"},className:\"framer-11qtwpr framer-17d4ass\",whileTap:animation4})})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.trayd.traydworker&hl=en_US&pli=1\",motionChild:true,nodeId:\"CM41hzm9y\",scopeId:\"iRNTJh8ys\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mRltvRK1h:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+5260.4+8+113.4+0),pixelHeight:80,pixelWidth:270,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AS7OS6g6kOLXmy7PX36MIRtQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:80,pixelWidth:270,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AS7OS6g6kOLXmy7PX36MIRtQ.png\"},className:\"framer-1w7ao7r framer-17d4ass\",whileTap:animation4})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GsLrC.framer-17d4ass, .framer-GsLrC .framer-17d4ass { display: block; }\",\".framer-GsLrC.framer-6xjffm { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1200px; }\",\".framer-GsLrC .framer-1wiiyzd { 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: 1400px; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-ijl9kj-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-GsLrC .framer-mzuica { align-content: center; align-items: center; aspect-ratio: 1.1854879918242207 / 1; background-color: #1745d4; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 997px); justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-zxwucc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 71px 0px 10px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GsLrC .framer-17rhbcu, .framer-GsLrC .framer-1rg9s1n, .framer-GsLrC .framer-11swaej, .framer-GsLrC .framer-ngvnx9 { --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-GsLrC .framer-1h3zv8n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-eipxwq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-GsLrC .framer-1yydhys { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.16); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 18px 65px 18px 65px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-GsLrC .framer-j88mls, .framer-GsLrC .framer-1xn6zpc, .framer-GsLrC .framer-1tmeui9, .framer-GsLrC .framer-uym5ei, .framer-GsLrC .framer-1g3og9o, .framer-GsLrC .framer-7hfhnb, .framer-GsLrC .framer-5wrbpi, .framer-GsLrC .framer-r3v3mi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GsLrC .framer-1ggbx2d { align-content: center; align-items: center; aspect-ratio: 1.8211382113821137 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 645px); justify-content: center; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-17qpyzb { aspect-ratio: 1.411861614497529 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 635px); position: relative; width: 80%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GsLrC .framer-sgdiem { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-1qhnnn0-container { flex: none; height: 109px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-zyuqy7 { aspect-ratio: 0.9364791288566243 / 1; height: var(--framer-aspect-ratio-supported, 96px); overflow: visible; position: relative; width: 90px; }\",\".framer-GsLrC .framer-1fhxblw { aspect-ratio: 2.4 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 90px; }\",\".framer-GsLrC .framer-1lktlfw { aspect-ratio: 2.709349593495935 / 1; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 90px; }\",\".framer-GsLrC .framer-mp5w8t { aspect-ratio: 2.329896907216495 / 1; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 148px; }\",\".framer-GsLrC .framer-1sq9phf { aspect-ratio: 1.6336375488917863 / 1; height: var(--framer-aspect-ratio-supported, 55px); overflow: visible; position: relative; width: 90px; }\",\".framer-GsLrC .framer-1rigglg { aspect-ratio: 1.079002079002079 / 1; height: var(--framer-aspect-ratio-supported, 84px); overflow: visible; position: relative; width: 90px; }\",\".framer-GsLrC .framer-15guaj { aspect-ratio: 1.8478964401294498 / 1; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 90px; }\",\".framer-GsLrC .framer-4mt7mi { aspect-ratio: 3.065693430656934 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 90px; }\",\".framer-GsLrC .framer-sdmgyp { aspect-ratio: 2.0134228187919465 / 1; height: var(--framer-aspect-ratio-supported, 58px); overflow: visible; position: relative; width: 116px; }\",\".framer-GsLrC .framer-8xs32f { aspect-ratio: 1.0020491803278688 / 1; height: var(--framer-aspect-ratio-supported, 88px); overflow: visible; position: relative; width: 88px; }\",\".framer-GsLrC .framer-1tlvpxv { aspect-ratio: 5 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 148px; }\",\".framer-GsLrC .framer-d7ia67-container, .framer-GsLrC .framer-1pe75wt-container, .framer-GsLrC .framer-17ejm38-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GsLrC .framer-ujzpz3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-8slyhn { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-1ipm5ps, .framer-GsLrC .framer-p1atmw, .framer-GsLrC .framer-1ul4s1t { align-content: center; align-items: center; background-color: #1745d4; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GsLrC .framer-1fu0j6v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-1e0x9eu, .framer-GsLrC .framer-t271xh, .framer-GsLrC .framer-e8kmaq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 346px; }\",\".framer-GsLrC .framer-5qnoca, .framer-GsLrC .framer-1azj4u1, .framer-GsLrC .framer-xmvg8g { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 250px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-GsLrC .framer-wfjinu, .framer-GsLrC .framer-5nxrd9, .framer-GsLrC .framer-qkxodo { 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-GsLrC .framer-1h177ij, .framer-GsLrC .framer-17twz6g, .framer-GsLrC .framer-xxj82r { --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-GsLrC .framer-17q8hq1, .framer-GsLrC .framer-v2ea27, .framer-GsLrC .framer-1crivrj { --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; }\",\".framer-GsLrC .framer-11mni13, .framer-GsLrC .framer-bplqls { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 40px 15px 40px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-b1s2hh { align-content: center; align-items: center; background-color: var(--token-e620f218-a963-43d7-8a47-5084a31480c0, #f7f9fc); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 138px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 48px 20px 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-GsLrC .framer-2aucq { 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: 402px; }\",\".framer-GsLrC .framer-19e3cmp { aspect-ratio: 1.2087781731909846 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 331px); overflow: visible; position: relative; width: 400px; }\",\".framer-GsLrC .framer-z65bwh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GsLrC .framer-ju9gj1, .framer-GsLrC .framer-10w6yz3 { --border-bottom-width: 1px; --border-color: #c4c4c4; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #fafafa; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex-direction: column; flex-wrap: nowrap; height: 423px; justify-content: space-between; overflow: hidden; padding: 30px 20px 30px 20px; position: relative; width: 418px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GsLrC .framer-2r300p, .framer-GsLrC .framer-1meebbd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 370px; word-break: break-word; word-wrap: break-word; }\",\".framer-GsLrC .framer-1dzqiuj, .framer-GsLrC .framer-1pg1g95 { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 40px 15px 40px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-14wpl9w, .framer-GsLrC .framer-9soc8o { align-content: center; align-items: center; background-color: #1745d4; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 50px 10px 50px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GsLrC .framer-muve75, .framer-GsLrC .framer-v8wss { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 699px; word-break: break-word; word-wrap: break-word; }\",\".framer-GsLrC .framer-14og9oz, .framer-GsLrC .framer-1f5u5zk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GsLrC .framer-8vb2zb, .framer-GsLrC .framer-lgk1de, .framer-GsLrC .framer-11qtwpr, .framer-GsLrC .framer-1w7ao7r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 222px; will-change: var(--framer-will-change-effect-override, transform); }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-GsLrC[data-border=\"true\"]::after, .framer-GsLrC [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-GsLrC.framer-6xjffm { gap: 10px; width: 810px; } .framer-GsLrC .framer-1wiiyzd { height: 5509px; order: 0; } .framer-GsLrC .framer-ijl9kj-container { order: 0; } .framer-GsLrC .framer-mzuica { height: var(--framer-aspect-ratio-supported, 979px); order: 1; } .framer-GsLrC .framer-1ggbx2d { aspect-ratio: 1.1661341853035143 / 1; height: var(--framer-aspect-ratio-supported, 626px); } .framer-GsLrC .framer-17qpyzb { height: var(--framer-aspect-ratio-supported, 517px); order: 0; width: 100%; } .framer-GsLrC .framer-sgdiem { order: 2; } .framer-GsLrC .framer-d7ia67-container { order: 3; } .framer-GsLrC .framer-ujzpz3 { order: 4; padding: 80px 40px 80px 40px; } .framer-GsLrC .framer-1e0x9eu, .framer-GsLrC .framer-t271xh, .framer-GsLrC .framer-e8kmaq { flex: 1 0 0px; width: 1px; } .framer-GsLrC .framer-1h177ij { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-GsLrC .framer-1crivrj { width: 100%; } .framer-GsLrC .framer-11mni13 { gap: 32px; order: 6; padding: 24px 48px 24px 48px; } .framer-GsLrC .framer-b1s2hh { flex-direction: column; gap: 20px; } .framer-GsLrC .framer-z65bwh { flex: none; width: 100%; } .framer-GsLrC .framer-bplqls { gap: 32px; order: 5; padding: 24px 48px 24px 48px; } .framer-GsLrC .framer-17ejm38-container { order: 9; } .framer-GsLrC .framer-1pg1g95 { gap: 18px; order: 7; padding: 8px 48px 8px 48px; } .framer-GsLrC .framer-1f5u5zk { gap: 4px; }}\",\"@media (max-width: 809px) { .framer-GsLrC.framer-6xjffm { padding: 0px; width: 390px; } .framer-GsLrC .framer-1wiiyzd { gap: 30px; height: 7296px; } .framer-GsLrC .framer-ijl9kj-container, .framer-GsLrC .framer-p1atmw, .framer-GsLrC .framer-1ul4s1t, .framer-GsLrC .framer-14wpl9w { order: 0; } .framer-GsLrC .framer-mzuica { gap: 10px; height: var(--framer-aspect-ratio-supported, 798px); order: 1; padding: 40px 20px 40px 20px; } .framer-GsLrC .framer-zxwucc { padding: 0px; } .framer-GsLrC .framer-17rhbcu { width: 95%; } .framer-GsLrC .framer-1h3zv8n { flex-direction: column; gap: 20px; } .framer-GsLrC .framer-eipxwq-container, .framer-GsLrC .framer-1yydhys, .framer-GsLrC .framer-1crivrj, .framer-GsLrC .framer-2aucq { width: 100%; } .framer-GsLrC .framer-1ggbx2d { gap: 0px; height: var(--framer-aspect-ratio-supported, 278px); padding: 20px 0px 10px 0px; } .framer-GsLrC .framer-17qpyzb { height: var(--framer-aspect-ratio-supported, 248px); width: 100%; } .framer-GsLrC .framer-sgdiem { order: 2; } .framer-GsLrC .framer-d7ia67-container { order: 3; } .framer-GsLrC .framer-ujzpz3 { gap: 0px; order: 4; padding: 60px 20px 60px 20px; } .framer-GsLrC .framer-8slyhn { gap: 20px; padding: 0px 0px 25px 0px; } .framer-GsLrC .framer-uym5ei { max-width: 100%; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-GsLrC .framer-1fu0j6v { flex-direction: column; gap: 71px; } .framer-GsLrC .framer-1e0x9eu, .framer-GsLrC .framer-t271xh, .framer-GsLrC .framer-e8kmaq { width: min-content; } .framer-GsLrC .framer-5qnoca, .framer-GsLrC .framer-wfjinu, .framer-GsLrC .framer-1azj4u1, .framer-GsLrC .framer-xmvg8g, .framer-GsLrC .framer-qkxodo { width: 346px; } .framer-GsLrC .framer-5nxrd9 { height: 145px; width: 346px; } .framer-GsLrC .framer-11mni13 { gap: 20px; order: 6; padding: 6px 10px 6px 10px; } .framer-GsLrC .framer-b1s2hh { flex-direction: column; gap: 30px; order: 1; padding: 0px 48px 0px 48px; } .framer-GsLrC .framer-z65bwh { flex: none; width: 100%; } .framer-GsLrC .framer-bplqls { gap: 20px; order: 5; padding: 6px 10px 6px 10px; } .framer-GsLrC .framer-1pe75wt-container { order: 1; } .framer-GsLrC .framer-1dzqiuj { gap: 24px; order: 7; padding: 6px 10px 6px 10px; } .framer-GsLrC .framer-muve75 { order: 1; width: 340px; } .framer-GsLrC .framer-14og9oz { flex-direction: column; gap: 12px; order: 2; } .framer-GsLrC .framer-8vb2zb { width: 101%; } .framer-GsLrC .framer-lgk1de { align-content: center; align-items: center; height: 63px; width: 101%; } .framer-GsLrC .framer-17ejm38-container { order: 8; width: auto; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6035\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mRltvRK1h\":{\"layout\":[\"fixed\",\"auto\"]},\"w9PB41Fcj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"lKUCkLRx8\":{\"pattern\":\":lKUCkLRx8\",\"name\":\"hero\"},\"kgrGdiHtr\":{\"pattern\":\":kgrGdiHtr\",\"name\":\"loved\"},\"gOoOCPGwM\":{\"pattern\":\":gOoOCPGwM\",\"name\":\"features\"}}\n * @framerResponsiveScreen\n */const FrameriRNTJh8ys=withCSS(Component,css,\"framer-GsLrC\");export default FrameriRNTJh8ys;FrameriRNTJh8ys.displayName=\"Home\";FrameriRNTJh8ys.defaultProps={height:6035,width:1200};addFonts(FrameriRNTJh8ys,[{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:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4iY1M2xLER.woff2\",weight:\"700\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4iY1M2xLER.woff2\",weight:\"400\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4iY1M2xLER.woff2\",weight:\"300\"}]},...NavigationFonts,...CTAFonts,...TickerFonts,...FeatureSetFonts,...CarouselFonts,...FooterBlueFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriRNTJh8ys\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mRltvRK1h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w9PB41Fcj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"lKUCkLRx8\\\":{\\\"pattern\\\":\\\":lKUCkLRx8\\\",\\\"name\\\":\\\"hero\\\"},\\\"kgrGdiHtr\\\":{\\\"pattern\\\":\\\":kgrGdiHtr\\\",\\\"name\\\":\\\"loved\\\"},\\\"gOoOCPGwM\\\":{\\\"pattern\\\":\\\":gOoOCPGwM\\\",\\\"name\\\":\\\"features\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"6035\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText", "SVG", "css", "FramerICOxHiCj3", "withCSS", "ICOxHiCj3_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "LinkFonts", "getFonts", "ICOxHiCj3_default", "ImageWithFX", "Image2", "MotionDivWithFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "animation3", "transition3", "transition4", "animation4", "animation5", "animation6", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation7", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterizu9gt", "overlay", "paginationInfo", "args", "ref1", "pe", "ref2", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "SVG", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "l", "AnimatePresence", "Floating", "css", "FramerIslImVgiO", "withCSS", "IslImVgiO_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationFonts", "getFonts", "tEZfS4AuD_default", "CTAFonts", "MoJCsMQxP_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ImageWithOptimizedAppearEffect", "Image2", "TickerFonts", "Ticker", "FeatureSetFonts", "IslImVgiO_default", "CarouselFonts", "Carousel", "FooterBlueFonts", "na1wsq_wt_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "HTMLStyle", "value", "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", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "RichText", "Link", "getLoadingLazyAtYPosition", "css", "FrameriRNTJh8ys", "withCSS", "iRNTJh8ys_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
