{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/cKNLRKYOE0xCDVKtAZTz/YdZX5gbt5VoWEETNTBcH/rffi4envn.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js", "ssg:https://framerusercontent.com/modules/gUoi7z5v1d3pKoJwrrNA/VKieZxvV08V6NB1ACSkC/vspcJWBUX.js", "ssg:https://framerusercontent.com/modules/rZkVzWlSVOArGnFCpzFY/qudqVlfTbWt8yAFGudXt/nrGtgU5Ek.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ydeYuQ5l03ctT0CepMoD/Av5Ix8FhIRl4uiZOHcDn/aRBuXc9WF.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/fD5mNE2wNfos0fpRvEsN/ugMGA8EqFQzPqBjRsqwO/IDGMR6ud2.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={yhnhZlxjL:{hover:true}};const serializationHash=\"framer-ggsi1\";const variantClassNames={yhnhZlxjL:\"framer-v-z8b7h1\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,link,logo,title,width,...props})=>{var _ref;return{...props,aIi4FThdf:image!==null&&image!==void 0?image:props.aIi4FThdf,ATa5PwMhQ:logo!==null&&logo!==void 0?logo:props.ATa5PwMhQ,fI67WRLdW:link!==null&&link!==void 0?link:props.fI67WRLdW,rE5knHA9n:(_ref=title!==null&&title!==void 0?title:props.rE5knHA9n)!==null&&_ref!==void 0?_ref:\"Title\"};};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,fI67WRLdW,aIi4FThdf,ATa5PwMhQ,rE5knHA9n,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"yhnhZlxjL\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(ATa5PwMhQ);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:fI67WRLdW,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-z8b7h1\",className,classNames)} framer-1vqaisu`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"yhnhZlxjL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"yhnhZlxjL-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1068},className:\"framer-6wx9ip\",\"data-framer-name\":\"Image holder\",layoutDependency:layoutDependency,layoutId:\"THZ_Fx63B\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1068,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457.5)-0-457.6)/2+0+0)+0),pixelHeight:1e3,pixelWidth:1068,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(aIi4FThdf)},className:\"framer-m9bhm7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"knSy1HrNb\",...addPropertyOverrides({\"yhnhZlxjL-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1068,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457.5)-10-447.6)/2+0+0)+0),pixelHeight:1e3,pixelWidth:1068,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(aIi4FThdf)}}},baseVariant,gestureVariant),children:visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jr9ars\",\"data-framer-name\":\"fade\",layoutDependency:layoutDependency,layoutId:\"sQZj3CFcP\",style:{backgroundColor:\"rgba(0, 0, 0, 0.2)\"},variants:{\"yhnhZlxjL-hover\":{backgroundColor:\"rgba(0, 0, 0, 0.4)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:14.5,intrinsicWidth:150,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457.5)-0-457.6)/2+0+0)+0+0+125.00000000000009),pixelHeight:29,pixelWidth:300,sizes:\"200px\",...toResponsiveImage(ATa5PwMhQ),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-dudh2x\",\"data-framer-name\":\"logo\",layoutDependency:layoutDependency,layoutId:\"RfWNVNL6Q\",style:{filter:\"brightness(0) invert(1)\",WebkitFilter:\"brightness(0) invert(1)\"},...addPropertyOverrides({\"yhnhZlxjL-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:14.5,intrinsicWidth:150,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457.5)-10-447.6)/2+0+0)+0+0+120.00000000000009),pixelHeight:29,pixelWidth:300,sizes:\"220px\",...toResponsiveImage(ATa5PwMhQ),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rjww3m\",layoutDependency:layoutDependency,layoutId:\"sWLJfpO0Z\",style:{backgroundColor:\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-7ll0nv\",\"data-styles-preset\":\"IDGMR6ud2\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:'\"Madden aligns perfectly with these objectives, and their tools will guide us in achieving these goals effectively.\"'})}),className:\"framer-3wklip\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FyQP23w3R\",style:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:rE5knHA9n,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pz0rol\",layoutDependency:layoutDependency,layoutId:\"zFNoBl1bf\",style:{opacity:.5},variants:{\"yhnhZlxjL-hover\":{opacity:1}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a8f50d\",layoutDependency:layoutDependency,layoutId:\"ip4Tm_xOD\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yiadi\",\"data-styles-preset\":\"aRBuXc9WF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, rgb(255, 255, 255)))\"},children:\"Read article\"})}),className:\"framer-wdoga5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r_rZiw_sI\",style:{\"--extracted-r6o4lv\":\"var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{\"yhnhZlxjL-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ou6t9-container\",layoutDependency:layoutDependency,layoutId:\"MR2IVh8mD-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"MR2IVh8mD\",layoutId:\"MR2IVh8mD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ggsi1.framer-1vqaisu, .framer-ggsi1 .framer-1vqaisu { display: block; }\",\".framer-ggsi1.framer-z8b7h1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 360px; }\",\".framer-ggsi1 .framer-6wx9ip { flex: none; height: 350px; overflow: hidden; position: relative; width: 100%; }\",\".framer-ggsi1 .framer-m9bhm7, .framer-ggsi1 .framer-jr9ars { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-ggsi1 .framer-dudh2x { flex: none; height: 100px; left: calc(50.00000000000002% - 200px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100px / 2); width: 200px; }\",\".framer-ggsi1 .framer-rjww3m { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-ggsi1 .framer-3wklip { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ggsi1 .framer-1pz0rol { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ggsi1 .framer-a8f50d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 12px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-ggsi1 .framer-wdoga5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ggsi1 .framer-8ou6t9-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ggsi1.framer-z8b7h1, .framer-ggsi1 .framer-rjww3m, .framer-ggsi1 .framer-1pz0rol, .framer-ggsi1 .framer-a8f50d { gap: 0px; } .framer-ggsi1.framer-z8b7h1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ggsi1.framer-z8b7h1 > :first-child, .framer-ggsi1 .framer-rjww3m > :first-child { margin-top: 0px; } .framer-ggsi1.framer-z8b7h1 > :last-child, .framer-ggsi1 .framer-rjww3m > :last-child { margin-bottom: 0px; } .framer-ggsi1 .framer-rjww3m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ggsi1 .framer-1pz0rol > *, .framer-ggsi1 .framer-a8f50d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ggsi1 .framer-1pz0rol > :first-child, .framer-ggsi1 .framer-a8f50d > :first-child { margin-left: 0px; } .framer-ggsi1 .framer-1pz0rol > :last-child, .framer-ggsi1 .framer-a8f50d > :last-child { margin-right: 0px; } }\",\".framer-ggsi1.framer-v-z8b7h1.hover.framer-z8b7h1 { padding: 0px 0px 10px 0px; }\",\".framer-ggsi1.framer-v-z8b7h1.hover .framer-6wx9ip { height: 330px; }\",\".framer-ggsi1.framer-v-z8b7h1.hover .framer-m9bhm7 { bottom: -20px; }\",\".framer-ggsi1.framer-v-z8b7h1.hover .framer-dudh2x { height: 110px; left: calc(50.00000000000002% - 220px / 2); top: calc(50.00000000000002% - 110px / 2); width: 220px; }\",\".framer-ggsi1.framer-v-z8b7h1.hover .framer-rjww3m { gap: 20px; }\",\".framer-ggsi1.framer-v-z8b7h1.hover .framer-a8f50d { padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ggsi1.framer-v-z8b7h1.hover .framer-rjww3m { gap: 0px; } .framer-ggsi1.framer-v-z8b7h1.hover .framer-rjww3m > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ggsi1.framer-v-z8b7h1.hover .framer-rjww3m > :first-child { margin-top: 0px; } .framer-ggsi1.framer-v-z8b7h1.hover .framer-rjww3m > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 457.5\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TEVFy4iC4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"fI67WRLdW\":\"link\",\"aIi4FThdf\":\"image\",\"ATa5PwMhQ\":\"logo\",\"rE5knHA9n\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerrffi4envn=withCSS(Component,css,\"framer-ggsi1\");export default Framerrffi4envn;Framerrffi4envn.displayName=\"CMS Item\";Framerrffi4envn.defaultProps={height:457.5,width:360};addPropertyControls(Framerrffi4envn,{fI67WRLdW:{title:\"Link\",type:ControlType.Link},aIi4FThdf:{title:\"Image\",type:ControlType.ResponsiveImage},ATa5PwMhQ:{title:\"Logo\",type:ControlType.ResponsiveImage},rE5knHA9n:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String}});addFonts(Framerrffi4envn,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerrffi4envn\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"360\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TEVFy4iC4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"457.5\",\"framerVariables\":\"{\\\"fI67WRLdW\\\":\\\"link\\\",\\\"aIi4FThdf\\\":\\\"image\\\",\\\"ATa5PwMhQ\\\":\\\"logo\\\",\\\"rE5knHA9n\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rffi4envn.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){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 infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/ydeYuQ5l03ctT0CepMoD/Av5Ix8FhIRl4uiZOHcDn/aRBuXc9WF.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zLeaDOiMpTWFmTCgzkCs/eGzZdC5aYBy8mFTw01gU/aYD864qX3.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/VFZiWhUYFEBqXMSwgoeq/zQdQa6z5ScT9D816AbMs/RgpVnOrG0.js\";const TickerFonts=getFonts(Ticker);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"TFve5FbLQ\",\"LF3UxC1vB\",\"HqXnViJXh\",\"zZbpp_5l5\",\"g9QmDY9WK\",\"mSHUDwJYs\"];const serializationHash=\"framer-4bbDL\";const variantClassNames={g9QmDY9WK:\"framer-v-9v68ye\",HqXnViJXh:\"framer-v-1h6k2vv\",LF3UxC1vB:\"framer-v-1rhelyp\",mSHUDwJYs:\"framer-v-1emy0ot\",TFve5FbLQ:\"framer-v-1ccm7gp\",zZbpp_5l5:\"framer-v-u6j5wr\"};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={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Budget - closed\":\"g9QmDY9WK\",\"Budget - open\":\"mSHUDwJYs\",\"Inventory - closed\":\"TFve5FbLQ\",\"Inventory - open\":\"LF3UxC1vB\",\"Planning - closed\":\"HqXnViJXh\",\"Planning - open\":\"zZbpp_5l5\"};const getProps=({details,header,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,rAtsQbDFy:(_ref=details!==null&&details!==void 0?details:props.rAtsQbDFy)!==null&&_ref!==void 0?_ref:\"Wow look at all these things that you can do with this tool\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"TFve5FbLQ\",y_hVgMCAS:(_ref2=header!==null&&header!==void 0?header:props.y_hVgMCAS)!==null&&_ref2!==void 0?_ref2:\"Here's space for a good header\"};};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,y_hVgMCAS,rAtsQbDFy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TFve5FbLQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1mjkjf4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"LF3UxC1vB\");});const onMouseEnterb60240=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"LF3UxC1vB\");});const onTap1vbnwb=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"TFve5FbLQ\");});const onMouseLeave5ef7e6=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"TFve5FbLQ\");});const onTap1al58d0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"zZbpp_5l5\");});const onMouseEnter1n0hjnc=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"zZbpp_5l5\");});const onTap1een1jd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"HqXnViJXh\");});const onMouseLeave14bzw18=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"HqXnViJXh\");});const onTap1slrjec=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"mSHUDwJYs\");});const onMouseEntere1zald=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"mSHUDwJYs\");});const onTap3s02ep=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"g9QmDY9WK\");});const onMouseLeave1upwx49=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"g9QmDY9WK\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"HqXnViJXh\",\"zZbpp_5l5\",\"g9QmDY9WK\",\"mSHUDwJYs\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"g9QmDY9WK\",\"mSHUDwJYs\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"HqXnViJXh\",\"zZbpp_5l5\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"LF3UxC1vB\",\"zZbpp_5l5\",\"mSHUDwJYs\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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-1ccm7gp\",className,classNames),\"data-framer-name\":\"Inventory - closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TFve5FbLQ\",onMouseEnter:onMouseEnterb60240,onTap:onTap1mjkjf4,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(214, 214, 214, 0.3)\",...style},...addPropertyOverrides({g9QmDY9WK:{\"data-framer-name\":\"Budget - closed\",onMouseEnter:onMouseEntere1zald,onTap:onTap1slrjec},HqXnViJXh:{\"data-framer-name\":\"Planning - closed\",onMouseEnter:onMouseEnter1n0hjnc,onTap:onTap1al58d0},LF3UxC1vB:{\"data-framer-name\":\"Inventory - open\",onMouseEnter:undefined,onMouseLeave:onMouseLeave5ef7e6,onTap:onTap1vbnwb},mSHUDwJYs:{\"data-framer-name\":\"Budget - open\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1upwx49,onTap:onTap3s02ep},zZbpp_5l5:{\"data-framer-name\":\"Planning - open\",onMouseEnter:undefined,onMouseLeave:onMouseLeave14bzw18,onTap:onTap1een1jd}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-809se\",\"data-framer-name\":\"image holder\",layoutDependency:layoutDependency,layoutId:\"Oxu087Pae\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2912,intrinsicWidth:3868,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1*.5000000000000002-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1-0)*1.0018181818181817/2)),pixelHeight:2912,pixelWidth:3868,positionX:\"50.6%\",positionY:\"22.7%\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/tRrKlfzlv81OrqyMmLRUGO6qTl0.png\",srcSet:\"https://framerusercontent.com/images/tRrKlfzlv81OrqyMmLRUGO6qTl0.png?scale-down-to=512 512w,https://framerusercontent.com/images/tRrKlfzlv81OrqyMmLRUGO6qTl0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tRrKlfzlv81OrqyMmLRUGO6qTl0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tRrKlfzlv81OrqyMmLRUGO6qTl0.png 3868w\"},className:\"framer-i07d2p\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"EP61DhVUh\",style:{filter:\"contrast(0.7) grayscale(0.3)\",rotate:0,WebkitFilter:\"contrast(0.7) grayscale(0.3)\"},variants:{HqXnViJXh:{filter:\"contrast(0.7) grayscale(1)\",WebkitFilter:\"contrast(0.7) grayscale(1)\"},LF3UxC1vB:{filter:\"contrast(1) grayscale(0)\",rotate:4,WebkitFilter:\"contrast(1) grayscale(0)\"},mSHUDwJYs:{filter:\"contrast(1) grayscale(0)\",WebkitFilter:\"contrast(1) grayscale(0)\"},zZbpp_5l5:{filter:\"contrast(1) grayscale(0)\",rotate:7,WebkitFilter:\"contrast(1) grayscale(0)\"}},...addPropertyOverrides({g9QmDY9WK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2757,intrinsicWidth:3868,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1*.5000000000000002-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1-0)*1/2)),pixelHeight:2757,pixelWidth:4096,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png 6000w\"}},HqXnViJXh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2757,intrinsicWidth:3868,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1*.5000000000000002-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1-0)*1/2)),pixelHeight:2757,pixelWidth:4096,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/ey8AD4ZndHOddZlPnBacPLujm1A.png\",srcSet:\"https://framerusercontent.com/images/ey8AD4ZndHOddZlPnBacPLujm1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/ey8AD4ZndHOddZlPnBacPLujm1A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ey8AD4ZndHOddZlPnBacPLujm1A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ey8AD4ZndHOddZlPnBacPLujm1A.png 3000w\"}},LF3UxC1vB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2912,intrinsicWidth:3868,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1*.5745454545454548-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1-0)*1.2363636363636363/2)),pixelHeight:2912,pixelWidth:3868,positionX:\"50.6%\",positionY:\"22.7%\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.235)`,src:\"https://framerusercontent.com/images/tRrKlfzlv81OrqyMmLRUGO6qTl0.png\",srcSet:\"https://framerusercontent.com/images/tRrKlfzlv81OrqyMmLRUGO6qTl0.png?scale-down-to=512 512w,https://framerusercontent.com/images/tRrKlfzlv81OrqyMmLRUGO6qTl0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tRrKlfzlv81OrqyMmLRUGO6qTl0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tRrKlfzlv81OrqyMmLRUGO6qTl0.png 3868w\"}},mSHUDwJYs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2912,intrinsicWidth:3868,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1*.5745454545454548-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1-0)*1.1981818181818182/2)),pixelHeight:2757,pixelWidth:4096,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.1983)`,src:\"https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7v3028EkAmjdWxGTd8IMpaKTw.png 6000w\"}},zZbpp_5l5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2912,intrinsicWidth:3868,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1*.5000000000000002-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||550)-0-0)/1)*1-0)*1.309090909090909/2)),pixelHeight:2757,pixelWidth:4096,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.31)`,src:\"https://framerusercontent.com/images/ey8AD4ZndHOddZlPnBacPLujm1A.png\",srcSet:\"https://framerusercontent.com/images/ey8AD4ZndHOddZlPnBacPLujm1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/ey8AD4ZndHOddZlPnBacPLujm1A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ey8AD4ZndHOddZlPnBacPLujm1A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ey8AD4ZndHOddZlPnBacPLujm1A.png 3000w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12yrlav\",layoutDependency:layoutDependency,layoutId:\"WFlb28wW3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13466yd\",\"data-framer-name\":\"Ticker\",layoutDependency:layoutDependency,layoutId:\"XTsqGBkew\",style:{backdropFilter:\"blur(0px)\",WebkitBackdropFilter:\"blur(0px)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dkagbg-container\",layoutDependency:layoutDependency,layoutId:\"G3z5YCcfR-container\",style:{opacity:.5},variants:{LF3UxC1vB:{opacity:1}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"G3z5YCcfR\",layoutId:\"G3z5YCcfR\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f87twg\",\"data-framer-name\":\"inventory\",layoutDependency:layoutDependency,layoutId:\"cp78ORowK\",style:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Stock-turnover %\"})}),className:\"framer-e0q6ut\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WIzzGzhnx\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\\xb7\"})}),className:\"framer-1meqa81\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HA6pYMliV\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Replenishment warnings\"})}),className:\"framer-xcn5mm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J8yCplZlh\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\\xb7\"})}),className:\"framer-1ihh8wn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FMrOV1wwV\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Re-stock forecasts\"})}),className:\"framer-4qnyr1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aOTuy4q4M\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\\xb7\"})}),className:\"framer-1apxqe8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NJkH1Xwdr\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Stock health overview\"})}),className:\"framer-1utt67k\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fSoihehsH\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\\xb7\"})}),className:\"framer-muwb46\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GuH93Hd7U\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10xwtl-container\",layoutDependency:layoutDependency,layoutId:\"RfY_OroPT-container\",style:{opacity:1},variants:{g9QmDY9WK:{opacity:.5}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"RfY_OroPT\",layoutId:\"RfY_OroPT\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10iwhlr\",\"data-framer-name\":\"budget\",layoutDependency:layoutDependency,layoutId:\"s6lK7bk4p\",style:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Ingoing stock value\"})}),className:\"framer-1c6085x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UUDLvK5vn\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\u2013\"})}),className:\"framer-10lfupn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cG8OcVoIG\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Gross margin\"})}),className:\"framer-1sjozt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mstlaSCbL\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\u2013\"})}),className:\"framer-1qdvq8w\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a08pf05_R\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Return-rate\"})}),className:\"framer-15tz9wi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QvzXHAaCF\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\u2013\"})}),className:\"framer-1m5tytz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"n8yeomqiG\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Avg. discount\"})}),className:\"framer-1unohyu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"onaEov1mj\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\u2013\"})}),className:\"framer-1gjozt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GurEn6HSK\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"COGS calculation\"})}),className:\"framer-6ptvy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z_PqvRbH8\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\u2013\"})}),className:\"framer-1fy7d82\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Zjz5sYWhN\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Open-to-buy\"})}),className:\"framer-1tx5rg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kejMxbqPi\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\u2013\"})}),className:\"framer-2visk4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GmNfop0yC\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"COGS linked to sales budget\"})}),className:\"framer-xnb1bk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kuuM8EJIr\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\u2013\"})}),className:\"framer-31ei0i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c0GMeRWbt\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Sell-through\"})}),className:\"framer-y3kejp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b4Ke1NxC3\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\u2013\"})}),className:\"framer-18os1o7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"n3vE1vH5p\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Bought margin\"})}),className:\"framer-1hpaq3y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qItmrDIGE\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\u2013\"})}),className:\"framer-x6g5f6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GmZzo99dJ\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"No. of options\"})}),className:\"framer-1p39bxt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f3EJeq0Cb\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\u2013\"})}),className:\"framer-lgvsz0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x4pEHqAjD\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Avg. cost price\"})}),className:\"framer-1ps0nky\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wyzpgARdO\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\u2013\"})}),className:\"framer-1ud6x9u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZGcDBcI06\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ff4jrv-container\",layoutDependency:layoutDependency,layoutId:\"tKNTXCNrY-container\",style:{opacity:1},variants:{HqXnViJXh:{opacity:.5}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"tKNTXCNrY\",layoutId:\"tKNTXCNrY\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q87tds\",\"data-framer-name\":\"planning\",layoutDependency:layoutDependency,layoutId:\"lBYZ1Df8R\",style:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Easy-to-use\"})}),className:\"framer-7xb4sv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aZvmdEdSe\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\\xb7\"})}),className:\"framer-wh43yw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a6QnAnMAU\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Optimised Purchase Orders\"})}),className:\"framer-yhq0kt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qZjTVH8CX\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\\xb7\"})}),className:\"framer-1lx3zqw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"t2RUfpOC0\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"Size curve support\"})}),className:\"framer-ocu5v8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KyBXSquhi\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\\xb7\"})}),className:\"framer-i26kks\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jpEM_yUvw\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"ML-based forecasts\"})}),className:\"framer-ke7m1b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yF1VGvSLr\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--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__*/_jsx(motion.p,{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0)))\"},children:\"\\xb7\"})}),className:\"framer-rzuaf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m_XIOaBfX\",style:{\"--extracted-r6o4lv\":\"var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16kblqy\",\"data-framer-name\":\"spacing\",layoutDependency:layoutDependency,layoutId:\"GFKFRVKq9\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fdpn1i\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"Xcz6YgbNM\",style:{background:\"linear-gradient(180deg, rgba(69, 69, 69, 0) 0%, rgb(51, 51, 51) 100%)\"},variants:{g9QmDY9WK:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(26, 26, 26) 100%)\"},HqXnViJXh:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(26, 26, 26) 100%)\"},mSHUDwJYs:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(22, 22, 22, 0.70721) 70.72072072072072%, rgb(26, 26, 26) 100%)\"},zZbpp_5l5:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(26, 26, 26) 100%)\"}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ui4wvn\",\"data-framer-name\":\"fade\",layoutDependency:layoutDependency,layoutId:\"gLv1IsJtq\",style:{backgroundColor:\"rgb(0, 0, 0)\",filter:\"blur(20px)\",opacity:.2,WebkitFilter:\"blur(20px)\"},variants:{LF3UxC1vB:{opacity:.5},mSHUDwJYs:{opacity:.4},zZbpp_5l5:{opacity:.4}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-156ubv1\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"vUeJQDMb3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-7jpgdo\",\"data-styles-preset\":\"RgpVnOrG0\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, rgb(255, 255, 255)))\"},children:\"Here's space for a good header\"})}),className:\"framer-1w00nm0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gk6AiT3HT\",style:{\"--extracted-a0htzi\":\"var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:y_hVgMCAS,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9r1ppl\",\"data-framer-name\":\"More\",layoutDependency:layoutDependency,layoutId:\"h6U2Y8pbp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hw0d8q-container\",layoutDependency:layoutDependency,layoutId:\"LEwqyDJyF-container\",style:{rotate:0},variants:{LF3UxC1vB:{rotate:45},mSHUDwJYs:{rotate:45},zZbpp_5l5:{rotate:45}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"LEwqyDJyF\",layoutId:\"LEwqyDJyF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yiadi\",\"data-styles-preset\":\"aRBuXc9WF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, rgb(255, 255, 255)))\"},children:\"Wow look at all these things that you can do with this tool\"})}),className:\"framer-1w16463\",\"data-framer-name\":\"Details\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"In99O9WUH\",style:{\"--extracted-r6o4lv\":\"var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:rAtsQbDFy,variants:{LF3UxC1vB:{opacity:.8},mSHUDwJYs:{opacity:.8},zZbpp_5l5:{opacity:.8}},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ly8ls3\",\"data-framer-name\":\"spacing\",layoutDependency:layoutDependency,layoutId:\"CM0lhSXzn\"})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4bbDL.framer-1s63unx, .framer-4bbDL .framer-1s63unx { display: block; }\",\".framer-4bbDL.framer-1ccm7gp { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 550px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-4bbDL .framer-809se, .framer-4bbDL .framer-16kblqy { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-4bbDL .framer-i07d2p { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100.18181818181817% / 2); width: 100%; }\",\".framer-4bbDL .framer-12yrlav { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-4bbDL .framer-13466yd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px 20px 12px 10px; position: relative; width: 100%; }\",\".framer-4bbDL .framer-dkagbg-container, .framer-4bbDL .framer-10xwtl-container, .framer-4bbDL .framer-1ff4jrv-container { flex: 1 0 0px; height: 24px; position: relative; width: 1px; }\",\".framer-4bbDL .framer-f87twg, .framer-4bbDL .framer-10iwhlr, .framer-4bbDL .framer-1q87tds { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-4bbDL .framer-e0q6ut, .framer-4bbDL .framer-1meqa81, .framer-4bbDL .framer-xcn5mm, .framer-4bbDL .framer-1ihh8wn, .framer-4bbDL .framer-4qnyr1, .framer-4bbDL .framer-1apxqe8, .framer-4bbDL .framer-1utt67k, .framer-4bbDL .framer-muwb46, .framer-4bbDL .framer-1c6085x, .framer-4bbDL .framer-10lfupn, .framer-4bbDL .framer-1sjozt, .framer-4bbDL .framer-1qdvq8w, .framer-4bbDL .framer-15tz9wi, .framer-4bbDL .framer-1m5tytz, .framer-4bbDL .framer-1unohyu, .framer-4bbDL .framer-1gjozt, .framer-4bbDL .framer-6ptvy, .framer-4bbDL .framer-1fy7d82, .framer-4bbDL .framer-1tx5rg, .framer-4bbDL .framer-2visk4, .framer-4bbDL .framer-xnb1bk, .framer-4bbDL .framer-31ei0i, .framer-4bbDL .framer-y3kejp, .framer-4bbDL .framer-18os1o7, .framer-4bbDL .framer-1hpaq3y, .framer-4bbDL .framer-x6g5f6, .framer-4bbDL .framer-1p39bxt, .framer-4bbDL .framer-lgvsz0, .framer-4bbDL .framer-1ps0nky, .framer-4bbDL .framer-1ud6x9u, .framer-4bbDL .framer-7xb4sv, .framer-4bbDL .framer-wh43yw, .framer-4bbDL .framer-yhq0kt, .framer-4bbDL .framer-1lx3zqw, .framer-4bbDL .framer-ocu5v8, .framer-4bbDL .framer-i26kks, .framer-4bbDL .framer-ke7m1b, .framer-4bbDL .framer-rzuaf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4bbDL .framer-1fdpn1i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 20px 8px 20px; position: relative; width: 100%; }\",\".framer-4bbDL .framer-ui4wvn { bottom: -20px; flex: none; left: -20px; overflow: visible; position: absolute; right: -20px; top: -20px; }\",\".framer-4bbDL .framer-156ubv1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4bbDL .framer-1w00nm0 { --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-4bbDL .framer-9r1ppl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4bbDL .framer-1hw0d8q-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-4bbDL .framer-1w16463 { flex: none; height: 1px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4bbDL .framer-ly8ls3 { flex: none; height: 3px; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4bbDL.framer-1ccm7gp, .framer-4bbDL .framer-12yrlav, .framer-4bbDL .framer-13466yd, .framer-4bbDL .framer-f87twg, .framer-4bbDL .framer-10iwhlr, .framer-4bbDL .framer-1q87tds, .framer-4bbDL .framer-1fdpn1i, .framer-4bbDL .framer-156ubv1, .framer-4bbDL .framer-9r1ppl { gap: 0px; } .framer-4bbDL.framer-1ccm7gp > *, .framer-4bbDL .framer-12yrlav > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4bbDL.framer-1ccm7gp > :first-child, .framer-4bbDL .framer-12yrlav > :first-child, .framer-4bbDL .framer-1fdpn1i > :first-child { margin-top: 0px; } .framer-4bbDL.framer-1ccm7gp > :last-child, .framer-4bbDL .framer-12yrlav > :last-child, .framer-4bbDL .framer-1fdpn1i > :last-child { margin-bottom: 0px; } .framer-4bbDL .framer-13466yd > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-4bbDL .framer-13466yd > :first-child, .framer-4bbDL .framer-f87twg > :first-child, .framer-4bbDL .framer-10iwhlr > :first-child, .framer-4bbDL .framer-1q87tds > :first-child, .framer-4bbDL .framer-156ubv1 > :first-child, .framer-4bbDL .framer-9r1ppl > :first-child { margin-left: 0px; } .framer-4bbDL .framer-13466yd > :last-child, .framer-4bbDL .framer-f87twg > :last-child, .framer-4bbDL .framer-10iwhlr > :last-child, .framer-4bbDL .framer-1q87tds > :last-child, .framer-4bbDL .framer-156ubv1 > :last-child, .framer-4bbDL .framer-9r1ppl > :last-child { margin-right: 0px; } .framer-4bbDL .framer-f87twg > *, .framer-4bbDL .framer-10iwhlr > *, .framer-4bbDL .framer-1q87tds > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4bbDL .framer-1fdpn1i > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-4bbDL .framer-156ubv1 > *, .framer-4bbDL .framer-9r1ppl > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-4bbDL.framer-v-1rhelyp .framer-i07d2p { height: 124%; left: calc(50.00000000000002% - 123.50000000000001% / 2); top: calc(57.45454545454548% - 123.63636363636363% / 2); width: 124%; }\",\".framer-4bbDL.framer-v-1rhelyp .framer-1w16463, .framer-4bbDL.framer-v-u6j5wr .framer-1w16463, .framer-4bbDL.framer-v-1emy0ot .framer-1w16463 { height: auto; }\",\".framer-4bbDL.framer-v-1h6k2vv .framer-i07d2p, .framer-4bbDL.framer-v-9v68ye .framer-i07d2p { height: 100%; top: calc(50.00000000000002% - 100% / 2); }\",\".framer-4bbDL.framer-v-u6j5wr .framer-i07d2p { height: 131%; left: calc(55.33333333333336% - 131% / 2); top: calc(50.00000000000002% - 130.9090909090909% / 2); width: 131%; }\",\".framer-4bbDL.framer-v-1emy0ot .framer-i07d2p { height: 120%; left: calc(45.166666666666686% - 119.83333333333333% / 2); top: calc(57.45454545454548% - 119.81818181818183% / 2); width: 120%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 550\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"LF3UxC1vB\":{\"layout\":[\"fixed\",\"fixed\"]},\"HqXnViJXh\":{\"layout\":[\"fixed\",\"fixed\"]},\"zZbpp_5l5\":{\"layout\":[\"fixed\",\"fixed\"]},\"g9QmDY9WK\":{\"layout\":[\"fixed\",\"fixed\"]},\"mSHUDwJYs\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"y_hVgMCAS\":\"header\",\"rAtsQbDFy\":\"details\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervspcJWBUX=withCSS(Component,css,\"framer-4bbDL\");export default FramervspcJWBUX;FramervspcJWBUX.displayName=\"Product detail\";FramervspcJWBUX.defaultProps={height:550,width:600};addPropertyControls(FramervspcJWBUX,{variant:{options:[\"TFve5FbLQ\",\"LF3UxC1vB\",\"HqXnViJXh\",\"zZbpp_5l5\",\"g9QmDY9WK\",\"mSHUDwJYs\"],optionTitles:[\"Inventory - closed\",\"Inventory - open\",\"Planning - closed\",\"Planning - open\",\"Budget - closed\",\"Budget - open\"],title:\"Variant\",type:ControlType.Enum},y_hVgMCAS:{defaultValue:\"Here's space for a good header\",displayTextArea:false,title:\"Header\",type:ControlType.String},rAtsQbDFy:{defaultValue:\"Wow look at all these things that you can do with this tool\",displayTextArea:false,title:\"Details\",type:ControlType.String}});addFonts(FramervspcJWBUX,[{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\"}]},...TickerFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervspcJWBUX\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LF3UxC1vB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HqXnViJXh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zZbpp_5l5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g9QmDY9WK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mSHUDwJYs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"y_hVgMCAS\\\":\\\"header\\\",\\\"rAtsQbDFy\\\":\\\"details\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"550\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vspcJWBUX.map", "// Generated by Framer (2aad935)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import Footer from\"#framer/local/canvasComponent/CyfWZtRjH/CyfWZtRjH.js\";import FormMakeIntegration from\"#framer/local/canvasComponent/duOGgZmIw/duOGgZmIw.js\";import BackgroundWaves from\"#framer/local/canvasComponent/I_r6nvFKN/I_r6nvFKN.js\";import Header from\"#framer/local/canvasComponent/mc1nZE69H/mc1nZE69H.js\";import Button from\"#framer/local/canvasComponent/qBVdk8HXy/qBVdk8HXy.js\";import CMSItem from\"#framer/local/canvasComponent/rffi4envn/rffi4envn.js\";import Divider from\"#framer/local/canvasComponent/RNlt2lQ59/RNlt2lQ59.js\";import TestimonialLargeImage from\"#framer/local/canvasComponent/U_mJwXiIB/U_mJwXiIB.js\";import FormNewsletter from\"#framer/local/canvasComponent/Vb5SUDvLM/Vb5SUDvLM.js\";import ProductDetail from\"#framer/local/canvasComponent/vspcJWBUX/vspcJWBUX.js\";import News from\"#framer/local/collection/mI8MufXp4/mI8MufXp4.js\";import*as sharedStyle2 from\"#framer/local/css/aRBuXc9WF/aRBuXc9WF.js\";import*as sharedStyle5 from\"#framer/local/css/aYD864qX3/aYD864qX3.js\";import*as sharedStyle4 from\"#framer/local/css/boxvCZruu/boxvCZruu.js\";import*as sharedStyle1 from\"#framer/local/css/MtZfSKbYJ/MtZfSKbYJ.js\";import*as sharedStyle6 from\"#framer/local/css/PbUcLNPfT/PbUcLNPfT.js\";import*as sharedStyle7 from\"#framer/local/css/RgpVnOrG0/RgpVnOrG0.js\";import*as sharedStyle3 from\"#framer/local/css/TSdhRZV7m/TSdhRZV7m.js\";import*as sharedStyle from\"#framer/local/css/V3YcFcIFC/V3YcFcIFC.js\";import metadataProvider from\"#framer/local/webPageMetadata/nrGtgU5Ek/nrGtgU5Ek.js\";const ImageWithFX=withFX(Image);const FormMakeIntegrationFonts=getFonts(FormMakeIntegration);const ButtonFonts=getFonts(Button);const SlideshowFonts=getFonts(Slideshow);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const BackgroundWavesFonts=getFonts(BackgroundWaves);const DividerFonts=getFonts(Divider);const PhosphorFonts=getFonts(Phosphor);const ProductDetailFonts=getFonts(ProductDetail);const TestimonialLargeImageFonts=getFonts(TestimonialLargeImage);const CMSItemFonts=getFonts(CMSItem);const FormNewsletterFonts=getFonts(FormNewsletter);const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const FooterFonts=getFonts(Footer);const breakpoints={JcTMmECU6:\"(min-width: 2000px)\",jFrPZkzm4:\"(min-width: 810px) and (max-width: 1199px)\",jMsws5JUg:\"(max-width: 809px)\",xdCE3KQOZ:\"(min-width: 1200px) and (max-width: 1999px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-wAd4z\";const variantClassNames={JcTMmECU6:\"framer-v-1ap2xy1\",jFrPZkzm4:\"framer-v-1x1tpxd\",jMsws5JUg:\"framer-v-1lgpqbz\",xdCE3KQOZ:\"framer-v-1guwhm0\"};const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={backgroundColor:\"rgb(255, 170, 51)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transition:transition1};const transition2={delay:0,duration:3,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:50,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 transition3={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition5={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5};const animation6={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"xdCE3KQOZ\",Large:\"JcTMmECU6\",Phone:\"jMsws5JUg\",Tablet:\"jFrPZkzm4\"};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:\"xdCE3KQOZ\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gDlJZa4OKDWu8OvuJo,XN47jua8VDWu8OvuJo,p9rkOR4SNDWu8OvuJo,dnyLHqtLADWu8OvuJo,idDWu8OvuJo,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-wAd4z`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-wAd4z`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTapwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const icbwHd2ufwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const NwgwpXJHVwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"jMsws5JUg\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"jMsws5JUg\")return true;return false;};const elementId=useRouteElementId(\"oYldM5Ml5\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"yffISBVyl\");const ref3=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"jMsws5JUg\",\"jFrPZkzm4\"].includes(baseVariant))return false;return true;};const elementId2=useRouteElementId(\"Kb_wGsdag\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"sphzC_QFl\");const ref5=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"xdCE3KQOZ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1guwhm0\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bpzbf1\",\"data-framer-name\":\"hero dark\",name:\"hero dark\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-odwtfk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jMsws5JUg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:1894,pixelHeight:2250,pixelWidth:1894,sizes:\"100vw\",src:\"https://framerusercontent.com/images/ASfwejolRT0eWCUbTBYOdH0goc.png\",srcSet:\"https://framerusercontent.com/images/ASfwejolRT0eWCUbTBYOdH0goc.png?scale-down-to=1024 861w,https://framerusercontent.com/images/ASfwejolRT0eWCUbTBYOdH0goc.png?scale-down-to=2048 1723w,https://framerusercontent.com/images/ASfwejolRT0eWCUbTBYOdH0goc.png 1894w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2623,intrinsicWidth:3e3,pixelHeight:2623,pixelWidth:3e3,positionX:\"59.9%\",positionY:\"34%\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/r9ZiuIvQtE3uy9RupZRcd1eKMk.png\",srcSet:\"https://framerusercontent.com/images/r9ZiuIvQtE3uy9RupZRcd1eKMk.png?scale-down-to=512 512w,https://framerusercontent.com/images/r9ZiuIvQtE3uy9RupZRcd1eKMk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/r9ZiuIvQtE3uy9RupZRcd1eKMk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/r9ZiuIvQtE3uy9RupZRcd1eKMk.png 3000w\"},className:\"framer-1kr9jlt\",\"data-framer-name\":\"hero img\",name:\"hero img\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bjpkjd\",\"data-framer-name\":\"top fade\",name:\"top fade\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-juf1q2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2zam4m\",\"data-framer-name\":\"spacing\",name:\"spacing\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bbkhak\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jz3k7e\",\"data-framer-name\":\"black fade behind text\",name:\"black fade behind text\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qgxxhy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xiz76b\",\"data-styles-preset\":\"V3YcFcIFC\",children:\"Cloud-based\"})}),className:\"framer-uqnl0n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xiz76b\",\"data-styles-preset\":\"V3YcFcIFC\",children:\"inventory planning\"})}),className:\"framer-1184k9e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIERpc3BsYXkgTGlnaHQ=\",\"--framer-font-family\":'\"Inter Display Light\", \"Inter Display Light Placeholder\", sans-serif',\"--framer-font-size\":\"35.33256985738571px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"65.67581428822415px\"},children:\"Improve stock turnover.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"65.67581428822415px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"65.67581428822415px\"},children:\"Maximize cash flow.\"})]})}),className:\"framer-8tj5bz\",fonts:[\"CUSTOM;Inter Display Light\"],verticalAlignment:\"top\",viewBox:\"0 0 645 131\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jMsws5JUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10yiadi\",\"data-styles-preset\":\"aRBuXc9WF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our software helps brands get structure, intelligence and automation in their inventory planning and purchasing processes.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17pp9iu\",\"data-styles-preset\":\"MtZfSKbYJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our software helps brands get structure, intelligence and automation in their inventory planning and purchasing processes.\"})}),className:\"framer-1stmkyg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mg2w1y\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hhvaz0\",\"data-border\":true,\"data-framer-name\":\"Button\",id:\"1hhvaz0\",name:\"Button\",onTap:onTapwelu7j({overlay}),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yeje73\",\"data-framer-name\":\"pattern div\",name:\"pattern div\",whileHover:animation,children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:.3,background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:120,intrinsicWidth:200,pixelHeight:120,pixelWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/L9gN6bRCSKWIBJkYc7iGxMOn07w.svg\"},className:\"framer-anvrd7\",\"data-framer-name\":\"pattern\",name:\"pattern\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFNlbWlCb2xk\",\"--framer-font-family\":'\"Inter SemiBold\", \"Inter SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a demo\"})}),className:\"framer-1bzofus\",fonts:[\"CUSTOM;Inter SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},className:\"framer-1n0wuh6\",\"data-framer-portal-id\":\"1hhvaz0\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"Dq74NxXix\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:\"min(500px, 100vw)\",y:251.50000000000023,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hbqr2g-container\",\"data-framer-portal-id\":\"1hhvaz0\",children:/*#__PURE__*/_jsx(FormMakeIntegration,{Cn_YgIFUq:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Custom content\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(209, 210, 211)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Test\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Test\"})})]})]}),height:\"100%\",HLX8RKI_z:\"\",id:\"TjNU5KlL0\",layoutId:\"TjNU5KlL0\",RfM5EWR8Z:true,style:{maxWidth:\"100%\",width:\"100%\"},uKfTVb0Jp:false,UnsYizaq_:true,variant:\"Wm8LT71wB\",width:\"100%\"})})})]}),document.querySelector(\"#overlay\"))})})]})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"s8tSNMeSM\"},implicitPathVariables:undefined},{href:{webPageId:\"s8tSNMeSM\"},implicitPathVariables:undefined},{href:{webPageId:\"s8tSNMeSM\"},implicitPathVariables:undefined},{href:{webPageId:\"s8tSNMeSM\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-294oxo-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{ZbdKoySjd:resolvedLinks[3]},jFrPZkzm4:{ZbdKoySjd:resolvedLinks[2]},jMsws5JUg:{ZbdKoySjd:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"y9nNeLord\",iv7seVRRU:false,layoutId:\"y9nNeLord\",PBOMx9MH7:0,s0JmPOL8p:\"Learn more\",style:{height:\"100%\"},variant:\"ZYml4yDnO\",width:\"100%\",ZbdKoySjd:resolvedLinks[0],zh76BMbqQ:false})})})})})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k3pa6y\",\"data-framer-name\":\"brands\",name:\"brands\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f4a3t1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ovomyk\",\"data-framer-name\":\"logos\",name:\"logos\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-dat5zq-container hidden-1lgpqbz\",\"data-framer-appear-id\":\"dat5zq\",\"data-framer-name\":\"Desktop Slideshow\",initial:animation3,name:\"Desktop Slideshow\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"top\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:0,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",id:\"fOxIjMvhz\",intervalControl:2.2,itemAmount:1,layoutId:\"fOxIjMvhz\",name:\"Desktop Slideshow\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y1vui1\",\"data-framer-name\":\"01\",name:\"01\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:512,pixelHeight:248,pixelWidth:1024,sizes:\"140px\",src:\"https://framerusercontent.com/images/YRoAWFHULYIOgjjqqhgZr8xYzds.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YRoAWFHULYIOgjjqqhgZr8xYzds.png?scale-down-to=512 512w,https://framerusercontent.com/images/YRoAWFHULYIOgjjqqhgZr8xYzds.png 1024w\"},className:\"framer-j67rvv\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:512,pixelHeight:248,pixelWidth:1024,sizes:\"140px\",src:\"https://framerusercontent.com/images/malOFjYLrjz045VjUyimt5wO26Q.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/malOFjYLrjz045VjUyimt5wO26Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/malOFjYLrjz045VjUyimt5wO26Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/malOFjYLrjz045VjUyimt5wO26Q.png 1172w\"},className:\"framer-1ub4d53\",\"data-framer-name\":\"nudie\",name:\"nudie\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:316.5,intrinsicWidth:600,pixelHeight:633,pixelWidth:1200,sizes:\"88px\",src:\"https://framerusercontent.com/images/5aJ7eV9uEEuyqsj0yzWCM4xSnKY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5aJ7eV9uEEuyqsj0yzWCM4xSnKY.png?scale-down-to=512 512w,https://framerusercontent.com/images/5aJ7eV9uEEuyqsj0yzWCM4xSnKY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5aJ7eV9uEEuyqsj0yzWCM4xSnKY.png 1200w\"},className:\"framer-hdk6h9\",\"data-framer-name\":\"image\",name:\"image\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dgsdoh\",\"data-framer-name\":\"02\",name:\"02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:385,intrinsicWidth:770,pixelHeight:385,pixelWidth:770,sizes:\"112px\",src:\"https://framerusercontent.com/images/owIMBxHGjP9Sio04FKsZB1GuAg.png\",srcSet:\"https://framerusercontent.com/images/owIMBxHGjP9Sio04FKsZB1GuAg.png?scale-down-to=512 512w,https://framerusercontent.com/images/owIMBxHGjP9Sio04FKsZB1GuAg.png 770w\"},className:\"framer-2g7t80\",\"data-framer-name\":\"image 35\",name:\"image 35\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/F4xP0RGYlOkfQYCYoY2Kem3zBU.png\"},className:\"framer-1xxcqvi\",\"data-framer-name\":\"image 25\",name:\"image 25\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"98px\",src:\"https://framerusercontent.com/images/5m0afsK1zw2cFTpDTqsNeUSblHw.png\",srcSet:\"https://framerusercontent.com/images/5m0afsK1zw2cFTpDTqsNeUSblHw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5m0afsK1zw2cFTpDTqsNeUSblHw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5m0afsK1zw2cFTpDTqsNeUSblHw.png 1768w\"},className:\"framer-1j67ujm\",\"data-framer-name\":\"image 27\",name:\"image 27\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rpzrfy\",\"data-framer-name\":\"03\",name:\"03\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:1024,pixelHeight:296,pixelWidth:2048,sizes:\"166.0541px\",src:\"https://framerusercontent.com/images/lImBgoZuMq3Eowf5z6Ntt9SmQPI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lImBgoZuMq3Eowf5z6Ntt9SmQPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/lImBgoZuMq3Eowf5z6Ntt9SmQPI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lImBgoZuMq3Eowf5z6Ntt9SmQPI.png 2048w\"},className:\"framer-1nnlkbr\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:600,pixelHeight:312,pixelWidth:1200,sizes:\"115px\",src:\"https://framerusercontent.com/images/5Mm2c0PS3B4gOd1NmIclZxkM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5Mm2c0PS3B4gOd1NmIclZxkM.png?scale-down-to=512 512w,https://framerusercontent.com/images/5Mm2c0PS3B4gOd1NmIclZxkM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Mm2c0PS3B4gOd1NmIclZxkM.png 1200w\"},className:\"framer-sy1kc0\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/ZuIm3rwgr5wgRWbcDMS4sdsw.png\",srcSet:\"https://framerusercontent.com/images/ZuIm3rwgr5wgRWbcDMS4sdsw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZuIm3rwgr5wgRWbcDMS4sdsw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZuIm3rwgr5wgRWbcDMS4sdsw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZuIm3rwgr5wgRWbcDMS4sdsw.png 2680w\"},className:\"framer-1u46pia\",\"data-framer-name\":\"image 36\",name:\"image 36\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cg1wzi\",\"data-framer-name\":\"04\",name:\"04\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/F9L7clYz2maSBsa9zb2MH2b1gA.png\"},className:\"framer-17v8dwh\",\"data-framer-name\":\"image 29\",name:\"image 29\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"112px\",src:\"https://framerusercontent.com/images/hVPjaYZy5ExdUuEjkfhlGaBwc.png\",srcSet:\"https://framerusercontent.com/images/hVPjaYZy5ExdUuEjkfhlGaBwc.png?scale-down-to=512 512w,https://framerusercontent.com/images/hVPjaYZy5ExdUuEjkfhlGaBwc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hVPjaYZy5ExdUuEjkfhlGaBwc.png 1152w\"},className:\"framer-aj46n7\",\"data-framer-name\":\"image 37\",name:\"image 37\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"104px\",src:\"https://framerusercontent.com/images/49jPZntBZrRY0QAsM1TB1DiEFbU.png\",srcSet:\"https://framerusercontent.com/images/49jPZntBZrRY0QAsM1TB1DiEFbU.png?scale-down-to=512 512w,https://framerusercontent.com/images/49jPZntBZrRY0QAsM1TB1DiEFbU.png 850w\"},className:\"framer-v6o1yj\",\"data-framer-name\":\"image 34\",name:\"image 34\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4mofD2LJHRq1LBgxQ3FeIXy3s.png\"},className:\"framer-m21b4o\",\"data-framer-name\":\"image 31\",name:\"image 31\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kt22ss\",\"data-framer-name\":\"05\",name:\"05\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9SY4un3jv6yoHY4Oi87lJwjI1M.png\"},className:\"framer-tmip4z\",\"data-framer-name\":\"image 26\",name:\"image 26\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/r3isu83nhXBAFRCLCfxcY7Zd5s.png\"},className:\"framer-1gx5pz1\",\"data-framer-name\":\"image 32\",name:\"image 32\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:171.5,intrinsicWidth:600,pixelHeight:343,pixelWidth:1200,sizes:\"108px\",src:\"https://framerusercontent.com/images/RaEQ2ZuO6eQBw1vEmWKwlH1hns.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RaEQ2ZuO6eQBw1vEmWKwlH1hns.png?scale-down-to=512 512w,https://framerusercontent.com/images/RaEQ2ZuO6eQBw1vEmWKwlH1hns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RaEQ2ZuO6eQBw1vEmWKwlH1hns.png 1200w\"},className:\"framer-14ni5at\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"55px\",src:\"https://framerusercontent.com/images/gOz3E8iZpodKF2JzUG8bsfqC4Zs.png\",srcSet:\"https://framerusercontent.com/images/gOz3E8iZpodKF2JzUG8bsfqC4Zs.png?scale-down-to=512 512w,https://framerusercontent.com/images/gOz3E8iZpodKF2JzUG8bsfqC4Zs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gOz3E8iZpodKF2JzUG8bsfqC4Zs.png 1196w\"},className:\"framer-102jkg8\",\"data-framer-name\":\"image 33\",name:\"image 33\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-snnamq\",\"data-framer-name\":\"06\",name:\"06\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:532.5,pixelHeight:200,pixelWidth:1065,sizes:\"109px\",src:\"https://framerusercontent.com/images/kxbKwHuHgppCtUtl0g5mLoSvy0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kxbKwHuHgppCtUtl0g5mLoSvy0.png?scale-down-to=512 512w,https://framerusercontent.com/images/kxbKwHuHgppCtUtl0g5mLoSvy0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kxbKwHuHgppCtUtl0g5mLoSvy0.png 1065w\"},className:\"framer-15s6osp\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:119,intrinsicWidth:326.5,pixelHeight:238,pixelWidth:653,sizes:\"78px\",src:\"https://framerusercontent.com/images/1ahupKUjD9nM8qxAGEG0J2sw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1ahupKUjD9nM8qxAGEG0J2sw.png?scale-down-to=512 512w,https://framerusercontent.com/images/1ahupKUjD9nM8qxAGEG0J2sw.png 653w\"},className:\"framer-iz394r\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:252,intrinsicWidth:858,pixelHeight:504,pixelWidth:1716,sizes:\"114.5px\",src:\"https://framerusercontent.com/images/BsRqzb7ftDeCHsMn2l4PBzELP8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BsRqzb7ftDeCHsMn2l4PBzELP8.png?scale-down-to=512 512w,https://framerusercontent.com/images/BsRqzb7ftDeCHsMn2l4PBzELP8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BsRqzb7ftDeCHsMn2l4PBzELP8.png 1716w\"},className:\"framer-159pcf2\",\"data-framer-name\":\"image\",name:\"image\"})]})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-tkebw6-container hidden-1guwhm0 hidden-1x1tpxd hidden-1ap2xy1\",\"data-framer-appear-id\":\"tkebw6\",\"data-framer-name\":\"Phone Slideshow\",initial:animation3,name:\"Phone Slideshow\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"top\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:0,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",id:\"GOPCQ56Fc\",intervalControl:2.2,itemAmount:1,layoutId:\"GOPCQ56Fc\",name:\"Phone Slideshow\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h772c6\",\"data-framer-name\":\"0\",name:\"0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:512,pixelHeight:248,pixelWidth:1024,sizes:\"124px\",src:\"https://framerusercontent.com/images/YRoAWFHULYIOgjjqqhgZr8xYzds.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YRoAWFHULYIOgjjqqhgZr8xYzds.png?scale-down-to=512 512w,https://framerusercontent.com/images/YRoAWFHULYIOgjjqqhgZr8xYzds.png 1024w\"},className:\"framer-s8jwqq\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:316.5,intrinsicWidth:600,pixelHeight:633,pixelWidth:1200,sizes:\"83px\",src:\"https://framerusercontent.com/images/5aJ7eV9uEEuyqsj0yzWCM4xSnKY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5aJ7eV9uEEuyqsj0yzWCM4xSnKY.png?scale-down-to=512 512w,https://framerusercontent.com/images/5aJ7eV9uEEuyqsj0yzWCM4xSnKY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5aJ7eV9uEEuyqsj0yzWCM4xSnKY.png 1200w\"},className:\"framer-1lsdc9p\",\"data-framer-name\":\"image\",name:\"image\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cdw9xt\",\"data-framer-name\":\"1\",name:\"1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:385,pixelWidth:770,sizes:\"99px\",src:\"https://framerusercontent.com/images/owIMBxHGjP9Sio04FKsZB1GuAg.png\",srcSet:\"https://framerusercontent.com/images/owIMBxHGjP9Sio04FKsZB1GuAg.png?scale-down-to=512 512w,https://framerusercontent.com/images/owIMBxHGjP9Sio04FKsZB1GuAg.png 770w\"},className:\"framer-c7xmsx\",\"data-framer-name\":\"image 35\",name:\"image 35\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"118px\",src:\"https://framerusercontent.com/images/ZuIm3rwgr5wgRWbcDMS4sdsw.png\",srcSet:\"https://framerusercontent.com/images/ZuIm3rwgr5wgRWbcDMS4sdsw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZuIm3rwgr5wgRWbcDMS4sdsw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZuIm3rwgr5wgRWbcDMS4sdsw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZuIm3rwgr5wgRWbcDMS4sdsw.png 2680w\"},className:\"framer-apf9rf\",\"data-framer-name\":\"image 36\",name:\"image 36\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1azleqg\",\"data-framer-name\":\"2\",name:\"2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/r3isu83nhXBAFRCLCfxcY7Zd5s.png\"},className:\"framer-ag01gx\",\"data-framer-name\":\"image 32\",name:\"image 32\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"82px\",src:\"https://framerusercontent.com/images/5m0afsK1zw2cFTpDTqsNeUSblHw.png\",srcSet:\"https://framerusercontent.com/images/5m0afsK1zw2cFTpDTqsNeUSblHw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5m0afsK1zw2cFTpDTqsNeUSblHw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5m0afsK1zw2cFTpDTqsNeUSblHw.png 1768w\"},className:\"framer-tifbje\",\"data-framer-name\":\"image 27\",name:\"image 27\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k08my3\",\"data-framer-name\":\"3\",name:\"3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:1024,pixelHeight:296,pixelWidth:2048,sizes:\"94px\",src:\"https://framerusercontent.com/images/lImBgoZuMq3Eowf5z6Ntt9SmQPI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lImBgoZuMq3Eowf5z6Ntt9SmQPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/lImBgoZuMq3Eowf5z6Ntt9SmQPI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lImBgoZuMq3Eowf5z6Ntt9SmQPI.png 2048w\"},className:\"framer-1ba1na4\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/F4xP0RGYlOkfQYCYoY2Kem3zBU.png\"},className:\"framer-z7v2vz\",\"data-framer-name\":\"image 25\",name:\"image 25\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1opofga\",\"data-framer-name\":\"4\",name:\"4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/F9L7clYz2maSBsa9zb2MH2b1gA.png\"},className:\"framer-er5dr9\",\"data-framer-name\":\"image 29\",name:\"image 29\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:512,pixelHeight:248,pixelWidth:1024,sizes:\"132px\",src:\"https://framerusercontent.com/images/malOFjYLrjz045VjUyimt5wO26Q.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/malOFjYLrjz045VjUyimt5wO26Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/malOFjYLrjz045VjUyimt5wO26Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/malOFjYLrjz045VjUyimt5wO26Q.png 1172w\"},className:\"framer-emrq81\",\"data-framer-name\":\"nudie\",name:\"nudie\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-178z4z1\",\"data-framer-name\":\"5\",name:\"5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4mofD2LJHRq1LBgxQ3FeIXy3s.png\"},className:\"framer-1ws7iaa\",\"data-framer-name\":\"image 31\",name:\"image 31\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"104px\",src:\"https://framerusercontent.com/images/49jPZntBZrRY0QAsM1TB1DiEFbU.png\",srcSet:\"https://framerusercontent.com/images/49jPZntBZrRY0QAsM1TB1DiEFbU.png?scale-down-to=512 512w,https://framerusercontent.com/images/49jPZntBZrRY0QAsM1TB1DiEFbU.png 850w\"},className:\"framer-555q5x\",\"data-framer-name\":\"image 34\",name:\"image 34\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bg96sg\",\"data-framer-name\":\"6\",name:\"6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9SY4un3jv6yoHY4Oi87lJwjI1M.png\"},className:\"framer-1r0lax3\",\"data-framer-name\":\"image 26\",name:\"image 26\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:600,pixelHeight:312,pixelWidth:1200,sizes:\"91px\",src:\"https://framerusercontent.com/images/5Mm2c0PS3B4gOd1NmIclZxkM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5Mm2c0PS3B4gOd1NmIclZxkM.png?scale-down-to=512 512w,https://framerusercontent.com/images/5Mm2c0PS3B4gOd1NmIclZxkM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Mm2c0PS3B4gOd1NmIclZxkM.png 1200w\"},className:\"framer-1bfhu90\",\"data-framer-name\":\"Image\",name:\"Image\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-axrqvw\",\"data-framer-name\":\"7\",name:\"7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:252,intrinsicWidth:858,pixelHeight:504,pixelWidth:1716,sizes:\"108.9524px\",src:\"https://framerusercontent.com/images/BsRqzb7ftDeCHsMn2l4PBzELP8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BsRqzb7ftDeCHsMn2l4PBzELP8.png?scale-down-to=512 512w,https://framerusercontent.com/images/BsRqzb7ftDeCHsMn2l4PBzELP8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BsRqzb7ftDeCHsMn2l4PBzELP8.png 1716w\"},className:\"framer-17g3vzu\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:119,intrinsicWidth:326.5,pixelHeight:238,pixelWidth:653,sizes:\"78px\",src:\"https://framerusercontent.com/images/1ahupKUjD9nM8qxAGEG0J2sw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1ahupKUjD9nM8qxAGEG0J2sw.png?scale-down-to=512 512w,https://framerusercontent.com/images/1ahupKUjD9nM8qxAGEG0J2sw.png 653w\"},className:\"framer-51sa9q\",\"data-framer-name\":\"image\",name:\"image\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w065i5\",\"data-framer-name\":\"8\",name:\"8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:171.5,intrinsicWidth:600,pixelHeight:343,pixelWidth:1200,sizes:\"68px\",src:\"https://framerusercontent.com/images/RaEQ2ZuO6eQBw1vEmWKwlH1hns.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RaEQ2ZuO6eQBw1vEmWKwlH1hns.png?scale-down-to=512 512w,https://framerusercontent.com/images/RaEQ2ZuO6eQBw1vEmWKwlH1hns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RaEQ2ZuO6eQBw1vEmWKwlH1hns.png 1200w\"},className:\"framer-1kkxhf6\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"104px\",src:\"https://framerusercontent.com/images/hVPjaYZy5ExdUuEjkfhlGaBwc.png\",srcSet:\"https://framerusercontent.com/images/hVPjaYZy5ExdUuEjkfhlGaBwc.png?scale-down-to=512 512w,https://framerusercontent.com/images/hVPjaYZy5ExdUuEjkfhlGaBwc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hVPjaYZy5ExdUuEjkfhlGaBwc.png 1152w\"},className:\"framer-13zvkb0\",\"data-framer-name\":\"image 37\",name:\"image 37\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y1ed1b\",\"data-framer-name\":\"9\",name:\"9\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:532.5,pixelHeight:200,pixelWidth:1065,sizes:\"118.5px\",src:\"https://framerusercontent.com/images/kxbKwHuHgppCtUtl0g5mLoSvy0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kxbKwHuHgppCtUtl0g5mLoSvy0.png?scale-down-to=512 512w,https://framerusercontent.com/images/kxbKwHuHgppCtUtl0g5mLoSvy0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kxbKwHuHgppCtUtl0g5mLoSvy0.png 1065w\"},className:\"framer-3bpuwe\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"49px\",src:\"https://framerusercontent.com/images/gOz3E8iZpodKF2JzUG8bsfqC4Zs.png\",srcSet:\"https://framerusercontent.com/images/gOz3E8iZpodKF2JzUG8bsfqC4Zs.png?scale-down-to=512 512w,https://framerusercontent.com/images/gOz3E8iZpodKF2JzUG8bsfqC4Zs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gOz3E8iZpodKF2JzUG8bsfqC4Zs.png 1196w\"},className:\"framer-rfhmt0\",\"data-framer-name\":\"image 33\",name:\"image 33\"})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-252v5m\",\"data-framer-name\":\"intro\",id:elementId,name:\"intro\",ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sk8s9r-container\",children:/*#__PURE__*/_jsx(BackgroundWaves,{CAJjkhI2T:100,height:\"100%\",id:\"xMS3OJICq\",layoutId:\"xMS3OJICq\",style:{height:\"100%\",width:\"100%\"},variant:\"vR_FQ7scQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19jerqs\",\"data-framer-name\":\"spacing\",name:\"spacing\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zs8rqr\",\"data-styles-preset\":\"TSdhRZV7m\",children:\"Effective inventory planning and purchasing is one of the most crucial parts of any successful business. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zs8rqr\",\"data-styles-preset\":\"TSdhRZV7m\",children:\"Still, many brands struggle to get it right.\"})]}),className:\"framer-n3yedp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m53gme\",\"data-framer-name\":\"spacing\",name:\"spacing\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9e1r4b\",\"data-framer-name\":\"solution header\",id:elementId1,name:\"solution header\",ref:ref3,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5a69u8-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"uoi3d9FO5\",L38x_M_4s:\"Our solution\",layoutId:\"uoi3d9FO5\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mxc51y\",\"data-framer-name\":\"solution\",name:\"solution\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13u64g6\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":uR3qC8jxg\",webPageId:\"s8tSNMeSM\"},nodeId:\"mIPB4u44U\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-d0v09b framer-f3bisk\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qcxuo\",\"data-styles-preset\":\"boxvCZruu\",style:{\"--framer-text-alignment\":\"left\"},children:\"Make better purchasing decisions\"})}),className:\"framer-xkelps\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-18k8444 hidden-1lgpqbz\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ob7k5y\",\"data-framer-name\":\"line\",name:\"line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wii1u0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-29kqdb\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",children:\"Learn more\"})}),className:\"framer-18olxqr hidden-1lgpqbz hidden-1x1tpxd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uungmr-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"HrOHAcYO8\",layoutId:\"HrOHAcYO8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ernabu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pmw86z\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h3v9d6\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{width:\"max(max((min(100vw, 1600px) - 140px) / 2, 1px), 300px)\"},jMsws5JUg:{width:\"max(min(100vw, 1600px) - 40px, 300px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:452,width:\"max(max((min(100vw, 1600px) - 120px) / 2, 1px), 300px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-120a0j7-container\",children:/*#__PURE__*/_jsx(ProductDetail,{height:\"100%\",id:\"dSUzWsI5Y\",layoutId:\"dSUzWsI5Y\",rAtsQbDFy:\"Madden provides accurate demand forecasts, lets you generate sales plans, and commit purchase orders \u2013 all from the same tool. Enjoy overview, structure and total control, even with 10,000+ SKUs.\",style:{height:\"100%\",width:\"100%\"},variant:\"HqXnViJXh\",width:\"100%\",y_hVgMCAS:\"Plan your full assortment in minutes\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o67dbt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lg6j4\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lfzgz9 hidden-1lgpqbz hidden-1x1tpxd\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17pp9iu\",\"data-styles-preset\":\"MtZfSKbYJ\",style:{\"--framer-text-color\":\"var(--token-01c4e3fc-7560-4dda-a5c7-2abfe97c23af, rgba(0, 0, 0, 0.6))\"},children:[\"Forecasting demand and planning inventory is hard. Madden consolidates your data to help you \",/*#__PURE__*/_jsx(\"strong\",{children:\"make detailed purchase plans in less time\"}),\". Let our AI-models forecast your demand and tweak your plans with your expertise and budget in mind.\"]})}),className:\"framer-dpymxt\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-65yzeg hidden-1lgpqbz hidden-1x1tpxd\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a9vm3l\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{gDlJZa4OK:\"case-nordic-knots-success-through-data-driven-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"J7z00IqJI\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"case-nordic-knots-success-through-data-driven-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"J7z00IqJI\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"case-nordic-knots-success-through-data-driven-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"J7z00IqJI\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"case-nordic-knots-success-through-data-driven-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"J7z00IqJI\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{width:\"min(max((min(100vw, 1600px) - 140px) / 2, 1px), min(100vw, 1600px) - 80px)\"},jFrPZkzm4:{height:550},jMsws5JUg:{height:500,width:\"min(min(100vw, 1600px) - 40px, 500px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:627,width:\"min(max((min(100vw, 1600px) - 120px) / 2, 1px), min(100vw, 1600px) - 80px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x88pxz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{t2bwBF0d2:resolvedLinks1[3]},jFrPZkzm4:{t2bwBF0d2:resolvedLinks1[2],variant:\"Q8z1a0kke\"},jMsws5JUg:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},t2bwBF0d2:resolvedLinks1[1],variant:\"Q8z1a0kke\"}},children:/*#__PURE__*/_jsx(TestimonialLargeImage,{d0gxwLjxA:addImageAlt({src:\"https://framerusercontent.com/images/trb1QbSg3RyduUncOk4NohLWVeo.png\"},\"\"),EHlSdL2y2:\"Stina G\\xf6ransson\",height:\"100%\",id:\"ELRFu25lN\",layoutId:\"ELRFu25lN\",NIYljtofB:\"center\",nrN68Xg8h:\"center\",o8Fnr5_o7:'\"Madden Analytics has improved our forecasting accuracy significantly\"',style:{height:\"100%\",width:\"100%\"},t2bwBF0d2:resolvedLinks1[0],variant:\"NPPlTjnMA\",w1_N934xW:\"COO\",width:\"100%\",X2U4eQu9u:addImageAlt({src:\"https://framerusercontent.com/images/yA7akZRRAZEo13evE1hgdOI95Yw.webp\",srcSet:\"https://framerusercontent.com/images/yA7akZRRAZEo13evE1hgdOI95Yw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yA7akZRRAZEo13evE1hgdOI95Yw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/yA7akZRRAZEo13evE1hgdOI95Yw.webp 1920w\"},\"\")})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m01z46\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":z4XMHaJIK\",webPageId:\"s8tSNMeSM\"},nodeId:\"P4D3zAfP0\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-txbbei framer-f3bisk\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qcxuo\",\"data-styles-preset\":\"boxvCZruu\",style:{\"--framer-text-alignment\":\"left\"},children:\"Get your inventory in the right place\"})}),className:\"framer-4jjx36\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g92upd hidden-1lgpqbz\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5kh8ez\",\"data-framer-name\":\"line\",name:\"line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u2z3sk\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u12zsw\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",children:\"Learn more\"})}),className:\"framer-1unjm2l hidden-1lgpqbz hidden-1x1tpxd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kbio6r-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"Ng9ijeww1\",layoutId:\"Ng9ijeww1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dvsx3v\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dixkjz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-132qgl9\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16bnqyy hidden-1lgpqbz hidden-1x1tpxd\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17pp9iu\",\"data-styles-preset\":\"MtZfSKbYJ\",style:{\"--framer-text-color\":\"var(--token-01c4e3fc-7560-4dda-a5c7-2abfe97c23af, rgba(0, 0, 0, 0.6))\"},children:[\"Madden gives you an overview to quickly assess your inventory health. See stock turnover rate, stock value and time in stock across all your channels and get \",/*#__PURE__*/_jsx(\"strong\",{children:\"automated replenishment to every stock location.\"}),\" Set your rules to receive recommendations for stock that is at risk of becoming overstocked, or needs replenishment before stocking out.\"]})}),className:\"framer-6pnfmp\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-m5qwn5 hidden-1lgpqbz hidden-1x1tpxd\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gx9ot1\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{gDlJZa4OK:\"case-story-asket-futureproofs-with-madden-analytics-ensures-accuracy-and-adaptability-in-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"QID04k1vv\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"case-story-asket-futureproofs-with-madden-analytics-ensures-accuracy-and-adaptability-in-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"QID04k1vv\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"case-story-asket-futureproofs-with-madden-analytics-ensures-accuracy-and-adaptability-in-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"QID04k1vv\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"case-story-asket-futureproofs-with-madden-analytics-ensures-accuracy-and-adaptability-in-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"QID04k1vv\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{width:\"min(max((min(100vw, 1600px) - 140px) / 2, 1px), min(100vw, 1600px) - 80px)\"},jFrPZkzm4:{height:500},jMsws5JUg:{height:500,width:\"min(min(100vw, 1600px) - 40px, 500px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"min(max((min(100vw, 1600px) - 120px) / 2, 1px), min(100vw, 1600px) - 80px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-79d58i-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{t2bwBF0d2:resolvedLinks2[3]},jFrPZkzm4:{t2bwBF0d2:resolvedLinks2[2],variant:\"Q8z1a0kke\"},jMsws5JUg:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},t2bwBF0d2:resolvedLinks2[1],variant:\"Q8z1a0kke\"}},children:/*#__PURE__*/_jsx(TestimonialLargeImage,{d0gxwLjxA:addImageAlt({src:\"https://framerusercontent.com/images/fzzaxQmLg1QRxvMvwDmh5hykrI.png\",srcSet:\"https://framerusercontent.com/images/fzzaxQmLg1QRxvMvwDmh5hykrI.png?scale-down-to=512 512w,https://framerusercontent.com/images/fzzaxQmLg1QRxvMvwDmh5hykrI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fzzaxQmLg1QRxvMvwDmh5hykrI.png 1200w\"},\"\"),EHlSdL2y2:\"Tom Wellander\",height:\"100%\",id:\"Mm9bzhszS\",layoutId:\"Mm9bzhszS\",NIYljtofB:\"center\",nrN68Xg8h:\"center\",o8Fnr5_o7:'\"Getting a grasp of our inventory health is super quick\"',style:{height:\"100%\",width:\"100%\"},t2bwBF0d2:resolvedLinks2[0],variant:\"NPPlTjnMA\",w1_N934xW:\"Business Controller\",width:\"100%\",X2U4eQu9u:addImageAlt({src:\"https://framerusercontent.com/images/FssHt7T0NA6ZJeAdh2QgbNFfmA.png\",srcSet:\"https://framerusercontent.com/images/FssHt7T0NA6ZJeAdh2QgbNFfmA.png?scale-down-to=512 512w,https://framerusercontent.com/images/FssHt7T0NA6ZJeAdh2QgbNFfmA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FssHt7T0NA6ZJeAdh2QgbNFfmA.png 1250w\"},\"\")})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s9k5eo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w05lac\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{width:\"max((min(100vw, 1600px) - 140px) / 2, 1px)\"},jMsws5JUg:{width:\"calc(min(100vw, 1600px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:470,width:\"max((min(100vw, 1600px) - 120px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c9rshy-container\",children:/*#__PURE__*/_jsx(ProductDetail,{height:\"100%\",id:\"IW6qGkRpJ\",layoutId:\"IW6qGkRpJ\",rAtsQbDFy:\"Get an overview of how your inventory is doing, and suggested actions on how to maximise the utilisation of your inventory\",style:{height:\"100%\",width:\"100%\"},variant:\"TFve5FbLQ\",width:\"100%\",y_hVgMCAS:\"Performance overview with company-wide access\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10dvn6z\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":uR3qC8jxg\",webPageId:\"s8tSNMeSM\"},nodeId:\"a85KO3XNN\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-n52s49 framer-f3bisk\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qcxuo\",\"data-styles-preset\":\"boxvCZruu\",style:{\"--framer-text-alignment\":\"left\"},children:\"Set a bullet-proof budget\"})}),className:\"framer-11s0hre\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ey7pey hidden-1lgpqbz\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ubegao\",\"data-framer-name\":\"line\",name:\"line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h0714w\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c70zs5\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-avn344\",\"data-styles-preset\":\"aYD864qX3\",children:\"Learn more\"})}),className:\"framer-1qkgupv hidden-1lgpqbz hidden-1x1tpxd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11yp1b2-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"B_NATVQVI\",layoutId:\"B_NATVQVI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f7ra2x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-193oqft\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bfmm67 hidden-1lgpqbz\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{width:\"min(max((min(100vw, 1600px) - 140px) / 2, 1px), min(100vw, 1600px) - 80px)\"},jMsws5JUg:{width:\"calc(min(100vw, 1600px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:484,width:\"min(max((min(100vw, 1600px) - 120px) / 2, 1px), min(100vw, 1600px) - 80px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kf4vuw-container\",children:/*#__PURE__*/_jsx(ProductDetail,{height:\"100%\",id:\"jvw3HiA_R\",layoutId:\"jvw3HiA_R\",rAtsQbDFy:\"Flexible budget setup from top-down or bottom-up perspective \u2013 across seasons, suppliers, customers or other dimensions \u2013 which every way you prefer\",style:{height:\"100%\",width:\"100%\"},variant:\"g9QmDY9WK\",width:\"100%\",y_hVgMCAS:\"Sales & buy budget, in sync\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sisrqb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r54iyh\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-10lz1er hidden-1lgpqbz hidden-1x1tpxd\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17pp9iu\",\"data-styles-preset\":\"MtZfSKbYJ\",style:{\"--framer-text-color\":\"var(--token-01c4e3fc-7560-4dda-a5c7-2abfe97c23af, rgba(0, 0, 0, 0.6))\"},children:[\"End-to-end support in your budgeting process. Ingoing stock, top-line budget, target margins, COGS estimations, and sell-through targets \u2013 translated into \",/*#__PURE__*/_jsx(\"strong\",{children:\"open-to-buy\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"bought margin\"}),\" targets. Ability to breakdown in any dimension, e.g. collections, seasons, categories and buying teams.\\xa0\"]})}),className:\"framer-g2ngx7\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sor5v1 hidden-1lgpqbz hidden-1x1tpxd\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-149fnnm\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{gDlJZa4OK:\"bubbleroom-aims-for-scalable-growth-signs-with-madden-analytics-to-streamline-inventory-planning-processes\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"WI19SK592\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"bubbleroom-aims-for-scalable-growth-signs-with-madden-analytics-to-streamline-inventory-planning-processes\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"WI19SK592\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"bubbleroom-aims-for-scalable-growth-signs-with-madden-analytics-to-streamline-inventory-planning-processes\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"WI19SK592\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"bubbleroom-aims-for-scalable-growth-signs-with-madden-analytics-to-streamline-inventory-planning-processes\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"WI19SK592\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{width:\"max(max((min(100vw, 1600px) - 140px) / 2, 1px), 300px)\"},jMsws5JUg:{height:500,width:\"min(max(min(100vw, 1600px) - 40px, 300px), 500px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:657,width:\"max(max((min(100vw, 1600px) - 120px) / 2, 1px), 300px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i9sg08-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{t2bwBF0d2:resolvedLinks3[3]},jFrPZkzm4:{t2bwBF0d2:resolvedLinks3[2],variant:\"Q8z1a0kke\"},jMsws5JUg:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},t2bwBF0d2:resolvedLinks3[1],variant:\"Q8z1a0kke\"}},children:/*#__PURE__*/_jsx(TestimonialLargeImage,{d0gxwLjxA:addImageAlt({src:\"https://framerusercontent.com/images/XtDOhqHyGrHXkmLrTF8SrFEcS0.webp\",srcSet:\"https://framerusercontent.com/images/XtDOhqHyGrHXkmLrTF8SrFEcS0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/XtDOhqHyGrHXkmLrTF8SrFEcS0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/XtDOhqHyGrHXkmLrTF8SrFEcS0.webp 1746w\"},\"\"),EHlSdL2y2:\"Sophia Agebratt\",height:\"100%\",id:\"p1B8MQsSS\",layoutId:\"p1B8MQsSS\",NIYljtofB:\"center\",nrN68Xg8h:\"center\",o8Fnr5_o7:'\"...our focus is to increase our operational efficiency and ensure precise budgeting and purchasing...\"',style:{height:\"100%\",width:\"100%\"},t2bwBF0d2:resolvedLinks3[0],variant:\"NPPlTjnMA\",w1_N934xW:\"Business Controller\",width:\"100%\",X2U4eQu9u:addImageAlt({src:\"https://framerusercontent.com/images/knkKN4PBujB8ZZVaZyMDe8T6R8.webp\",srcSet:\"https://framerusercontent.com/images/knkKN4PBujB8ZZVaZyMDe8T6R8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/knkKN4PBujB8ZZVaZyMDe8T6R8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/knkKN4PBujB8ZZVaZyMDe8T6R8.webp 1354w\"},\"\")})})})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ds7iqp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ah6pt5-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"roJCoX2Hz\",L38x_M_4s:\"\",layoutId:\"roJCoX2Hz\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qywjqs\",\"data-framer-name\":\"Book a demo\",name:\"Book a demo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1880vvd-container\",children:/*#__PURE__*/_jsx(BackgroundWaves,{CAJjkhI2T:100,height:\"100%\",id:\"n3NeBzX3w\",layoutId:\"n3NeBzX3w\",style:{height:\"100%\",width:\"100%\"},variant:\"vR_FQ7scQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jMsws5JUg:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-qcxuo\",\"data-styles-preset\":\"boxvCZruu\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Save time,\",/*#__PURE__*/_jsx(\"br\",{}),\"meet demand.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10yiadi\",\"data-styles-preset\":\"aRBuXc9WF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-01c4e3fc-7560-4dda-a5c7-2abfe97c23af, rgba(0, 0, 0, 0.6))\"},children:\"Book a demo to see how Madden can help your brands' business\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-qcxuo\",\"data-styles-preset\":\"boxvCZruu\",children:[\"Save time,\",/*#__PURE__*/_jsx(\"br\",{}),\"meet demand.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10yiadi\",\"data-styles-preset\":\"aRBuXc9WF\",style:{\"--framer-text-color\":\"var(--token-01c4e3fc-7560-4dda-a5c7-2abfe97c23af, rgba(0, 0, 0, 0.6))\"},children:\"Book a demo to see how Madden can help your brands' business\"})]}),className:\"framer-mg1zh8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-13tsciy-container\",id:\"13tsciy\",children:[/*#__PURE__*/_jsx(Button,{height:\"100%\",icbwHd2uf:icbwHd2ufwelu7j({overlay:overlay1}),id:\"uwoaJr2Hn\",iv7seVRRU:false,layoutId:\"uwoaJr2Hn\",PBOMx9MH7:100,s0JmPOL8p:\"Book a demo\",variant:\"Q1fuiNNTL\",width:\"100%\",zh76BMbqQ:false}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1wn6nlw\",\"data-framer-portal-id\":\"13tsciy\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"Mx3p_nyLn\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:\"min(500px, 100vw)\",y:251.50000000000023,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yrw128-container\",\"data-framer-portal-id\":\"13tsciy\",children:/*#__PURE__*/_jsx(FormMakeIntegration,{Cn_YgIFUq:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Custom content\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(209, 210, 211)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Test\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Test\"})})]})]}),height:\"100%\",HLX8RKI_z:\"\",id:\"A5hhtScUC\",layoutId:\"A5hhtScUC\",RfM5EWR8Z:true,style:{maxWidth:\"100%\",width:\"100%\"},uKfTVb0Jp:false,UnsYizaq_:true,variant:\"Wm8LT71wB\",width:\"100%\"})})})]}),document.querySelector(\"#overlay\"))})})]})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a1axo7\",\"data-framer-name\":\"customer stories\",name:\"customer stories\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pfhxn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bggfz8-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"eXqiBiE6s\",L38x_M_4s:\"Customer stories\",layoutId:\"eXqiBiE6s\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rocgf5\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{gDlJZa4OK:\"case-story-aimns-successful-growth-powered-by-scalable-and-reliable-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"lQKUNLrj6\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"case-story-aimns-successful-growth-powered-by-scalable-and-reliable-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"lQKUNLrj6\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"case-story-aimns-successful-growth-powered-by-scalable-and-reliable-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"lQKUNLrj6\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"case-story-aimns-successful-growth-powered-by-scalable-and-reliable-inventory-planning\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"lQKUNLrj6\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFrPZkzm4:{width:\"min(max((min(100vw, 1600px) - 90px) / 2, 1px), min(100vw, 1600px) - 80px)\"},jMsws5JUg:{height:492,width:\"min((min(100vw, 1600px) - 40px) * 1.5, min(100vw, 1600px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:758,width:\"min(max((min(100vw, 1600px) - 90px) * 0.6, 1px), min(100vw, 1600px) - 80px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-j2ndcp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{t2bwBF0d2:resolvedLinks4[3]},jFrPZkzm4:{t2bwBF0d2:resolvedLinks4[2],variant:\"Q8z1a0kke\"},jMsws5JUg:{t2bwBF0d2:resolvedLinks4[1],variant:\"Q8z1a0kke\"}},children:/*#__PURE__*/_jsx(TestimonialLargeImage,{d0gxwLjxA:addImageAlt({src:\"https://framerusercontent.com/images/9qZIIajnWhRbeNymvI1xQgLqe6w.png\",srcSet:\"https://framerusercontent.com/images/9qZIIajnWhRbeNymvI1xQgLqe6w.png?scale-down-to=512 512w,https://framerusercontent.com/images/9qZIIajnWhRbeNymvI1xQgLqe6w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9qZIIajnWhRbeNymvI1xQgLqe6w.png 1604w\"},\"\"),EHlSdL2y2:\"Robin Mostacero\",height:\"100%\",id:\"NAt5rhZop\",layoutId:\"NAt5rhZop\",NIYljtofB:\"center\",nrN68Xg8h:\"center\",o8Fnr5_o7:'\"Madden has allowed us to enhance efficiency, automation, and scalability in our business operations without needing to rapidly expand our team\"',style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},t2bwBF0d2:resolvedLinks4[0],variant:\"NPPlTjnMA\",w1_N934xW:\"CEO\",width:\"100%\",X2U4eQu9u:addImageAlt({positionX:\"53.3%\",positionY:\"1.1%\",src:\"https://framerusercontent.com/images/BQAUwpm8R5LJ24ffH8aiPfi1pU.webp\",srcSet:\"https://framerusercontent.com/images/BQAUwpm8R5LJ24ffH8aiPfi1pU.webp?scale-down-to=1024 751w,https://framerusercontent.com/images/BQAUwpm8R5LJ24ffH8aiPfi1pU.webp 1160w\"},\"\")})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y78bhh\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{gDlJZa4OK:\"how-flattered-is-using-madden-analytics-for-sustainable-inventory-planning-and-growth\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"dNpnGdDc5\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"how-flattered-is-using-madden-analytics-for-sustainable-inventory-planning-and-growth\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"dNpnGdDc5\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"how-flattered-is-using-madden-analytics-for-sustainable-inventory-planning-and-growth\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"dNpnGdDc5\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:\"how-flattered-is-using-madden-analytics-for-sustainable-inventory-planning-and-growth\"},unresolvedPathSlugs:{gDlJZa4OK:{collectionId:\"mI8MufXp4\",collectionItemId:\"dNpnGdDc5\"}},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFrPZkzm4:{width:\"max((min(100vw, 1600px) - 90px) / 2, 1px)\"},jMsws5JUg:{height:580,width:\"calc(min(100vw, 1600px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:618,width:\"max((min(100vw, 1600px) - 90px) / 2.5, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v5rra7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{t2bwBF0d2:resolvedLinks5[3]},jFrPZkzm4:{t2bwBF0d2:resolvedLinks5[2],variant:\"Q8z1a0kke\"},jMsws5JUg:{t2bwBF0d2:resolvedLinks5[1],variant:\"Q8z1a0kke\"}},children:/*#__PURE__*/_jsx(TestimonialLargeImage,{d0gxwLjxA:addImageAlt({src:\"https://framerusercontent.com/images/9edVS8i0Qu3aaQxokaaVhnBcnQQ.png\",srcSet:\"https://framerusercontent.com/images/9edVS8i0Qu3aaQxokaaVhnBcnQQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/9edVS8i0Qu3aaQxokaaVhnBcnQQ.png 600w\"},\"\"),EHlSdL2y2:\"Felix Friberg\",height:\"100%\",id:\"kuqI0YYGN\",layoutId:\"kuqI0YYGN\",NIYljtofB:\"center\",nrN68Xg8h:\"center\",o8Fnr5_o7:'\"Madden is a super intuitive tool\"',style:{height:\"100%\",width:\"100%\"},t2bwBF0d2:resolvedLinks5[0],variant:\"NPPlTjnMA\",w1_N934xW:\"Supply Chain Manager\",width:\"100%\",X2U4eQu9u:addImageAlt({src:\"https://framerusercontent.com/images/uB6ljbXk3qxcftlYJxk9JeHf2e8.png\",srcSet:\"https://framerusercontent.com/images/uB6ljbXk3qxcftlYJxk9JeHf2e8.png?scale-down-to=512 512w,https://framerusercontent.com/images/uB6ljbXk3qxcftlYJxk9JeHf2e8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uB6ljbXk3qxcftlYJxk9JeHf2e8.png 1758w\"},\"\")})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bqeIi48Wm\"},nodeId:\"lJSFBEOUH\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-pr54we framer-f3bisk\",\"data-framer-name\":\"Button\",name:\"Button\",whileHover:animation5,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1xcpctc\",\"data-styles-preset\":\"PbUcLNPfT\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"More customer stories ->\"})}),className:\"framer-xa9hcp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:200},className:\"framer-evsba2\",\"data-framer-name\":\"integrations\",id:elementId2,name:\"integrations\",ref:ref4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8w4qlc-container\",children:/*#__PURE__*/_jsx(BackgroundWaves,{CAJjkhI2T:100,height:\"100%\",id:\"sIJ3MF1am\",layoutId:\"sIJ3MF1am\",style:{height:\"100%\",width:\"100%\"},variant:\"vR_FQ7scQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ncojqt-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"TMKlNBY7g\",L38x_M_4s:\"Integrations\",layoutId:\"TMKlNBY7g\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8rullz\",\"data-framer-name\":\"spacer\",name:\"spacer\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-savt9u hidden-1lgpqbz\",\"data-framer-name\":\"spacer\",name:\"spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g3aaxb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9p31e2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qcxuo\",\"data-styles-preset\":\"boxvCZruu\",children:\"Get going, straight away\"})}),className:\"framer-16rvij5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bsxcf4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17pp9iu\",\"data-styles-preset\":\"MtZfSKbYJ\",style:{\"--framer-text-color\":\"var(--token-01c4e3fc-7560-4dda-a5c7-2abfe97c23af, rgba(0, 0, 0, 0.6))\"},children:[\"Madden Analytics handles everything needed to get going, \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"without any startup costs\"})}),\". No need for an IT\\xa0project or consultants. We have a large and growing library of plug &\\xa0play integrations, and we are happy to add more to the list if your systems are not already in place.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17pp9iu\",\"data-styles-preset\":\"MtZfSKbYJ\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-13wpb1n\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e9kfeo\",\"data-framer-name\":\"logos\",name:\"logos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:235,intrinsicWidth:1024,pixelHeight:235,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"148px\",src:\"https://framerusercontent.com/images/IiA1aXkBPE05sPnpluE7WpfXjyg.png\",srcSet:\"https://framerusercontent.com/images/IiA1aXkBPE05sPnpluE7WpfXjyg.png?scale-down-to=512 512w,https://framerusercontent.com/images/IiA1aXkBPE05sPnpluE7WpfXjyg.png 1024w\"},className:\"framer-6xp8cs\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation6}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:116.5,intrinsicWidth:400,pixelHeight:233,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/q403XHwFPDoTVbwFXHWDal6CZ3k.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/q403XHwFPDoTVbwFXHWDal6CZ3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/q403XHwFPDoTVbwFXHWDal6CZ3k.png 800w\"},className:\"framer-w8037r\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation6}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:116.5,intrinsicWidth:400,pixelHeight:233,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/mKLjAQofGgNPECivt4AhXnHu4s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mKLjAQofGgNPECivt4AhXnHu4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/mKLjAQofGgNPECivt4AhXnHu4s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mKLjAQofGgNPECivt4AhXnHu4s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mKLjAQofGgNPECivt4AhXnHu4s.png 2560w\"},className:\"framer-1fml725\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation6}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:240,intrinsicWidth:533,pixelHeight:240,pixelWidth:533,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/P8wZcVhSEZji2hK65pNR74os58E.png\",srcSet:\"https://framerusercontent.com/images/P8wZcVhSEZji2hK65pNR74os58E.png?scale-down-to=512 512w,https://framerusercontent.com/images/P8wZcVhSEZji2hK65pNR74os58E.png 533w\"},className:\"framer-1ja8ycd\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation6}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:240,intrinsicWidth:533,pixelHeight:240,pixelWidth:533,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/guDPK4rDoSkQeaR28McCb2Cc3g.png\",srcSet:\"https://framerusercontent.com/images/guDPK4rDoSkQeaR28McCb2Cc3g.png?scale-down-to=512 512w,https://framerusercontent.com/images/guDPK4rDoSkQeaR28McCb2Cc3g.png 1000w\"},className:\"framer-xx8ld3\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation6}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:173,intrinsicWidth:661,pixelHeight:173,pixelWidth:661,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/eVkzCcfRRjRIThfIiWmCcdFgU.png\",srcSet:\"https://framerusercontent.com/images/eVkzCcfRRjRIThfIiWmCcdFgU.png?scale-down-to=512 512w,https://framerusercontent.com/images/eVkzCcfRRjRIThfIiWmCcdFgU.png 661w\"},className:\"framer-vgkrhn\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation6}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:173,intrinsicWidth:661,pixelHeight:173,pixelWidth:661,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/hKh0qmWmQccGsRfNKkxB6PevUI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hKh0qmWmQccGsRfNKkxB6PevUI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hKh0qmWmQccGsRfNKkxB6PevUI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hKh0qmWmQccGsRfNKkxB6PevUI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hKh0qmWmQccGsRfNKkxB6PevUI.png 3200w\"},className:\"framer-yw3ef5\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation6}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:173,intrinsicWidth:661,pixelHeight:173,pixelWidth:661,positionX:\"center\",positionY:\"center\",sizes:\"84px\",src:\"https://framerusercontent.com/images/zSn4riemxHXoY82duFJcZm2Juuc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zSn4riemxHXoY82duFJcZm2Juuc.png?scale-down-to=512 512w,https://framerusercontent.com/images/zSn4riemxHXoY82duFJcZm2Juuc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zSn4riemxHXoY82duFJcZm2Juuc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zSn4riemxHXoY82duFJcZm2Juuc.png 2390w\"},className:\"framer-y7rei7\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation6}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:173,intrinsicWidth:661,pixelHeight:173,pixelWidth:661,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MQFfdrsWp9fAZB3Iy8WQNPCYQSg.png\"},className:\"framer-1eta9et\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation6}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:173,intrinsicWidth:661,pixelHeight:173,pixelWidth:661,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eXuwdefWV4Nbo6Aay21pMbyrto.png\"},className:\"framer-4gj4mi\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation6}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:167,intrinsicWidth:300,pixelHeight:167,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AGO9YPB7kL2Vei6k84xs3ynBLes.png\"},className:\"framer-1j1jsjb\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation6})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o0ibv6\",\"data-framer-name\":\"spacer\",name:\"spacer\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5i6ozz\",\"data-framer-name\":\"news\",name:\"news\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10pk0br-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"CBmXmJwxS\",L38x_M_4s:\"Latest news\",layoutId:\"CBmXmJwxS\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8dyhhh\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"DWu8OvuJo\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"DWu8OvuJo\",name:\"gDlJZa4OK\",type:\"Identifier\"},{collection:\"DWu8OvuJo\",name:\"XN47jua8V\",type:\"Identifier\"},{collection:\"DWu8OvuJo\",name:\"p9rkOR4SN\",type:\"Identifier\"},{collection:\"DWu8OvuJo\",name:\"dnyLHqtLA\",type:\"Identifier\"},{collection:\"DWu8OvuJo\",name:\"id\",type:\"Identifier\"}],where:{collection:\"DWu8OvuJo\",name:\"ZgUiOcDqS\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"gDlJZa4OK\":gDlJZa4OKDWu8OvuJo,\"XN47jua8V\":XN47jua8VDWu8OvuJo,\"p9rkOR4SN\":p9rkOR4SNDWu8OvuJo,\"dnyLHqtLA\":dnyLHqtLADWu8OvuJo,\"id\":idDWu8OvuJo},i)=>{gDlJZa4OKDWu8OvuJo!==null&&gDlJZa4OKDWu8OvuJo!==void 0?gDlJZa4OKDWu8OvuJo:gDlJZa4OKDWu8OvuJo=\"\";dnyLHqtLADWu8OvuJo!==null&&dnyLHqtLADWu8OvuJo!==void 0?dnyLHqtLADWu8OvuJo:dnyLHqtLADWu8OvuJo=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`DWu8OvuJo-${idDWu8OvuJo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{gDlJZa4OK:gDlJZa4OKDWu8OvuJo},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{gDlJZa4OK:gDlJZa4OKDWu8OvuJo},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:gDlJZa4OKDWu8OvuJo},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:gDlJZa4OKDWu8OvuJo},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined},{href:{pathVariables:{gDlJZa4OK:gDlJZa4OKDWu8OvuJo},webPageId:\"ZwyW1nTHE\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jMsws5JUg:{width:\"max(min(100vw, 1600px) - 40px, 240px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:457,width:\"max(min(100vw, 1600px) - 80px, 240px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18to3lt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{fI67WRLdW:resolvedLinks6[3]},jFrPZkzm4:{fI67WRLdW:resolvedLinks6[2]},jMsws5JUg:{fI67WRLdW:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(CMSItem,{aIi4FThdf:toResponsiveImage(XN47jua8VDWu8OvuJo),ATa5PwMhQ:toResponsiveImage(p9rkOR4SNDWu8OvuJo),fI67WRLdW:resolvedLinks6[0],height:\"100%\",id:\"GE8NqELV6\",layoutId:\"GE8NqELV6\",rE5knHA9n:dnyLHqtLADWu8OvuJo,style:{width:\"100%\"},width:\"100%\"})})})})})})})},idDWu8OvuJo);})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lqrwow\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-7jpgdo\",\"data-styles-preset\":\"RgpVnOrG0\",children:\"Sign up to our newsletter\"})}),className:\"framer-121l9ds\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10yiadi\",\"data-styles-preset\":\"aRBuXc9WF\",style:{\"--framer-text-color\":\"var(--token-01c4e3fc-7560-4dda-a5c7-2abfe97c23af, rgba(0, 0, 0, 0.6))\"},children:\"Get the latest articles on sales and inventory health straight into your inbox.\"})}),className:\"framer-1fzomog\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h1rhvw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-go9as5-container\",children:/*#__PURE__*/_jsx(FormNewsletter,{height:\"100%\",id:\"IXMycJGX9\",layoutId:\"IXMycJGX9\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Hy6bA6ogU\"},implicitPathVariables:undefined},{href:{webPageId:\"Hy6bA6ogU\"},implicitPathVariables:undefined},{href:{webPageId:\"Hy6bA6ogU\"},implicitPathVariables:undefined},{href:{webPageId:\"Hy6bA6ogU\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-865rw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JcTMmECU6:{ZbdKoySjd:resolvedLinks7[3]},jFrPZkzm4:{ZbdKoySjd:resolvedLinks7[2]},jMsws5JUg:{ZbdKoySjd:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"paom4Jvj4\",iv7seVRRU:false,layoutId:\"paom4Jvj4\",PBOMx9MH7:100,s0JmPOL8p:\"All articles ->\",style:{height:\"100%\"},variant:\"JN8ZxMzDA\",width:\"100%\",ZbdKoySjd:resolvedLinks7[0],zh76BMbqQ:false})})})})})]})]})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"100vw\",y:0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-12ecz1q-container\",id:elementId3,layoutScroll:true,ref:ref5,transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFrPZkzm4:{__framer__targets:[{ref:ref2,target:\"x8n6uyX7E\"}],variant:\"YSKGORvM8\"},jMsws5JUg:{__framer__targets:[{ref:ref2,target:\"kIVNYYY0H\"}],variant:\"prkdz4W4i\"}},children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"w7VtOlOT3\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"sphzC_QFl\",layoutId:\"sphzC_QFl\",NwgwpXJHV:NwgwpXJHVwelu7j({overlay:overlay2}),style:{width:\"100%\"},variant:\"B6ERCu32V\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1dpce3m\",\"data-framer-portal-id\":elementId3,exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"HNzJf2cVN\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:\"min(500px, 100vw)\",y:252.50000000000023,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tynzzc-container\",\"data-framer-portal-id\":elementId3,children:/*#__PURE__*/_jsx(FormMakeIntegration,{Cn_YgIFUq:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Custom content\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(209, 210, 211)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Test\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Test\"})})]})]}),height:\"100%\",HLX8RKI_z:\"\",id:\"srRdpubJJ\",layoutId:\"srRdpubJJ\",RfM5EWR8Z:true,style:{maxWidth:\"100%\",width:\"100%\"},uKfTVb0Jp:false,UnsYizaq_:true,variant:\"Wm8LT71wB\",width:\"100%\"})})})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:769,width:\"min(100vw, 1600px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7w41v7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jMsws5JUg:{variant:\"ozfqVvWHm\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"mieyuO7zj\",layoutId:\"mieyuO7zj\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"qijweGYMW\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-wAd4z { background: var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, rgb(255, 255, 255)); }`,\".framer-wAd4z.framer-f3bisk, .framer-wAd4z .framer-f3bisk { display: block; }\",\".framer-wAd4z.framer-1guwhm0 { align-content: center; align-items: center; background-color: var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-wAd4z .framer-bpzbf1, .framer-wAd4z .framer-1k3pa6y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-odwtfk { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; max-height: 85vh; min-height: 500px; overflow: hidden; padding: 40px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1kr9jlt { bottom: 0px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; width: 100%; }\",\".framer-wAd4z .framer-bjpkjd { -webkit-filter: blur(50px); background: linear-gradient(180deg, #000000 0%, rgb(0, 0, 0) 100%); background-color: #000000; filter: blur(50px); flex: none; height: 100px; left: -200px; opacity: 0.5; overflow: hidden; position: absolute; right: -200px; top: -48px; }\",\".framer-wAd4z .framer-juf1q2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-2zam4m { flex: none; height: 450px; overflow: hidden; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1bbkhak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 920px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-jz3k7e { -webkit-filter: blur(50px); background: linear-gradient(180deg, #000000 0%, rgb(0, 0, 0) 100%); background-color: #000000; bottom: -24px; filter: blur(50px); flex: none; left: -200px; opacity: 0.5; overflow: hidden; position: absolute; right: -200px; top: -48px; }\",\".framer-wAd4z .framer-qgxxhy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-uqnl0n, .framer-wAd4z .framer-1184k9e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 10px; position: relative; white-space: pre; width: auto; }\",\".framer-wAd4z .framer-8tj5bz { flex: none; height: auto; max-width: 640px; position: relative; white-space: pre; width: 100%; }\",\".framer-wAd4z .framer-1stmkyg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 100%; opacity: 0.8; position: relative; width: 622px; }\",\".framer-wAd4z .framer-mg2w1y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-wAd4z .framer-1hhvaz0 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 52px; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: min-content; }\",\".framer-wAd4z .framer-1yeje73 { -webkit-filter: invert(1); background-color: rgba(255, 255, 255, 0.5); filter: invert(1); flex: none; height: 120%; left: -100px; overflow: hidden; position: absolute; right: -100px; top: calc(50.00000000000002% - 120% / 2); }\",\".framer-wAd4z .framer-anvrd7 { bottom: 0px; flex: none; left: 0px; opacity: 0.3; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-wAd4z .framer-1bzofus { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-wAd4z .framer-1n0wuh6 { background-color: rgba(0, 0, 0, 0.6); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-wAd4z .framer-hbqr2g-container, .framer-wAd4z .framer-yrw128-container { flex: none; height: auto; left: 50%; max-width: 100%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 500px; z-index: 5; }\",\".framer-wAd4z .framer-294oxo-container, .framer-wAd4z .framer-865rw-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-wAd4z .framer-f4a3t1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1ovomyk { -webkit-filter: grayscale(1) invert(0); align-content: center; align-items: center; background-color: #000000; display: flex; filter: grayscale(1) invert(0); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-dat5zq-container { flex: none; height: 100px; max-width: 1600px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1y1vui1, .framer-wAd4z .framer-1dgsdoh, .framer-wAd4z .framer-1rpzrfy, .framer-wAd4z .framer-cg1wzi, .framer-wAd4z .framer-1kt22ss, .framer-wAd4z .framer-snnamq { -webkit-filter: brightness(0) invert(1); align-content: center; align-items: center; display: flex; filter: brightness(0) invert(1); flex-direction: row; flex-wrap: nowrap; height: 100px; justify-content: space-evenly; overflow: hidden; padding: 20px; position: relative; width: 1000px; }\",\".framer-wAd4z .framer-j67rvv, .framer-wAd4z .framer-1ub4d53 { aspect-ratio: 4.129032258064516 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); overflow: visible; position: relative; width: 140px; }\",\".framer-wAd4z .framer-hdk6h9 { aspect-ratio: 1.8957345971563981 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 88px; }\",\".framer-wAd4z .framer-2g7t80 { aspect-ratio: 3.6129032258064515 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 112px; }\",\".framer-wAd4z .framer-1xxcqvi { aspect-ratio: 5.473684210526316 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 104px; }\",\".framer-wAd4z .framer-1j67ujm { aspect-ratio: 4.083333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 98px; }\",\".framer-wAd4z .framer-1nnlkbr { aspect-ratio: 6.918918918918919 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 166px; }\",\".framer-wAd4z .framer-sy1kc0 { aspect-ratio: 3.8461538461538463 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 115px; }\",\".framer-wAd4z .framer-1u46pia { aspect-ratio: 7.142857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 150px; }\",\".framer-wAd4z .framer-17v8dwh { aspect-ratio: 10.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 158px; }\",\".framer-wAd4z .framer-aj46n7 { aspect-ratio: 6.7368421052631575 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 112px; }\",\".framer-wAd4z .framer-v6o1yj, .framer-wAd4z .framer-555q5x { aspect-ratio: 4.615384615384615 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 104px; }\",\".framer-wAd4z .framer-m21b4o { aspect-ratio: 1.962962962962963 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 98px; }\",\".framer-wAd4z .framer-tmip4z { aspect-ratio: 3.2903225806451615 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 102px; }\",\".framer-wAd4z .framer-1gx5pz1 { aspect-ratio: 11.058823529411764 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 172px; }\",\".framer-wAd4z .framer-14ni5at { aspect-ratio: 3.498542274052478 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; width: 108px; }\",\".framer-wAd4z .framer-102jkg8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); position: relative; width: 55px; }\",\".framer-wAd4z .framer-15s6osp { aspect-ratio: 5.325 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 109px; }\",\".framer-wAd4z .framer-iz394r, .framer-wAd4z .framer-51sa9q { aspect-ratio: 2.7436974789915967 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 78px; }\",\".framer-wAd4z .framer-159pcf2 { aspect-ratio: 3.4047619047619047 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); overflow: visible; position: relative; width: 115px; }\",\".framer-wAd4z .framer-tkebw6-container { flex: none; height: 100px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1h772c6, .framer-wAd4z .framer-cdw9xt, .framer-wAd4z .framer-1azleqg, .framer-wAd4z .framer-1k08my3, .framer-wAd4z .framer-1opofga, .framer-wAd4z .framer-178z4z1, .framer-wAd4z .framer-bg96sg, .framer-wAd4z .framer-axrqvw, .framer-wAd4z .framer-w065i5, .framer-wAd4z .framer-y1ed1b { -webkit-filter: brightness(0) invert(1); align-content: center; align-items: center; display: flex; filter: brightness(0) invert(1); flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-around; overflow: visible; padding: 20px; position: relative; width: 400px; }\",\".framer-wAd4z .framer-s8jwqq { aspect-ratio: 4.129032258064516 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 124px; }\",\".framer-wAd4z .framer-1lsdc9p { aspect-ratio: 1.8957345971563981 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 83px; }\",\".framer-wAd4z .framer-c7xmsx { aspect-ratio: 3.6129032258064515 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 99px; }\",\".framer-wAd4z .framer-apf9rf { aspect-ratio: 7.142857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 118px; }\",\".framer-wAd4z .framer-ag01gx { aspect-ratio: 11.058823529411764 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 164px; }\",\".framer-wAd4z .framer-tifbje { aspect-ratio: 4.083333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 82px; }\",\".framer-wAd4z .framer-1ba1na4 { aspect-ratio: 6.918918918918919 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: visible; position: relative; width: 94px; }\",\".framer-wAd4z .framer-z7v2vz { aspect-ratio: 5.473684210526316 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 80px; }\",\".framer-wAd4z .framer-er5dr9 { aspect-ratio: 10.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 159px; }\",\".framer-wAd4z .framer-emrq81 { aspect-ratio: 4.129032258064516 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 132px; }\",\".framer-wAd4z .framer-1ws7iaa { aspect-ratio: 1.962962962962963 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 82px; }\",\".framer-wAd4z .framer-1r0lax3 { aspect-ratio: 3.2903225806451615 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 113px; }\",\".framer-wAd4z .framer-1bfhu90 { aspect-ratio: 3.8461538461538463 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 91px; }\",\".framer-wAd4z .framer-17g3vzu { aspect-ratio: 3.4047619047619047 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 109px; }\",\".framer-wAd4z .framer-1kkxhf6 { aspect-ratio: 3.498542274052478 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); overflow: visible; position: relative; width: 68px; }\",\".framer-wAd4z .framer-13zvkb0 { aspect-ratio: 6.7368421052631575 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 104px; }\",\".framer-wAd4z .framer-3bpuwe { aspect-ratio: 5.325 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 119px; }\",\".framer-wAd4z .framer-rfhmt0 { aspect-ratio: 1.0476190476190477 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); position: relative; width: 49px; }\",\".framer-wAd4z .framer-252v5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-sk8s9r-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - max(400px, 100%) / 2); min-width: 400px; mix-blend-mode: difference; opacity: 0.1; position: absolute; top: 0px; width: 100%; }\",\".framer-wAd4z .framer-19jerqs { flex: none; height: 10px; overflow: hidden; position: relative; width: 100%; }\",\".framer-wAd4z .framer-n3yedp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 680px; word-break: break-word; word-wrap: break-word; }\",\".framer-wAd4z .framer-1m53gme, .framer-wAd4z .framer-savt9u, .framer-wAd4z .framer-1o0ibv6 { flex: none; height: 20px; overflow: hidden; position: relative; width: 100%; }\",\".framer-wAd4z .framer-9e1r4b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 40px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-wAd4z .framer-5a69u8-container, .framer-wAd4z .framer-1ah6pt5-container, .framer-wAd4z .framer-1bggfz8-container, .framer-wAd4z .framer-1ncojqt-container, .framer-wAd4z .framer-10pk0br-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1mxc51y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 40px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-13u64g6, .framer-wAd4z .framer-m01z46, .framer-wAd4z .framer-10dvn6z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-d0v09b, .framer-wAd4z .framer-txbbei, .framer-wAd4z .framer-n52s49 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-wAd4z .framer-xkelps, .framer-wAd4z .framer-4jjx36, .framer-wAd4z .framer-11s0hre { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-wAd4z .framer-18k8444, .framer-wAd4z .framer-1g92upd, .framer-wAd4z .framer-ey7pey { flex: 1 0 0px; height: 48px; overflow: hidden; position: relative; width: 1px; }\",\".framer-wAd4z .framer-ob7k5y, .framer-wAd4z .framer-ubegao { background-color: var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, #000000); border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; border-top-left-radius: 1px; border-top-right-radius: 1px; flex: none; height: 2px; left: calc(49.610678531701915% - 100% / 2); overflow: hidden; position: absolute; top: calc(56.25000000000002% - 1.5px / 2); width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-wAd4z .framer-1wii1u0, .framer-wAd4z .framer-u2z3sk, .framer-wAd4z .framer-1h0714w { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 11px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-wAd4z .framer-29kqdb, .framer-wAd4z .framer-1u12zsw, .framer-wAd4z .framer-c70zs5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-wAd4z .framer-18olxqr, .framer-wAd4z .framer-1unjm2l, .framer-wAd4z .framer-1qkgupv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-wAd4z .framer-uungmr-container, .framer-wAd4z .framer-1kbio6r-container, .framer-wAd4z .framer-11yp1b2-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-wAd4z .framer-ernabu, .framer-wAd4z .framer-dvsx3v, .framer-wAd4z .framer-f7ra2x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1pmw86z, .framer-wAd4z .framer-1sisrqb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-width: 300px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-wAd4z .framer-h3v9d6, .framer-wAd4z .framer-1w05lac { flex: none; height: 130px; overflow: hidden; position: relative; width: 100%; }\",\".framer-wAd4z .framer-120a0j7-container { flex: none; height: 452px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-o67dbt, .framer-wAd4z .framer-193oqft { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wAd4z .framer-lg6j4, .framer-wAd4z .framer-132qgl9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1lfzgz9, .framer-wAd4z .framer-65yzeg, .framer-wAd4z .framer-16bnqyy, .framer-wAd4z .framer-m5qwn5, .framer-wAd4z .framer-10lz1er, .framer-wAd4z .framer-1sor5v1 { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 10%; }\",\".framer-wAd4z .framer-dpymxt, .framer-wAd4z .framer-6pnfmp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-wAd4z .framer-1a9vm3l { flex: none; height: 68px; overflow: hidden; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1x88pxz-container { flex: none; height: 627px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-5kh8ez { background-color: var(--token-ba274332-2de0-47ab-9537-84c4dbe6b5e7, #000000); border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; border-top-left-radius: 1px; border-top-right-radius: 1px; flex: none; height: 2px; left: calc(49.63715529753267% - 100% / 2); overflow: hidden; position: absolute; top: calc(56.25000000000002% - 1.5px / 2); width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-wAd4z .framer-dixkjz { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wAd4z .framer-gx9ot1 { flex: none; height: 99px; overflow: hidden; position: relative; width: 100%; }\",\".framer-wAd4z .framer-79d58i-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1s9k5eo { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wAd4z .framer-1c9rshy-container { flex: none; height: 470px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-bfmm67 { flex: none; height: 165px; overflow: hidden; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1kf4vuw-container { flex: none; height: 484px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-r54iyh, .framer-wAd4z .framer-h1rhvw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-g2ngx7 { flex: 1 0 0px; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-wAd4z .framer-149fnnm { flex: none; height: 100px; overflow: hidden; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1i9sg08-container { flex: none; height: 657px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-ds7iqp { 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: 40px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-qywjqs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1600px; min-height: 60vh; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1880vvd-container { flex: none; height: 80%; left: calc(50.00000000000002% - 100% / 2); mix-blend-mode: difference; opacity: 0.1; position: absolute; top: calc(50.00000000000002% - 80% / 2); width: 100%; }\",\".framer-wAd4z .framer-mg1zh8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 312px; word-break: break-word; word-wrap: break-word; }\",\".framer-wAd4z .framer-13tsciy-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-wAd4z .framer-1wn6nlw { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-wAd4z .framer-a1axo7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 80vh; justify-content: center; max-height: 1200px; max-width: 1600px; min-height: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-pfhxn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 32px; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1rocgf5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-j2ndcp-container { flex: 1.5 0 0px; height: 100%; max-width: 100%; position: relative; width: 1px; }\",\".framer-wAd4z .framer-1y78bhh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-wAd4z .framer-1v5rra7-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-pr54we { -webkit-filter: invert(0); align-content: center; align-items: center; background-color: #000000; display: flex; filter: invert(0); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 130px; justify-content: center; overflow: hidden; padding: 32px; position: relative; text-decoration: none; width: 100%; }\",\".framer-wAd4z .framer-xa9hcp, .framer-wAd4z .framer-13wpb1n, .framer-wAd4z .framer-121l9ds, .framer-wAd4z .framer-1fzomog { --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-wAd4z .framer-evsba2, .framer-wAd4z .framer-5i6ozz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-8w4qlc-container { flex: none; height: 81%; left: calc(54.166666666666686% - 64.33333333333333% / 2); mix-blend-mode: difference; opacity: 0.1; position: absolute; top: calc(60.44776119402987% - 80.59701492537313% / 2); width: 64%; }\",\".framer-wAd4z .framer-8rullz { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-wAd4z .framer-1g3aaxb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-9p31e2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-wAd4z .framer-16rvij5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wAd4z .framer-1bsxcf4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-e9kfeo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wAd4z .framer-6xp8cs { -webkit-filter: brightness(0) grayscale(1); filter: brightness(0) grayscale(1); flex: none; height: 52px; overflow: visible; position: relative; width: 148px; }\",\".framer-wAd4z .framer-w8037r, .framer-wAd4z .framer-xx8ld3, .framer-wAd4z .framer-vgkrhn { -webkit-filter: brightness(0) grayscale(1); filter: brightness(0) grayscale(1); flex: none; height: 52px; opacity: 0.5; overflow: visible; position: relative; width: 100px; }\",\".framer-wAd4z .framer-1fml725 { -webkit-filter: brightness(1) grayscale(1); filter: brightness(1) grayscale(1); flex: none; height: 52px; opacity: 0.6; overflow: visible; position: relative; width: 100px; }\",\".framer-wAd4z .framer-1ja8ycd, .framer-wAd4z .framer-yw3ef5, .framer-wAd4z .framer-1eta9et, .framer-wAd4z .framer-4gj4mi { -webkit-filter: brightness(0) grayscale(1); filter: brightness(0) grayscale(1); flex: none; height: 52px; opacity: 0.6; overflow: visible; position: relative; width: 100px; }\",\".framer-wAd4z .framer-y7rei7 { -webkit-filter: brightness(0) grayscale(1); filter: brightness(0) grayscale(1); flex: none; height: 52px; opacity: 0.6; overflow: visible; position: relative; width: 84px; }\",\".framer-wAd4z .framer-1j1jsjb { -webkit-filter: contrast(1.5) grayscale(1); filter: contrast(1.5) grayscale(1); flex: none; height: 44px; opacity: 0.7; overflow: visible; position: relative; width: 100px; }\",\".framer-wAd4z .framer-8dyhhh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-18to3lt-container { flex: 1 0 0px; height: auto; min-width: 240px; position: relative; width: 1px; }\",\".framer-wAd4z .framer-1lqrwow { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-wAd4z .framer-go9as5-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-wAd4z .framer-12ecz1q-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-wAd4z .framer-1dpce3m { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 3; }\",\".framer-wAd4z .framer-1tynzzc-container { flex: none; height: auto; left: 50%; max-width: 100%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 500px; z-index: 3; }\",\".framer-wAd4z .framer-7w41v7-container { flex: none; height: auto; max-width: 1600px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wAd4z.framer-1guwhm0, .framer-wAd4z .framer-bpzbf1, .framer-wAd4z .framer-odwtfk, .framer-wAd4z .framer-juf1q2, .framer-wAd4z .framer-1bbkhak, .framer-wAd4z .framer-qgxxhy, .framer-wAd4z .framer-mg2w1y, .framer-wAd4z .framer-1hhvaz0, .framer-wAd4z .framer-1k3pa6y, .framer-wAd4z .framer-f4a3t1, .framer-wAd4z .framer-1ovomyk, .framer-wAd4z .framer-252v5m, .framer-wAd4z .framer-9e1r4b, .framer-wAd4z .framer-1mxc51y, .framer-wAd4z .framer-13u64g6, .framer-wAd4z .framer-d0v09b, .framer-wAd4z .framer-1wii1u0, .framer-wAd4z .framer-29kqdb, .framer-wAd4z .framer-ernabu, .framer-wAd4z .framer-1pmw86z, .framer-wAd4z .framer-o67dbt, .framer-wAd4z .framer-lg6j4, .framer-wAd4z .framer-m01z46, .framer-wAd4z .framer-txbbei, .framer-wAd4z .framer-u2z3sk, .framer-wAd4z .framer-1u12zsw, .framer-wAd4z .framer-dvsx3v, .framer-wAd4z .framer-dixkjz, .framer-wAd4z .framer-132qgl9, .framer-wAd4z .framer-1s9k5eo, .framer-wAd4z .framer-10dvn6z, .framer-wAd4z .framer-n52s49, .framer-wAd4z .framer-1h0714w, .framer-wAd4z .framer-c70zs5, .framer-wAd4z .framer-f7ra2x, .framer-wAd4z .framer-193oqft, .framer-wAd4z .framer-1sisrqb, .framer-wAd4z .framer-r54iyh, .framer-wAd4z .framer-ds7iqp, .framer-wAd4z .framer-qywjqs, .framer-wAd4z .framer-a1axo7, .framer-wAd4z .framer-pfhxn, .framer-wAd4z .framer-1rocgf5, .framer-wAd4z .framer-1y78bhh, .framer-wAd4z .framer-pr54we, .framer-wAd4z .framer-evsba2, .framer-wAd4z .framer-1g3aaxb, .framer-wAd4z .framer-9p31e2, .framer-wAd4z .framer-1bsxcf4, .framer-wAd4z .framer-e9kfeo, .framer-wAd4z .framer-5i6ozz, .framer-wAd4z .framer-8dyhhh, .framer-wAd4z .framer-1lqrwow, .framer-wAd4z .framer-h1rhvw { gap: 0px; } .framer-wAd4z.framer-1guwhm0 > *, .framer-wAd4z .framer-bpzbf1 > *, .framer-wAd4z .framer-1k3pa6y > *, .framer-wAd4z .framer-dixkjz > *, .framer-wAd4z .framer-1s9k5eo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wAd4z.framer-1guwhm0 > :first-child, .framer-wAd4z .framer-bpzbf1 > :first-child, .framer-wAd4z .framer-odwtfk > :first-child, .framer-wAd4z .framer-juf1q2 > :first-child, .framer-wAd4z .framer-1bbkhak > :first-child, .framer-wAd4z .framer-1k3pa6y > :first-child, .framer-wAd4z .framer-f4a3t1 > :first-child, .framer-wAd4z .framer-1ovomyk > :first-child, .framer-wAd4z .framer-252v5m > :first-child, .framer-wAd4z .framer-1mxc51y > :first-child, .framer-wAd4z .framer-13u64g6 > :first-child, .framer-wAd4z .framer-1pmw86z > :first-child, .framer-wAd4z .framer-o67dbt > :first-child, .framer-wAd4z .framer-m01z46 > :first-child, .framer-wAd4z .framer-dixkjz > :first-child, .framer-wAd4z .framer-1s9k5eo > :first-child, .framer-wAd4z .framer-10dvn6z > :first-child, .framer-wAd4z .framer-193oqft > :first-child, .framer-wAd4z .framer-1sisrqb > :first-child, .framer-wAd4z .framer-ds7iqp > :first-child, .framer-wAd4z .framer-a1axo7 > :first-child, .framer-wAd4z .framer-1y78bhh > :first-child, .framer-wAd4z .framer-pr54we > :first-child, .framer-wAd4z .framer-evsba2 > :first-child, .framer-wAd4z .framer-9p31e2 > :first-child, .framer-wAd4z .framer-1bsxcf4 > :first-child, .framer-wAd4z .framer-5i6ozz > :first-child, .framer-wAd4z .framer-1lqrwow > :first-child { margin-top: 0px; } .framer-wAd4z.framer-1guwhm0 > :last-child, .framer-wAd4z .framer-bpzbf1 > :last-child, .framer-wAd4z .framer-odwtfk > :last-child, .framer-wAd4z .framer-juf1q2 > :last-child, .framer-wAd4z .framer-1bbkhak > :last-child, .framer-wAd4z .framer-1k3pa6y > :last-child, .framer-wAd4z .framer-f4a3t1 > :last-child, .framer-wAd4z .framer-1ovomyk > :last-child, .framer-wAd4z .framer-252v5m > :last-child, .framer-wAd4z .framer-1mxc51y > :last-child, .framer-wAd4z .framer-13u64g6 > :last-child, .framer-wAd4z .framer-1pmw86z > :last-child, .framer-wAd4z .framer-o67dbt > :last-child, .framer-wAd4z .framer-m01z46 > :last-child, .framer-wAd4z .framer-dixkjz > :last-child, .framer-wAd4z .framer-1s9k5eo > :last-child, .framer-wAd4z .framer-10dvn6z > :last-child, .framer-wAd4z .framer-193oqft > :last-child, .framer-wAd4z .framer-1sisrqb > :last-child, .framer-wAd4z .framer-ds7iqp > :last-child, .framer-wAd4z .framer-a1axo7 > :last-child, .framer-wAd4z .framer-1y78bhh > :last-child, .framer-wAd4z .framer-pr54we > :last-child, .framer-wAd4z .framer-evsba2 > :last-child, .framer-wAd4z .framer-9p31e2 > :last-child, .framer-wAd4z .framer-1bsxcf4 > :last-child, .framer-wAd4z .framer-5i6ozz > :last-child, .framer-wAd4z .framer-1lqrwow > :last-child { margin-bottom: 0px; } .framer-wAd4z .framer-odwtfk > *, .framer-wAd4z .framer-1ovomyk > *, .framer-wAd4z .framer-1pmw86z > *, .framer-wAd4z .framer-o67dbt > *, .framer-wAd4z .framer-193oqft > *, .framer-wAd4z .framer-1sisrqb > *, .framer-wAd4z .framer-ds7iqp > *, .framer-wAd4z .framer-a1axo7 > *, .framer-wAd4z .framer-1y78bhh > *, .framer-wAd4z .framer-pr54we > *, .framer-wAd4z .framer-1bsxcf4 > *, .framer-wAd4z .framer-1lqrwow > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wAd4z .framer-juf1q2 > *, .framer-wAd4z .framer-252v5m > *, .framer-wAd4z .framer-9p31e2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-wAd4z .framer-1bbkhak > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-wAd4z .framer-qgxxhy > *, .framer-wAd4z .framer-mg2w1y > *, .framer-wAd4z .framer-1wii1u0 > *, .framer-wAd4z .framer-29kqdb > *, .framer-wAd4z .framer-lg6j4 > *, .framer-wAd4z .framer-u2z3sk > *, .framer-wAd4z .framer-1u12zsw > *, .framer-wAd4z .framer-132qgl9 > *, .framer-wAd4z .framer-1h0714w > *, .framer-wAd4z .framer-c70zs5 > *, .framer-wAd4z .framer-r54iyh > *, .framer-wAd4z .framer-1rocgf5 > *, .framer-wAd4z .framer-1g3aaxb > *, .framer-wAd4z .framer-h1rhvw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wAd4z .framer-qgxxhy > :first-child, .framer-wAd4z .framer-mg2w1y > :first-child, .framer-wAd4z .framer-1hhvaz0 > :first-child, .framer-wAd4z .framer-9e1r4b > :first-child, .framer-wAd4z .framer-d0v09b > :first-child, .framer-wAd4z .framer-1wii1u0 > :first-child, .framer-wAd4z .framer-29kqdb > :first-child, .framer-wAd4z .framer-ernabu > :first-child, .framer-wAd4z .framer-lg6j4 > :first-child, .framer-wAd4z .framer-txbbei > :first-child, .framer-wAd4z .framer-u2z3sk > :first-child, .framer-wAd4z .framer-1u12zsw > :first-child, .framer-wAd4z .framer-dvsx3v > :first-child, .framer-wAd4z .framer-132qgl9 > :first-child, .framer-wAd4z .framer-n52s49 > :first-child, .framer-wAd4z .framer-1h0714w > :first-child, .framer-wAd4z .framer-c70zs5 > :first-child, .framer-wAd4z .framer-f7ra2x > :first-child, .framer-wAd4z .framer-r54iyh > :first-child, .framer-wAd4z .framer-qywjqs > :first-child, .framer-wAd4z .framer-pfhxn > :first-child, .framer-wAd4z .framer-1rocgf5 > :first-child, .framer-wAd4z .framer-1g3aaxb > :first-child, .framer-wAd4z .framer-e9kfeo > :first-child, .framer-wAd4z .framer-8dyhhh > :first-child, .framer-wAd4z .framer-h1rhvw > :first-child { margin-left: 0px; } .framer-wAd4z .framer-qgxxhy > :last-child, .framer-wAd4z .framer-mg2w1y > :last-child, .framer-wAd4z .framer-1hhvaz0 > :last-child, .framer-wAd4z .framer-9e1r4b > :last-child, .framer-wAd4z .framer-d0v09b > :last-child, .framer-wAd4z .framer-1wii1u0 > :last-child, .framer-wAd4z .framer-29kqdb > :last-child, .framer-wAd4z .framer-ernabu > :last-child, .framer-wAd4z .framer-lg6j4 > :last-child, .framer-wAd4z .framer-txbbei > :last-child, .framer-wAd4z .framer-u2z3sk > :last-child, .framer-wAd4z .framer-1u12zsw > :last-child, .framer-wAd4z .framer-dvsx3v > :last-child, .framer-wAd4z .framer-132qgl9 > :last-child, .framer-wAd4z .framer-n52s49 > :last-child, .framer-wAd4z .framer-1h0714w > :last-child, .framer-wAd4z .framer-c70zs5 > :last-child, .framer-wAd4z .framer-f7ra2x > :last-child, .framer-wAd4z .framer-r54iyh > :last-child, .framer-wAd4z .framer-qywjqs > :last-child, .framer-wAd4z .framer-pfhxn > :last-child, .framer-wAd4z .framer-1rocgf5 > :last-child, .framer-wAd4z .framer-1g3aaxb > :last-child, .framer-wAd4z .framer-e9kfeo > :last-child, .framer-wAd4z .framer-8dyhhh > :last-child, .framer-wAd4z .framer-h1rhvw > :last-child { margin-right: 0px; } .framer-wAd4z .framer-1hhvaz0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-wAd4z .framer-f4a3t1 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-wAd4z .framer-9e1r4b > *, .framer-wAd4z .framer-pfhxn > *, .framer-wAd4z .framer-8dyhhh > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-wAd4z .framer-1mxc51y > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-wAd4z .framer-13u64g6 > *, .framer-wAd4z .framer-m01z46 > *, .framer-wAd4z .framer-10dvn6z > *, .framer-wAd4z .framer-evsba2 > *, .framer-wAd4z .framer-5i6ozz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wAd4z .framer-d0v09b > *, .framer-wAd4z .framer-ernabu > *, .framer-wAd4z .framer-txbbei > *, .framer-wAd4z .framer-dvsx3v > *, .framer-wAd4z .framer-n52s49 > *, .framer-wAd4z .framer-f7ra2x > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-wAd4z .framer-qywjqs > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-wAd4z .framer-e9kfeo > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-wAd4z { background: var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, rgb(255, 255, 255)); } .framer-wAd4z.framer-1guwhm0 { width: 390px; } .framer-wAd4z .framer-odwtfk { min-height: 600px; padding: 20px 20px 40px 20px; } .framer-wAd4z .framer-bjpkjd { -webkit-filter: blur(0px); background: linear-gradient(180deg, #000000 31.225365990990987%, rgba(0, 0, 0, 0) 100%); background-color: unset; filter: blur(0px); } .framer-wAd4z .framer-2zam4m { height: 400px; } .framer-wAd4z .framer-jz3k7e { -webkit-filter: blur(0px); background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 26.22994087837838%); background-color: unset; bottom: -64px; filter: blur(0px); } .framer-wAd4z .framer-8tj5bz { max-width: 500px; } .framer-wAd4z .framer-252v5m, .framer-wAd4z .framer-9e1r4b, .framer-wAd4z .framer-ds7iqp, .framer-wAd4z .framer-evsba2, .framer-wAd4z .framer-5i6ozz { padding: 20px; } .framer-wAd4z .framer-19jerqs, .framer-wAd4z .framer-h3v9d6, .framer-wAd4z .framer-149fnnm { height: 20px; } .framer-wAd4z .framer-1mxc51y { padding: 20px 20px 80px 20px; } .framer-wAd4z .framer-d0v09b, .framer-wAd4z .framer-txbbei, .framer-wAd4z .framer-n52s49 { gap: 20px; } .framer-wAd4z .framer-xkelps, .framer-wAd4z .framer-4jjx36, .framer-wAd4z .framer-11s0hre { flex: 1 0 0px; max-width: 100%; width: 1px; } .framer-wAd4z .framer-1wii1u0, .framer-wAd4z .framer-u2z3sk, .framer-wAd4z .framer-1h0714w { justify-content: flex-end; } .framer-wAd4z .framer-ernabu, .framer-wAd4z .framer-dvsx3v, .framer-wAd4z .framer-f7ra2x { align-content: center; align-items: center; flex-direction: column; } .framer-wAd4z .framer-1pmw86z, .framer-wAd4z .framer-1sisrqb { flex: none; order: 2; width: 100%; } .framer-wAd4z .framer-o67dbt, .framer-wAd4z .framer-193oqft { align-content: center; align-items: center; flex: none; order: 0; width: 100%; } .framer-wAd4z .framer-dpymxt, .framer-wAd4z .framer-6pnfmp { order: 0; } .framer-wAd4z .framer-1x88pxz-container, .framer-wAd4z .framer-79d58i-container, .framer-wAd4z .framer-1i9sg08-container { height: 500px; max-width: 500px; } .framer-wAd4z .framer-dixkjz { align-content: center; align-items: center; flex: none; width: 100%; } .framer-wAd4z .framer-gx9ot1 { height: 75px; } .framer-wAd4z .framer-1s9k5eo, .framer-wAd4z .framer-9p31e2, .framer-wAd4z .framer-e9kfeo, .framer-wAd4z .framer-18to3lt-container, .framer-wAd4z .framer-go9as5-container { flex: none; width: 100%; } .framer-wAd4z .framer-1w05lac { height: 24px; } .framer-wAd4z .framer-qywjqs { flex-direction: column; gap: 40px; } .framer-wAd4z .framer-a1axo7 { height: min-content; max-height: unset; min-height: unset; } .framer-wAd4z .framer-pfhxn { padding: 0px 20px 0px 20px; } .framer-wAd4z .framer-1rocgf5 { flex: none; flex-direction: column; height: min-content; padding: 0px 20px 0px 20px; } .framer-wAd4z .framer-j2ndcp-container { flex: none; height: 492px; width: 150%; } .framer-wAd4z .framer-1y78bhh { flex: none; height: min-content; width: 100%; } .framer-wAd4z .framer-1v5rra7-container { flex: none; height: 580px; } .framer-wAd4z .framer-pr54we { height: 100px; } .framer-wAd4z .framer-8w4qlc-container { height: 68%; left: calc(50.00000000000002% - 100.76923076923077% / 2); top: calc(54.35952637244351% - 68.46071044133477% / 2); width: 101%; } .framer-wAd4z .framer-1g3aaxb, .framer-wAd4z .framer-8dyhhh { flex-direction: column; } .framer-wAd4z .framer-h1rhvw { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wAd4z .framer-d0v09b, .framer-wAd4z .framer-ernabu, .framer-wAd4z .framer-txbbei, .framer-wAd4z .framer-dvsx3v, .framer-wAd4z .framer-n52s49, .framer-wAd4z .framer-f7ra2x, .framer-wAd4z .framer-qywjqs, .framer-wAd4z .framer-1rocgf5, .framer-wAd4z .framer-1g3aaxb, .framer-wAd4z .framer-8dyhhh, .framer-wAd4z .framer-h1rhvw { gap: 0px; } .framer-wAd4z .framer-d0v09b > *, .framer-wAd4z .framer-txbbei > *, .framer-wAd4z .framer-n52s49 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-wAd4z .framer-d0v09b > :first-child, .framer-wAd4z .framer-txbbei > :first-child, .framer-wAd4z .framer-n52s49 > :first-child { margin-left: 0px; } .framer-wAd4z .framer-d0v09b > :last-child, .framer-wAd4z .framer-txbbei > :last-child, .framer-wAd4z .framer-n52s49 > :last-child { margin-right: 0px; } .framer-wAd4z .framer-ernabu > *, .framer-wAd4z .framer-dvsx3v > *, .framer-wAd4z .framer-f7ra2x > *, .framer-wAd4z .framer-qywjqs > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wAd4z .framer-ernabu > :first-child, .framer-wAd4z .framer-dvsx3v > :first-child, .framer-wAd4z .framer-f7ra2x > :first-child, .framer-wAd4z .framer-qywjqs > :first-child, .framer-wAd4z .framer-1rocgf5 > :first-child, .framer-wAd4z .framer-1g3aaxb > :first-child, .framer-wAd4z .framer-8dyhhh > :first-child, .framer-wAd4z .framer-h1rhvw > :first-child { margin-top: 0px; } .framer-wAd4z .framer-ernabu > :last-child, .framer-wAd4z .framer-dvsx3v > :last-child, .framer-wAd4z .framer-f7ra2x > :last-child, .framer-wAd4z .framer-qywjqs > :last-child, .framer-wAd4z .framer-1rocgf5 > :last-child, .framer-wAd4z .framer-1g3aaxb > :last-child, .framer-wAd4z .framer-8dyhhh > :last-child, .framer-wAd4z .framer-h1rhvw > :last-child { margin-bottom: 0px; } .framer-wAd4z .framer-1rocgf5 > *, .framer-wAd4z .framer-1g3aaxb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wAd4z .framer-8dyhhh > *, .framer-wAd4z .framer-h1rhvw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-wAd4z { background: var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, rgb(255, 255, 255)); } .framer-wAd4z.framer-1guwhm0 { width: 810px; } .framer-wAd4z .framer-odwtfk { padding: 40px; } .framer-wAd4z .framer-2zam4m { height: 400px; } .framer-wAd4z .framer-8tj5bz { max-width: 500px; } .framer-wAd4z .framer-1x88pxz-container { height: 550px; } .framer-wAd4z .framer-gx9ot1, .framer-wAd4z .framer-1w05lac { height: 94px; } .framer-wAd4z .framer-79d58i-container { height: 500px; } .framer-wAd4z .framer-qywjqs { flex-direction: column; gap: 40px; } .framer-wAd4z .framer-j2ndcp-container { flex: 1 0 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wAd4z .framer-qywjqs { gap: 0px; } .framer-wAd4z .framer-qywjqs > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wAd4z .framer-qywjqs > :first-child { margin-top: 0px; } .framer-wAd4z .framer-qywjqs > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 2000px) { .${metadata.bodyClassName}-framer-wAd4z { background: var(--token-0e4d981e-6088-4ec7-99be-f59a204c21e4, rgb(255, 255, 255)); } .framer-wAd4z.framer-1guwhm0 { width: 2000px; } .framer-wAd4z .framer-2zam4m { height: 600px; } .framer-wAd4z .framer-8tj5bz { max-width: 800px; } .framer-wAd4z .framer-1ovomyk { padding: 10px 0px 10px 0px; } .framer-wAd4z .framer-ernabu, .framer-wAd4z .framer-dvsx3v, .framer-wAd4z .framer-f7ra2x { gap: 60px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wAd4z .framer-ernabu, .framer-wAd4z .framer-dvsx3v, .framer-wAd4z .framer-f7ra2x { gap: 0px; } .framer-wAd4z .framer-ernabu > *, .framer-wAd4z .framer-dvsx3v > *, .framer-wAd4z .framer-f7ra2x > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-wAd4z .framer-ernabu > :first-child, .framer-wAd4z .framer-dvsx3v > :first-child, .framer-wAd4z .framer-f7ra2x > :first-child { margin-left: 0px; } .framer-wAd4z .framer-ernabu > :last-child, .framer-wAd4z .framer-dvsx3v > :last-child, .framer-wAd4z .framer-f7ra2x > :last-child { margin-right: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-wAd4z[data-border=\"true\"]::after, .framer-wAd4z [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8781.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jMsws5JUg\":{\"layout\":[\"fixed\",\"auto\"]},\"jFrPZkzm4\":{\"layout\":[\"fixed\",\"auto\"]},\"JcTMmECU6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramernrGtgU5Ek=withCSS(Component,css,\"framer-wAd4z\");export default FramernrGtgU5Ek;FramernrGtgU5Ek.displayName=\"New Nav 2\";FramernrGtgU5Ek.defaultProps={height:8781.5,width:1200};addFonts(FramernrGtgU5Ek,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Display Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/ylVq1FlpuwAKWbNuITwLhihuRI.woff2\"},{family:\"Inter SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/swkvpkCuf242vgQ1fmul6WFU7vI.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...FormMakeIntegrationFonts,...ButtonFonts,...SlideshowFonts,...BackgroundWavesFonts,...DividerFonts,...PhosphorFonts,...ProductDetailFonts,...TestimonialLargeImageFonts,...CMSItemFonts,...FormNewsletterFonts,...HeaderFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernrGtgU5Ek\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"8781.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jMsws5JUg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jFrPZkzm4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JcTMmECU6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "logo", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fI67WRLdW", "aIi4FThdf", "ATa5PwMhQ", "rE5knHA9n", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "Framerrffi4envn", "withCSS", "rffi4envn_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "details", "header", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "y_hVgMCAS", "rAtsQbDFy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1mjkjf4", "args", "onMouseEnterb60240", "onTap1vbnwb", "onMouseLeave5ef7e6", "onTap1al58d0", "onMouseEnter1n0hjnc", "onTap1een1jd", "onMouseLeave14bzw18", "onTap1slrjec", "onMouseEntere1zald", "onTap3s02ep", "onMouseLeave1upwx49", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "RichText2", "css", "FramervspcJWBUX", "withCSS", "vspcJWBUX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ImageWithFX", "withFX", "Image2", "FormMakeIntegrationFonts", "getFonts", "duOGgZmIw_default", "ButtonFonts", "qBVdk8HXy_default", "SlideshowFonts", "Slideshow", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "BackgroundWavesFonts", "I_r6nvFKN_default", "DividerFonts", "RNlt2lQ59_default", "PhosphorFonts", "Icon", "ProductDetailFonts", "vspcJWBUX_default", "TestimonialLargeImageFonts", "U_mJwXiIB_default", "CMSItemFonts", "rffi4envn_default", "FormNewsletterFonts", "Vb5SUDvLM_default", "HeaderFonts", "mc1nZE69H_default", "HeaderWithVariantAppearEffect", "withVariantAppearEffect", "FooterFonts", "CyfWZtRjH_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition3", "animation2", "animation3", "transition4", "animation4", "addImageAlt", "image", "alt", "transition5", "animation5", "animation6", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "transformTemplate1", "_", "t", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gDlJZa4OKDWu8OvuJo", "XN47jua8VDWu8OvuJo", "p9rkOR4SNDWu8OvuJo", "dnyLHqtLADWu8OvuJo", "idDWu8OvuJo", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwelu7j", "overlay", "paginationInfo", "args", "icbwHd2ufwelu7j", "NwgwpXJHVwelu7j", "ref1", "pe", "router", "useRouter", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "isDisplayed2", "elementId2", "ref4", "elementId3", "ref5", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "RichText2", "x", "l", "AnimatePresence", "Ga", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "Link", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "overlay1", "resolvedLinks4", "resolvedLinks5", "ChildrenCanSuspend", "mI8MufXp4_default", "collection", "loadMore", "i", "PathVariablesContext", "resolvedLinks6", "resolvedLinks7", "overlay2", "css", "FramernrGtgU5Ek", "withCSS", "nrGtgU5Ek_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
