{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/Carousel-bt0d.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framer.com/m/SlideShow-07du.js", "ssg:https://framerusercontent.com/modules/MvMI8rlAwWI6W41vb7x5/p6kNl6EzOF1Bt2ct5h4G/CMSSlideshow.js", "ssg:https://framerusercontent.com/modules/ZWwVZaNY0bAcPai4E2vh/dRzgMNKyDlbcejp2ho0B/CMSCarousel.js", "ssg:https://framerusercontent.com/modules/qA6L1DcnApZtJh0hqIkI/Uf0F5eigHGskb8PWLC8k/DLtGxv24v.js", "ssg:https://framerusercontent.com/modules/kyLfB7SmdyyOqKSrogFZ/gmt1VpNfqVKMP3ozBJ6U/ugXRw4gru.js", "ssg:https://framerusercontent.com/modules/4LscmQsRmtI3PfHS10aC/mNgJjg9ZjuMiTCj2mOej/oIuCAExU3.js", "ssg:https://framerusercontent.com/modules/9ffJZPHYNVqaPIIf8E0c/7NberBS4SiaRNuSNLM1P/TC9uE0Pvt.js", "ssg:https://framerusercontent.com/modules/jPCxn7z5XOtJnSiY9yzq/slNzYMF4oybbO40BnGNM/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment=0)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,// @ts-ignore\ngetPropertyControls,// @ts-ignore\nuseQueryData,ControlType,RenderTarget}from\"framer\";import{cloneElement,Children}from\"react\";import{motion}from\"framer-motion\";import SlideShow from\"https://framer.com/m/SlideShow-07du.js\";const slideshowProps=getComponentProps(SlideShow);/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n */export default function CMSSlideshow(props){var _props_collectionList;const{startLayers,endLayers,...otherProps}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const items=isCanvas?[]:getCollectionListItems((_props_collectionList=props.collectionList)===null||_props_collectionList===void 0?void 0:_props_collectionList[0]);let layers=[];if(startLayers){layers=layers.concat(startLayers);}if(!isCanvas){for(let i=0;i<items.length;i++){const layer=/*#__PURE__*/cloneElement(items[i].props.children.props.children,{style:{width:\"100%\",height:\"100%\"}});layers.push(/*#__PURE__*/_jsx(motion.div,{style:{width:\"100%\",height:\"100%\"},children:layer}));}if(props.randomize){layers=shuffleArray(layers);}}else{for(let i=0;i<props.itemAmount;i++){layers.push(/*#__PURE__*/_jsx(CanvasPlaceholder,{title:\"Run project to view slideshow content\",subtitle:\"Collection List content is not accessible to the slideshow component in the editor. Run your project orvisit the live website to view the slideshow with CMS content.\"}));}}if(endLayers){layers=layers.concat(endLayers);}return /*#__PURE__*/_jsx(SlideShow,{...otherProps,slots:layers});}CMSSlideshow.displayName=\"CMS Slideshow\";addPropertyControls(CMSSlideshow,{collectionList:{type:ControlType.ComponentInstance},startLayers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance},title:\"Start\"},endLayers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance},title:\"End\"},randomize:{type:ControlType.Boolean,defaultValue:false,description:\"Shuffle order of CMS items\"},...slideshowProps,arrowOptions:{...slideshowProps.arrowOptions,controls:{...slideshowProps.arrowOptions.controls,arrowPadding:{...slideshowProps.arrowOptions.controls.arrowPadding,max:Infinity,min:Infinity}}}});function getComponentProps(component){const{slots,...otherProps}=getPropertyControls(component);return otherProps;}export function CanvasPlaceholder({title,subtitle}){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",borderRadius:6,border:\"1px dashed rgb(136, 85, 255)\",color:\"rgb(136, 85, 255)\",fontSize:12,padding:24},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{margin:0,opacity:.7,maxWidth:500,lineHeight:1.5,textAlign:\"center\"},children:subtitle})]});}function shuffleArray(array){for(let i=array.length-1;i>0;i--){const j=Math.floor(Math.random()*(i+1));[array[i],array[j]]=[array[j],array[i]];}return array;}export function getCollectionListItems(collectionList){var _collectionList_props,_collectionList_props_children_props,_collectionList_props_children,_collectionList_props1,_collectionList_props_children_props_children_props,_collectionList_props_children_props_children,_collectionList_props_children_props1,_collectionList_props_children1,_collectionList_props2;var _collectionList_props_query,_ref;const query=(_ref=(_collectionList_props_query=collectionList===null||collectionList===void 0?void 0:(_collectionList_props=collectionList.props)===null||_collectionList_props===void 0?void 0:_collectionList_props.query)!==null&&_collectionList_props_query!==void 0?_collectionList_props_query:collectionList===null||collectionList===void 0?void 0:(_collectionList_props1=collectionList.props)===null||_collectionList_props1===void 0?void 0:(_collectionList_props_children=_collectionList_props1.children)===null||_collectionList_props_children===void 0?void 0:(_collectionList_props_children_props=_collectionList_props_children.props)===null||_collectionList_props_children_props===void 0?void 0:_collectionList_props_children_props.query)!==null&&_ref!==void 0?_ref:collectionList===null||collectionList===void 0?void 0:(_collectionList_props2=collectionList.props)===null||_collectionList_props2===void 0?void 0:(_collectionList_props_children1=_collectionList_props2.children)===null||_collectionList_props_children1===void 0?void 0:(_collectionList_props_children_props1=_collectionList_props_children1.props)===null||_collectionList_props_children_props1===void 0?void 0:(_collectionList_props_children_props_children=_collectionList_props_children_props1.children)===null||_collectionList_props_children_props_children===void 0?void 0:(_collectionList_props_children_props_children_props=_collectionList_props_children_props_children.props)===null||_collectionList_props_children_props_children_props===void 0?void 0:_collectionList_props_children_props_children_props.query;if(query){var _collectionList_props3,_clpc_props,_clpc_props_children_props,_clpc_props_children,_clpc_props1;let childrenFunction=null;const clpc=(_collectionList_props3=collectionList.props)===null||_collectionList_props3===void 0?void 0:_collectionList_props3.children;if(typeof clpc==\"function\"){childrenFunction=clpc;}else if(typeof(clpc===null||clpc===void 0?void 0:(_clpc_props=clpc.props)===null||_clpc_props===void 0?void 0:_clpc_props.children)==\"function\"){childrenFunction=clpc.props.children;}else if(typeof(clpc===null||clpc===void 0?void 0:(_clpc_props1=clpc.props)===null||_clpc_props1===void 0?void 0:(_clpc_props_children=_clpc_props1.children)===null||_clpc_props_children===void 0?void 0:(_clpc_props_children_props=_clpc_props_children.props)===null||_clpc_props_children_props===void 0?void 0:_clpc_props_children_props.children)==\"function\"){childrenFunction=clpc.props.children.props.children;}const data=useQueryData(query);let children=[];if(childrenFunction){var _clChildren_props_children,_clChildren_props,_clChildren_props1;let clChildren=childrenFunction(data);if(Array.isArray(clChildren)){children=clChildren;}else if(Array.isArray(clChildren===null||clChildren===void 0?void 0:(_clChildren_props=clChildren.props)===null||_clChildren_props===void 0?void 0:(_clChildren_props_children=_clChildren_props.children)===null||_clChildren_props_children===void 0?void 0:_clChildren_props_children[0])){children=clChildren.props.children[0];}else if(Array.isArray(clChildren===null||clChildren===void 0?void 0:(_clChildren_props1=clChildren.props)===null||_clChildren_props1===void 0?void 0:_clChildren_props1.children)){children=clChildren.props.children;}}if(children){return Children.toArray(children);}}return[];}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CMSSlideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\"}},\"getCollectionListItems\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CanvasPlaceholder\":{\"type\":\"reactComponent\",\"name\":\"CanvasPlaceholder\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CMSSlideshow.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,// @ts-ignore\ngetPropertyControls,ControlType,RenderTarget}from\"framer\";import Carousel from\"https://framer.com/m/Carousel-bt0d.js\";import{CanvasPlaceholder,getCollectionListItems}from\"https://framerusercontent.com/modules/MvMI8rlAwWI6W41vb7x5/p6kNl6EzOF1Bt2ct5h4G/CMSSlideshow.js\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n */export default function CMSCarousel(props){var _props_collectionList;const{startLayers,endLayers,...otherProps}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const items=isCanvas?[]:getCollectionListItems((_props_collectionList=props.collectionList)===null||_props_collectionList===void 0?void 0:_props_collectionList[0]);let layers=[];if(startLayers){layers=layers.concat(startLayers);}if(!isCanvas){for(let i=0;i<items.length;i++){layers.push(items[i].props.children.props.children);}}else{let count=1;if(props.axis){// Horizontal\nif(props.sizingObject.widthType==\"columns\"){count=props.sizingObject.widthColumns;}}else{// Vertical\nif(props.sizingObject.heightType==\"columns\"){count=props.sizingObject.heightColumns;}}for(let i=0;i<count;i++){layers.push(/*#__PURE__*/_jsx(CanvasPlaceholder,{title:\"Run project to view carousel content\",subtitle:\"Collection List content is not accessible to the carousel component in the editor. Run your project or visit the live website to view the carousel with CMS content.\"}));}}if(endLayers){layers=layers.concat(endLayers);}return /*#__PURE__*/_jsx(Carousel,{...otherProps,slots:layers});}CMSCarousel.displayName=\"CMS Carousel\";addPropertyControls(CMSCarousel,{collectionList:{type:ControlType.ComponentInstance},startLayers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance},title:\"Start\"},endLayers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance},title:\"End\"},...getComponentProps(Carousel)});function getComponentProps(component){const{slots,...otherProps}=getPropertyControls(component);return otherProps;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CMSCarousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"f1Abcu3R4\",\"oMQpSsM5K\",\"TRd9YtpNf\",\"zoSi39s09\",\"Ucj7AAViA\",\"A8AIXvMdY\",\"AZgWzGHYY\"];const serializationHash=\"framer-PqYLo\";const variantClassNames={A8AIXvMdY:\"framer-v-e1ooig\",AZgWzGHYY:\"framer-v-1ucap6q\",f1Abcu3R4:\"framer-v-1pw27d2\",oMQpSsM5K:\"framer-v-1r3rfai\",TRd9YtpNf:\"framer-v-1m9cmqu\",Ucj7AAViA:\"framer-v-ps9m70\",zoSi39s09:\"framer-v-19ptkbu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.25,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"f1Abcu3R4\",\"Variant 2\":\"oMQpSsM5K\",\"Variant 3\":\"TRd9YtpNf\",\"Variant 4\":\"zoSi39s09\",\"Variant 5\":\"Ucj7AAViA\",\"Variant 6\":\"A8AIXvMdY\",\"Variant 7\":\"AZgWzGHYY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"f1Abcu3R4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"f1Abcu3R4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearsxet3o=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),250);});useOnVariantChange(baseVariant,{default:onAppearsxet3o});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pw27d2\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"f1Abcu3R4\",ref:refBinding,style:{backgroundColor:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},...addPropertyOverrides({A8AIXvMdY:{\"data-framer-name\":\"Variant 6\"},AZgWzGHYY:{\"data-framer-name\":\"Variant 7\"},oMQpSsM5K:{\"data-framer-name\":\"Variant 2\"},TRd9YtpNf:{\"data-framer-name\":\"Variant 3\"},Ucj7AAViA:{\"data-framer-name\":\"Variant 5\"},zoSi39s09:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ea5jfw\",layoutDependency:layoutDependency,layoutId:\"TDhjM72s1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cdrgms\",layoutDependency:layoutDependency,layoutId:\"jcUUwRVmY\",style:{backgroundColor:\"var(--token-e1e0d393-4ead-4113-8847-b9e6f79c9cba, rgb(19, 20, 21))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10tdo0u\",layoutDependency:layoutDependency,layoutId:\"X9KOvrIJu\",style:{backgroundColor:\"var(--token-e1e0d393-4ead-4113-8847-b9e6f79c9cba, rgb(19, 20, 21))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7xelko\",layoutDependency:layoutDependency,layoutId:\"xVaIqpFAd\",style:{backgroundColor:\"var(--token-e1e0d393-4ead-4113-8847-b9e6f79c9cba, rgb(19, 20, 21))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vkpveu\",layoutDependency:layoutDependency,layoutId:\"cU1Wy22Ec\",style:{backgroundColor:\"var(--token-e1e0d393-4ead-4113-8847-b9e6f79c9cba, rgb(19, 20, 21))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PqYLo.framer-1vl7hh4, .framer-PqYLo .framer-1vl7hh4 { display: block; }\",\".framer-PqYLo.framer-1pw27d2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 28px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PqYLo .framer-ea5jfw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PqYLo .framer-1cdrgms { flex: none; height: 11px; overflow: hidden; position: relative; width: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PqYLo .framer-10tdo0u { flex: none; height: 5px; overflow: hidden; position: relative; width: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PqYLo .framer-7xelko { flex: none; height: 9px; overflow: hidden; position: relative; width: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PqYLo .framer-vkpveu { flex: none; height: 7px; overflow: hidden; position: relative; width: 2px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqYLo.framer-1pw27d2, .framer-PqYLo .framer-ea5jfw { gap: 0px; } .framer-PqYLo.framer-1pw27d2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PqYLo.framer-1pw27d2 > :first-child { margin-top: 0px; } .framer-PqYLo.framer-1pw27d2 > :last-child { margin-bottom: 0px; } .framer-PqYLo .framer-ea5jfw > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } .framer-PqYLo .framer-ea5jfw > :first-child { margin-left: 0px; } .framer-PqYLo .framer-ea5jfw > :last-child { margin-right: 0px; } }\",\".framer-PqYLo.framer-v-1r3rfai.framer-1pw27d2, .framer-PqYLo.framer-v-1m9cmqu.framer-1pw27d2, .framer-PqYLo.framer-v-19ptkbu.framer-1pw27d2, .framer-PqYLo.framer-v-ps9m70.framer-1pw27d2, .framer-PqYLo.framer-v-e1ooig.framer-1pw27d2, .framer-PqYLo.framer-v-1ucap6q.framer-1pw27d2 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 28px); }\",\".framer-PqYLo.framer-v-1r3rfai .framer-1cdrgms, .framer-PqYLo.framer-v-1r3rfai .framer-vkpveu, .framer-PqYLo.framer-v-1m9cmqu .framer-10tdo0u, .framer-PqYLo.framer-v-19ptkbu .framer-7xelko, .framer-PqYLo.framer-v-ps9m70 .framer-1cdrgms, .framer-PqYLo.framer-v-e1ooig .framer-vkpveu, .framer-PqYLo.framer-v-1ucap6q .framer-1cdrgms, .framer-PqYLo.framer-v-1ucap6q .framer-vkpveu { height: 3px; }\",\".framer-PqYLo.framer-v-1r3rfai .framer-10tdo0u, .framer-PqYLo.framer-v-19ptkbu .framer-10tdo0u, .framer-PqYLo.framer-v-e1ooig .framer-7xelko { height: 7px; }\",\".framer-PqYLo.framer-v-1r3rfai .framer-7xelko, .framer-PqYLo.framer-v-19ptkbu .framer-vkpveu { height: 11px; }\",\".framer-PqYLo.framer-v-1m9cmqu .framer-7xelko, .framer-PqYLo.framer-v-19ptkbu .framer-1cdrgms, .framer-PqYLo.framer-v-ps9m70 .framer-vkpveu { height: 5px; }\",\".framer-PqYLo.framer-v-1m9cmqu .framer-vkpveu { height: 9px; }\",\".framer-PqYLo.framer-v-1ucap6q .framer-7xelko { height: 13px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 28\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"oMQpSsM5K\":{\"layout\":[\"fixed\",\"fixed\"]},\"TRd9YtpNf\":{\"layout\":[\"fixed\",\"fixed\"]},\"zoSi39s09\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ucj7AAViA\":{\"layout\":[\"fixed\",\"fixed\"]},\"A8AIXvMdY\":{\"layout\":[\"fixed\",\"fixed\"]},\"AZgWzGHYY\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDLtGxv24v=withCSS(Component,css,\"framer-PqYLo\");export default FramerDLtGxv24v;FramerDLtGxv24v.displayName=\"Audio\";FramerDLtGxv24v.defaultProps={height:28,width:28};addPropertyControls(FramerDLtGxv24v,{variant:{options:[\"f1Abcu3R4\",\"oMQpSsM5K\",\"TRd9YtpNf\",\"zoSi39s09\",\"Ucj7AAViA\",\"A8AIXvMdY\",\"AZgWzGHYY\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDLtGxv24v,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDLtGxv24v\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"28\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oMQpSsM5K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TRd9YtpNf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zoSi39s09\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ucj7AAViA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A8AIXvMdY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AZgWzGHYY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"28\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DLtGxv24v.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Wbd4nZxGdEtZhJGvmZvq/RVWwYJRCMmVlfmbWjpzX/Vu88ujhld.js\";const enabledGestures={GwXnFBt1f:{hover:true}};const cycleOrder=[\"GwXnFBt1f\",\"r6FhYtyKG\"];const serializationHash=\"framer-nJs0L\";const variantClassNames={GwXnFBt1f:\"framer-v-c0ouf7\",r6FhYtyKG:\"framer-v-usya3k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Aktiv:\"r6FhYtyKG\",Inaktiv:\"GwXnFBt1f\"};const getProps=({height,id,tap2,title,width,...props})=>{return{...props,oIHqgNmo0:tap2??props.oIHqgNmo0,otvk4k0qT:title??props.otvk4k0qT??\"Filtername\",variant:humanReadableVariantMap[props.variant]??props.variant??\"GwXnFBt1f\"};};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,otvk4k0qT,oIHqgNmo0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GwXnFBt1f\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1lutmau=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(oIHqgNmo0){const res=await oIHqgNmo0(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"r6FhYtyKG\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-c0ouf7\",className,classNames),\"data-framer-name\":\"Inaktiv\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GwXnFBt1f\",onTap:onTap1lutmau,ref:ref??ref1,style:{background:\"linear-gradient(212deg, var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255)) 0%, var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255)) 25%, var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255)) 50%, var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255)) 75%, var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255)) 100%)\",backgroundColor:\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\",borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28,...style},variants:{r6FhYtyKG:{background:'linear-gradient(212deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, rgb(7, 86, 129)) /* {\"name\":\"Akzent 1\"} */ -35%, rgb(28, 133, 189) 26%, rgb(69, 185, 247) 56.75675675675676%, rgb(33, 148, 209) 77.47747747747748%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) /* {\"name\":\"Akzent 2\"} */ 131%)',backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"GwXnFBt1f-hover\":{\"data-framer-name\":undefined},r6FhYtyKG:{\"data-framer-name\":\"Aktiv\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zpf3bh\",layoutDependency:layoutDependency,layoutId:\"ecyJEhQoQ\",style:{backgroundColor:\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\",borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-x4le00\",\"data-styles-preset\":\"Vu88ujhld\",children:\"Filtername\"})}),className:\"framer-1widkp4\",\"data-framer-name\":\"Organisations\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MQSeZVq7r\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:otvk4k0qT,variants:{\"GwXnFBt1f-hover\":{\"--extracted-1eung3n\":\"var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212))\"},r6FhYtyKG:{\"--extracted-1eung3n\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"GwXnFBt1f-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-x4le00\",\"data-styles-preset\":\"Vu88ujhld\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(36deg, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) -13%, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, rgb(7, 86, 129)) 122%)\"},children:\"Filtername\"})})})},r6FhYtyKG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-x4le00\",\"data-styles-preset\":\"Vu88ujhld\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255)))\"},children:\"Filtername\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nJs0L.framer-1nxfnac, .framer-nJs0L .framer-1nxfnac { display: block; }\",\".framer-nJs0L.framer-c0ouf7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 6px 14px 6px 14px; position: relative; width: min-content; }\",\".framer-nJs0L .framer-zpf3bh { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 4px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 4px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-nJs0L .framer-1widkp4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nJs0L.framer-c0ouf7, .framer-nJs0L .framer-zpf3bh { gap: 0px; } .framer-nJs0L.framer-c0ouf7 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-nJs0L.framer-c0ouf7 > :first-child { margin-left: 0px; } .framer-nJs0L.framer-c0ouf7 > :last-child { margin-right: 0px; } .framer-nJs0L .framer-zpf3bh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-nJs0L .framer-zpf3bh > :first-child { margin-top: 0px; } .framer-nJs0L .framer-zpf3bh > :last-child { margin-bottom: 0px; } }\",\".framer-nJs0L.framer-v-usya3k.framer-c0ouf7 { gap: 6px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nJs0L.framer-v-usya3k.framer-c0ouf7 { gap: 0px; } .framer-nJs0L.framer-v-usya3k.framer-c0ouf7 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-nJs0L.framer-v-usya3k.framer-c0ouf7 > :first-child { margin-left: 0px; } .framer-nJs0L.framer-v-usya3k.framer-c0ouf7 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 124\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"r6FhYtyKG\":{\"layout\":[\"auto\",\"auto\"]},\"jK8GAHHJe\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"otvk4k0qT\":\"title\",\"oIHqgNmo0\":\"tap2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerugXRw4gru=withCSS(Component,css,\"framer-nJs0L\");export default FramerugXRw4gru;FramerugXRw4gru.displayName=\"Filter Kategorie Button\";FramerugXRw4gru.defaultProps={height:40,width:124};addPropertyControls(FramerugXRw4gru,{variant:{options:[\"GwXnFBt1f\",\"r6FhYtyKG\"],optionTitles:[\"Inaktiv\",\"Aktiv\"],title:\"Variant\",type:ControlType.Enum},otvk4k0qT:{defaultValue:\"Filtername\",displayTextArea:false,title:\"Title\",type:ControlType.String},oIHqgNmo0:{title:\"Tap 2\",type:ControlType.EventHandler}});addFonts(FramerugXRw4gru,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerugXRw4gru\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"otvk4k0qT\\\":\\\"title\\\",\\\"oIHqgNmo0\\\":\\\"tap2\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"124\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"r6FhYtyKG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jK8GAHHJe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0cf16c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/fr1uB1qXYpY4GYixzv0i/kzEqKinWHv6tVkI9bffe/GgCnrROor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zTWVARTVlSuDPWAWKndm/Lyt6Aeleo8SaXnEYTgSg/PWPzBAU88.js\";import ButtonPrimR from\"https://framerusercontent.com/modules/nB1BX3CDZTQjkxWZzH9C/VoUCVnQIFgWXATDNKPqy/ehpm05f_6.js\";import FilterKategorieButton from\"https://framerusercontent.com/modules/kyLfB7SmdyyOqKSrogFZ/gmt1VpNfqVKMP3ozBJ6U/ugXRw4gru.js\";const FilterKategorieButtonFonts=getFonts(FilterKategorieButton);const ButtonPrimRFonts=getFonts(ButtonPrimR);const cycleOrder=[\"CX4u_NaU2\",\"QiLkafiQt\",\"HuIY1jNiR\",\"OR2iB1Hob\",\"hUBzBSlhy\",\"msOwcFItO\",\"OL1dn3bsJ\",\"e5e5vGzVL\"];const serializationHash=\"framer-hmhKG\";const variantClassNames={CX4u_NaU2:\"framer-v-ssp61f\",e5e5vGzVL:\"framer-v-1aluh5n\",hUBzBSlhy:\"framer-v-1ougbs0\",HuIY1jNiR:\"framer-v-1mmx5fx\",msOwcFItO:\"framer-v-1vc6rbj\",OL1dn3bsJ:\"framer-v-1bh439b\",OR2iB1Hob:\"framer-v-krhuat\",QiLkafiQt:\"framer-v-n2grfw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"\\xc4rzte\":\"OR2iB1Hob\",\"Mobil Anf\\xe4nger\":\"hUBzBSlhy\",\"Mobil \\xc4rzte\":\"e5e5vGzVL\",\"Mobil Fortgeschrittene\":\"msOwcFItO\",\"Mobil Profis\":\"OL1dn3bsJ\",Beginner:\"CX4u_NaU2\",Fortgeschrittene:\"QiLkafiQt\",Profis:\"HuIY1jNiR\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"CX4u_NaU2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CX4u_NaU2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const oIHqgNmo01hm7y6=activeVariantCallback(async(...args)=>{setVariant(\"CX4u_NaU2\");});const oIHqgNmo0xsylzl=activeVariantCallback(async(...args)=>{setVariant(\"hUBzBSlhy\");});const oIHqgNmo01mlqhir=activeVariantCallback(async(...args)=>{setVariant(\"QiLkafiQt\");});const oIHqgNmo0p2onvk=activeVariantCallback(async(...args)=>{setVariant(\"msOwcFItO\");});const oIHqgNmo0wm7yan=activeVariantCallback(async(...args)=>{setVariant(\"HuIY1jNiR\");});const oIHqgNmo01ary0vk=activeVariantCallback(async(...args)=>{setVariant(\"OL1dn3bsJ\");});const oIHqgNmo07r1dcw=activeVariantCallback(async(...args)=>{setVariant(\"OR2iB1Hob\");});const oIHqgNmo0jkhiaj=activeVariantCallback(async(...args)=>{setVariant(\"e5e5vGzVL\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ssp61f\",className,classNames),\"data-framer-name\":\"Beginner\",layoutDependency:layoutDependency,layoutId:\"CX4u_NaU2\",ref:refBinding,style:{...style},...addPropertyOverrides({e5e5vGzVL:{\"data-framer-name\":\"Mobil \\xc4rzte\"},hUBzBSlhy:{\"data-framer-name\":\"Mobil Anf\\xe4nger\"},HuIY1jNiR:{\"data-framer-name\":\"Profis\"},msOwcFItO:{\"data-framer-name\":\"Mobil Fortgeschrittene\"},OL1dn3bsJ:{\"data-framer-name\":\"Mobil Profis\"},OR2iB1Hob:{\"data-framer-name\":\"\\xc4rzte\"},QiLkafiQt:{\"data-framer-name\":\"Fortgeschrittene\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1egam7o\",layoutDependency:layoutDependency,layoutId:\"wK2yZQmOb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16kzsrb\",layoutDependency:layoutDependency,layoutId:\"AEwZzKlXw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1qjf7qi\",\"data-styles-preset\":\"GgCnrROor\",children:\"Wir haben den passenden Beautylaser f\\xfcr Alle\"})}),className:\"framer-7y8glc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aiQrvH7lK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16jvhok\",layoutDependency:layoutDependency,layoutId:\"C0QOlIKpu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-521.8)/2+0+0)+0+40+72.8+0,...addPropertyOverrides({e5e5vGzVL:{y:undefined},hUBzBSlhy:{y:undefined},HuIY1jNiR:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0+40+72.8+0},msOwcFItO:{y:undefined},OL1dn3bsJ:{y:undefined},OR2iB1Hob:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0+40+72.8+0},QiLkafiQt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||485.5)-0-521.8)/2+0+0)+0+40+72.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-660s08-container\",layoutDependency:layoutDependency,layoutId:\"jRb9zWE7J-container\",nodeId:\"jRb9zWE7J\",rendersWithMotion:true,scopeId:\"oIuCAExU3\",children:/*#__PURE__*/_jsx(FilterKategorieButton,{height:\"100%\",id:\"jRb9zWE7J\",layoutId:\"jRb9zWE7J\",oIHqgNmo0:oIHqgNmo01hm7y6,otvk4k0qT:\"Beginner\",variant:\"r6FhYtyKG\",width:\"100%\",...addPropertyOverrides({e5e5vGzVL:{oIHqgNmo0:oIHqgNmo0xsylzl,variant:\"GwXnFBt1f\"},hUBzBSlhy:{oIHqgNmo0:oIHqgNmo0xsylzl},HuIY1jNiR:{variant:\"GwXnFBt1f\"},msOwcFItO:{oIHqgNmo0:oIHqgNmo0xsylzl,variant:\"GwXnFBt1f\"},OL1dn3bsJ:{oIHqgNmo0:oIHqgNmo0xsylzl,variant:\"GwXnFBt1f\"},OR2iB1Hob:{variant:\"GwXnFBt1f\"},QiLkafiQt:{variant:\"GwXnFBt1f\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-521.8)/2+0+0)+0+40+72.8+0,...addPropertyOverrides({e5e5vGzVL:{y:undefined},hUBzBSlhy:{y:undefined},HuIY1jNiR:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0+40+72.8+0},msOwcFItO:{y:undefined},OL1dn3bsJ:{y:undefined},OR2iB1Hob:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0+40+72.8+0},QiLkafiQt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||485.5)-0-521.8)/2+0+0)+0+40+72.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sz2d15-container\",layoutDependency:layoutDependency,layoutId:\"Pp3B6YU8W-container\",nodeId:\"Pp3B6YU8W\",rendersWithMotion:true,scopeId:\"oIuCAExU3\",children:/*#__PURE__*/_jsx(FilterKategorieButton,{height:\"100%\",id:\"Pp3B6YU8W\",layoutId:\"Pp3B6YU8W\",oIHqgNmo0:oIHqgNmo01mlqhir,otvk4k0qT:\"Fortgeschrittene\",variant:\"GwXnFBt1f\",width:\"100%\",...addPropertyOverrides({e5e5vGzVL:{oIHqgNmo0:oIHqgNmo0p2onvk},hUBzBSlhy:{oIHqgNmo0:oIHqgNmo0p2onvk},msOwcFItO:{oIHqgNmo0:oIHqgNmo0p2onvk,variant:\"r6FhYtyKG\"},OL1dn3bsJ:{oIHqgNmo0:oIHqgNmo0p2onvk},QiLkafiQt:{variant:\"r6FhYtyKG\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-521.8)/2+0+0)+0+40+72.8+0,...addPropertyOverrides({e5e5vGzVL:{y:undefined},hUBzBSlhy:{y:undefined},HuIY1jNiR:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0+40+72.8+0},msOwcFItO:{y:undefined},OL1dn3bsJ:{y:undefined},OR2iB1Hob:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0+40+72.8+0},QiLkafiQt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||485.5)-0-521.8)/2+0+0)+0+40+72.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q09u8y-container\",layoutDependency:layoutDependency,layoutId:\"keMIuc53p-container\",nodeId:\"keMIuc53p\",rendersWithMotion:true,scopeId:\"oIuCAExU3\",children:/*#__PURE__*/_jsx(FilterKategorieButton,{height:\"100%\",id:\"keMIuc53p\",layoutId:\"keMIuc53p\",oIHqgNmo0:oIHqgNmo0wm7yan,otvk4k0qT:\"Profis\",variant:\"GwXnFBt1f\",width:\"100%\",...addPropertyOverrides({e5e5vGzVL:{oIHqgNmo0:oIHqgNmo01ary0vk},hUBzBSlhy:{oIHqgNmo0:oIHqgNmo01ary0vk},HuIY1jNiR:{variant:\"r6FhYtyKG\"},msOwcFItO:{oIHqgNmo0:oIHqgNmo01ary0vk},OL1dn3bsJ:{oIHqgNmo0:oIHqgNmo01ary0vk,variant:\"r6FhYtyKG\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-521.8)/2+0+0)+0+40+72.8+0,...addPropertyOverrides({e5e5vGzVL:{y:undefined},hUBzBSlhy:{y:undefined},HuIY1jNiR:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0+40+72.8+0},msOwcFItO:{y:undefined},OL1dn3bsJ:{y:undefined},OR2iB1Hob:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0+40+72.8+0},QiLkafiQt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||485.5)-0-521.8)/2+0+0)+0+40+72.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a7nk2e-container\",layoutDependency:layoutDependency,layoutId:\"jwTkbtroZ-container\",nodeId:\"jwTkbtroZ\",rendersWithMotion:true,scopeId:\"oIuCAExU3\",children:/*#__PURE__*/_jsx(FilterKategorieButton,{height:\"100%\",id:\"jwTkbtroZ\",layoutId:\"jwTkbtroZ\",oIHqgNmo0:oIHqgNmo07r1dcw,otvk4k0qT:\"\\xc4rzte\",variant:\"GwXnFBt1f\",width:\"100%\",...addPropertyOverrides({e5e5vGzVL:{oIHqgNmo0:oIHqgNmo0jkhiaj,variant:\"r6FhYtyKG\"},hUBzBSlhy:{oIHqgNmo0:oIHqgNmo0jkhiaj},msOwcFItO:{oIHqgNmo0:oIHqgNmo0jkhiaj},OL1dn3bsJ:{oIHqgNmo0:oIHqgNmo0jkhiaj},OR2iB1Hob:{variant:\"r6FhYtyKG\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Du m\\xf6chtest dein eigenes Studio er\\xf6ffnen und suchst nach einer L\\xf6sung, die dir den Einstieg leicht macht? Die Ger\\xe4te von Alix Lasers\\xae bieten dir genau das: Mit einem vollautomatischen AI-Scanner, der alle Einstellungen f\\xfcr dich \\xfcbernimmt. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Das Ger\\xe4t scannt die Haut deines Kunden und stellt alle Behandlungsparameter perfekt ein, sodass du sofort starten kannst \u2013 ganz ohne technisches Vorwissen. Gib deinen Kunden das Gef\\xfchl professioneller Behandlung, w\\xe4hrend du dich voll und ganz auf den Service konzentrieren kannst.\"})]}),className:\"framer-w0s0zn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Re2t8KzZT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({e5e5vGzVL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Bist du als Mediziner auf der Suche nach einem Ger\\xe4t, das h\\xf6chste Anspr\\xfcche erf\\xfcllt? Die medizinischen Ger\\xe4te von Alix Lasers\\xae kombinieren bew\\xe4hrte Alexandrit- und Picolaser-Technologie mit einem KI-unterst\\xfctzten Scanner, der in Echtzeit die besten Parameter f\\xfcr deine Patienten einstellt. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Gleichzeitig hast du die M\\xf6glichkeit, alle Einstellungen manuell vorzunehmen, um auch bei komplexen Behandlungen die volle Kontrolle zu behalten. So bietest du deinen Patienten die sicherste und pr\\xe4ziseste Behandlung, auf die sie vertrauen k\\xf6nnen.\"})]})},HuIY1jNiR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Du bist Profi und willst die volle Kontrolle \\xfcber jede Behandlung? Die High-End-Ger\\xe4te von Alix Lasers\\xae bieten dir nicht nur eine leistungsstarke KI-Unterst\\xfctzung, die alle Einstellungen f\\xfcr dich \\xfcbernehmen kann, sondern auch die Freiheit, jeden Parameter manuell einzustellen. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"So kannst du jede Behandlung genau an die Bed\\xfcrfnisse deiner Kunden anpassen und ihnen ein einzigartiges Erlebnis bieten. Mit diesen Ger\\xe4ten hast du die Power, deinen Service auf ein neues Level zu heben \u2013 f\\xfcr Ergebnisse, die \\xfcberzeugen und Kunden, die wiederkommen.\"})]})},msOwcFItO:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Du hast bereits Erfahrung in der Beauty-Branche und willst deinen Kunden mehr bieten? Die Ger\\xe4te von Alix Lasers\\xae f\\xfcr Fortgeschrittene bieten dir maximale Flexibilit\\xe4t: \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Du kannst die KI-Technologie nutzen, um die optimalen Einstellungen automatisch vornehmen zu lassen \u2013 oder du stellst alle Parameter manuell ein, wenn du das bevorzugst. Diese Kombination aus Komfort und Kontrolle gibt dir die M\\xf6glichkeit, f\\xfcr jeden Kunden das perfekte, individuelle Ergebnis zu liefern.\"})]})},OL1dn3bsJ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Du bist Profi und willst die volle Kontrolle \\xfcber jede Behandlung? Die High-End-Ger\\xe4te von Alix Lasers\\xae bieten dir nicht nur eine leistungsstarke KI-Unterst\\xfctzung, die alle Einstellungen f\\xfcr dich \\xfcbernehmen kann, sondern auch die Freiheit, jeden Parameter manuell einzustellen. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"So kannst du jede Behandlung genau an die Bed\\xfcrfnisse deiner Kunden anpassen und ihnen ein einzigartiges Erlebnis bieten. Mit diesen Ger\\xe4ten hast du die Power, deinen Service auf ein neues Level zu heben \u2013 f\\xfcr Ergebnisse, die \\xfcberzeugen und Kunden, die wiederkommen.\"})]})},OR2iB1Hob:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Bist du als Mediziner auf der Suche nach einem Ger\\xe4t, das h\\xf6chste Anspr\\xfcche erf\\xfcllt? Die medizinischen Ger\\xe4te von Alix Lasers\\xae kombinieren bew\\xe4hrte Alexandrit- und Picolaser-Technologie mit einem KI-unterst\\xfctzten Scanner, der in Echtzeit die besten Parameter f\\xfcr deine Patienten einstellt. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Gleichzeitig hast du die M\\xf6glichkeit, alle Einstellungen manuell vorzunehmen, um auch bei komplexen Behandlungen die volle Kontrolle zu behalten. So bietest du deinen Patienten die sicherste und pr\\xe4ziseste Behandlung, auf die sie vertrauen k\\xf6nnen.\"})]})},QiLkafiQt:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Du hast bereits Erfahrung in der Beauty-Branche und willst deinen Kunden mehr bieten? Die Ger\\xe4te von Alix Lasers\\xae f\\xfcr Fortgeschrittene bieten dir maximale Flexibilit\\xe4t: \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Du kannst die KI-Technologie nutzen, um die optimalen Einstellungen automatisch vornehmen zu lassen \u2013 oder du stellst alle Parameter manuell ein, wenn du das bevorzugst. Diese Kombination aus Komfort und Kontrolle gibt dir die M\\xf6glichkeit, f\\xfcr jeden Kunden das perfekte, individuelle Ergebnis zu liefern.\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-521.8)/2+0+0)+0+40+396.8,...addPropertyOverrides({e5e5vGzVL:{y:undefined},hUBzBSlhy:{y:undefined},HuIY1jNiR:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0+40+396.8},msOwcFItO:{y:undefined},OL1dn3bsJ:{y:undefined},OR2iB1Hob:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0+40+396.8},QiLkafiQt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||485.5)-0-521.8)/2+0+0)+0+40+396.8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uad0rw-container\",layoutDependency:layoutDependency,layoutId:\"tUyiiyL7Z-container\",nodeId:\"tUyiiyL7Z\",rendersWithMotion:true,scopeId:\"oIuCAExU3\",children:/*#__PURE__*/_jsx(ButtonPrimR,{EmkkJfUBs:\"Meine Online Beratung buchen\",height:\"100%\",id:\"tUyiiyL7Z\",layoutId:\"tUyiiyL7Z\",LQrji5Jss:\"https://zfrmz.eu/2N9Pr0EwtAOwTwF70yud\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-521.8)/2+0+0)+0),pixelHeight:900,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4)`,src:\"https://framerusercontent.com/images/qtZFdvMooowkILj423IeBmugb4A.jpeg\",srcSet:\"https://framerusercontent.com/images/qtZFdvMooowkILj423IeBmugb4A.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/qtZFdvMooowkILj423IeBmugb4A.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qtZFdvMooowkILj423IeBmugb4A.jpeg 1600w\"},className:\"framer-g63zkv\",layoutDependency:layoutDependency,layoutId:\"Es_ikygMl\",style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},...addPropertyOverrides({e5e5vGzVL:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/lhH3TaQHYb7ZFtWZSjygwnHliw.jpeg\",srcSet:\"https://framerusercontent.com/images/lhH3TaQHYb7ZFtWZSjygwnHliw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/lhH3TaQHYb7ZFtWZSjygwnHliw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lhH3TaQHYb7ZFtWZSjygwnHliw.jpeg 1600w\"}},hUBzBSlhy:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qtZFdvMooowkILj423IeBmugb4A.jpeg\",srcSet:\"https://framerusercontent.com/images/qtZFdvMooowkILj423IeBmugb4A.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/qtZFdvMooowkILj423IeBmugb4A.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qtZFdvMooowkILj423IeBmugb4A.jpeg 1600w\"}},HuIY1jNiR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0),pixelHeight:900,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4)`,src:\"https://framerusercontent.com/images/n5rFEemSkvJsp8UZBOxqljGTBs.jpeg\",srcSet:\"https://framerusercontent.com/images/n5rFEemSkvJsp8UZBOxqljGTBs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/n5rFEemSkvJsp8UZBOxqljGTBs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n5rFEemSkvJsp8UZBOxqljGTBs.jpeg 1600w\"}},msOwcFItO:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yFxHR6WY5lqhUQVvp4SWYQvPzo.jpeg\",srcSet:\"https://framerusercontent.com/images/yFxHR6WY5lqhUQVvp4SWYQvPzo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/yFxHR6WY5lqhUQVvp4SWYQvPzo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFxHR6WY5lqhUQVvp4SWYQvPzo.jpeg 1600w\"}},OL1dn3bsJ:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/n5rFEemSkvJsp8UZBOxqljGTBs.jpeg\",srcSet:\"https://framerusercontent.com/images/n5rFEemSkvJsp8UZBOxqljGTBs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/n5rFEemSkvJsp8UZBOxqljGTBs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n5rFEemSkvJsp8UZBOxqljGTBs.jpeg 1600w\"}},OR2iB1Hob:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-521.8)/2+0+0)+0),pixelHeight:900,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4)`,src:\"https://framerusercontent.com/images/lhH3TaQHYb7ZFtWZSjygwnHliw.jpeg\",srcSet:\"https://framerusercontent.com/images/lhH3TaQHYb7ZFtWZSjygwnHliw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/lhH3TaQHYb7ZFtWZSjygwnHliw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lhH3TaQHYb7ZFtWZSjygwnHliw.jpeg 1600w\"}},QiLkafiQt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||485.5)-0-521.8)/2+0+0)+0),pixelHeight:900,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4)`,src:\"https://framerusercontent.com/images/yFxHR6WY5lqhUQVvp4SWYQvPzo.jpeg\",srcSet:\"https://framerusercontent.com/images/yFxHR6WY5lqhUQVvp4SWYQvPzo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/yFxHR6WY5lqhUQVvp4SWYQvPzo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFxHR6WY5lqhUQVvp4SWYQvPzo.jpeg 1600w\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hmhKG.framer-1cashnf, .framer-hmhKG .framer-1cashnf { display: block; }\",\".framer-hmhKG.framer-ssp61f { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-hmhKG .framer-1egam7o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hmhKG .framer-16kzsrb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-hmhKG .framer-7y8glc, .framer-hmhKG .framer-w0s0zn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hmhKG .framer-16jvhok { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hmhKG .framer-660s08-container, .framer-hmhKG .framer-sz2d15-container, .framer-hmhKG .framer-q09u8y-container, .framer-hmhKG .framer-1a7nk2e-container, .framer-hmhKG .framer-uad0rw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hmhKG .framer-g63zkv { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hmhKG.framer-ssp61f, .framer-hmhKG .framer-1egam7o, .framer-hmhKG .framer-16kzsrb, .framer-hmhKG .framer-16jvhok, .framer-hmhKG .framer-g63zkv { gap: 0px; } .framer-hmhKG.framer-ssp61f > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-hmhKG.framer-ssp61f > :first-child, .framer-hmhKG .framer-16kzsrb > :first-child, .framer-hmhKG .framer-g63zkv > :first-child { margin-top: 0px; } .framer-hmhKG.framer-ssp61f > :last-child, .framer-hmhKG .framer-16kzsrb > :last-child, .framer-hmhKG .framer-g63zkv > :last-child { margin-bottom: 0px; } .framer-hmhKG .framer-1egam7o > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-hmhKG .framer-1egam7o > :first-child, .framer-hmhKG .framer-16jvhok > :first-child { margin-left: 0px; } .framer-hmhKG .framer-1egam7o > :last-child, .framer-hmhKG .framer-16jvhok > :last-child { margin-right: 0px; } .framer-hmhKG .framer-16kzsrb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hmhKG .framer-16jvhok > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hmhKG .framer-g63zkv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-hmhKG.framer-v-1ougbs0.framer-ssp61f, .framer-hmhKG.framer-v-1vc6rbj.framer-ssp61f, .framer-hmhKG.framer-v-1bh439b.framer-ssp61f, .framer-hmhKG.framer-v-1aluh5n.framer-ssp61f { width: 390px; }\",\".framer-hmhKG.framer-v-1ougbs0 .framer-1egam7o, .framer-hmhKG.framer-v-1vc6rbj .framer-1egam7o, .framer-hmhKG.framer-v-1bh439b .framer-1egam7o, .framer-hmhKG.framer-v-1aluh5n .framer-1egam7o { flex-direction: column; gap: 40px; }\",\".framer-hmhKG.framer-v-1ougbs0 .framer-16kzsrb, .framer-hmhKG.framer-v-1vc6rbj .framer-16kzsrb, .framer-hmhKG.framer-v-1bh439b .framer-16kzsrb, .framer-hmhKG.framer-v-1aluh5n .framer-16kzsrb { flex: none; padding: 0px; width: 100%; }\",\".framer-hmhKG.framer-v-1ougbs0 .framer-16jvhok, .framer-hmhKG.framer-v-1vc6rbj .framer-16jvhok, .framer-hmhKG.framer-v-1bh439b .framer-16jvhok, .framer-hmhKG.framer-v-1aluh5n .framer-16jvhok { flex-wrap: wrap; }\",\".framer-hmhKG.framer-v-1ougbs0 .framer-g63zkv, .framer-hmhKG.framer-v-1vc6rbj .framer-g63zkv, .framer-hmhKG.framer-v-1bh439b .framer-g63zkv, .framer-hmhKG.framer-v-1aluh5n .framer-g63zkv { align-self: unset; height: 250px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hmhKG.framer-v-1ougbs0 .framer-1egam7o { gap: 0px; } .framer-hmhKG.framer-v-1ougbs0 .framer-1egam7o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hmhKG.framer-v-1ougbs0 .framer-1egam7o > :first-child { margin-top: 0px; } .framer-hmhKG.framer-v-1ougbs0 .framer-1egam7o > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hmhKG.framer-v-1vc6rbj .framer-1egam7o { gap: 0px; } .framer-hmhKG.framer-v-1vc6rbj .framer-1egam7o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hmhKG.framer-v-1vc6rbj .framer-1egam7o > :first-child { margin-top: 0px; } .framer-hmhKG.framer-v-1vc6rbj .framer-1egam7o > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hmhKG.framer-v-1bh439b .framer-1egam7o { gap: 0px; } .framer-hmhKG.framer-v-1bh439b .framer-1egam7o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hmhKG.framer-v-1bh439b .framer-1egam7o > :first-child { margin-top: 0px; } .framer-hmhKG.framer-v-1bh439b .framer-1egam7o > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hmhKG.framer-v-1aluh5n .framer-1egam7o { gap: 0px; } .framer-hmhKG.framer-v-1aluh5n .framer-1egam7o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hmhKG.framer-v-1aluh5n .framer-1egam7o > :first-child { margin-top: 0px; } .framer-hmhKG.framer-v-1aluh5n .framer-1egam7o > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 508\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QiLkafiQt\":{\"layout\":[\"fixed\",\"auto\"]},\"HuIY1jNiR\":{\"layout\":[\"fixed\",\"auto\"]},\"OR2iB1Hob\":{\"layout\":[\"fixed\",\"auto\"]},\"hUBzBSlhy\":{\"layout\":[\"fixed\",\"auto\"]},\"msOwcFItO\":{\"layout\":[\"fixed\",\"auto\"]},\"OL1dn3bsJ\":{\"layout\":[\"fixed\",\"auto\"]},\"e5e5vGzVL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameroIuCAExU3=withCSS(Component,css,\"framer-hmhKG\");export default FrameroIuCAExU3;FrameroIuCAExU3.displayName=\"Anwender Tabs\";FrameroIuCAExU3.defaultProps={height:508,width:1200};addPropertyControls(FrameroIuCAExU3,{variant:{options:[\"CX4u_NaU2\",\"QiLkafiQt\",\"HuIY1jNiR\",\"OR2iB1Hob\",\"hUBzBSlhy\",\"msOwcFItO\",\"OL1dn3bsJ\",\"e5e5vGzVL\"],optionTitles:[\"Beginner\",\"Fortgeschrittene\",\"Profis\",\"\\xc4rzte\",\"Mobil Anf\\xe4nger\",\"Mobil Fortgeschrittene\",\"Mobil Profis\",\"Mobil \\xc4rzte\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameroIuCAExU3,[{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\"}]},...FilterKategorieButtonFonts,...ButtonPrimRFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroIuCAExU3\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QiLkafiQt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HuIY1jNiR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OR2iB1Hob\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hUBzBSlhy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"msOwcFItO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OL1dn3bsJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e5e5vGzVL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"508\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={A3RoGhGcw:{hover:true},BWPQb_5iC:{hover:true},Kpi0fEY2p:{hover:true},VUFJxhHOZ:{hover:true}};const cycleOrder=[\"VUFJxhHOZ\",\"A3RoGhGcw\",\"BWPQb_5iC\",\"Kpi0fEY2p\"];const serializationHash=\"framer-WCBuz\";const variantClassNames={A3RoGhGcw:\"framer-v-ukzpoq\",BWPQb_5iC:\"framer-v-1y3zicg\",Kpi0fEY2p:\"framer-v-16i1elh\",VUFJxhHOZ:\"framer-v-1bpmnne\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.8,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Bottom:\"BWPQb_5iC\",Left:\"Kpi0fEY2p\",Right:\"A3RoGhGcw\",Top:\"VUFJxhHOZ\"};const getProps=({buttonText,fontSize,height,id,link,textColor,width,...props})=>{return{...props,BrUi5h7tU:textColor??props.BrUi5h7tU??\"rgb(255, 255, 255)\",ofLqZhEO8:buttonText??props.ofLqZhEO8??\"Running stroke\",soie5XZUv:fontSize??props.soie5XZUv??26,variant:humanReadableVariantMap[props.variant]??props.variant??\"VUFJxhHOZ\",xYpx6wR8V:link??props.xYpx6wR8V};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ofLqZhEO8,BrUi5h7tU,xYpx6wR8V,soie5XZUv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VUFJxhHOZ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearx4yxc4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),700);});useOnVariantChange(baseVariant,{default:onAppearx4yxc4});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:xYpx6wR8V,motionChild:true,nodeId:\"VUFJxhHOZ\",scopeId:\"TC9uE0Pvt\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1bpmnne\",className,classNames)} framer-w822z`,\"data-framer-name\":\"Top\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"VUFJxhHOZ\",ref:refBinding,style:{background:'linear-gradient(64.83545479980833deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, rgb(7, 86, 129)) /* {\"name\":\"Akzent 1\"} */ 0%, rgb(51, 137, 184) 38.288288288288285%, rgb(95, 193, 250) 51.35135135135135%, rgb(35, 157, 222) 73%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) /* {\"name\":\"Akzent 2\"} */ 100%)',borderBottomLeftRadius:118,borderBottomRightRadius:118,borderTopLeftRadius:118,borderTopRightRadius:118,...style},...addPropertyOverrides({\"A3RoGhGcw-hover\":{\"data-framer-name\":undefined},\"BWPQb_5iC-hover\":{\"data-framer-name\":undefined},\"Kpi0fEY2p-hover\":{\"data-framer-name\":undefined},\"VUFJxhHOZ-hover\":{\"data-framer-name\":undefined},A3RoGhGcw:{\"data-framer-name\":\"Right\"},BWPQb_5iC:{\"data-framer-name\":\"Bottom\"},Kpi0fEY2p:{\"data-framer-name\":\"Left\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19hsuv0\",\"data-framer-name\":\"Glow\",layoutDependency:layoutDependency,layoutId:\"sZftviG_C\",style:{background:\"radial-gradient(25% 50% at 50% 0%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:72,borderBottomRightRadius:72,borderTopLeftRadius:72,borderTopRightRadius:72,filter:\"blur(15px)\",WebkitFilter:\"blur(15px)\"},variants:{\"A3RoGhGcw-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},\"BWPQb_5iC-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},\"Kpi0fEY2p-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},\"VUFJxhHOZ-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},A3RoGhGcw:{background:\"radial-gradient(25% 35.4% at 100% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},BWPQb_5iC:{background:\"radial-gradient(25% 50% at 50% 100%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},Kpi0fEY2p:{background:\"radial-gradient(25% 34.4% at 0% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j22q4m\",\"data-framer-name\":\"Stroke\",layoutDependency:layoutDependency,layoutId:\"hxHY1LS4k\",style:{background:\"radial-gradient(20.7% 50% at 50% 0%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:72,borderBottomRightRadius:72,borderTopLeftRadius:72,borderTopRightRadius:72},variants:{\"A3RoGhGcw-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},\"BWPQb_5iC-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},\"Kpi0fEY2p-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},\"VUFJxhHOZ-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},A3RoGhGcw:{background:\"radial-gradient(16.2% 41.199999999999996% at 100% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},BWPQb_5iC:{background:\"radial-gradient(20.7% 50% at 50% 100%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"},Kpi0fEY2p:{background:\"radial-gradient(16.6% 43.1% at 0% 50%, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0) 100%)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l5dl7\",\"data-framer-name\":\"Fill\",layoutDependency:layoutDependency,layoutId:\"j3IDxtYJj\",style:{background:'linear-gradient(64.83545479980833deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, rgb(7, 86, 129)) /* {\"name\":\"Akzent 1\"} */ 0%, rgb(51, 137, 184) 38.288288288288285%, rgb(95, 193, 250) 51.35135135135135%, rgb(35, 157, 222) 73%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) /* {\"name\":\"Akzent 2\"} */ 100%)',borderBottomLeftRadius:114,borderBottomRightRadius:114,borderTopLeftRadius:114,borderTopRightRadius:114}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-soie5XZUv-TC9uE0Pvt) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-BrUi5h7tU-TC9uE0Pvt))\"},children:\"Running stroke\"})}),className:\"framer-zmxtuw\",\"data-framer-name\":\"Text\",fonts:[\"FS;Urbanist-bold\"],layoutDependency:layoutDependency,layoutId:\"EvRVlczOG\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-BrUi5h7tU-TC9uE0Pvt)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-BrUi5h7tU-TC9uE0Pvt\":BrUi5h7tU,\"--variable-reference-soie5XZUv-TC9uE0Pvt\":soie5XZUv},text:ofLqZhEO8,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WCBuz.framer-w822z, .framer-WCBuz .framer-w822z { display: block; }\",\".framer-WCBuz.framer-1bpmnne { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 20px 28px 20px 28px; position: relative; text-decoration: none; width: min-content; }\",\".framer-WCBuz .framer-19hsuv0, .framer-WCBuz .framer-1j22q4m { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-WCBuz .framer-l5dl7 { flex: none; height: 61px; left: 5px; overflow: hidden; position: absolute; right: 5px; top: 5px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-WCBuz .framer-zmxtuw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WCBuz.framer-1bpmnne { gap: 0px; } .framer-WCBuz.framer-1bpmnne > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-WCBuz.framer-1bpmnne > :first-child { margin-top: 0px; } .framer-WCBuz.framer-1bpmnne > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 91\n * @framerIntrinsicWidth 228\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"A3RoGhGcw\":{\"layout\":[\"auto\",\"auto\"]},\"BWPQb_5iC\":{\"layout\":[\"auto\",\"auto\"]},\"Kpi0fEY2p\":{\"layout\":[\"auto\",\"auto\"]},\"Du68uLjEP\":{\"layout\":[\"auto\",\"auto\"]},\"EZF4f5deI\":{\"layout\":[\"auto\",\"auto\"]},\"AWDSA2zx6\":{\"layout\":[\"auto\",\"auto\"]},\"qDQXbQ3Qt\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ofLqZhEO8\":\"buttonText\",\"BrUi5h7tU\":\"textColor\",\"xYpx6wR8V\":\"link\",\"soie5XZUv\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTC9uE0Pvt=withCSS(Component,css,\"framer-WCBuz\");export default FramerTC9uE0Pvt;FramerTC9uE0Pvt.displayName=\"Running-Stroke\";FramerTC9uE0Pvt.defaultProps={height:91,width:228};addPropertyControls(FramerTC9uE0Pvt,{variant:{options:[\"VUFJxhHOZ\",\"A3RoGhGcw\",\"BWPQb_5iC\",\"Kpi0fEY2p\"],optionTitles:[\"Top\",\"Right\",\"Bottom\",\"Left\"],title:\"Variant\",type:ControlType.Enum},ofLqZhEO8:{defaultValue:\"Running stroke\",displayTextArea:false,title:\"Button text\",type:ControlType.String},BrUi5h7tU:{defaultValue:\"rgb(255, 255, 255)\",title:\"Text color\",type:ControlType.Color},xYpx6wR8V:{title:\"Link\",type:ControlType.Link},soie5XZUv:{defaultValue:26,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerTC9uE0Pvt,[{explicitInter:true,fonts:[{family:\"Urbanist\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/Y3L2ZYYP26QQ73LRHQEGMGHU7HLMLCIE/5WHYQ3VUOWNEN3Y7DIOEXY5R4W6MYIPF/SS2LIWIFT3QZUKOLJ7TGBEFWHF3TFYQD.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTC9uE0Pvt\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"91\",\"framerIntrinsicWidth\":\"228\",\"framerVariables\":\"{\\\"ofLqZhEO8\\\":\\\"buttonText\\\",\\\"BrUi5h7tU\\\":\\\"textColor\\\",\\\"xYpx6wR8V\\\":\\\"link\\\",\\\"soie5XZUv\\\":\\\"fontSize\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"A3RoGhGcw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BWPQb_5iC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Kpi0fEY2p\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Du68uLjEP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EZF4f5deI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AWDSA2zx6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qDQXbQ3Qt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TC9uE0Pvt.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import CMSCarousel from\"https://framerusercontent.com/modules/ZWwVZaNY0bAcPai4E2vh/dRzgMNKyDlbcejp2ho0B/CMSCarousel.js\";import Audio from\"#framer/local/canvasComponent/DLtGxv24v/DLtGxv24v.js\";import ButtonPrimR from\"#framer/local/canvasComponent/ehpm05f_6/ehpm05f_6.js\";import CTASticky from\"#framer/local/canvasComponent/Mm5SymI7O/Mm5SymI7O.js\";import AnwenderTabs from\"#framer/local/canvasComponent/oIuCAExU3/oIuCAExU3.js\";import KundenauslieferungSlider from\"#framer/local/canvasComponent/RbKz_EB_C/RbKz_EB_C.js\";import RunningStroke from\"#framer/local/canvasComponent/TC9uE0Pvt/TC9uE0Pvt.js\";import NeueKopfzeile0325 from\"#framer/local/canvasComponent/V4lxcrzrM/V4lxcrzrM.js\";import FuZeile from\"#framer/local/canvasComponent/WDtbj2kqk/WDtbj2kqk.js\";import Produkte from\"#framer/local/collection/O543DbFeu/O543DbFeu.js\";import*as sharedStyle4 from\"#framer/local/css/dcOycSUYa/dcOycSUYa.js\";import*as sharedStyle1 from\"#framer/local/css/GgCnrROor/GgCnrROor.js\";import*as sharedStyle5 from\"#framer/local/css/iRbaza5qo/iRbaza5qo.js\";import*as sharedStyle6 from\"#framer/local/css/jnHiZj6B_/jnHiZj6B_.js\";import*as sharedStyle3 from\"#framer/local/css/PWPzBAU88/PWPzBAU88.js\";import*as sharedStyle2 from\"#framer/local/css/tl5rJtHHv/tl5rJtHHv.js\";import*as sharedStyle7 from\"#framer/local/css/UY6bzJEB6/UY6bzJEB6.js\";import*as sharedStyle from\"#framer/local/css/Vu88ujhld/Vu88ujhld.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NeueKopfzeile0325Fonts=getFonts(NeueKopfzeile0325);const RunningStrokeFonts=getFonts(RunningStroke);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const FeatherFonts=getFonts(Feather);const VideoFonts=getFonts(Video);const AudioFonts=getFonts(Audio);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const ButtonPrimRFonts=getFonts(ButtonPrimR);const KundenauslieferungSliderFonts=getFonts(KundenauslieferungSlider);const CMSCarouselFonts=getFonts(CMSCarousel);const AnwenderTabsFonts=getFonts(AnwenderTabs);const CTAStickyFonts=getFonts(CTASticky);const ContainerWithFX=withFX(Container);const FuZeileFonts=getFonts(FuZeile);const breakpoints={h9rOnEcIq:\"(min-width: 810px) and (max-width: 1199px)\",Uf7K9UHZ7:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-80Dh0\";const variantClassNames={h9rOnEcIq:\"framer-v-1wy40mj\",Uf7K9UHZ7:\"framer-v-x0v4gv\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:40,delay:.3,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:.75,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transition:transition2};const transition3={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:90,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};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 transition4={delay:0,duration:14,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:.8,rotate:220,rotateX:20,rotateY:0,scale:1,skewX:0,skewY:0,x:250,y:50};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Uf7K9UHZ7\",Tablet:\"h9rOnEcIq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,C_z8QQGGRiXkGpLxfX,yUxLHRs5QiXkGpLxfX,DSRHV0L7qiXkGpLxfX,idiXkGpLxfX,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Uf7K9UHZ7\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Uf7K9UHZ7\")return false;return true;};const elementId=useRouteElementId(\"iXkGpLxfX\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-64c42675-e940-4b3f-ad57-e4886a8e2989, rgb(216, 228, 235)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,width:componentViewport?.width||\"100vw\",y:-.5899,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nx9fpd-container\",layoutScroll:true,nodeId:\"GPqQIyYUl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{variant:\"rD6tqLzEX\"}},children:/*#__PURE__*/_jsx(NeueKopfzeile0325,{height:\"100%\",id:\"GPqQIyYUl\",layoutId:\"GPqQIyYUl\",style:{width:\"100%\"},variant:\"rzaqQmfHQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xad10\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+60),pixelHeight:4574,pixelWidth:5500,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.97)`,src:\"https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg\",srcSet:\"https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg 5500w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4574,pixelWidth:5500,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.97)`,src:\"https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg\",srcSet:\"https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg 5500w\"},className:\"framer-3yp62k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1icjkny\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hq6gwb\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q7q1un\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"81px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"ALIX AI PRO\"})})},Uf7K9UHZ7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"ALIX AI PRO\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"105px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"ALIX AI PRO\"})}),className:\"framer-kjhn0g\",fonts:[\"FS;Urbanist-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"Intelligente Sicherheit und Komfort f\\xfcr Ihr Studio mit Alix PRO\"})}),fonts:[\"FS;Urbanist-bold\"]},Uf7K9UHZ7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"Intelligente Sicherheit und Komfort f\\xfcr Ihr Studio mit Alix PRO\"})}),fonts:[\"FS;Urbanist-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x4le00\",\"data-styles-preset\":\"Vu88ujhld\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"Intelligente Sicherheit und Komfort f\\xfcr Ihr Studio mit Alix PRO\"})}),className:\"framer-1vdrvi2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{iBTu4DekZ:\"alix-professional\"},unresolvedPathSlugs:{iBTu4DekZ:{collectionId:\"KyeE4ICZt\",collectionItemId:\"s0Asub6T5\"}},webPageId:\"B4sNt4Vk3\"},implicitPathVariables:undefined},{href:{pathVariables:{iBTu4DekZ:\"alix-professional\"},unresolvedPathSlugs:{iBTu4DekZ:{collectionId:\"KyeE4ICZt\",collectionItemId:\"s0Asub6T5\"}},webPageId:\"B4sNt4Vk3\"},implicitPathVariables:undefined},{href:{pathVariables:{iBTu4DekZ:\"alix-professional\"},unresolvedPathSlugs:{iBTu4DekZ:{collectionId:\"KyeE4ICZt\",collectionItemId:\"s0Asub6T5\"}},webPageId:\"B4sNt4Vk3\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{y:(componentViewport?.y||0)+0+0+60+40+0+0+114.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-13b933b-container\",\"data-framer-appear-id\":\"13b933b\",id:\"13b933b\",initial:animation1,nodeId:\"pupDSvZR1\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{xYpx6wR8V:resolvedLinks[1]},Uf7K9UHZ7:{xYpx6wR8V:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(RunningStroke,{BrUi5h7tU:\"rgb(255, 255, 255)\",height:\"100%\",id:\"pupDSvZR1\",layoutId:\"pupDSvZR1\",ofLqZhEO8:\"Alix Lasers \\xae Professional\",soie5XZUv:26,variant:\"VUFJxhHOZ\",width:\"100%\",xYpx6wR8V:resolvedLinks[0]})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eo8aad\",\"data-framer-name\":\"Rows\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w4w060\",\"data-framer-name\":\"Video Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13d2rk9\",\"data-framer-name\":\"Overlay TRP\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d4bmpa\",id:\"1d4bmpa\",onTap:onTap3bnx0g({overlay}),whileHover:animation2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sss3eq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZbIowibOS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"play\",id:\"ZbIowibOS\",layoutId:\"ZbIowibOS\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__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:{delay:0,duration:.6,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-197codi\"),\"data-framer-portal-id\":\"1d4bmpa\",exit:{opacity:0,transition:{delay:0,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"rAw9l7iJn\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-1n5p44i\"),\"data-framer-portal-id\":\"1d4bmpa\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rlsm8s\",\"data-framer-name\":\"Video Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wcwcvj\",\"data-framer-name\":\"Overlay TRP\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1woload\",onTap:onTap1wnntms({overlay}),whileHover:animation3,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-54wge8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"afhpjiN2G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"afhpjiN2G\",layoutId:\"afhpjiN2G\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w5s2jy-container\",isModuleExternal:true,nodeId:\"xwQv962u9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:28,bottomLeftRadius:28,bottomRightRadius:28,controls:true,height:\"100%\",id:\"xwQv962u9\",isMixedBorderRadius:false,layoutId:\"xwQv962u9\",loop:true,muted:false,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/xYhVPQrZCFK0RQ064kqhkBY1b8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:28,topRightRadius:28,volume:30,width:\"100%\"})})})]})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gc5bw4-container\",isModuleExternal:true,nodeId:\"JXQfwAeXJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:28,bottomLeftRadius:28,bottomRightRadius:28,controls:false,height:\"100%\",id:\"JXQfwAeXJ\",isMixedBorderRadius:false,layoutId:\"JXQfwAeXJ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/xYhVPQrZCFK0RQ064kqhkBY1b8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:28,topRightRadius:28,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{height:45,width:\"45px\",y:(componentViewport?.y||0)+0+0+60+40+250.2+335-52}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,width:\"66px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-aqczrk-container\",nodeId:\"DQj2xsj7Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Audio,{height:\"100%\",id:\"DQj2xsj7Z\",layoutId:\"DQj2xsj7Z\",style:{height:\"100%\",width:\"100%\"},variant:\"f1Abcu3R4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{C_z8QQGGR:\"alix-infinity\"},unresolvedPathSlugs:{C_z8QQGGR:{collectionId:\"O543DbFeu\",collectionItemId:\"y_8oq1ouz\"}},webPageId:\"wkN2YO_HQ\"},motionChild:true,nodeId:\"dXpw3eItq\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1100,intrinsicWidth:811,pixelHeight:1024,pixelWidth:979,positionX:\"center\",positionY:\"center\",sizes:\"377px\",src:\"https://framerusercontent.com/images/s0KQG13iRdrHTbnPXCDqnGz0Bmo.png\",srcSet:\"https://framerusercontent.com/images/s0KQG13iRdrHTbnPXCDqnGz0Bmo.png 979w\"}},Uf7K9UHZ7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1100,intrinsicWidth:811,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+60+40+250.2+335-312.5),pixelHeight:1024,pixelWidth:979,positionX:\"center\",positionY:\"center\",sizes:\"196px\",src:\"https://framerusercontent.com/images/s0KQG13iRdrHTbnPXCDqnGz0Bmo.png\",srcSet:\"https://framerusercontent.com/images/s0KQG13iRdrHTbnPXCDqnGz0Bmo.png 979w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:30,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1100,intrinsicWidth:811,pixelHeight:1024,pixelWidth:979,positionX:\"center\",positionY:\"center\",sizes:\"521px\",src:\"https://framerusercontent.com/images/s0KQG13iRdrHTbnPXCDqnGz0Bmo.png\",srcSet:\"https://framerusercontent.com/images/s0KQG13iRdrHTbnPXCDqnGz0Bmo.png 979w\"},className:\"framer-1mv1a0n framer-lux5qc\",\"data-framer-name\":\"ModelAlix\",children:isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1403,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+60+40+250.2+335-312.5+436-590.5),pixelHeight:6122,pixelWidth:2986,sizes:\"337px\",src:\"https://framerusercontent.com/images/LskAGp0E5JpZUZYR3AVs9u2YMVE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/LskAGp0E5JpZUZYR3AVs9u2YMVE.png?scale-down-to=2048 998w,https://framerusercontent.com/images/LskAGp0E5JpZUZYR3AVs9u2YMVE.png?scale-down-to=4096 1997w,https://framerusercontent.com/images/LskAGp0E5JpZUZYR3AVs9u2YMVE.png 2986w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1403,intrinsicWidth:500,pixelHeight:6122,pixelWidth:2986,src:\"https://framerusercontent.com/images/LskAGp0E5JpZUZYR3AVs9u2YMVE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/LskAGp0E5JpZUZYR3AVs9u2YMVE.png?scale-down-to=2048 998w,https://framerusercontent.com/images/LskAGp0E5JpZUZYR3AVs9u2YMVE.png?scale-down-to=4096 1997w,https://framerusercontent.com/images/LskAGp0E5JpZUZYR3AVs9u2YMVE.png 2986w\"},className:\"framer-fnhn7t hidden-72rtr7 hidden-1wy40mj\",\"data-framer-name\":\"AI-Scanner (1)\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-16uy5kx\",\"data-framer-name\":\"Ellipse 5\",style:{rotate:90},transformTemplate:transformTemplate1})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mpxbns\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nezl5h\",\"data-framer-name\":\"cards\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{C_z8QQGGR:\"alix-quantum-ice\"},unresolvedPathSlugs:{C_z8QQGGR:{collectionId:\"O543DbFeu\",collectionItemId:\"Pb2Mhz0Ps\"}},webPageId:\"wkN2YO_HQ\"},motionChild:true,nodeId:\"UfZY3_jcI\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+0),pixelHeight:4574,pixelWidth:5500,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg\",srcSet:\"https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg 5500w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:4574,pixelWidth:5500,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.54)`,src:\"https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg\",srcSet:\"https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/dWq8Yqk8SjvOXDavqJ1I8y88GN0.jpg 5500w\"},className:\"framer-18s0ng3 framer-lux5qc\",\"data-framer-name\":\"BlueiCe\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ph71v0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\"},children:\"Quantum\"})}),fonts:[\"FS;Urbanist-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qjf7qi\",\"data-styles-preset\":\"GgCnrROor\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\"},children:\"Quantum\"})}),className:\"framer-11t3lbx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ybq8x7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"ab 199\u20AC /Monat  \"})}),fonts:[\"FS;Urbanist-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qjf7qi\",\"data-styles-preset\":\"GgCnrROor\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"ab 199\u20AC /Monat  \"})}),className:\"framer-7wdyea\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1295.5,intrinsicWidth:518,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+0+450-601.5),pixelHeight:1200,pixelWidth:1202,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xH3fAxVzl16KHxNya5xzqHWKUGs.png?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1295.5,intrinsicWidth:518,pixelHeight:1200,pixelWidth:1202,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xH3fAxVzl16KHxNya5xzqHWKUGs.png?scale-down-to=512\"},className:\"framer-slspsq\",\"data-framer-name\":\"Blue-Ice\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1295.5,intrinsicWidth:518,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+0+84.25),pixelHeight:789,pixelWidth:555,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OemlmaPkhLhwS4j5VinjQdEiC3Y.png\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1295.5,intrinsicWidth:518,pixelHeight:789,pixelWidth:555,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OemlmaPkhLhwS4j5VinjQdEiC3Y.png\"},className:\"framer-v08twl\",\"data-framer-name\":\"Blue-Ice\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\"},children:[\"Alix Lasers \\xae \",/*#__PURE__*/_jsx(\"br\",{}),\"Smart Impulse\",/*#__PURE__*/_jsx(\"br\",{}),\"100 Mio Impulse\",/*#__PURE__*/_jsx(\"br\",{}),\"plus Stuhl\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),fonts:[\"FS;Urbanist-bold\"],transformTemplate:undefined},Uf7K9UHZ7:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1kkpd4v\",\"data-styles-preset\":\"tl5rJtHHv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\"},children:[\"Alix Lasers \\xae \",/*#__PURE__*/_jsx(\"br\",{}),\"Smart Impulse\",/*#__PURE__*/_jsx(\"br\",{}),\"100 Mio Impulse\",/*#__PURE__*/_jsx(\"br\",{}),\"plus Stuhl\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1cy3g3c\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{C_z8QQGGR:\"ai-skin-master\"},unresolvedPathSlugs:{C_z8QQGGR:{collectionId:\"O543DbFeu\",collectionItemId:\"dbRBz0AOJ\"}},webPageId:\"wkN2YO_HQ\"},motionChild:true,nodeId:\"j3gDcntc9\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+472),pixelHeight:3e3,pixelWidth:3e3,positionX:\"center\",positionY:\"bottom\",sizes:`max(${componentViewport?.width||\"100vw\"} * 0.9, 100px)`,src:\"https://framerusercontent.com/images/Mkhf0IS8LzqrM7wfGrf7Rsa7zQw.jpg\",srcSet:\"https://framerusercontent.com/images/Mkhf0IS8LzqrM7wfGrf7Rsa7zQw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Mkhf0IS8LzqrM7wfGrf7Rsa7zQw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mkhf0IS8LzqrM7wfGrf7Rsa7zQw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Mkhf0IS8LzqrM7wfGrf7Rsa7zQw.jpg 3000w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:3e3,pixelWidth:3e3,positionX:\"center\",positionY:\"bottom\",sizes:`max(${componentViewport?.width||\"100vw\"} * 0.9, 100px)`,src:\"https://framerusercontent.com/images/Mkhf0IS8LzqrM7wfGrf7Rsa7zQw.jpg\",srcSet:\"https://framerusercontent.com/images/Mkhf0IS8LzqrM7wfGrf7Rsa7zQw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Mkhf0IS8LzqrM7wfGrf7Rsa7zQw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mkhf0IS8LzqrM7wfGrf7Rsa7zQw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Mkhf0IS8LzqrM7wfGrf7Rsa7zQw.jpg 3000w\"},className:\"framer-1iqv8yj framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-of71gz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Skin Master AI\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Skin Master AI\"})}),className:\"framer-86kkp1\",\"data-framer-name\":\"Innovation\",fonts:[\"FS;Urbanist-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"16 Handst\\xfccke | AI Hautanalyse Alix 2.0\"})}),fonts:[\"FS;Urbanist-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x4le00\",\"data-styles-preset\":\"Vu88ujhld\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"16 Handst\\xfccke | AI Hautanalyse Alix 2.0\"})}),className:\"framer-tsre22\",\"data-framer-name\":\"Innovation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1150,intrinsicWidth:409.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+472+154),pixelHeight:1200,pixelWidth:1202,sizes:\"163px\",src:\"https://framerusercontent.com/images/RxRbuAIrQ7DN0NdbMjhp2vsROM.png\",srcSet:\"https://framerusercontent.com/images/RxRbuAIrQ7DN0NdbMjhp2vsROM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RxRbuAIrQ7DN0NdbMjhp2vsROM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RxRbuAIrQ7DN0NdbMjhp2vsROM.png 1202w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1150,intrinsicWidth:409.5,pixelHeight:1200,pixelWidth:1202,sizes:\"190px\",src:\"https://framerusercontent.com/images/RxRbuAIrQ7DN0NdbMjhp2vsROM.png\",srcSet:\"https://framerusercontent.com/images/RxRbuAIrQ7DN0NdbMjhp2vsROM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RxRbuAIrQ7DN0NdbMjhp2vsROM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RxRbuAIrQ7DN0NdbMjhp2vsROM.png 1202w\"},className:\"framer-cnlqmf\",\"data-framer-name\":\"3-AI-Red\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4nxnxm\",\"data-border\":true})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{C_z8QQGGR:\"alix-skin-detox-5000\"},unresolvedPathSlugs:{C_z8QQGGR:{collectionId:\"O543DbFeu\",collectionItemId:\"c8YgvrSfF\"}},webPageId:\"wkN2YO_HQ\"},motionChild:true,nodeId:\"jm3JxpUR6\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{background:{alt:\"\",fit:\"fill\",pixelHeight:3279,pixelWidth:4e3,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.36)`,src:\"https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg\",srcSet:\"https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg 4000w\"}},Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+871),pixelHeight:3279,pixelWidth:4e3,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg\",srcSet:\"https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg 4000w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:3279,pixelWidth:4e3,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.315)`,src:\"https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg\",srcSet:\"https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TUn6VDnI8XhBkguHMD1ufCx4R4.jpg 4000w\"},className:\"framer-yup0f9 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fbsts8\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(197, 159, 94)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"Carbon Peeling -\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"#333\"},children:\" \"}),\"Booster\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"27px\"},children:\"Tattooentfernungen\"})]})}),fonts:[\"FS;Urbanist-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1kkpd4v\",\"data-styles-preset\":\"tl5rJtHHv\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"Carbon Peeling -\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(197, 159, 94)\"},children:\"Booster\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(197, 159, 94)\"},children:\"Tattooentfernungen\"})]})}),className:\"framer-s4t4kf\",\"data-framer-name\":\"Innovation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1150,intrinsicWidth:409.5,pixelHeight:1200,pixelWidth:1202,sizes:\"162px\",src:\"https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png\",srcSet:\"https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png 1202w\"}},Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1150,intrinsicWidth:409.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+871+367-255),pixelHeight:1200,pixelWidth:1202,sizes:\"177px\",src:\"https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png\",srcSet:\"https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png 1202w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1150,intrinsicWidth:409.5,pixelHeight:1200,pixelWidth:1202,sizes:\"211px\",src:\"https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png\",srcSet:\"https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BWojQQgOQATkUBdDhb5U4HTDEU.png 1202w\"},className:\"framer-vzi8n9\",\"data-framer-name\":\"3-AI-Red\",children:isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1403,intrinsicWidth:500,pixelHeight:1190,pixelWidth:586,sizes:\"236px\",src:\"https://framerusercontent.com/images/WPRIxbDw4pATTcgWMLNcz7Q0tg.png\",srcSet:\"https://framerusercontent.com/images/WPRIxbDw4pATTcgWMLNcz7Q0tg.png 586w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1403,intrinsicWidth:500,pixelHeight:1190,pixelWidth:586,sizes:\"332px\",src:\"https://framerusercontent.com/images/WPRIxbDw4pATTcgWMLNcz7Q0tg.png\",srcSet:\"https://framerusercontent.com/images/WPRIxbDw4pATTcgWMLNcz7Q0tg.png 586w\"},className:\"framer-1mudapu hidden-x0v4gv\",\"data-framer-name\":\"AI-Scanner (1)\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vxw0y1\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2tlwii\",\"data-framer-name\":\"\\xdcberschrift\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14xhkd6\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2o54wy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iBZk7rSXZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\",height:\"100%\",iconSearch:\"Money\",iconSelection:\"tool\",id:\"iBZk7rSXZ\",layoutId:\"iBZk7rSXZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x4le00\",\"data-styles-preset\":\"Vu88ujhld\",style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"Extra Booster\"})}),className:\"framer-1kzo5x6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12dmlo5\",\"data-framer-name\":\"\\xdcberschrift\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nd8l7n\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iyem6d-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lg12FtM3g\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\",height:\"100%\",iconSearch:\"Money\",iconSelection:\"tool\",id:\"lg12FtM3g\",layoutId:\"lg12FtM3g\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x4le00\",\"data-styles-preset\":\"Vu88ujhld\",style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"noch st\\xe4rker\"})}),className:\"framer-pcmjqn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12943vc\",\"data-framer-name\":\"\\xdcberschrift\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ki2pkj\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p3rhir-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ijjfY5Zgr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\",height:\"100%\",iconSearch:\"Money\",iconSelection:\"tool\",id:\"ijjfY5Zgr\",layoutId:\"ijjfY5Zgr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x4le00\",\"data-styles-preset\":\"Vu88ujhld\",style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"Boost Stufe\"})}),className:\"framer-yiz61j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:733.5,intrinsicWidth:1100,pixelHeight:1467,pixelWidth:2200,sizes:\"50px\",src:\"https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg 2200w\"}},Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:733.5,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+871+367-86),pixelHeight:1467,pixelWidth:2200,sizes:\"65px\",src:\"https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg 2200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:733.5,intrinsicWidth:1100,pixelHeight:1467,pixelWidth:2200,sizes:\"65px\",src:\"https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/72OPpKWDtb9h8YBKZaL566OFo.jpg 2200w\"},className:\"framer-1fnp8gg\",\"data-border\":true,\"data-framer-name\":\"Carbon-Peeling-3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:733.5,intrinsicWidth:1100,pixelHeight:1469,pixelWidth:2200,sizes:\"50px\",src:\"https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg 2200w\"}},Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:733.5,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+871+367-86),pixelHeight:1469,pixelWidth:2200,sizes:\"65px\",src:\"https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg 2200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:733.5,intrinsicWidth:1100,pixelHeight:1469,pixelWidth:2200,sizes:\"65px\",src:\"https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mt5kFNyrIj006dpJNGVNXlDGmt8.jpg 2200w\"},className:\"framer-1hgpf4k\",\"data-border\":true,\"data-framer-name\":\"Carbon-Peeling-3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:733.5,intrinsicWidth:1100,pixelHeight:1468,pixelWidth:2200,sizes:\"50px\",src:\"https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg 2200w\"}},Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:733.5,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+871+367-86),pixelHeight:1468,pixelWidth:2200,sizes:\"65px\",src:\"https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg 2200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:733.5,intrinsicWidth:1100,pixelHeight:1468,pixelWidth:2200,sizes:\"65px\",src:\"https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O6laafRs7Rx5s56gqrAsi0cdNA.jpg 2200w\"},className:\"framer-11u9w9u\",\"data-border\":true,\"data-framer-name\":\"Carbon-Peeling-3\"})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{C_z8QQGGR:\"ai-saphir-2-max\"},unresolvedPathSlugs:{C_z8QQGGR:{collectionId:\"O543DbFeu\",collectionItemId:\"VJcTgKlvl\"}},webPageId:\"wkN2YO_HQ\"},motionChild:true,nodeId:\"Qnx4mOZNJ\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-owwmpd framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(202, 164, 96, 0.22)\"},children:\"SAPHIR\"})})},Uf7K9UHZ7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(202, 164, 96, 0.22)\"},children:\"SAPHIR\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(202, 164, 96, 0.22)\"},children:\"SAPHIR\"})}),className:\"framer-nsks99\",\"data-framer-name\":\"Innovation\",fonts:[\"FS;Urbanist-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\"},children:[\"Alix Saphir 2  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(202, 164, 96)\"},children:\"3000W\"})]})})},Uf7K9UHZ7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(202, 164, 96)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\"},children:\"Alix\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\" \"}),\"Saphir\",/*#__PURE__*/_jsx(\"br\",{}),\"Pro 2\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\"},children:[\"Alix Saphir 2 - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(202, 164, 96)\"},children:\"3000W\"})]})}),className:\"framer-mdx99\",\"data-framer-name\":\"Innovation\",fonts:[\"FS;Urbanist-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19mach5\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bp0k09\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qh9l1\",\"data-framer-name\":\"\\xdcberschrift\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1crx27z\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y7rn44-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sNmbXi_6s\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Money\",iconSelection:\"check\",id:\"sNmbXi_6s\",layoutId:\"sNmbXi_6s\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-h0hbiy\",\"data-styles-preset\":\"dcOycSUYa\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"4 Wellenl\\xe4ngen + 3000W\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-h0hbiy\",\"data-styles-preset\":\"dcOycSUYa\",style:{\"--framer-text-color\":\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\"},children:\"4 Wellenl\\xe4ngen + 3000W\"})}),className:\"framer-1dozo66\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19drtvn\",\"data-framer-name\":\"\\xdcberschrift\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1531uy\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h84fis-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tofvFCkLh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Money\",iconSelection:\"check\",id:\"tofvFCkLh\",layoutId:\"tofvFCkLh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-h0hbiy\",\"data-styles-preset\":\"dcOycSUYa\",style:{\"--framer-text-color\":\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\"},children:\"Alix AI 2.0 Voice Control + Scanner\"})}),className:\"framer-y4mer7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxmrn2\",\"data-framer-name\":\"\\xdcberschrift\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-61s7ik\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b5hi2u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Huzh2BoJC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Money\",iconSelection:\"check\",id:\"Huzh2BoJC\",layoutId:\"Huzh2BoJC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-h0hbiy\",\"data-styles-preset\":\"dcOycSUYa\",style:{\"--framer-text-color\":\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\"},children:\"unbegrenzte Impulse 12 Wellen\"})}),className:\"framer-1jeeiyj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m4caao\",\"data-framer-name\":\"\\xdcberschrift\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dcxgnk\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pxt5wp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"g7o6oAY9k\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Money\",iconSelection:\"check\",id:\"g7o6oAY9k\",layoutId:\"g7o6oAY9k\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-h0hbiy\",\"data-styles-preset\":\"dcOycSUYa\",style:{\"--framer-text-color\":\"var(--token-8e7ea314-57b6-4e04-ba7c-1d1fbcaee352, rgb(33, 32, 32))\"},children:\"\\xfcber 130 Mio Impulse \"})}),className:\"framer-gjysx9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1150,intrinsicWidth:409.5,pixelHeight:1200,pixelWidth:1202,positionX:\"center\",positionY:\"center\",sizes:\"351px\",src:\"https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png\",srcSet:\"https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png?scale-down-to=512 512w,https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png 1202w\"}},Uf7K9UHZ7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1150,intrinsicWidth:409.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+1260+367-591.5),pixelHeight:1200,pixelWidth:1202,positionX:\"center\",positionY:\"center\",sizes:\"341px\",src:\"https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png\",srcSet:\"https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png?scale-down-to=512 512w,https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png 1202w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1150,intrinsicWidth:409.5,pixelHeight:1200,pixelWidth:1202,positionX:\"center\",positionY:\"center\",sizes:\"554px\",src:\"https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png\",srcSet:\"https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png?scale-down-to=512 512w,https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xygEW7E9UVySQy2unFYQN9Re4.png 1202w\"},className:\"framer-w19365\",\"data-framer-name\":\"3-AI-Red\"})})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{C_z8QQGGR:\"alix-dermix-12\"},unresolvedPathSlugs:{C_z8QQGGR:{collectionId:\"O543DbFeu\",collectionItemId:\"ai60emUWm\"}},webPageId:\"wkN2YO_HQ\"},motionChild:true,nodeId:\"Fx6mw2uEM\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+1649),pixelHeight:3279,pixelWidth:4e3,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/lKuWrBAe56oNzaH9VXCkf5K5ic.jpg\",srcSet:\"https://framerusercontent.com/images/lKuWrBAe56oNzaH9VXCkf5K5ic.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lKuWrBAe56oNzaH9VXCkf5K5ic.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lKuWrBAe56oNzaH9VXCkf5K5ic.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lKuWrBAe56oNzaH9VXCkf5K5ic.jpg 4000w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:3279,pixelWidth:4e3,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.405)`,src:\"https://framerusercontent.com/images/lKuWrBAe56oNzaH9VXCkf5K5ic.jpg\",srcSet:\"https://framerusercontent.com/images/lKuWrBAe56oNzaH9VXCkf5K5ic.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lKuWrBAe56oNzaH9VXCkf5K5ic.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lKuWrBAe56oNzaH9VXCkf5K5ic.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lKuWrBAe56oNzaH9VXCkf5K5ic.jpg 4000w\"},className:\"framer-1c2tjvd framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Dermix\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17no6kk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(313deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, rgb(7, 86, 129)) 20%, rgb(43, 148, 204) 42.34234234234234%, rgb(120, 198, 240) 54.95495495495496%, rgb(44, 151, 209) 67.11711711711712%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 90%)\"},children:\"MicroNeedling\"})})})},Uf7K9UHZ7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(313deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, rgb(7, 86, 129)) 20%, rgb(43, 148, 204) 42.34234234234234%, rgb(120, 198, 240) 54.95495495495496%, rgb(44, 151, 209) 67.11711711711712%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 90%)\"},children:\"MicroNeedling\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(313deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, rgb(7, 86, 129)) 20%, rgb(43, 148, 204) 42.34234234234234%, rgb(120, 198, 240) 54.95495495495496%, rgb(44, 151, 209) 67.11711711711712%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 90%)\"},children:\"MicroNeedling\"})})}),className:\"framer-fv7ydh\",\"data-framer-name\":\"Innovation\",fonts:[\"FS;Urbanist-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-3965q3\",\"data-styles-preset\":\"iRbaza5qo\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Der \",/*#__PURE__*/_jsx(\"strong\",{children:\"DermiX12\"}),\" ist ein professionelles Microneedling-Ger\\xe4t f\\xfcr Gesicht & K\\xf6rper\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-3965q3\",\"data-styles-preset\":\"iRbaza5qo\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Der \",/*#__PURE__*/_jsx(\"strong\",{children:\"DermiX12\"}),\" ist ein professionelles Microneedling-Ger\\xe4t, f\\xfcr Gesicht & K\\xf6rper\"]})}),className:\"framer-1g5a29y\",\"data-framer-name\":\"We are committed to continuous innovation, developing cutting-edge solutions that address the evolving needs of the industry.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:938,intrinsicWidth:344.5,pixelHeight:2881,pixelWidth:1176,positionX:\"center\",positionY:\"center\",sizes:\"243px\",src:\"https://framerusercontent.com/images/cYEYIboyorK5zhnZ7IHEpgKMvYM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cYEYIboyorK5zhnZ7IHEpgKMvYM.png?scale-down-to=2048 835w,https://framerusercontent.com/images/cYEYIboyorK5zhnZ7IHEpgKMvYM.png 1176w\"},transformTemplate:undefined},Uf7K9UHZ7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:938,intrinsicWidth:344.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+1649+365-238.5),pixelHeight:2881,pixelWidth:1176,positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/cYEYIboyorK5zhnZ7IHEpgKMvYM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cYEYIboyorK5zhnZ7IHEpgKMvYM.png?scale-down-to=2048 835w,https://framerusercontent.com/images/cYEYIboyorK5zhnZ7IHEpgKMvYM.png 1176w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:938,intrinsicWidth:344.5,pixelHeight:2881,pixelWidth:1176,positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/cYEYIboyorK5zhnZ7IHEpgKMvYM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cYEYIboyorK5zhnZ7IHEpgKMvYM.png?scale-down-to=2048 835w,https://framerusercontent.com/images/cYEYIboyorK5zhnZ7IHEpgKMvYM.png 1176w\"},className:\"framer-e2c4tj\",\"data-framer-name\":\"AlixSpeedWhite\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lrqyps\",\"data-border\":true})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{iBTu4DekZ:\"twin-combi\"},unresolvedPathSlugs:{iBTu4DekZ:{collectionId:\"KyeE4ICZt\",collectionItemId:\"wru9ZCKdW\"}},webPageId:\"B4sNt4Vk3\"},motionChild:true,nodeId:\"ytByIUZOI\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+2036),pixelHeight:4574,pixelWidth:5500,positionX:\"left\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg\",srcSet:\"https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg 5500w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:4574,pixelWidth:5500,positionX:\"left\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg\",srcSet:\"https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/JG0Knt7ZtZfqDWSTt6sDliQSc4.jpg 5500w\"},className:\"framer-1fxlho framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Twin\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:.7,className:\"framer-1iu8edh\",\"data-framer-name\":\"Ellipse 5\",style:{rotate:90},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.45)\"},children:\"TWIN\"})})},Uf7K9UHZ7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"135px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.45)\"},children:\"TWIN\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"180px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.45)\"},children:\"TWIN\"})}),className:\"framer-riwxhu\",fonts:[\"FS;Urbanist-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"FULL AI\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"+ IPL + Carbon\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212))\"},children:\" \"})]})})},Uf7K9UHZ7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.5em\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"FULL AI\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"+ IPL + Carbon\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"44px\",\"--framer-text-color\":\"var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212))\"},children:\" \"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"100px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"FULL AI\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"+ IPL + Carbon\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"44px\",\"--framer-text-color\":\"var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212))\"},children:\" \"})]})}),className:\"framer-9hdzkn\",fonts:[\"FS;Urbanist-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1150,intrinsicWidth:409.5,pixelHeight:1200,pixelWidth:1202,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 + 13px)`,src:\"https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png\",srcSet:\"https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png?scale-down-to=512 512w,https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png 1202w\"}},Uf7K9UHZ7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1150,intrinsicWidth:409.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+0+0+2036+-233),pixelHeight:1200,pixelWidth:1202,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 + 53px)`,src:\"https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png\",srcSet:\"https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png?scale-down-to=512 512w,https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png 1202w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1150,intrinsicWidth:409.5,pixelHeight:1200,pixelWidth:1202,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png\",srcSet:\"https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png?scale-down-to=512 512w,https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mWuCnNI0J0IeMOFHxnS2Pbtxod0.png 1202w\"},className:\"framer-dxc7rj\",\"data-framer-name\":\"3-AI-Red\"})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o49lsg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+2546+0+0),pixelHeight:5504,pixelWidth:8256,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9375, 1400px)`,src:\"https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg\",srcSet:\"https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg 8256w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:5504,pixelWidth:8256,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9375, 1400px) * 0.4)`,src:\"https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg\",srcSet:\"https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ZZR8o0fZq5aB1q4vfSXUVw7gDsw.jpg 8256w\"},className:\"framer-l05fbc\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ic2nfb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qjf7qi\",\"data-styles-preset\":\"GgCnrROor\",children:\"100% AI Full Technologie - Alix Lasers\\xae\"})}),className:\"framer-3m7gjq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Seit 2010 steht Alix Lasers\\xae f\\xfcr h\\xf6chste Qualit\\xe4t und Innovation in der Beauty-Branche. Als weltweit erster Hersteller von Laserger\\xe4ten mit 100 % AI-Technologie setzen wir neue Ma\\xdfst\\xe4be in Pr\\xe4zision, Sicherheit und Effizienz. Mit \\xfcber einem Jahrzehnt Erfahrung hat sich Alix Lasers\\xae als verl\\xe4sslicher Partner f\\xfcr Kosmetikstudios und medizinische Einrichtungen etabliert, die ihren Kunden nur das Beste bieten wollen.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Unsere revolution\\xe4ren Systeme basieren auf vollst\\xe4ndig AI-gest\\xfctzter Technologie und nutzen automatisierte Haut- und Haarscanner, um sich in Echtzeit an individuelle Haut- und Haartypen anzupassen. Dadurch garantieren wir eine noch nie dagewesene Pr\\xe4zision, maximalen Komfort und beeindruckende Behandlungsergebnisse \u2013 ganz ohne manuelle Anpassungen.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:\"Dank kontinuierlicher Forschung und Weiterentwicklung erm\\xf6glichen unsere AI-basierten Laserger\\xe4te einen Arbeitsalltag, der effizienter, sicherer und komfortabler ist als je zuvor. Alix Lasers\\xae bleibt seiner Vision treu: Fortschrittliche Technologien schaffen, die Deine Arbeit erleichtern und Deine Kunden nachhaltig beeindrucken. Entscheide Dich f\\xfcr Erfahrung, Qualit\\xe4t und die Zukunft der Laser-Technologie \u2013 entscheide Dich f\\xfcr Alix Lasers\\xae.\"})]}),className:\"framer-ul8121\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{y:(componentViewport?.y||0)+0+685.2+100+2546+0+290+0+468.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x7nu1n-container\",nodeId:\"nmxv5rdt2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimR,{EmkkJfUBs:\"Meine Online Beratung buchen\",height:\"100%\",id:\"nmxv5rdt2\",layoutId:\"nmxv5rdt2\",LQrji5Jss:\"https://zfrmz.eu/2N9Pr0EwtAOwTwF70yud\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{y:(componentViewport?.y||0)+0+685.2+100+3409.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:308,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1isvb26-container\",nodeId:\"uwImMlhdW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{variant:\"Q0JoAPKUP\"}},children:/*#__PURE__*/_jsx(KundenauslieferungSlider,{height:\"100%\",id:\"uwImMlhdW\",layoutId:\"uwImMlhdW\",style:{width:\"100%\"},variant:\"FTfFDQgVj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{C_z8QQGGR:\"alix-infinity\"},unresolvedPathSlugs:{C_z8QQGGR:{collectionId:\"O543DbFeu\",collectionItemId:\"y_8oq1ouz\"}},webPageId:\"wkN2YO_HQ\"},motionChild:true,nodeId:\"dSksvgyo_\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1aidjcg framer-lux5qc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1az6s1k\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14yckd3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1045.5,intrinsicWidth:407,pixelHeight:1200,pixelWidth:1202,sizes:\"420px\",src:\"https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png\",srcSet:\"https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png 1202w\"}},Uf7K9UHZ7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1045.5,intrinsicWidth:407,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+685.2+100+3777.8+20+0+0+20+-135),pixelHeight:1200,pixelWidth:1202,sizes:\"288px\",src:\"https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png\",srcSet:\"https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png 1202w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1045.5,intrinsicWidth:407,pixelHeight:1200,pixelWidth:1202,sizes:\"488px\",src:\"https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png\",srcSet:\"https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yP0hOB4W3aMaLqeE0oRfSUxJ8.png 1202w\"},className:\"framer-d8m2st\",\"data-framer-name\":\"BlueIce-White\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m99u87\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1qjf7qi\",\"data-styles-preset\":\"GgCnrROor\",style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:[\"Qualit\\xe4t &\",/*#__PURE__*/_jsx(\"br\",{}),\"Eleganz\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-rt4p6y\",\"data-styles-preset\":\"jnHiZj6B_\",style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:[\"Qualit\\xe4t &\",/*#__PURE__*/_jsx(\"br\",{}),\"Eleganz\"]})}),className:\"framer-196joug\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-267u0q\",\"data-styles-preset\":\"UY6bzJEB6\",style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"100% Alexandrit Pur \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-12mh49a\",\"data-styles-preset\":\"PWPzBAU88\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Wellenl\\xe4nge 755 nm und 1064 nm\"})}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Energie 1 - 110 J \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Puls Breite 0.25ms - 100ms\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"einstellbar Frequenz 0.5 Hz - 10 Hz \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Maschine Power 5000W\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Laser Power 3000W\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"DCD - Compressor - Luft-K\\xfchlung\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Spotgr\\xf6\\xdfe 7 verschiedene Spotgr\\xf6\\xdfen \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Standard: 3/12/16/18mm - w\\xe4hlbar: 6/10/24mm\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Real Alexandrit Laser Rod USA\"})]})]}),transformTemplate:undefined},Uf7K9UHZ7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1kkpd4v\",\"data-styles-preset\":\"tl5rJtHHv\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:\"100% Alexandrit Pur\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Wellenl\\xe4nge 755 nm und 1064 nm\"})})]})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-267u0q\",\"data-styles-preset\":\"UY6bzJEB6\",style:{\"--framer-text-color\":\"var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, rgb(255, 255, 255))\"},children:[\"100% Alexandrit Pur\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"Wellenl\\xe4nge 755 nm und 1064 nm\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Energie 1 - 110 J \",/*#__PURE__*/_jsx(\"br\",{}),\"Puls Breite 0.25ms - 100ms\",/*#__PURE__*/_jsx(\"br\",{}),\"einstellbar Frequenz 0.5 Hz - 10 Hz \",/*#__PURE__*/_jsx(\"br\",{}),\"Maschine Power 5000W\",/*#__PURE__*/_jsx(\"br\",{}),\"Laser Power 3000W\",/*#__PURE__*/_jsx(\"br\",{}),\"DCD - Compressor - Luft-K\\xfchlung\",/*#__PURE__*/_jsx(\"br\",{}),\"Spotgr\\xf6\\xdfe 7 verschiedene Spotgr\\xf6\\xdfen \",/*#__PURE__*/_jsx(\"br\",{}),\"Standard: 3/12/16/18mm - w\\xe4hlbar: 6/10/24mm\",/*#__PURE__*/_jsx(\"br\",{}),\"Real Alexandrit Laser Rod USA\"]})}),className:\"framer-i849q1\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1apvb9z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qjf7qi\",\"data-styles-preset\":\"GgCnrROor\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ausschlie\\xdflich neueste Technologie bei Alix Lasers \\xae\"})}),className:\"framer-1jbgmwt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-z7cy8o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IUSsIb5US\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"columns\"}},Uf7K9UHZ7:{sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(CMSCarousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212))\",arrowPadding:0,arrowRadius:30,arrowSize:28,showMouseControls:true},axis:true,borderRadius:12,collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8vqmbd\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iXkGpLxfX\",data:Produkte,type:\"Collection\"},select:[{collection:\"iXkGpLxfX\",name:\"C_z8QQGGR\",type:\"Identifier\"},{collection:\"iXkGpLxfX\",name:\"yUxLHRs5Q\",type:\"Identifier\"},{collection:\"iXkGpLxfX\",name:\"DSRHV0L7q\",type:\"Identifier\"},{collection:\"iXkGpLxfX\",name:\"id\",type:\"Identifier\"}],where:{left:{arguments:[{collection:\"iXkGpLxfX\",name:\"acVwLk9Ay\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"AI\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"iXkGpLxfX\",name:\"DSRHV0L7q\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Alix BlueIce + Multi Skin Master + AlixCelluEX\"},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({C_z8QQGGR:C_z8QQGGRiXkGpLxfX,DSRHV0L7q:DSRHV0L7qiXkGpLxfX,id:idiXkGpLxfX,yUxLHRs5Q:yUxLHRs5QiXkGpLxfX},index)=>{C_z8QQGGRiXkGpLxfX??=\"\";DSRHV0L7qiXkGpLxfX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`iXkGpLxfX-${idiXkGpLxfX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{C_z8QQGGR:C_z8QQGGRiXkGpLxfX},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{C_z8QQGGR:C_z8QQGGRiXkGpLxfX},webPageId:\"wkN2YO_HQ\"},motionChild:true,nodeId:\"aXjAlroxW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-m8j3g6 framer-lux5qc\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3b67wa\",\"data-framer-name\":\"Bild Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"160px\",...toResponsiveImage(yUxLHRs5QiXkGpLxfX),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-bf9pos\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wztp2j\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(313deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, rgb(7, 86, 129)) 20%, rgb(43, 148, 204) 42.34234234234234%, rgb(120, 198, 240) 54.95495495495496%, rgb(44, 151, 209) 67.11711711711712%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 90%)\"},children:\"ALIX BLUEICE MINI AI 3W\"})})}),className:\"framer-ubw48c\",\"data-framer-name\":\"Title\",fonts:[\"FS;Urbanist-bold\"],style:{rotate:-90},text:DSRHV0L7qiXkGpLxfX,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})},idiXkGpLxfX);})})})})})],endLayers:[],fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:30,height:\"100%\",id:\"IUSsIb5US\",layoutId:\"IUSsIb5US\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:4,widthInset:0,widthType:\"columns\"},snapObject:{fluid:true,snap:true,snapEdge:\"start\"},startLayers:[],style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tgvsx7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{y:(componentViewport?.y||0)+0+685.2+100+4480.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lprykn-container\",nodeId:\"TRZMRnfle\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{variant:\"hUBzBSlhy\"}},children:/*#__PURE__*/_jsx(AnwenderTabs,{height:\"100%\",id:\"TRZMRnfle\",layoutId:\"TRZMRnfle\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"CX4u_NaU2\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9rOnEcIq:{y:722},Uf7K9UHZ7:{y:688}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:152,y:796,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17lcizw-container\",layoutScroll:true,nodeId:\"Pzso14r86\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTASticky,{height:\"100%\",id:\"Pzso14r86\",layoutId:\"Pzso14r86\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{y:(componentViewport?.y||0)+0+5823.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:442,width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fk7oxk-container\",nodeId:\"D20YS_IXu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Uf7K9UHZ7:{variant:\"oyqs4gQCX\"}},children:/*#__PURE__*/_jsx(FuZeile,{height:\"100%\",id:\"D20YS_IXu\",layoutId:\"D20YS_IXu\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"zGkowuORj\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-80Dh0.framer-lux5qc, .framer-80Dh0 .framer-lux5qc { display: block; }\",\".framer-80Dh0.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-64c42675-e940-4b3f-ad57-e4886a8e2989, #d8e4eb); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-80Dh0 .framer-1nx9fpd-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: -1px; z-index: 9; }\",\".framer-80Dh0 .framer-1xad10 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-80Dh0 .framer-3yp62k { align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 80px 0px 15px 0px; position: relative; width: 97%; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-1icjkny { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-80Dh0 .framer-hq6gwb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-80Dh0 .framer-1q7q1un { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-80Dh0 .framer-kjhn0g, .framer-80Dh0 .framer-1vdrvi2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1000px; word-break: break-word; word-wrap: break-word; }\",\".framer-80Dh0 .framer-13b933b-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-80Dh0 .framer-1eo8aad { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; min-height: 480px; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-80Dh0 .framer-w4w060 { align-content: center; align-items: center; background: linear-gradient(64.83545479980833deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, #075681) 0%, rgb(51, 137, 184) 38.288288288288285%, rgb(95, 193, 250) 51.35135135135135%, rgb(35, 157, 222) 73%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 100%); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 10px; position: absolute; top: -60px; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-80Dh0 .framer-13d2rk9 { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.36); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 565px; justify-content: center; left: calc(50.00000000000002% - 1000px / 2); overflow: hidden; padding: 0px 0px 60px 0px; position: absolute; top: calc(49.914529914529936% - 565px / 2); width: 1000px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-80Dh0 .framer-1d4bmpa { align-content: center; align-items: center; aspect-ratio: 1 / 1; background: linear-gradient(64.83545479980833deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, #075681) 0%, rgb(51, 137, 184) 38.288288288288285%, rgb(95, 193, 250) 51.35135135135135%, rgb(35, 157, 222) 73%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 100%); border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; box-shadow: 4px 4px 40px -10px rgba(28, 147, 212, 0.4); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 100px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 6px; position: relative; width: 100px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-80Dh0 .framer-1sss3eq-container { flex: none; height: 50px; position: relative; width: 50px; }\",\".framer-80Dh0.framer-197codi { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-80Dh0.framer-1n5p44i { -webkit-backdrop-filter: blur(12px); align-content: center; align-items: center; backdrop-filter: blur(12px); background-color: rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-80Dh0 .framer-rlsm8s { align-content: center; align-items: center; background: linear-gradient(64.83545479980833deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, #075681) 0%, rgb(51, 137, 184) 38.288288288288285%, rgb(95, 193, 250) 51.35135135135135%, rgb(35, 157, 222) 73%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 100%); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-80Dh0 .framer-wcwcvj { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.7699115044247788 / 1; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 678px); justify-content: flex-end; left: 10px; overflow: hidden; padding: 22px 22px 0px 0px; position: absolute; top: 50%; transform: translateY(-50%); width: 1180px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-80Dh0 .framer-1woload { align-content: center; align-items: center; aspect-ratio: 1 / 1; background: linear-gradient(64.83545479980833deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, #075681) 0%, rgb(51, 137, 184) 38.288288288288285%, rgb(95, 193, 250) 51.35135135135135%, rgb(35, 157, 222) 73%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 100%); border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; box-shadow: 4px 4px 40px -10px rgba(28, 147, 212, 0.4); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 20px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-80Dh0 .framer-54wge8-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-80Dh0 .framer-w5s2jy-container { aspect-ratio: 1.7699115044247788 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 668px); position: relative; width: 1180px; z-index: 0; }\",\".framer-80Dh0 .framer-1gc5bw4-container { flex: none; height: 565px; position: relative; width: 1000px; }\",\".framer-80Dh0 .framer-aqczrk-container { aspect-ratio: 1 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 66px); position: absolute; right: 74px; width: 66px; z-index: 3; }\",\".framer-80Dh0 .framer-1mv1a0n { bottom: -170px; flex: none; left: 694px; overflow: visible; position: absolute; text-decoration: none; top: -113px; width: 521px; z-index: 1; }\",\".framer-80Dh0 .framer-fnhn7t { bottom: -84px; flex: none; height: 675px; left: 446px; overflow: visible; position: absolute; width: 337px; z-index: 8; }\",\".framer-80Dh0 .framer-16uy5kx { -webkit-filter: blur(100px); aspect-ratio: 0.875 / 1; background: linear-gradient(212deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, #075681) -35%, rgb(28, 133, 189) 26%, rgb(69, 185, 247) 56.75675675675676%, rgb(33, 148, 209) 77.47747747747748%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 131%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -232px; filter: blur(100px); flex: none; left: 50%; opacity: 0.6; position: absolute; top: -19px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 1058px); z-index: 0; }\",\".framer-80Dh0 .framer-mpxbns { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-80Dh0 .framer-1nezl5h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-80Dh0 .framer-18s0ng3 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 44px; height: 376px; justify-content: flex-start; overflow: hidden; padding: 20px 30px 40px 30px; position: relative; text-decoration: none; width: 60%; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-1ph71v0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-80Dh0 .framer-11t3lbx, .framer-80Dh0 .framer-7wdyea { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-80Dh0 .framer-1ybq8x7 { align-content: center; align-items: center; background: linear-gradient(64.83545479980833deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, #075681) 0%, rgb(51, 137, 184) 38.288288288288285%, rgb(95, 193, 250) 51.35135135135135%, rgb(35, 157, 222) 73%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 14px 4px 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-slspsq { aspect-ratio: 0.3998456194519491 / 1; bottom: -365px; flex: none; height: var(--framer-aspect-ratio-supported, 965px); left: 21%; overflow: visible; position: absolute; transform: translateX(-50%); width: 386px; z-index: 2; }\",\".framer-80Dh0 .framer-v08twl { aspect-ratio: 0.3998456194519491 / 1; bottom: -164px; flex: none; height: var(--framer-aspect-ratio-supported, 583px); overflow: visible; position: absolute; right: 15px; width: 233px; z-index: 1; }\",\".framer-80Dh0 .framer-1cy3g3c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; bottom: 27px; flex: none; height: auto; left: 53%; position: absolute; transform: translateX(-50%); user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-80Dh0 .framer-1iqv8yj { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: 377px; justify-content: flex-start; min-width: 100px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-of71gz { 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: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-80Dh0 .framer-86kkp1, .framer-80Dh0 .framer-tsre22, .framer-80Dh0 .framer-fv7ydh { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-80Dh0 .framer-cnlqmf { flex: none; height: 497px; left: calc(49.75609756097563% - 190px / 2); overflow: visible; position: absolute; top: calc(94.4297082228117% - 497px / 2); width: 190px; z-index: 1; }\",\".framer-80Dh0 .framer-4nxnxm { --border-bottom-width: 2px; --border-color: rgba(255, 255, 255, 0.22); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); background-color: rgba(255, 255, 255, 0.4); border-bottom-left-radius: 600px; border-bottom-right-radius: 600px; border-top-left-radius: 600px; border-top-right-radius: 600px; bottom: -212px; flex: none; height: 412px; left: calc(49.75609756097563% - 381px / 2); overflow: hidden; position: absolute; width: 381px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-80Dh0 .framer-yup0f9 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 367px; justify-content: flex-start; overflow: hidden; padding: 40px 30px 40px 30px; position: relative; text-decoration: none; width: 35%; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-1fbsts8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-80Dh0 .framer-s4t4kf, .framer-80Dh0 .framer-mdx99 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-80Dh0 .framer-vzi8n9 { bottom: -204px; flex: none; height: 449px; overflow: visible; position: absolute; right: -22px; width: 211px; z-index: 0; }\",\".framer-80Dh0 .framer-1mudapu { bottom: -295px; flex: none; height: 688px; left: 769px; overflow: visible; position: absolute; width: 332px; z-index: 8; }\",\".framer-80Dh0 .framer-1vxw0y1 { align-content: center; align-items: center; bottom: 107px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 20px; overflow: hidden; padding: 0px; position: absolute; width: 318px; z-index: 1; }\",\".framer-80Dh0 .framer-2tlwii, .framer-80Dh0 .framer-12dmlo5, .framer-80Dh0 .framer-12943vc, .framer-80Dh0 .framer-qh9l1, .framer-80Dh0 .framer-19drtvn, .framer-80Dh0 .framer-sxmrn2, .framer-80Dh0 .framer-m4caao { 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-80Dh0 .framer-14xhkd6, .framer-80Dh0 .framer-nd8l7n, .framer-80Dh0 .framer-ki2pkj { align-content: center; align-items: center; background: linear-gradient(212deg, #5f3f19 -35%, rgb(164, 123, 65) 26%, rgb(251, 225, 130) 56.75675675675676%, rgb(196, 156, 92) 77.47747747747748%, rgb(165, 124, 66) 131%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 28px; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-2o54wy-container, .framer-80Dh0 .framer-1iyem6d-container, .framer-80Dh0 .framer-p3rhir-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-80Dh0 .framer-1kzo5x6, .framer-80Dh0 .framer-pcmjqn, .framer-80Dh0 .framer-yiz61j, .framer-80Dh0 .framer-1dozo66, .framer-80Dh0 .framer-y4mer7, .framer-80Dh0 .framer-1jeeiyj, .framer-80Dh0 .framer-gjysx9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-80Dh0 .framer-1fnp8gg { --border-bottom-width: 2px; --border-color: #c59f5e; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1 / 1; border-bottom-left-radius: 400px; border-bottom-right-radius: 400px; border-top-left-radius: 400px; border-top-right-radius: 400px; bottom: 21px; flex: none; height: var(--framer-aspect-ratio-supported, 65px); left: 25px; overflow: visible; position: absolute; width: 65px; z-index: 1; }\",\".framer-80Dh0 .framer-1hgpf4k { --border-bottom-width: 2px; --border-color: #c59f5e; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1 / 1; border-bottom-left-radius: 400px; border-bottom-right-radius: 400px; border-top-left-radius: 400px; border-top-right-radius: 400px; bottom: 21px; flex: none; height: var(--framer-aspect-ratio-supported, 65px); left: 73px; overflow: visible; position: absolute; width: 65px; z-index: 1; }\",\".framer-80Dh0 .framer-11u9w9u { --border-bottom-width: 2px; --border-color: #c59f5e; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1 / 1; border-bottom-left-radius: 400px; border-bottom-right-radius: 400px; border-top-left-radius: 400px; border-top-right-radius: 400px; bottom: 21px; flex: none; height: var(--framer-aspect-ratio-supported, 65px); left: 124px; overflow: visible; position: absolute; width: 65px; z-index: 1; }\",\".framer-80Dh0 .framer-owwmpd { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-85a2d553-e121-402f-a0b1-fc1b80f11e81, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 367px; justify-content: center; min-width: 35%; overflow: hidden; padding: 10px 30px 80px 50px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-nsks99 { --framer-paragraph-spacing: 0px; bottom: -47px; flex: none; height: auto; left: -41px; position: absolute; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-80Dh0 .framer-19mach5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 332px; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-80Dh0 .framer-bp0k09 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-80Dh0 .framer-1crx27z, .framer-80Dh0 .framer-1531uy, .framer-80Dh0 .framer-61s7ik, .framer-80Dh0 .framer-1dcxgnk { align-content: center; align-items: center; background: linear-gradient(212deg, #5f3f19 -35%, rgb(164, 123, 65) 26%, rgb(251, 225, 130) 56.75675675675676%, rgb(196, 156, 92) 77.47747747747748%, rgb(165, 124, 66) 131%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-y7rn44-container, .framer-80Dh0 .framer-h84fis-container, .framer-80Dh0 .framer-1b5hi2u-container, .framer-80Dh0 .framer-pxt5wp-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-80Dh0 .framer-w19365 { aspect-ratio: 0.3560869565217391 / 1; bottom: -738px; flex: none; height: var(--framer-aspect-ratio-supported, 1556px); overflow: visible; position: absolute; right: -166px; width: 554px; z-index: 1; }\",\".framer-80Dh0 .framer-1c2tjvd { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: 365px; justify-content: flex-start; overflow: hidden; padding: 22px 10px 20px 10px; position: relative; text-decoration: none; width: 45%; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-17no6kk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-80Dh0 .framer-1g5a29y { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-80Dh0 .framer-e2c4tj { align-content: center; align-items: center; aspect-ratio: 0.36727078891257997 / 1; bottom: -321px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: var(--framer-aspect-ratio-supported, 553px); justify-content: center; left: 47%; overflow: visible; padding: 0px; position: absolute; transform: translateX(-50%); width: 203px; z-index: 1; }\",\".framer-80Dh0 .framer-lrqyps { --border-bottom-width: 2px; --border-color: rgba(255, 255, 255, 0.22); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); background: linear-gradient(64.83545479980833deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, #075681) 0%, rgb(51, 137, 184) 38.288288288288285%, rgb(95, 193, 250) 51.35135135135135%, rgb(35, 157, 222) 73%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 100%); border-bottom-left-radius: 600px; border-bottom-right-radius: 600px; border-top-left-radius: 600px; border-top-right-radius: 600px; bottom: -266px; flex: none; height: 449px; left: calc(48.14814814814817% - 409px / 2); overflow: hidden; position: absolute; width: 409px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-80Dh0 .framer-1fxlho { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: stretch; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: auto; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-1iu8edh { -webkit-filter: blur(100px); aspect-ratio: 0.875 / 1; background: linear-gradient(212deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, #075681) -35%, rgb(28, 133, 189) 26%, rgb(69, 185, 247) 56.75675675675676%, rgb(33, 148, 209) 77.47747747747748%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 131%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -231px; filter: blur(100px); flex: none; left: 50%; opacity: 0.7; position: absolute; top: -19px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 538px); z-index: 0; }\",\".framer-80Dh0 .framer-riwxhu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: none; height: auto; position: absolute; right: -10px; top: -65px; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-80Dh0 .framer-9hdzkn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: absolute; right: 42px; top: 185px; white-space: pre; width: auto; z-index: 1; }\",\".framer-80Dh0 .framer-dxc7rj { aspect-ratio: 0.3560869565217391 / 1; bottom: -476px; flex: none; left: -108px; overflow: visible; position: absolute; top: -332px; width: var(--framer-aspect-ratio-supported, 418px); z-index: 1; }\",\".framer-80Dh0 .framer-o49lsg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 94%; }\",\".framer-80Dh0 .framer-l05fbc { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40%; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-1ic2nfb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 0px 6px 0px; position: relative; width: 1px; }\",\".framer-80Dh0 .framer-3m7gjq, .framer-80Dh0 .framer-ul8121, .framer-80Dh0 .framer-1jbgmwt { --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-80Dh0 .framer-x7nu1n-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-80Dh0 .framer-1isvb26-container, .framer-80Dh0 .framer-z7cy8o-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-80Dh0 .framer-1aidjcg { align-content: center; align-items: center; background: linear-gradient(212deg, var(--token-8e3f0c9a-6ea2-4a83-bb8b-c2c04dea1226, #075681) -35%, rgb(28, 133, 189) 26%, rgb(69, 185, 247) 56.75675675675676%, rgb(33, 148, 209) 77.47747747747748%, var(--token-84eb8894-2ed4-43bb-89e7-6dcec7cdf797, rgb(28, 147, 212)) 131%); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1400%; overflow: visible; padding: 1px 40px 0px 40px; position: relative; text-decoration: none; width: 90%; }\",\".framer-80Dh0 .framer-1az6s1k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-80Dh0 .framer-14yckd3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: flex-start; min-width: 350px; padding: 0px; position: relative; width: min-content; }\",\".framer-80Dh0 .framer-d8m2st { flex: none; height: 483px; overflow: visible; position: absolute; right: -690px; top: -88px; width: 488px; z-index: 1; }\",\".framer-80Dh0 .framer-m99u87 { 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; min-height: 294px; padding: 0px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-80Dh0 .framer-196joug { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: -61px; position: absolute; top: -25px; white-space: pre-wrap; width: 570px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-80Dh0 .framer-i849q1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: -418px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre-wrap; width: 570px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-80Dh0 .framer-1apvb9z { 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; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 94%; }\",\".framer-80Dh0 .framer-8vqmbd { display: grid; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1080px; }\",\".framer-80Dh0 .framer-m8j3g6 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-80Dh0 .framer-3b67wa { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 340px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-80Dh0 .framer-bf9pos { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 300px; position: relative; width: 160px; }\",\".framer-80Dh0 .framer-wztp2j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40px; }\",\".framer-80Dh0 .framer-ubw48c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-80Dh0 .framer-1tgvsx7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px 0px 27px 0px; position: relative; width: 90%; }\",\".framer-80Dh0 .framer-lprykn-container { flex: none; height: auto; max-width: 1400px; position: relative; width: 100%; }\",\".framer-80Dh0 .framer-17lcizw-container { bottom: 52px; flex: none; height: auto; left: 0px; position: fixed; width: auto; z-index: 6; }\",\".framer-80Dh0 .framer-1fk7oxk-container { flex: none; height: auto; max-width: 1400px; position: relative; width: 90%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-80Dh0[data-border=\"true\"]::after, .framer-80Dh0 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-80Dh0.framer-72rtr7 { width: 810px; } .framer-80Dh0 .framer-1nx9fpd-container { order: 0; z-index: 10; } .framer-80Dh0 .framer-1xad10, .framer-80Dh0 .framer-of71gz, .framer-80Dh0 .framer-12943vc, .framer-80Dh0 .framer-lrqyps { order: 2; } .framer-80Dh0 .framer-3yp62k { gap: 3px; padding: 0px 0px 15px 0px; } .framer-80Dh0 .framer-1icjkny { order: 0; padding: 20px 0px 0px 0px; width: 80%; } .framer-80Dh0 .framer-kjhn0g { flex: 1 0 0px; width: 1px; } .framer-80Dh0 .framer-1vdrvi2, .framer-80Dh0 .framer-1g5a29y { width: 100%; } .framer-80Dh0 .framer-1eo8aad { gap: 0px; height: 400px; min-height: unset; order: 1; width: 100%; } .framer-80Dh0 .framer-w4w060 { bottom: -50px; top: unset; } .framer-80Dh0 .framer-13d2rk9 { aspect-ratio: 1.7699115044247788 / 1; height: var(--framer-aspect-ratio-supported, 396px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 700px; } .framer-80Dh0 .framer-1gc5bw4-container { aspect-ratio: 1.7699115044247788 / 1; height: var(--framer-aspect-ratio-supported, 396px); width: 700px; } .framer-80Dh0 .framer-aqczrk-container { bottom: -5px; right: 19px; } .framer-80Dh0 .framer-1mv1a0n { bottom: -130px; left: 396px; top: -3px; width: 377px; } .framer-80Dh0 .framer-16uy5kx { order: 2; width: var(--framer-aspect-ratio-supported, 794px); } .framer-80Dh0 .framer-mpxbns { gap: 90px; order: 3; } .framer-80Dh0 .framer-1nezl5h { order: 3; } .framer-80Dh0 .framer-18s0ng3 { height: 330px; order: 0; } .framer-80Dh0 .framer-1ph71v0, .framer-80Dh0 .framer-1fxlho, .framer-80Dh0 .framer-1isvb26-container, .framer-80Dh0 .framer-1fk7oxk-container { order: 5; } .framer-80Dh0 .framer-slspsq { bottom: -326px; height: var(--framer-aspect-ratio-supported, 845px); left: 20%; order: 1; width: 338px; } .framer-80Dh0 .framer-v08twl { bottom: -146px; height: var(--framer-aspect-ratio-supported, 483px); left: 259px; order: 3; right: unset; width: 193px; } .framer-80Dh0 .framer-1cy3g3c { bottom: unset; height: 34px; left: 149px; order: 2; top: 68px; transform: unset; } .framer-80Dh0 .framer-1iqv8yj { height: 330px; order: 1; } .framer-80Dh0 .framer-cnlqmf { bottom: -243px; left: unset; order: 0; right: 34px; top: unset; } .framer-80Dh0 .framer-4nxnxm, .framer-80Dh0 .framer-1kzo5x6, .framer-80Dh0 .framer-12dmlo5, .framer-80Dh0 .framer-yiz61j { order: 1; } .framer-80Dh0 .framer-yup0f9 { order: 2; padding: 10px 10px 40px 10px; width: 40%; } .framer-80Dh0 .framer-1fbsts8, .framer-80Dh0 .framer-s4t4kf { order: 0; z-index: 1; } .framer-80Dh0 .framer-vzi8n9 { bottom: -88px; height: 366px; order: 1; right: -27px; width: 162px; z-index: 2; } .framer-80Dh0 .framer-1mudapu { bottom: -113px; height: 486px; left: 524px; width: 236px; z-index: 0; } .framer-80Dh0 .framer-1vxw0y1 { bottom: unset; gap: 16px; left: 16px; order: 2; top: 51%; transform: translateY(-50%); width: 195px; } .framer-80Dh0 .framer-2tlwii, .framer-80Dh0 .framer-14xhkd6, .framer-80Dh0 .framer-ki2pkj { order: 0; } .framer-80Dh0 .framer-1fnp8gg { bottom: 28px; height: var(--framer-aspect-ratio-supported, 50px); left: 15px; order: 3; width: 50px; } .framer-80Dh0 .framer-1hgpf4k { bottom: 28px; height: var(--framer-aspect-ratio-supported, 50px); left: 43px; order: 4; width: 50px; } .framer-80Dh0 .framer-11u9w9u { bottom: 28px; height: var(--framer-aspect-ratio-supported, 50px); left: 68px; order: 5; width: 50px; } .framer-80Dh0 .framer-owwmpd { align-content: flex-end; align-items: flex-end; order: 3; } .framer-80Dh0 .framer-nsks99 { bottom: -18px; left: -33px; right: -111px; width: unset; } .framer-80Dh0 .framer-mdx99 { width: 70%; } .framer-80Dh0 .framer-19mach5 { width: 60%; } .framer-80Dh0 .framer-w19365 { bottom: -305px; height: var(--framer-aspect-ratio-supported, 986px); right: 159px; width: 351px; } .framer-80Dh0 .framer-1c2tjvd { order: 4; padding: 20px; } .framer-80Dh0 .framer-17no6kk { gap: 6px; order: 1; } .framer-80Dh0 .framer-e2c4tj { bottom: -382px; height: var(--framer-aspect-ratio-supported, 662px); left: unset; order: 0; right: 40px; transform: unset; width: 243px; } .framer-80Dh0 .framer-riwxhu { bottom: 235px; left: 130px; right: unset; top: unset; } .framer-80Dh0 .framer-9hdzkn { right: 21px; top: 205px; } .framer-80Dh0 .framer-dxc7rj { bottom: unset; height: var(--framer-aspect-ratio-supported, 1101px); left: -132px; right: 119px; top: -301px; width: unset; } .framer-80Dh0 .framer-o49lsg { order: 4; } .framer-80Dh0 .framer-1aidjcg { order: 6; padding: 0px 40px 0px 40px; width: 96%; } .framer-80Dh0 .framer-14yckd3 { min-width: unset; width: 40%; } .framer-80Dh0 .framer-d8m2st { height: 480px; order: 0; right: -419px; top: -90px; width: 420px; z-index: 9; } .framer-80Dh0 .framer-196joug { left: -349px; order: 0; top: -8px; width: 339px; } .framer-80Dh0 .framer-i849q1 { bottom: -20px; left: -349px; order: 1; top: unset; transform: unset; width: 339px; } .framer-80Dh0 .framer-1apvb9z { order: 7; } .framer-80Dh0 .framer-1tgvsx7 { order: 8; } .framer-80Dh0 .framer-17lcizw-container { bottom: 126px; order: 4; }}\",\"@media (max-width: 809px) { .framer-80Dh0.framer-72rtr7 { width: 390px; } .framer-80Dh0 .framer-1nx9fpd-container, .framer-80Dh0 .framer-1icjkny, .framer-80Dh0 .framer-bp0k09, .framer-80Dh0 .framer-3m7gjq { order: 0; } .framer-80Dh0 .framer-1xad10, .framer-80Dh0 .framer-x7nu1n-container { order: 2; } .framer-80Dh0 .framer-3yp62k { gap: 45px; padding: 40px 0px 0px 0px; } .framer-80Dh0 .framer-hq6gwb { order: 0; padding: 0px 20px 0px 20px; } .framer-80Dh0 .framer-kjhn0g { flex: 1 0 0px; width: 1px; } .framer-80Dh0 .framer-1vdrvi2 { width: 100%; } .framer-80Dh0 .framer-13b933b-container, .framer-80Dh0 .framer-ul8121 { order: 1; } .framer-80Dh0 .framer-1eo8aad { height: 335px; min-height: unset; order: 1; width: 97%; } .framer-80Dh0 .framer-w4w060 { bottom: 111px; padding: 5px; top: unset; } .framer-80Dh0 .framer-13d2rk9 { aspect-ratio: 1.7699115044247788 / 1; height: var(--framer-aspect-ratio-supported, 170px); left: 50%; padding: 0px; top: 50%; transform: translate(-50%, -50%); width: 300px; } .framer-80Dh0 .framer-1d4bmpa { height: var(--framer-aspect-ratio-supported, 70px); order: 0; width: 70px; } .framer-80Dh0 .framer-1sss3eq-container { height: 34px; width: 34px; } .framer-80Dh0 .framer-1gc5bw4-container { aspect-ratio: 1.7699115044247788 / 1; height: var(--framer-aspect-ratio-supported, 170px); width: 300px; } .framer-80Dh0 .framer-aqczrk-container { bottom: 7px; height: var(--framer-aspect-ratio-supported, 45px); right: 0px; width: 45px; } .framer-80Dh0 .framer-1mv1a0n { bottom: -123px; height: 436px; left: 169px; top: unset; width: 196px; } .framer-80Dh0 .framer-16uy5kx { bottom: 30px; height: var(--framer-aspect-ratio-supported, 587px); left: -125px; order: 2; right: -10px; top: unset; transform: unset; width: unset; } .framer-80Dh0 .framer-mpxbns { gap: 60px; order: 4; } .framer-80Dh0 .framer-1nezl5h { flex-direction: column; order: 3; } .framer-80Dh0 .framer-18s0ng3 { align-content: center; align-items: center; flex-direction: column; height: 450px; order: 0; width: 100%; } .framer-80Dh0 .framer-1ph71v0 { flex: none; width: 100%; } .framer-80Dh0 .framer-slspsq { bottom: -331px; height: var(--framer-aspect-ratio-supported, 933px); left: 25%; width: 373px; } .framer-80Dh0 .framer-v08twl { bottom: unset; height: var(--framer-aspect-ratio-supported, 478px); right: -14px; top: 72%; transform: translateY(-50%); width: 191px; } .framer-80Dh0 .framer-1cy3g3c { bottom: unset; height: 31px; left: 173px; top: 132px; transform: unset; } .framer-80Dh0 .framer-1iqv8yj { flex: none; order: 1; width: 100%; } .framer-80Dh0 .framer-cnlqmf { bottom: -235px; height: unset; left: unset; right: 94px; top: 154px; width: 163px; } .framer-80Dh0 .framer-yup0f9 { order: 2; width: 100%; } .framer-80Dh0 .framer-vzi8n9 { bottom: -121px; height: 376px; right: -11px; width: 177px; } .framer-80Dh0 .framer-owwmpd { flex: none; order: 3; width: 100%; } .framer-80Dh0 .framer-nsks99 { bottom: 0px; height: 113px; left: 0px; white-space: pre; width: auto; } .framer-80Dh0 .framer-mdx99 { left: 15px; position: absolute; top: 10px; width: 249px; z-index: 1; } .framer-80Dh0 .framer-19mach5 { bottom: 130px; left: 20px; position: absolute; width: 62%; z-index: 1; } .framer-80Dh0 .framer-w19365 { bottom: -366px; height: var(--framer-aspect-ratio-supported, 958px); right: -135px; width: 341px; } .framer-80Dh0 .framer-1c2tjvd { order: 4; width: 100%; } .framer-80Dh0 .framer-17no6kk { gap: 6px; } .framer-80Dh0 .framer-e2c4tj { bottom: -314px; left: unset; right: 74px; transform: unset; } .framer-80Dh0 .framer-1fxlho { align-self: unset; flex: none; height: 450px; order: 5; width: 100%; } .framer-80Dh0 .framer-1iu8edh { bottom: unset; height: var(--framer-aspect-ratio-supported, 574px); left: -129px; right: -22px; top: 211px; transform: unset; width: unset; } .framer-80Dh0 .framer-riwxhu { left: 7px; right: unset; top: -46px; } .framer-80Dh0 .framer-9hdzkn { bottom: 143px; left: 176px; right: unset; top: unset; } .framer-80Dh0 .framer-dxc7rj { bottom: unset; height: var(--framer-aspect-ratio-supported, 1135px); left: -126px; right: 74px; top: -233px; width: unset; } .framer-80Dh0 .framer-o49lsg { flex-direction: column; gap: 40px; order: 4; } .framer-80Dh0 .framer-l05fbc { align-self: unset; height: 250px; width: 100%; } .framer-80Dh0 .framer-1ic2nfb { flex: none; padding: 0px; width: 100%; } .framer-80Dh0 .framer-1isvb26-container, .framer-80Dh0 .framer-1fk7oxk-container { order: 5; } .framer-80Dh0 .framer-1aidjcg { order: 6; padding: 20px 20px 0px 20px; } .framer-80Dh0 .framer-1az6s1k { flex-direction: column; gap: 20px; } .framer-80Dh0 .framer-14yckd3 { height: 250px; min-width: unset; order: 1; width: 100%; } .framer-80Dh0 .framer-d8m2st { bottom: -69px; height: unset; order: 0; right: 0px; top: -135px; width: 288px; } .framer-80Dh0 .framer-m99u87 { flex: none; order: 0; padding: 0px; width: 100%; } .framer-80Dh0 .framer-196joug { left: 7px; top: 10px; width: 186px; z-index: 6; } .framer-80Dh0 .framer-i849q1 { bottom: 68px; left: unset; right: -20px; top: unset; transform: unset; width: 234px; z-index: 6; } .framer-80Dh0 .framer-1apvb9z { order: 7; } .framer-80Dh0 .framer-1tgvsx7 { order: 8; padding: 0px 0px 50px 0px; } .framer-80Dh0 .framer-17lcizw-container { bottom: 160px; left: 4px; order: 3; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5399\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"h9rOnEcIq\":{\"layout\":[\"fixed\",\"auto\"]},\"Uf7K9UHZ7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"iXkGpLxfX\":{\"pattern\":\":iXkGpLxfX\",\"name\":\"produkte\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-80Dh0\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5399,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Urbanist\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/Y3L2ZYYP26QQ73LRHQEGMGHU7HLMLCIE/5WHYQ3VUOWNEN3Y7DIOEXY5R4W6MYIPF/SS2LIWIFT3QZUKOLJ7TGBEFWHF3TFYQD.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NeueKopfzeile0325Fonts,...RunningStrokeFonts,...FeatherFonts,...VideoFonts,...AudioFonts,...ButtonPrimRFonts,...KundenauslieferungSliderFonts,...CMSCarouselFonts,...AnwenderTabsFonts,...CTAStickyFonts,...FuZeileFonts,...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\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"iXkGpLxfX\\\":{\\\"pattern\\\":\\\":iXkGpLxfX\\\",\\\"name\\\":\\\"produkte\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h9rOnEcIq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Uf7K9UHZ7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"5399\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "v", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "Z", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "slideshowProps", "getComponentProps", "Slideshow", "CMSSlideshow", "props", "_props_collectionList", "startLayers", "endLayers", "otherProps", "isCanvas", "RenderTarget", "items", "getCollectionListItems", "layers", "i", "p", "CanvasPlaceholder", "layer", "q", "motion", "shuffleArray", "addPropertyControls", "ControlType", "component", "slots", "getPropertyControls", "title", "subtitle", "u", "array", "j", "collectionList", "_collectionList_props", "_collectionList_props_children_props", "_collectionList_props_children", "_collectionList_props1", "_collectionList_props_children_props_children_props", "_collectionList_props_children_props_children", "_collectionList_props_children_props1", "_collectionList_props_children1", "_collectionList_props2", "_collectionList_props_query", "_ref", "query", "_collectionList_props3", "_clpc_props", "_clpc_props_children_props", "_clpc_props_children", "_clpc_props1", "childrenFunction", "clpc", "data", "useQueryData", "children", "_clChildren_props_children", "_clChildren_props", "_clChildren_props1", "clChildren", "CMSCarousel", "props", "_props_collectionList", "startLayers", "endLayers", "otherProps", "isCanvas", "RenderTarget", "items", "getCollectionListItems", "layers", "count", "i", "p", "CanvasPlaceholder", "Carousel", "addPropertyControls", "ControlType", "getComponentProps", "component", "slots", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearsxet3o", "args", "CycleVariantState", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "css", "FramerDLtGxv24v", "withCSS", "DLtGxv24v_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap2", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "otvk4k0qT", "oIHqgNmo0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1lutmau", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerugXRw4gru", "withCSS", "ugXRw4gru_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FilterKategorieButtonFonts", "getFonts", "ugXRw4gru_default", "ButtonPrimRFonts", "ehpm05f_6_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "oIHqgNmo01hm7y6", "args", "oIHqgNmo0xsylzl", "oIHqgNmo01mlqhir", "oIHqgNmo0p2onvk", "oIHqgNmo0wm7yan", "oIHqgNmo01ary0vk", "oIHqgNmo07r1dcw", "oIHqgNmo0jkhiaj", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FrameroIuCAExU3", "withCSS", "oIuCAExU3_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonText", "fontSize", "height", "id", "link", "textColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ofLqZhEO8", "BrUi5h7tU", "xYpx6wR8V", "soie5XZUv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearx4yxc4", "args", "CycleVariantState", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "css", "FramerTC9uE0Pvt", "withCSS", "TC9uE0Pvt_default", "addPropertyControls", "ControlType", "addFonts", "NeueKopfzeile0325Fonts", "getFonts", "V4lxcrzrM_default", "RunningStrokeFonts", "TC9uE0Pvt_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "FeatherFonts", "Icon", "VideoFonts", "Video", "AudioFonts", "DLtGxv24v_default", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "ButtonPrimRFonts", "ehpm05f_6_default", "KundenauslieferungSliderFonts", "RbKz_EB_C_default", "CMSCarouselFonts", "CMSCarousel", "AnwenderTabsFonts", "oIuCAExU3_default", "CTAStickyFonts", "Mm5SymI7O_default", "ContainerWithFX", "FuZeileFonts", "WDtbj2kqk_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition4", "animation4", "transformTemplate1", "_", "t", "transformTemplate2", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "animation5", "transition5", "animation6", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "C_z8QQGGRiXkGpLxfX", "yUxLHRs5QiXkGpLxfX", "DSRHV0L7qiXkGpLxfX", "idiXkGpLxfX", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "RichText2", "ResolveLinks", "resolvedLinks", "l", "AnimatePresence", "Ga", "Link", "ChildrenCanSuspend", "O543DbFeu_default", "collection", "paginationInfo", "index", "PathVariablesContext", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
