{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/useConstant.js@^1.0.0", "ssg:https://framer.com/m/framer/randomID.js@^2.0.0", "ssg:https://framerusercontent.com/modules/cqWrmoTRJuMdIdYw6b0A/P2weL8lIvpGyps0kPj0o/rlIcZ3c2D.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/mCrlbL0jiwJGgNa3YSuL/YgShmqyVtMrPfdKpcEhh/a6IlV3A15-0.js", "ssg:https://framerusercontent.com/modules/suV28dL69mydWkAFDwCy/h8U2QW6SfpQroqNgjSlU/VU1zdOWsp.js", "ssg:https://framerusercontent.com/modules/mCrlbL0jiwJGgNa3YSuL/YgShmqyVtMrPfdKpcEhh/a6IlV3A15.js", "ssg:https://framerusercontent.com/modules/f4OGDsT4MHW0CJBg6c7G/lLZWPG2KoGyS0AVmGGtf/Kym4ifyAB-0.js", "ssg:https://framerusercontent.com/modules/f4OGDsT4MHW0CJBg6c7G/lLZWPG2KoGyS0AVmGGtf/Kym4ifyAB.js", "ssg:https://framerusercontent.com/modules/mZXIyiqjBWtQZIp57zh4/2oc9naKBjN7d0AlC56RJ/LZaNTUG2J-0.js", "ssg:https://framerusercontent.com/modules/mZXIyiqjBWtQZIp57zh4/2oc9naKBjN7d0AlC56RJ/LZaNTUG2J.js", "ssg:https://framerusercontent.com/modules/stnjZ1zcgna9vt5fgQ0j/X0UhdrklNzblYpPaqJxJ/augiA20Il.js"],
  "sourcesContent": ["import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on.\n * By using `useConstant` you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map", "import { useConstant } from \"https://framer.com/m/framer/useConstant.js@^1.0.0\";\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n/**\n * Generates a random string of BASE62 characters.\n */ export function randomID(length = 5) {\n    return Array(length).fill(0).map(()=>BASE62[Math.floor(Math.random() * BASE62.length)]\n    ).join(\"\");\n}\nexport function useRandomID(length = 5) {\n    return useConstant(()=>randomID(length)\n    );\n}\nconst defaultStorageKey = \"$$FramerRandomID\";\n/**\n * `randomID` but cached in localStorage.\n */ export function useCachedRandomID(storageKey = defaultStorageKey) {\n    return useConstant(()=>{\n        const storage = getLocalStorage();\n        if (!storage) return randomID(8);\n        const cachedValue = storage.getItem(storageKey);\n        if (cachedValue) return cachedValue;\n        const newID = randomID(8);\n        storage.setItem(storageKey, newID);\n        return newID;\n    });\n}\nfunction getLocalStorage() {\n    if (typeof window === undefined) return undefined;\n    try {\n        return window.localStorage;\n    } catch (err) {\n        return undefined;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCachedRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./randomID.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";// Generated by Framer (765dd2a)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{useOnVariantChange,useActiveVariantCallback,addFonts,withCSS,addPropertyControls,ControlType,cx,useAddVariantProps,useVariantState,SVG}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"AXpNtSsXY\",\"BbQ5rCpyk\"];const variantClassNames={\"AXpNtSsXY\":\"framer-v-1nijn8m\",\"BbQ5rCpyk\":\"framer-v-1fhcc5x\"};const humanReadableVariantMap={\"Light\":\"AXpNtSsXY\",\"Spinning\":\"BbQ5rCpyk\"};const transitions={\"default\":{\"type\":\"tween\",\"ease\":[0,0,1,1],\"duration\":0,\"delay\":0,\"stiffness\":500,\"damping\":60,\"mass\":1},\"BbQ5rCpyk\":{\"type\":\"tween\",\"ease\":[0,0,1,1],\"duration\":1,\"delay\":0,\"stiffness\":500,\"damping\":20,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({style:externalStyle={},className,width,height,layoutId,variant:outerVariant=\"AXpNtSsXY\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"AXpNtSsXY\",variant,transitions,variantClassNames,cycleOrder});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1nijn8m=activeVariantCallback(async(...args)=>{setVariant(\"BbQ5rCpyk\");});const onAppear1fhcc5x=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"AXpNtSsXY\"),1000);});useOnVariantChange(baseVariant,{\"default\":onAppear1nijn8m,\"BbQ5rCpyk\":onAppear1fhcc5x});const variantProps=React.useMemo(()=>({\"BbQ5rCpyk\":{\"AXpNtSsXY\":{\"data-framer-name\":\"Spinning\",\"data-highlight\":true},\"NBDvErWUP\":{\"background\":null}}}),[]);const addVariantProps=useAddVariantProps(baseVariant,gestureVariant,variantProps);const defaultLayoutId=useRandomID();const{pointerEvents,...style}=externalStyle;return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{\"data-framer-generated\":true,initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-e3x6M\",classNames),style:{\"display\":\"contents\",\"pointerEvents\":pointerEvents!==null&&pointerEvents!==void 0?pointerEvents:undefined},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,layoutId:\"AXpNtSsXY\",className:cx(\"framer-1nijn8m\",className),style:{\"WebkitFilter\":\"invert(0)\",\"filter\":\"invert(0)\",\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"borderTopRightRadius\":0,\"borderTopLeftRadius\":0,...style},background:null,\"data-highlight\":true,\"data-framer-name\":\"Light\",variants:{\"BbQ5rCpyk\":{\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"borderTopRightRadius\":0,\"borderTopLeftRadius\":0}},transition:transition,layoutDependency:layoutDependency,ref:ref,...addVariantProps(\"AXpNtSsXY\"),children:[/*#__PURE__*/ _jsx(SVG,{layout:\"position\",style:{},layoutId:\"NhYO3gVVh\",className:\"framer-1iu1sro\",opacity:1,radius:0,withExternalLayout:true,svgContentId:2032530210,svg:\"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" width=\\\"30\\\" height=\\\"30\\\"><path d=\\\"M 15 2.25 C 22.042 2.25 27.75 7.958 27.75 15 C 27.75 22.042 22.042 27.75 15 27.75 C 7.958 27.75 2.25 22.042 2.25 15 C 2.25 7.958 7.958 2.25 15 2.25 Z\\\" fill=\\\"transparent\\\" stroke-width=\\\"3\\\" stroke=\\\"rgba(255, 255, 255, 0.5)\\\"></path></svg>\",background:null,\"data-framer-name\":\"Bottom\",transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"NhYO3gVVh\")}),/*#__PURE__*/ _jsx(motion.div,{layoutId:\"NBDvErWUP\",className:\"framer-ukf4h0\",style:{\"rotate\":0},background:null,variants:{\"BbQ5rCpyk\":{\"rotate\":360}},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"NBDvErWUP\"),children:/*#__PURE__*/ _jsx(SVG,{layout:\"position\",style:{},layoutId:\"JMJYk6MFt\",className:\"framer-d3l8lx\",opacity:1,radius:0,withExternalLayout:true,svgContentId:776297057,svg:\"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" width=\\\"30\\\" height=\\\"30\\\"><path d=\\\"M 15 2.25 C 22.042 2.25 27.75 7.958 27.75 15 C 27.75 22.042 22.042 27.75 15 27.75 C 7.958 27.75 2.25 22.042 2.25 15 C 2.25 7.958 7.958 2.25 15 2.25 Z\\\" fill=\\\"transparent\\\" stroke-width=\\\"3\\\" stroke=\\\"rgb(255, 255, 255)\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-dasharray=\\\"40.5\\\"></path></svg>\",background:null,\"data-framer-name\":\"Top\",transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"JMJYk6MFt\")})})]})})}));});const css=[\".framer-e3x6M [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;}\",\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-e3x6M * { box-sizing: border-box; }\",\".framer-e3x6M .framer-1nijn8m { position: relative; overflow: hidden; width: 40px; height: 40px; }\",\".framer-e3x6M .framer-1iu1sro, .framer-e3x6M .framer-d3l8lx { position: absolute; width: 30px; height: 30px; left: calc(50.00000000000002% - 30px/2); top: calc(50.00000000000002% - 30px/2); flex: none; }\",\".framer-e3x6M .framer-ukf4h0 { position: absolute; overflow: visible; width: 40px; height: 40px; left: calc(50.00000000000002% - 40px/2); top: calc(50.00000000000002% - 40px/2); flex: none; }\",\".framer-e3x6M.framer-v-1fhcc5x .framer-1nijn8m { cursor: auto; }\",\".framer-e3x6M.framer-v-1fhcc5x .framer-ukf4h0 { width: 40px; height: 40px; right: auto; bottom: auto; left: calc(50.00000000000002% - 40px/2); top: calc(50.00000000000002% - 40px/2); flex: none; aspect-ratio: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}, \"BbQ5rCpyk\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n */ const FramerrlIcZ3c2D=withCSS(Component,css);export default FramerrlIcZ3c2D;FramerrlIcZ3c2D.displayName=\"Loader\";FramerrlIcZ3c2D.defaultProps={\"width\":40,\"height\":40};addPropertyControls(FramerrlIcZ3c2D,{\"variant\":{\"type\":ControlType.Enum,\"title\":\"Variant\",\"options\":[\"AXpNtSsXY\",\"BbQ5rCpyk\"],\"optionTitles\":[\"Light\",\"Spinning\"]}});addFonts(FramerrlIcZ3c2D,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrlIcZ3c2D\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"BbQ5rCpyk\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"40\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rlIcZ3c2D.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "export const v0='\"We are excited about the collaboration with Weslink. Our project was implemented in a technically excellent manner. This is certainly also due to the anticipation and quick identification of potential problems. The result convinces us completely. The support is excellent and we are already taking advantage of the opportunity to expand the interface!\"';export const v1=\"Isabel Speaks\";export const v2=\"CEO\";export const v3=\"I can highly recommend Weslink as a competent partner in the conception of digital solutions. Not only addressing our individual requirements, but also providing additional ideas distinguishes the collaboration. Weslink quickly familiarizes itself with the customer's side and develops a deep understanding of our requirements and processes. This will certainly also help with future digitization projects.\";export const v4=\"Andy Schnackertz\";export const v5=\"branch management\";export const v6='\"We have come to know Weslink as an uncomplicated and solution-oriented partner. Together with the Weslink team, we were able to lay a solid foundation for a modern web architecture and look forward to being able to further advance our web development based on this.\"';export const v7=\"Forschung und Entwicklung\";export const v8='\"The implementation of the project with WESLINK was relaxed and uncomplicated, but always focused and professional. Suggestions and wishes were honestly evaluated and, if possible, fully taken into account.\"';export const v9=\"Pascal Golembeckr\";export const v10=\"IT & Development\";export const v11='\"With the GH-focus WebApp, we have, together with Christopher Wesseling and his team, created an application tailored to our needs with a lot of added value for our customers. Thank you for the very good and cooperative collaboration!\"';export const v12=\"Georg Hagelschuer\";export const v13=\"CEO\";export const v14='\"In an exciting project, we have worked together with the Weslink team to create an innovative and, above all, effective solution for our customers, which represents another competitive advantage for us. The collaboration was always focused on solutions and very cooperative.\"';export const v15=\"Arne K\\xf6ster\";export const v16=\"Head of Business Processes & Digitalization\";\nexport const __FramerMetadata__ = {\"exports\":{\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c7f0859)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/nfwVaH8z8BdQgeBqpAvh/hRcnyYqIIQ9jBB5xvfRH/pzgAh97sX.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6IQ1UtE8V0ZLUFVHtE5b/fQYK7k7sa26WZHNBqDKA/xZndidUCt.js\";import*as localizedValues from\"./VU1zdOWsp-0.js\";const cycleOrder=[\"U4qGNdvea\",\"ZV5VuTf5K\"];const serializationHash=\"framer-5IJhf\";const variantClassNames={U4qGNdvea:\"framer-v-5krqm3\",ZV5VuTf5K:\"framer-v-1n9k1xf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={LaOZyjl9Y:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"U4qGNdvea\",mobile:\"ZV5VuTf5K\"};const getProps=({height,id,logo,name1,position,text,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,eJpJ7Kq9h:(_ref=text!==null&&text!==void 0?text:props.eJpJ7Kq9h)!==null&&_ref!==void 0?_ref:'\"Wir sind begeistert von der Zusammenarbeit mit Weslink. Unser Projekt wurde technisch super umgesetzt. Das liegt sicherlich auch daran, dass m\\xf6gliche Probleme antizipiert oder schnell identifiziert wurden. Das Ergebnis \\xfcberzeugt uns vollst\\xe4ndig. Der Support ist hervorragend und wir nutzen bereits jetzt die M\\xf6glichkeit zur Erweiterung der Schnittstelle!\"',IbAR2NUPK:(_ref1=position!==null&&position!==void 0?position:props.IbAR2NUPK)!==null&&_ref1!==void 0?_ref1:\"Gesch\\xe4ftsf\\xfchrerin\",Se4tLMHRt:(_ref2=name1!==null&&name1!==void 0?name1:props.Se4tLMHRt)!==null&&_ref2!==void 0?_ref2:\"Isabel Habla\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"U4qGNdvea\",vRKxl8HXn:logo!==null&&logo!==void 0?logo:props.vRKxl8HXn};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,eJpJ7Kq9h,Se4tLMHRt,IbAR2NUPK,vRKxl8HXn,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"U4qGNdvea\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-5krqm3\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"U4qGNdvea\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ZV5VuTf5K:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(239, 239, 239)))\"},children:'\"Wir sind begeistert von der Zusammenarbeit mit Weslink. Unser Projekt wurde technisch super umgesetzt. Das liegt sicherlich auch daran, dass m\\xf6gliche Probleme antizipiert oder schnell identifiziert wurden. Das Ergebnis \\xfcberzeugt uns vollst\\xe4ndig. Der Support ist hervorragend und wir nutzen bereits jetzt die M\\xf6glichkeit zur Erweiterung der Schnittstelle!\"'})}),className:\"framer-383dok\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GUEyAfusu\",style:{\"--extracted-r6o4lv\":\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(239, 239, 239))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:eJpJ7Kq9h,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lnkvvu\",layoutDependency:layoutDependency,layoutId:\"rU11_feP8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pkuk98\",layoutDependency:layoutDependency,layoutId:\"PsPfft_eZ\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"134px\",...toResponsiveImage(vRKxl8HXn),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-v3elql\",layoutDependency:layoutDependency,layoutId:\"vsfb4M1aN\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dxph4k\",layoutDependency:layoutDependency,layoutId:\"AVcvofnTh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Isabel Habla\"})}),className:\"framer-50ju0b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vMr7Y042D\",style:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.7},text:Se4tLMHRt,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZV5VuTf5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Isabel Habla\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Gesch\\xe4ftsf\\xfchrerin\"})}),className:\"framer-xvo088\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zKgCPn5Vl\",style:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.7},text:IbAR2NUPK,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZV5VuTf5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Gesch\\xe4ftsf\\xfchrerin\"})})}},baseVariant,gestureVariant)})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5IJhf.framer-6veblp, .framer-5IJhf .framer-6veblp { display: block; }\",\".framer-5IJhf.framer-5krqm3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 611px; }\",\".framer-5IJhf .framer-383dok { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5IJhf .framer-lnkvvu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5IJhf .framer-pkuk98 { flex: none; height: 44px; overflow: hidden; position: relative; width: 136px; }\",\".framer-5IJhf .framer-v3elql { flex: none; height: 38px; left: calc(50.00000000000002% - 134px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 38px / 2); width: 134px; }\",\".framer-5IJhf .framer-dxph4k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 250px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5IJhf .framer-50ju0b { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5IJhf .framer-xvo088 { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5IJhf.framer-5krqm3, .framer-5IJhf .framer-lnkvvu, .framer-5IJhf .framer-dxph4k { gap: 0px; } .framer-5IJhf.framer-5krqm3 > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-5IJhf.framer-5krqm3 > :first-child, .framer-5IJhf .framer-dxph4k > :first-child { margin-top: 0px; } .framer-5IJhf.framer-5krqm3 > :last-child, .framer-5IJhf .framer-dxph4k > :last-child { margin-bottom: 0px; } .framer-5IJhf .framer-lnkvvu > * { margin: 0px; margin-left: calc(26px / 2); margin-right: calc(26px / 2); } .framer-5IJhf .framer-lnkvvu > :first-child { margin-left: 0px; } .framer-5IJhf .framer-lnkvvu > :last-child { margin-right: 0px; } .framer-5IJhf .framer-dxph4k > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-5IJhf.framer-v-1n9k1xf .framer-lnkvvu { flex-direction: column; max-width: 100%; padding: 20px 0px 20px 0px; }\",\".framer-5IJhf.framer-v-1n9k1xf .framer-dxph4k { align-content: center; align-items: center; max-width: 100%; min-width: unset; }\",\".framer-5IJhf.framer-v-1n9k1xf .framer-xvo088 { align-self: unset; white-space: pre; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5IJhf.framer-v-1n9k1xf .framer-lnkvvu { gap: 0px; } .framer-5IJhf.framer-v-1n9k1xf .framer-lnkvvu > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-5IJhf.framer-v-1n9k1xf .framer-lnkvvu > :first-child { margin-top: 0px; } .framer-5IJhf.framer-v-1n9k1xf .framer-lnkvvu > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 230\n * @framerIntrinsicWidth 611\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZV5VuTf5K\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"eJpJ7Kq9h\":\"text\",\"Se4tLMHRt\":\"name1\",\"IbAR2NUPK\":\"position\",\"vRKxl8HXn\":\"logo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVU1zdOWsp=withCSS(Component,css,\"framer-5IJhf\");export default FramerVU1zdOWsp;FramerVU1zdOWsp.displayName=\"Kundenzitat\";FramerVU1zdOWsp.defaultProps={height:230,width:611};addPropertyControls(FramerVU1zdOWsp,{variant:{options:[\"U4qGNdvea\",\"ZV5VuTf5K\"],optionTitles:[\"Variant 1\",\"mobile\"],title:\"Variant\",type:ControlType.Enum},eJpJ7Kq9h:{defaultValue:'\"Wir sind begeistert von der Zusammenarbeit mit Weslink. Unser Projekt wurde technisch super umgesetzt. Das liegt sicherlich auch daran, dass m\\xf6gliche Probleme antizipiert oder schnell identifiziert wurden. Das Ergebnis \\xfcberzeugt uns vollst\\xe4ndig. Der Support ist hervorragend und wir nutzen bereits jetzt die M\\xf6glichkeit zur Erweiterung der Schnittstelle!\"',displayTextArea:false,title:\"Text\",type:ControlType.String},Se4tLMHRt:{defaultValue:\"Isabel Habla\",displayTextArea:false,title:\"Name\",type:ControlType.String},IbAR2NUPK:{defaultValue:\"Gesch\\xe4ftsf\\xfchrerin\",displayTextArea:false,title:\"Position\",type:ControlType.String},vRKxl8HXn:{title:\"Logo\",type:ControlType.ResponsiveImage}});addFonts(FramerVU1zdOWsp,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVU1zdOWsp\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZV5VuTf5K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"611\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"eJpJ7Kq9h\\\":\\\"text\\\",\\\"Se4tLMHRt\\\":\\\"name1\\\",\\\"IbAR2NUPK\\\":\\\"position\\\",\\\"vRKxl8HXn\\\":\\\"logo\\\"}\",\"framerIntrinsicHeight\":\"230\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VU1zdOWsp.map", "// Generated by Framer (c7f0859)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import*as localizedValues from\"./a6IlV3A15-0.js\";import Kundenzitat from\"https://framerusercontent.com/modules/suV28dL69mydWkAFDwCy/h8U2QW6SfpQroqNgjSlU/VU1zdOWsp.js\";const KundenzitatFonts=getFonts(Kundenzitat);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"KAs3MYnno\",\"HMiD__Ztz\"];const serializationHash=\"framer-oQlKj\";const variantClassNames={HMiD__Ztz:\"framer-v-uldm6k\",KAs3MYnno:\"framer-v-fbtt3g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={LaOZyjl9Y:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Slider-desktop\":\"KAs3MYnno\",\"Variant 2\":\"HMiD__Ztz\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"KAs3MYnno\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KAs3MYnno\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-fbtt3g\",className,classNames),\"data-framer-name\":\"Slider-desktop\",layoutDependency:layoutDependency,layoutId:\"KAs3MYnno\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(24, 24, 24))\",...style},...addPropertyOverrides({HMiD__Ztz:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6bir58-container\",layoutDependency:layoutDependency,layoutId:\"PLhhMn7zd-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:30,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:1,fadeWidth:25,overflow:false},gap:100,height:\"100%\",id:\"PLhhMn7zd\",intervalControl:3,itemAmount:1,layoutId:\"PLhhMn7zd\",padding:25,paddingBottom:25,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:25,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"611px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yp35y9-container\",\"data-framer-name\":\"Isabel-Habla\",layoutDependency:layoutDependency,layoutId:\"FrQ8jeJ1N-container\",name:\"Isabel-Habla\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:'\"Wir sind begeistert von der Zusammenarbeit mit Weslink. Unser Projekt wurde technisch super umgesetzt. Das liegt sicherlich auch daran, dass m\\xf6gliche Probleme antizipiert oder schnell identifiziert wurden. Das Ergebnis \\xfcberzeugt uns vollst\\xe4ndig. Der Support ist hervorragend und wir nutzen bereits jetzt die M\\xf6glichkeit zur Erweiterung der Schnittstelle!\"',height:\"100%\",IbAR2NUPK:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Gesch\\xe4ftsf\\xfchrerin\",id:\"FrQ8jeJ1N\",layoutId:\"FrQ8jeJ1N\",name:\"Isabel-Habla\",Se4tLMHRt:(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Isabel Habla\",style:{width:\"100%\"},variant:\"ZV5VuTf5K\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/L8ZDCqjok9zzIVYkzK7zvd9NuI8.svg\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"611px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o1btsk-container\",\"data-framer-name\":\"Andy-Schnackertz\",layoutDependency:layoutDependency,layoutId:\"dXL4o6dVu-container\",name:\"Andy-Schnackertz\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"\u201EIch kann Weslink als kompetenten Partner in der Konzeption von digitalen L\\xf6sungen ausdr\\xfccklich weiterempfehlen. Nicht nur das Eingehen auf unsere individuellen Anforderungen, sondern auch die Hereingabe von zus\\xe4tzlichen Ideen zeichnet die Zusammenarbeit aus. Weslink arbeitet sich \\xe4u\\xdferst schnell in die Kundenseite ein und baut sich ein tiefes Verst\\xe4ndnis \\xfcber unsere Anforderungen und Prozesse auf. Dies hilft sicherlich auch bei zuk\\xfcnftigen Digitalisierungsprojekten.\u201C\",height:\"100%\",IbAR2NUPK:(_getLocalizedValue4=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"Niederlassungsleitung\",id:\"dXL4o6dVu\",layoutId:\"dXL4o6dVu\",name:\"Andy-Schnackertz\",Se4tLMHRt:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"Andy Schnackertz\",style:{width:\"100%\"},variant:\"ZV5VuTf5K\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/jqC2cIy1IPg8ENnQrgCjcf37UqQ.png\",srcSet:\"https://framerusercontent.com/images/jqC2cIy1IPg8ENnQrgCjcf37UqQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jqC2cIy1IPg8ENnQrgCjcf37UqQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jqC2cIy1IPg8ENnQrgCjcf37UqQ.png 1772w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"611px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ub2afs-container\",\"data-framer-name\":\"Albrecht Baur\",layoutDependency:layoutDependency,layoutId:\"m5f6CWLNg-container\",name:\"Albrecht Baur\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:'\"Wir haben Weslink als unkomplizierten und l\\xf6sungsorientierten Partner kennengelernt. Zusammen mit dem Team von Weslink konnten wir einen soliden Grundstein f\\xfcr eine moderne Web-Architektur legen und freuen uns auf dieser Basis unsere Web-Entwicklung weiter vorantreiben zu k\\xf6nnen.\"',height:\"100%\",IbAR2NUPK:(_getLocalizedValue7=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"Research & Development\",id:\"m5f6CWLNg\",layoutId:\"m5f6CWLNg\",name:\"Albrecht Baur\",Se4tLMHRt:\"Albrecht Baur\",style:{width:\"100%\"},variant:\"ZV5VuTf5K\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/SfUkDk0j6eZ37xzpVYH4CYljsM.svg\",srcSet:\"https://framerusercontent.com/images/SfUkDk0j6eZ37xzpVYH4CYljsM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/SfUkDk0j6eZ37xzpVYH4CYljsM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SfUkDk0j6eZ37xzpVYH4CYljsM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SfUkDk0j6eZ37xzpVYH4CYljsM.svg 3336w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"611px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1og5boc-container\",\"data-framer-name\":\"Pascal-Golembeckr\",layoutDependency:layoutDependency,layoutId:\"LxIpDJnsT-container\",name:\"Pascal-Golembeckr\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue8=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:'\"Die Umsetzung des Projektes mit WESLINK war entspannt und unkompliziert, dabei aber stets zielgerichtet und professionell. Anregungen und W\\xfcnsche wurden ehrlich bewertet und nach M\\xf6glichkeit vollst\\xe4ndig ber\\xfccksichtigt.\"',height:\"100%\",IbAR2NUPK:(_getLocalizedValue9=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:\"IT & Entwicklung\",id:\"LxIpDJnsT\",layoutId:\"LxIpDJnsT\",name:\"Pascal-Golembeckr\",Se4tLMHRt:(_getLocalizedValue10=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:\"Pascal Golembeckr\",style:{width:\"100%\"},variant:\"ZV5VuTf5K\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/cVethoOeug3U9Tgfmx84qwKnfM.png\",srcSet:\"https://framerusercontent.com/images/cVethoOeug3U9Tgfmx84qwKnfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/cVethoOeug3U9Tgfmx84qwKnfM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cVethoOeug3U9Tgfmx84qwKnfM.png 1063w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"611px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y0p4uf-container\",\"data-framer-name\":\"Georg-Hagelschuer\",layoutDependency:layoutDependency,layoutId:\"K22TMYQjg-container\",name:\"Georg-Hagelschuer\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue11=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:'\"Mit der GH-focus WebApp haben wir, gemeinsam mit Christopher Wesseling und seinem Team, eine auf unsere Bed\\xfcrfnisse echt tolle Anwendung mit viel Mehrwert f\\xfcr unsere Kunden geschaffen. Vielen Dank f\\xfcr die sehr gute und partnerschaftliche Zusammenarbeit!\"',height:\"100%\",IbAR2NUPK:(_getLocalizedValue12=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:\"Gesch\\xe4ftsf\\xfchrer\",id:\"K22TMYQjg\",layoutId:\"K22TMYQjg\",name:\"Georg-Hagelschuer\",Se4tLMHRt:(_getLocalizedValue13=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:\"Georg Hagelschuer\",style:{width:\"100%\"},variant:\"ZV5VuTf5K\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/1v030mrhHHmvW3uHlwrpOoDxFOw.svg\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"667px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vh6cfq-container\",\"data-framer-name\":\"Arne-K\\xf6ster\",layoutDependency:layoutDependency,layoutId:\"cbo9m1p5_-container\",name:\"Arne-K\\xf6ster\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue14=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:'\"In einem spannenden Projekt haben wir gemeinsam mit dem Weslink Team eine innovative und vor allem wirkungsvolle L\\xf6sung f\\xfcr unsere Kunden geschaffen, die f\\xfcr uns einen weiteren Wettbewerbsvorsprung bedeutet. Die Zusammenarbeit war immer l\\xf6sungsorientiert und sehr kooperativ.\"',height:\"100%\",IbAR2NUPK:(_getLocalizedValue15=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:\"Leiter Gesch\\xe4ftsprozesse & Digitalisierung\",id:\"cbo9m1p5_\",layoutId:\"cbo9m1p5_\",name:\"Arne-K\\xf6ster\",Se4tLMHRt:(_getLocalizedValue16=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:\"Arne K\\xf6ster\",style:{width:\"100%\"},variant:\"ZV5VuTf5K\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/1v030mrhHHmvW3uHlwrpOoDxFOw.svg\"},\"\"),width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oQlKj.framer-1xjmdse, .framer-oQlKj .framer-1xjmdse { display: block; }\",\".framer-oQlKj.framer-fbtt3g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 706px; justify-content: flex-start; overflow: hidden; padding: 20px 0px 100px 0px; position: relative; width: 576px; }\",\".framer-oQlKj .framer-6bir58-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-oQlKj .framer-1yp35y9-container, .framer-oQlKj .framer-1o1btsk-container, .framer-oQlKj .framer-ub2afs-container, .framer-oQlKj .framer-1og5boc-container, .framer-oQlKj .framer-1y0p4uf-container { height: auto; position: relative; width: 611px; }\",\".framer-oQlKj .framer-vh6cfq-container { height: auto; position: relative; width: 667px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oQlKj.framer-fbtt3g { gap: 0px; } .framer-oQlKj.framer-fbtt3g > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oQlKj.framer-fbtt3g > :first-child { margin-top: 0px; } .framer-oQlKj.framer-fbtt3g > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 706\n * @framerIntrinsicWidth 576\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HMiD__Ztz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framera6IlV3A15=withCSS(Component,css,\"framer-oQlKj\");export default Framera6IlV3A15;Framera6IlV3A15.displayName=\"Kundenstimmen-slider Copy\";Framera6IlV3A15.defaultProps={height:706,width:576};addPropertyControls(Framera6IlV3A15,{variant:{options:[\"KAs3MYnno\",\"HMiD__Ztz\"],optionTitles:[\"Slider-desktop\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framera6IlV3A15,[{explicitInter:true,fonts:[]},...KundenzitatFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framera6IlV3A15\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"706\",\"framerIntrinsicWidth\":\"576\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HMiD__Ztz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Haus\";export const v1=\"Haus\";export const v2=\"Haus\";export const v3=\"Haus\";export const v4=\"Haus\";\nexport const __FramerMetadata__ = {\"exports\":{\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0961f6c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/6IQ1UtE8V0ZLUFVHtE5b/fQYK7k7sa26WZHNBqDKA/xZndidUCt.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ostt6BKA6InauohLVCNs/roKj2zmElGC5LkX7r5Vd/YckFIlg3V.js\";import*as localizedValues from\"./Kym4ifyAB-0.js\";import CTA from\"https://framerusercontent.com/modules/9MhqQddrzso6UGFx3W8f/QDBoceIIutp44einF4rY/OlTWqYMo3.js\";const PhosphorFonts=getFonts(Phosphor);const CTAFonts=getFonts(CTA);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={oO6m8pK61:{hover:true}};const cycleOrder=[\"KeWUWSw2t\",\"hUO6W9Cv4\",\"oO6m8pK61\",\"tV1BuQ2YI\",\"voyA507f3\",\"rnz703G5_\"];const serializationHash=\"framer-HeQDh\";const variantClassNames={hUO6W9Cv4:\"framer-v-gnn78v\",KeWUWSw2t:\"framer-v-fvxdms\",oO6m8pK61:\"framer-v-119wxul\",rnz703G5_:\"framer-v-pi222v\",tV1BuQ2YI:\"framer-v-5b3x7\",voyA507f3:\"framer-v-1ehagk6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={LaOZyjl9Y:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Center Color\":\"voyA507f3\",\"Left Alternative\":\"hUO6W9Cv4\",\"Left Color Alternative\":\"rnz703G5_\",\"Left Color\":\"tV1BuQ2YI\",Center:\"oO6m8pK61\",Left:\"KeWUWSw2t\"};const getProps=({cTA,cTA1,height,icon,icon1,id,image,link,link2,text,text1,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_humanReadableVariantMap_props_variant,_ref7;return{...props,EgEa9J473:(_ref=cTA1!==null&&cTA1!==void 0?cTA1:props.EgEa9J473)!==null&&_ref!==void 0?_ref:\"Learn more\",eZ5aNjZIy:link!==null&&link!==void 0?link:props.eZ5aNjZIy,fsUmuS24I:(_ref1=text1!==null&&text1!==void 0?text1:props.fsUmuS24I)!==null&&_ref1!==void 0?_ref1:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\",g56HeEMzh:(_ref2=title!==null&&title!==void 0?title:props.g56HeEMzh)!==null&&_ref2!==void 0?_ref2:\"60 Components\",HQlsDHpqI:(_ref3=text!==null&&text!==void 0?text:props.HQlsDHpqI)!==null&&_ref3!==void 0?_ref3:true,J2X4hmGjs:(_ref4=icon!==null&&icon!==void 0?icon:props.J2X4hmGjs)!==null&&_ref4!==void 0?_ref4:true,NhBkJo21q:image!==null&&image!==void 0?image:props.NhBkJo21q,qKOBsbAyJ:(_ref5=cTA!==null&&cTA!==void 0?cTA:props.qKOBsbAyJ)!==null&&_ref5!==void 0?_ref5:true,SXDgbTQKy:(_ref6=icon1!==null&&icon1!==void 0?icon1:props.SXDgbTQKy)!==null&&_ref6!==void 0?_ref6:\"Cube\",TGkzNQ1dk:link2!==null&&link2!==void 0?link2:props.TGkzNQ1dk,variant:(_ref7=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref7!==void 0?_ref7:\"KeWUWSw2t\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,J2X4hmGjs,SXDgbTQKy,g56HeEMzh,HQlsDHpqI,fsUmuS24I,qKOBsbAyJ,EgEa9J473,eZ5aNjZIy,NhBkJo21q,TGkzNQ1dk,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KeWUWSw2t\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"oO6m8pK61-hover\")return true;if(baseVariant===\"oO6m8pK61\")return true;return false;};const isDisplayed1=value=>{if(gestureVariant===\"oO6m8pK61-hover\")return false;if(baseVariant===\"oO6m8pK61\")return false;return value;};const isDisplayed2=()=>{if(gestureVariant===\"oO6m8pK61-hover\")return false;if(baseVariant===\"oO6m8pK61\")return false;return true;};const isDisplayed3=value=>{if(gestureVariant===\"oO6m8pK61-hover\")return true;if(baseVariant===\"oO6m8pK61\")return true;return value;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({oO6m8pK61:{href:TGkzNQ1dk,openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-fvxdms\",className,classNames)} framer-1dk5uem`,\"data-border\":true,\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"KeWUWSw2t\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 10px 30px -20px rgba(0, 0, 0, 0.25)\",...style},variants:{\"oO6m8pK61-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:'0px 10px 30px -20px rgba(0, 0, 0, 0.25), 4px 4px 0px 0px var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(24, 24, 24)) /* {\"name\":\"WL-Anthrazit\"} */'},oO6m8pK61:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(24, 24, 24))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},rnz703G5_:{backgroundColor:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"},tV1BuQ2YI:{backgroundColor:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"},voyA507f3:{backgroundColor:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"}},...addPropertyOverrides({\"oO6m8pK61-hover\":{\"data-framer-name\":undefined},hUO6W9Cv4:{\"data-framer-name\":\"Left Alternative\"},oO6m8pK61:{\"data-framer-name\":\"Center\"},rnz703G5_:{\"data-framer-name\":\"Left Color Alternative\"},tV1BuQ2YI:{\"data-framer-name\":\"Left Color\"},voyA507f3:{\"data-framer-name\":\"Center Color\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",...toResponsiveImage(NhBkJo21q),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-17715mn\",layoutDependency:layoutDependency,layoutId:\"jOQ9fcxwR\",...addPropertyOverrides({oO6m8pK61:{background:{alt:\"\",fit:\"fit\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px) * 0.5268)`,...toResponsiveImage(NhBkJo21q),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),isDisplayed1(J2X4hmGjs)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-uucjd2\",layoutDependency:layoutDependency,layoutId:\"F95f36hha\",style:{backgroundColor:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{rnz703G5_:{backgroundColor:\"rgba(0, 0, 0, 0.2)\"},tV1BuQ2YI:{backgroundColor:\"rgba(0, 0, 0, 0.2)\"},voyA507f3:{backgroundColor:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kqmbbe-container\",layoutDependency:layoutDependency,layoutId:\"Ty5tyHJHr-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255))\",height:\"100%\",iconSearch:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"House\",iconSelection:SXDgbTQKy,id:\"Ty5tyHJHr\",layoutId:\"Ty5tyHJHr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({hUO6W9Cv4:{iconSearch:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"House\"},rnz703G5_:{color:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",iconSearch:(_getLocalizedValue2=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"House\"},tV1BuQ2YI:{color:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",iconSearch:(_getLocalizedValue3=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"House\"},voyA507f3:{color:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",iconSearch:(_getLocalizedValue4=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"House\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-la8y0v\",layoutDependency:layoutDependency,layoutId:\"bYmYnzPr_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z5nbjq\",layoutDependency:layoutDependency,layoutId:\"RTForIbu1\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"60 Components\"})}),className:\"framer-1uxjwyq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hB6nuKfjq\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:g56HeEMzh,variants:{rnz703G5_:{\"--extracted-a0htzi\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},tV1BuQ2YI:{\"--extracted-a0htzi\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},voyA507f3:{\"--extracted-a0htzi\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hUO6W9Cv4:{verticalAlignment:\"center\"},rnz703G5_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"60 Components\"})}),verticalAlignment:\"center\"},tV1BuQ2YI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"60 Components\"})})},voyA507f3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"60 Components\"})})}},baseVariant,gestureVariant)}),isDisplayed3(HQlsDHpqI)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})}),className:\"framer-1im8s97\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R_F67sjlM\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:fsUmuS24I,variants:{oO6m8pK61:{\"--extracted-r6o4lv\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},rnz703G5_:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",opacity:.8},tV1BuQ2YI:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",opacity:.8},voyA507f3:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",opacity:.8}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oO6m8pK61:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})},rnz703G5_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})},tV1BuQ2YI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})},voyA507f3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})}},baseVariant,gestureVariant)})]}),qKOBsbAyJ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bhxmgd-container\",layoutDependency:layoutDependency,layoutId:\"oe7WZP7JM-container\",children:/*#__PURE__*/_jsx(CTA,{EnBVDC6a2:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\",height:\"100%\",id:\"oe7WZP7JM\",layoutId:\"oe7WZP7JM\",SRBP_E1AV:EgEa9J473,variant:\"DT5wJl0k7\",width:\"100%\",zNGAVVmSy:eZ5aNjZIy,...addPropertyOverrides({rnz703G5_:{EnBVDC6a2:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},tV1BuQ2YI:{EnBVDC6a2:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},voyA507f3:{EnBVDC6a2:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HeQDh.framer-1dk5uem, .framer-HeQDh .framer-1dk5uem { display: block; }\",\".framer-HeQDh.framer-fvxdms { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 490px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HeQDh .framer-17715mn { flex: none; height: 92px; position: relative; width: 53%; }\",\".framer-HeQDh .framer-uucjd2 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 56px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HeQDh .framer-kqmbbe-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-HeQDh .framer-la8y0v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HeQDh .framer-z5nbjq { 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: 90%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HeQDh .framer-1uxjwyq, .framer-HeQDh .framer-1im8s97 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HeQDh .framer-bhxmgd-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HeQDh.framer-fvxdms, .framer-HeQDh .framer-uucjd2, .framer-HeQDh .framer-la8y0v, .framer-HeQDh .framer-z5nbjq { gap: 0px; } .framer-HeQDh.framer-fvxdms > *, .framer-HeQDh .framer-la8y0v > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-HeQDh.framer-fvxdms > :first-child, .framer-HeQDh .framer-la8y0v > :first-child, .framer-HeQDh .framer-z5nbjq > :first-child { margin-top: 0px; } .framer-HeQDh.framer-fvxdms > :last-child, .framer-HeQDh .framer-la8y0v > :last-child, .framer-HeQDh .framer-z5nbjq > :last-child { margin-bottom: 0px; } .framer-HeQDh .framer-uucjd2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HeQDh .framer-uucjd2 > :first-child { margin-left: 0px; } .framer-HeQDh .framer-uucjd2 > :last-child { margin-right: 0px; } .framer-HeQDh .framer-z5nbjq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-HeQDh.framer-v-gnn78v.framer-fvxdms, .framer-HeQDh.framer-v-pi222v.framer-fvxdms { flex-direction: row; }\",\".framer-HeQDh.framer-v-gnn78v .framer-la8y0v, .framer-HeQDh.framer-v-pi222v .framer-la8y0v { flex: 1 0 0px; width: 1px; }\",\".framer-HeQDh.framer-v-gnn78v .framer-1uxjwyq, .framer-HeQDh.framer-v-pi222v .framer-1uxjwyq { height: 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HeQDh.framer-v-gnn78v.framer-fvxdms { gap: 0px; } .framer-HeQDh.framer-v-gnn78v.framer-fvxdms > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-HeQDh.framer-v-gnn78v.framer-fvxdms > :first-child { margin-left: 0px; } .framer-HeQDh.framer-v-gnn78v.framer-fvxdms > :last-child { margin-right: 0px; } }\",\".framer-HeQDh.framer-v-119wxul.framer-fvxdms { align-content: center; align-items: center; cursor: pointer; padding: 59px 40px 59px 40px; text-decoration: none; }\",\".framer-HeQDh.framer-v-119wxul .framer-17715mn { order: 0; }\",\".framer-HeQDh.framer-v-119wxul .framer-la8y0v { align-content: center; align-items: center; order: 1; padding: 13px 0px 13px 0px; }\",\".framer-HeQDh.framer-v-1ehagk6.framer-fvxdms, .framer-HeQDh.framer-v-1ehagk6 .framer-la8y0v { align-content: center; align-items: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HeQDh.framer-v-pi222v.framer-fvxdms { gap: 0px; } .framer-HeQDh.framer-v-pi222v.framer-fvxdms > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-HeQDh.framer-v-pi222v.framer-fvxdms > :first-child { margin-left: 0px; } .framer-HeQDh.framer-v-pi222v.framer-fvxdms > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-HeQDh[data-border=\"true\"]::after, .framer-HeQDh [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 362\n * @framerIntrinsicWidth 490\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hUO6W9Cv4\":{\"layout\":[\"fixed\",\"auto\"]},\"oO6m8pK61\":{\"layout\":[\"fixed\",\"auto\"]},\"tV1BuQ2YI\":{\"layout\":[\"fixed\",\"auto\"]},\"voyA507f3\":{\"layout\":[\"fixed\",\"auto\"]},\"rnz703G5_\":{\"layout\":[\"fixed\",\"auto\"]},\"CXGxV3HC4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"J2X4hmGjs\":\"icon\",\"SXDgbTQKy\":\"icon1\",\"g56HeEMzh\":\"title\",\"HQlsDHpqI\":\"text\",\"fsUmuS24I\":\"text1\",\"qKOBsbAyJ\":\"cTA\",\"EgEa9J473\":\"cTA1\",\"eZ5aNjZIy\":\"link\",\"NhBkJo21q\":\"image\",\"TGkzNQ1dk\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKym4ifyAB=withCSS(Component,css,\"framer-HeQDh\");export default FramerKym4ifyAB;FramerKym4ifyAB.displayName=\"Feature Card\";FramerKym4ifyAB.defaultProps={height:362,width:490};addPropertyControls(FramerKym4ifyAB,{variant:{options:[\"KeWUWSw2t\",\"hUO6W9Cv4\",\"oO6m8pK61\",\"tV1BuQ2YI\",\"voyA507f3\",\"rnz703G5_\"],optionTitles:[\"Left\",\"Left Alternative\",\"Center\",\"Left Color\",\"Center Color\",\"Left Color Alternative\"],title:\"Variant\",type:ControlType.Enum},J2X4hmGjs:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean},SXDgbTQKy:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Cube\",description:undefined,hidden:undefined,title:\"Icon\"},g56HeEMzh:{defaultValue:\"60 Components\",displayTextArea:false,title:\"Title\",type:ControlType.String},HQlsDHpqI:{defaultValue:true,title:\"Text\",type:ControlType.Boolean},fsUmuS24I:{defaultValue:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\",displayTextArea:true,title:\"Text\",type:ControlType.String},qKOBsbAyJ:{defaultValue:true,title:\"CTA\",type:ControlType.Boolean},EgEa9J473:{defaultValue:\"Learn more\",displayTextArea:false,title:\"CTA\",type:ControlType.String},eZ5aNjZIy:{title:\"Link\",type:ControlType.Link},NhBkJo21q:{title:\"Image\",type:ControlType.ResponsiveImage},TGkzNQ1dk:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramerKym4ifyAB,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...PhosphorFonts,...CTAFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKym4ifyAB\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"362\",\"framerVariables\":\"{\\\"J2X4hmGjs\\\":\\\"icon\\\",\\\"SXDgbTQKy\\\":\\\"icon1\\\",\\\"g56HeEMzh\\\":\\\"title\\\",\\\"HQlsDHpqI\\\":\\\"text\\\",\\\"fsUmuS24I\\\":\\\"text1\\\",\\\"qKOBsbAyJ\\\":\\\"cTA\\\",\\\"EgEa9J473\\\":\\\"cTA1\\\",\\\"eZ5aNjZIy\\\":\\\"link\\\",\\\"NhBkJo21q\\\":\\\"image\\\",\\\"TGkzNQ1dk\\\":\\\"link2\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hUO6W9Cv4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oO6m8pK61\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tV1BuQ2YI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"voyA507f3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rnz703G5_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CXGxV3HC4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"490\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0='\"We are thrilled with the collaboration with Weslink. Our project was technically implemented superbly. This is certainly due to the anticipation and quick identification of potential issues. The result completely convinces us. The support is excellent, and we are already utilizing the opportunity to expand the interface!\"';export const v1=\"Isabel Habla\";export const v2=\"Managing director\";export const v3='\"The implementation of the project with WESLINK was relaxed and uncomplicated, but always goal-oriented and professional. Suggestions and wishes were honestly evaluated and, if possible, fully taken into account.\"';export const v4=\"Pascal Golembeck\";export const v5=\"IT & Development\";export const v6='\"In an exciting project, we have created together with the Weslink team an innovative and, above all, effective solution for our customers, which means a further competitive edge for us. The cooperation was always solution-oriented and very cooperative.\"';export const v7=\"Arne K\\xf6oster\";export const v8=\"Head of Business Processes & Digitalization\";export const v9=\"I can expressly recommend Weslink as a competent partner in the conception of digital solutions. Not only addressing our individual requirements, but also providing additional ideas, characterizes the collaboration. Weslink quickly familiarizes itself with the customer side and builds a deep understanding of our requirements and processes. This will certainly also help with future digitization projects.\";export const v10=\"Andy Schnackertz\";export const v11=\"branch management\";export const v12='\"We got to know Weslink as an uncomplicated and solution-oriented partner. Together with the Weslink team, we were able to lay a solid foundation for a modern web architecture and look forward to being able to further advance our web development on this basis.\"';export const v13=\"Albrecht Baur\";export const v14=\"Forschung & Entwicklung\";export const v15='\"With the GH-focus WebApp, together with Christopher Wesseling and his team, we have created a really great application tailored to our needs with a lot of added value for our customers. Thank you for the very good and cooperative collaboration!\"';export const v16=\"Georg Hagelschuer\";export const v17=\"CEO\";\nexport const __FramerMetadata__ = {\"exports\":{\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c7f0859)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import*as localizedValues from\"./LZaNTUG2J-0.js\";import Kundenzitat from\"https://framerusercontent.com/modules/suV28dL69mydWkAFDwCy/h8U2QW6SfpQroqNgjSlU/VU1zdOWsp.js\";const KundenzitatFonts=getFonts(Kundenzitat);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"lDX7Krg_Y\"];const serializationHash=\"framer-4QL7i\";const variantClassNames={lDX7Krg_Y:\"framer-v-1isya6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={LaOZyjl9Y:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lDX7Krg_Y\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1isya6\",className,classNames),\"data-framer-name\":\"Slider-desktop\",layoutDependency:layoutDependency,layoutId:\"lDX7Krg_Y\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(24, 24, 24))\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wjaasc-container\",layoutDependency:layoutDependency,layoutId:\"agM31S9hz-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgb(15, 15, 15)\",arrowGap:10,arrowPadding:30,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:1,fadeWidth:25,overflow:false},gap:100,height:\"100%\",id:\"agM31S9hz\",intervalControl:3,itemAmount:1,layoutId:\"agM31S9hz\",padding:25,paddingBottom:25,paddingLeft:100,paddingPerSide:true,paddingRight:100,paddingTop:25,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(196, 214, 0))\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"611px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jtlh8j-container\",\"data-framer-name\":\"Isabel-Habla\",layoutDependency:layoutDependency,layoutId:\"EcOTiR4Y0-container\",name:\"Isabel-Habla\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:'\"Wir sind begeistert von der Zusammenarbeit mit Weslink. Unser Projekt wurde technisch super umgesetzt. Das liegt sicherlich auch daran, dass m\\xf6gliche Probleme antizipiert oder schnell identifiziert wurden. Das Ergebnis \\xfcberzeugt uns vollst\\xe4ndig. Der Support ist hervorragend und wir nutzen bereits jetzt die M\\xf6glichkeit zur Erweiterung der Schnittstelle!\"',height:\"100%\",IbAR2NUPK:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Gesch\\xe4ftsf\\xfchrerin\",id:\"EcOTiR4Y0\",layoutId:\"EcOTiR4Y0\",name:\"Isabel-Habla\",Se4tLMHRt:(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Isabel Habla\",style:{width:\"100%\"},variant:\"U4qGNdvea\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/L8ZDCqjok9zzIVYkzK7zvd9NuI8.svg\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"611px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ejulak-container\",\"data-framer-name\":\"Pascal-Golembeckr\",layoutDependency:layoutDependency,layoutId:\"iRJ0iAGVx-container\",name:\"Pascal-Golembeckr\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:'\"Die Umsetzung des Projektes mit WESLINK war entspannt und unkompliziert, dabei aber stets zielgerichtet und professionell. Anregungen und W\\xfcnsche wurden ehrlich bewertet und nach M\\xf6glichkeit vollst\\xe4ndig ber\\xfccksichtigt.\"',height:\"100%\",IbAR2NUPK:(_getLocalizedValue4=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"IT & Entwicklung\",id:\"iRJ0iAGVx\",layoutId:\"iRJ0iAGVx\",name:\"Pascal-Golembeckr\",Se4tLMHRt:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"Pascal Golembeckr\",style:{width:\"100%\"},variant:\"U4qGNdvea\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/cVethoOeug3U9Tgfmx84qwKnfM.png\",srcSet:\"https://framerusercontent.com/images/cVethoOeug3U9Tgfmx84qwKnfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/cVethoOeug3U9Tgfmx84qwKnfM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cVethoOeug3U9Tgfmx84qwKnfM.png 1063w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"667px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ab9cz1-container\",\"data-framer-name\":\"Arne-K\\xf6ster\",layoutDependency:layoutDependency,layoutId:\"FJ0V4UklH-container\",name:\"Arne-K\\xf6ster\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:'\"In einem spannenden Projekt haben wir gemeinsam mit dem Weslink Team eine innovative und vor allem wirkungsvolle L\\xf6sung f\\xfcr unsere Kunden geschaffen, die f\\xfcr uns einen weiteren Wettbewerbsvorsprung bedeutet. Die Zusammenarbeit war immer l\\xf6sungsorientiert und sehr kooperativ.\"',height:\"100%\",IbAR2NUPK:(_getLocalizedValue7=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"Leiter Gesch\\xe4ftsprozesse & Digitalisierung\",id:\"FJ0V4UklH\",layoutId:\"FJ0V4UklH\",name:\"Arne-K\\xf6ster\",Se4tLMHRt:(_getLocalizedValue8=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:\"Arne K\\xf6ster\",style:{width:\"100%\"},variant:\"U4qGNdvea\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/1v030mrhHHmvW3uHlwrpOoDxFOw.svg\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"611px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ti3z37-container\",\"data-framer-name\":\"Andy-Schnackertz\",layoutDependency:layoutDependency,layoutId:\"FYw_x7HrD-container\",name:\"Andy-Schnackertz\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue9=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:\"\u201EIch kann Weslink als kompetenten Partner in der Konzeption von digitalen L\\xf6sungen ausdr\\xfccklich weiterempfehlen. Nicht nur das Eingehen auf unsere individuellen Anforderungen, sondern auch die Hereingabe von zus\\xe4tzlichen Ideen zeichnet die Zusammenarbeit aus. Weslink arbeitet sich \\xe4u\\xdferst schnell in die Kundenseite ein und baut sich ein tiefes Verst\\xe4ndnis \\xfcber unsere Anforderungen und Prozesse auf. Dies hilft sicherlich auch bei zuk\\xfcnftigen Digitalisierungsprojekten.\u201C\",height:\"100%\",IbAR2NUPK:(_getLocalizedValue10=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:\"Niederlassungsleitung\",id:\"FYw_x7HrD\",layoutId:\"FYw_x7HrD\",name:\"Andy-Schnackertz\",Se4tLMHRt:(_getLocalizedValue11=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:\"Andy Schnackertz\",style:{width:\"100%\"},variant:\"U4qGNdvea\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/jqC2cIy1IPg8ENnQrgCjcf37UqQ.png\",srcSet:\"https://framerusercontent.com/images/jqC2cIy1IPg8ENnQrgCjcf37UqQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jqC2cIy1IPg8ENnQrgCjcf37UqQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jqC2cIy1IPg8ENnQrgCjcf37UqQ.png 1772w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"611px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ew3xsm-container\",\"data-framer-name\":\"Albrecht Baur\",layoutDependency:layoutDependency,layoutId:\"o985binQj-container\",name:\"Albrecht Baur\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue12=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:'\"Wir haben Weslink als unkomplizierten und l\\xf6sungsorientierten Partner kennengelernt. Zusammen mit dem Team von Weslink konnten wir einen soliden Grundstein f\\xfcr eine moderne Web-Architektur legen und freuen uns auf dieser Basis unsere Web-Entwicklung weiter vorantreiben zu k\\xf6nnen.\"',height:\"100%\",IbAR2NUPK:(_getLocalizedValue13=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:\"Research & Development\",id:\"o985binQj\",layoutId:\"o985binQj\",name:\"Albrecht Baur\",Se4tLMHRt:(_getLocalizedValue14=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:\"Albrecht Baur\",style:{width:\"100%\"},variant:\"U4qGNdvea\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/SfUkDk0j6eZ37xzpVYH4CYljsM.svg\",srcSet:\"https://framerusercontent.com/images/SfUkDk0j6eZ37xzpVYH4CYljsM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/SfUkDk0j6eZ37xzpVYH4CYljsM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SfUkDk0j6eZ37xzpVYH4CYljsM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SfUkDk0j6eZ37xzpVYH4CYljsM.svg 3336w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"611px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-naf0xw-container\",\"data-framer-name\":\"Georg-Hagelschuer\",layoutDependency:layoutDependency,layoutId:\"qjFzG8Kiv-container\",name:\"Georg-Hagelschuer\",children:/*#__PURE__*/_jsx(Kundenzitat,{eJpJ7Kq9h:(_getLocalizedValue15=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:'\"Mit der GH-focus WebApp haben wir, gemeinsam mit Christopher Wesseling und seinem Team, eine auf unsere Bed\\xfcrfnisse echt tolle Anwendung mit viel Mehrwert f\\xfcr unsere Kunden geschaffen. Vielen Dank f\\xfcr die sehr gute und partnerschaftliche Zusammenarbeit!\"',height:\"100%\",IbAR2NUPK:(_getLocalizedValue16=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:\"Gesch\\xe4ftsf\\xfchrer\",id:\"qjFzG8Kiv\",layoutId:\"qjFzG8Kiv\",name:\"Georg-Hagelschuer\",Se4tLMHRt:(_getLocalizedValue17=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:\"Georg Hagelschuer\",style:{width:\"100%\"},variant:\"U4qGNdvea\",vRKxl8HXn:addImageAlt({src:\"https://framerusercontent.com/images/1v030mrhHHmvW3uHlwrpOoDxFOw.svg\"},\"\"),width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4QL7i.framer-11awzhh, .framer-4QL7i .framer-11awzhh { display: block; }\",\".framer-4QL7i.framer-1isya6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: hidden; padding: 20px 0px 100px 0px; position: relative; width: 1200px; }\",\".framer-4QL7i .framer-1wjaasc-container { flex: none; height: 403px; position: relative; width: 862px; }\",\".framer-4QL7i .framer-1jtlh8j-container, .framer-4QL7i .framer-1ejulak-container, .framer-4QL7i .framer-ti3z37-container, .framer-4QL7i .framer-1ew3xsm-container, .framer-4QL7i .framer-naf0xw-container { height: auto; position: relative; width: 611px; }\",\".framer-4QL7i .framer-1ab9cz1-container { height: auto; position: relative; width: 667px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4QL7i.framer-1isya6 { gap: 0px; } .framer-4QL7i.framer-1isya6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4QL7i.framer-1isya6 > :first-child { margin-top: 0px; } .framer-4QL7i.framer-1isya6 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 523\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLZaNTUG2J=withCSS(Component,css,\"framer-4QL7i\");export default FramerLZaNTUG2J;FramerLZaNTUG2J.displayName=\"Kundenstimmen-slider\";FramerLZaNTUG2J.defaultProps={height:523,width:1200};addFonts(FramerLZaNTUG2J,[{explicitInter:true,fonts:[]},...KundenzitatFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLZaNTUG2J\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"523\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (63ac63c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,LazyValue,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Loader from\"https://framerusercontent.com/modules/cqWrmoTRJuMdIdYw6b0A/P2weL8lIvpGyps0kPj0o/rlIcZ3c2D.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/zzGLuFF4YkasKl1lrsW9/YouTube.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import KundenstimmenSliderCopy from\"#framer/local/canvasComponent/a6IlV3A15/a6IlV3A15.js\";import SlideshowReferenzen from\"#framer/local/canvasComponent/J5wh7n_1L/J5wh7n_1L.js\";import FeatureCard from\"#framer/local/canvasComponent/Kym4ifyAB/Kym4ifyAB.js\";import Topbar from\"#framer/local/canvasComponent/lWUcIJP0H/lWUcIJP0H.js\";import KundenstimmenSlider from\"#framer/local/canvasComponent/LZaNTUG2J/LZaNTUG2J.js\";import Footer from\"#framer/local/canvasComponent/M82dauGNX/M82dauGNX.js\";import Button from\"#framer/local/canvasComponent/Tnz4seCKc/Tnz4seCKc.js\";import*as sharedStyle3 from\"#framer/local/css/pbkah0okA/pbkah0okA.js\";import*as sharedStyle2 from\"#framer/local/css/puB8kY46u/puB8kY46u.js\";import*as sharedStyle from\"#framer/local/css/pzgAh97sX/pzgAh97sX.js\";import*as sharedStyle5 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle1 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle4 from\"#framer/local/css/zFV_Olyc4/zFV_Olyc4.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopbarFonts=getFonts(Topbar);const ButtonFonts=getFonts(Button);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SlideshowFonts=getFonts(Slideshow);const MotionDivWithFX=withFX(motion.div);const FeatureCardFonts=getFonts(FeatureCard);const ContainerWithFX=withFX(Container);const KundenstimmenSliderCopyFonts=getFonts(KundenstimmenSliderCopy);const LoaderFonts=getFonts(Loader);const YouTubeFonts=getFonts(YouTube);const TickerFonts=getFonts(Ticker);const KundenstimmenSliderFonts=getFonts(KundenstimmenSlider);const SlideshowReferenzenFonts=getFonts(SlideshowReferenzen);const ImageWithFX=withFX(Image);const FooterFonts=getFonts(Footer);const breakpoints={jvCw4IpzG:\"(max-width: 809px)\",Ulru_24ch:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Xp6b6\";const variantClassNames={jvCw4IpzG:\"framer-v-nj0mn7\",Ulru_24ch:\"framer-v-1feqjcj\",WQLkyLRf1:\"framer-v-72rtr7\"};const valuesByLocaleId={LaOZyjl9Y:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};const preloadLocalizedValues=locale=>{const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition2={damping:80,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:100};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:100};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3,x:0,y:20};const transition4={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};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 metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"jvCw4IpzG\",Tablet:\"Ulru_24ch\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,UaWHVX1Cz,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-Xp6b6`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Xp6b6`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const AzZNlMa5Cwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"jvCw4IpzG\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"jvCw4IpzG\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vpjptw-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"ZQwaB4_p3\"},Ulru_24ch:{variant:\"ZQwaB4_p3\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"Ygm8YMedJ\",layoutId:\"Ygm8YMedJ\",style:{width:\"100%\"},variant:\"jRXICbciv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u5wowh\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aivq4d\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1bivpm0\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1hf6pdt\",\"data-framer-appear-id\":\"1hf6pdt\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:(_getLocalizedValue=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"},children:\"Die Werkzeugmacher der Digitalisierung\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-color\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"},children:\"Die Werkzeugmacher der Digitalisierung\"})}),className:\"framer-1epr4dw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:(_getLocalizedValue2=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"Smarte Software.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Smarte Software.\"})}),className:\"framer-19ij0iw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:(_getLocalizedValue4=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Verbindet. Vereinfacht. Verbessert.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:\"Verbindet. Vereinfacht. Verbessert.\"})}),className:\"framer-pru6wt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1154jd6\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R_id6v0vz\"},implicitPathVariables:undefined},{href:{webPageId:\"R_id6v0vz\"},implicitPathVariables:undefined},{href:{webPageId:\"R_id6v0vz\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"min(min(max(100vw, 1px), 1300px) - 40px, 600px)\"},Ulru_24ch:{y:637.8499999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ia2b21-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{gHeOvXgAq:resolvedLinks[2],style:{width:\"100%\"},variant:\"zMIqz4YH_\"},Ulru_24ch:{gHeOvXgAq:resolvedLinks[1],variant:\"zMIqz4YH_\"}},children:/*#__PURE__*/_jsx(Button,{cEvx2Nclh:false,gHeOvXgAq:resolvedLinks[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:(_getLocalizedValue=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Produkte ansehen\",id:\"KYhdls_tE\",layoutId:\"KYhdls_tE\",Uwhubicpx:false,variant:\"DaKMOSQtn\",width:\"100%\"})})})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined},{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined},{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"min(min(max(100vw, 1px), 1300px) - 40px, 600px)\"},Ulru_24ch:{y:637.8499999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pfo4jn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{gHeOvXgAq:resolvedLinks1[2],style:{width:\"100%\"},variant:\"rR8gbhtfg\"},Ulru_24ch:{gHeOvXgAq:resolvedLinks1[1],variant:\"rR8gbhtfg\"}},children:/*#__PURE__*/_jsx(Button,{cEvx2Nclh:false,gHeOvXgAq:resolvedLinks1[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:(_getLocalizedValue=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Kontakt aufnehmen\",id:\"Fvta2HWTU\",layoutId:\"Fvta2HWTU\",Uwhubicpx:false,variant:\"gSXZ_qzqL\",width:\"100%\"})})})})});}})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zfhk0p-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(196, 214, 0))\",arrowGap:10,arrowPadding:6,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:155,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:19,overflow:false},gap:52,height:\"100%\",id:\"tjCfOEEkM\",intervalControl:2.5,itemAmount:1,layoutId:\"tjCfOEEkM\",padding:27,paddingBottom:27,paddingLeft:27,paddingPerSide:false,paddingRight:27,paddingTop:27,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(196, 214, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(239, 239, 239))\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:272,pixelHeight:540,pixelWidth:272,sizes:\"272px\",src:\"https://framerusercontent.com/images/zI6ZexqY9qsToB9QslWAjRkUh5k.png\",srcSet:\"https://framerusercontent.com/images/zI6ZexqY9qsToB9QslWAjRkUh5k.png 272w\"},className:\"framer-1h0kdrw\",\"data-framer-name\":\"Temperaturskale-scada\",name:\"Temperaturskale-scada\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:272,pixelHeight:540,pixelWidth:272,sizes:\"272px\",src:\"https://framerusercontent.com/images/3z09c4Me0LrAp72aCfJaGZJ3sc.png\",srcSet:\"https://framerusercontent.com/images/3z09c4Me0LrAp72aCfJaGZJ3sc.png 272w\"},className:\"framer-uo43j4\",\"data-framer-name\":\"Menu\\xcc\\x88-scada\",name:\"Menu\\xcc\\x88-scada\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:272,pixelHeight:540,pixelWidth:272,sizes:\"272px\",src:\"https://framerusercontent.com/images/JzyxPpKF7MbwE5YjTi93Em1IlBY.png\",srcSet:\"https://framerusercontent.com/images/JzyxPpKF7MbwE5YjTi93Em1IlBY.png 272w\"},className:\"framer-hjzkur\",\"data-framer-name\":\"Standorte-scada\",name:\"Standorte-scada\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:272,pixelHeight:540,pixelWidth:272,sizes:\"272px\",src:\"https://framerusercontent.com/images/yypICxqg5boSZerjC86vX8Y0.png\",srcSet:\"https://framerusercontent.com/images/yypICxqg5boSZerjC86vX8Y0.png 272w\"},className:\"framer-zd15sd\",\"data-framer-name\":\"Temperaturen-scada\",name:\"Temperaturen-scada\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:272,pixelHeight:540,pixelWidth:272,sizes:\"272px\",src:\"https://framerusercontent.com/images/aQLNYMRpiFZjFQDvyajVUunESdk.png\",srcSet:\"https://framerusercontent.com/images/aQLNYMRpiFZjFQDvyajVUunESdk.png 272w\"},className:\"framer-1n7vm7w\",\"data-framer-name\":\"Hersteller-scada\",name:\"Hersteller-scada\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:272,pixelHeight:540,pixelWidth:272,sizes:\"272px\",src:\"https://framerusercontent.com/images/3OEFA2KiqtAGwPbKDpyv53NF4JA.png\",srcSet:\"https://framerusercontent.com/images/3OEFA2KiqtAGwPbKDpyv53NF4JA.png 272w\"},className:\"framer-1ee3aso\",\"data-framer-name\":\"Newsfeed-connect\",name:\"Newsfeed-connect\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:272,pixelHeight:540,pixelWidth:272,sizes:\"272px\",src:\"https://framerusercontent.com/images/2qMhaTB9wpLut3L1LUnFHOsZaE.png\",srcSet:\"https://framerusercontent.com/images/2qMhaTB9wpLut3L1LUnFHOsZaE.png 272w\"},className:\"framer-1pvp0qp\",\"data-framer-name\":\"Menu\\xcc\\x88-connect\",name:\"Menu\\xcc\\x88-connect\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:272,pixelHeight:540,pixelWidth:272,sizes:\"272px\",src:\"https://framerusercontent.com/images/6NbUckGVFIUv3Sk5Qmak426i0WU.png\",srcSet:\"https://framerusercontent.com/images/6NbUckGVFIUv3Sk5Qmak426i0WU.png 272w\"},className:\"framer-s2zvu0\",\"data-framer-name\":\"Umfrage-connect\",name:\"Umfrage-connect\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:272,pixelHeight:540,pixelWidth:272,sizes:\"272px\",src:\"https://framerusercontent.com/images/zWuDIJ4c1DOPQ5DlBegxE2BVzk.png\",srcSet:\"https://framerusercontent.com/images/zWuDIJ4c1DOPQ5DlBegxE2BVzk.png 272w\"},className:\"framer-hvfvo\",\"data-framer-name\":\"Wiki-connect\",name:\"Wiki-connect\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:272,pixelHeight:540,pixelWidth:272,sizes:\"272px\",src:\"https://framerusercontent.com/images/aN82qGMRQy1NuyL6F5xnvoAg0.png\",srcSet:\"https://framerusercontent.com/images/aN82qGMRQy1NuyL6F5xnvoAg0.png 272w\"},className:\"framer-1l76f9j\",\"data-framer-name\":\"Chat-connect\",name:\"Chat-connect\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:272,pixelHeight:540,pixelWidth:272,sizes:\"272px\",src:\"https://framerusercontent.com/images/TGfbDU0ZPKKpRVaEEgbq2Qzpg0.png\",srcSet:\"https://framerusercontent.com/images/TGfbDU0ZPKKpRVaEEgbq2Qzpg0.png 272w\"},className:\"framer-7y5d7r\",\"data-framer-name\":\"Gruppen-connect\",name:\"Gruppen-connect\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nskp2m\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l8kvls\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(24, 24, 24))\"},children:\"unsere Produkte\"})}),className:\"framer-1rrr18e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:(_getLocalizedValue7=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(24, 24, 24))\"},children:\"Die Kibi Suite\"})})},Ulru_24ch:{children:(_getLocalizedValue8=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(24, 24, 24))\"},children:\"Die Kibi Suite\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Die Kibi Suite\"})}),className:\"framer-dzzjiy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f0btsu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"max(min(100vw - 40px, 1200px), 200px)\"},Ulru_24ch:{width:\"max(min(100vw - 100px, 1200px), 200px)\",y:1112.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:362,width:\"max((min(100vw - 100px, 1200px) - 20px) / 2, 200px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hvdw6a-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:(_getLocalizedValue10=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:\"Mehr Infos\",fsUmuS24I:(_getLocalizedValue11=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:\"das soziale Intranet\",g56HeEMzh:(_getLocalizedValue12=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:\"Kibi Connect\",height:\"100%\",HQlsDHpqI:true,id:\"BxLcQn5uQ\",J2X4hmGjs:true,layoutId:\"BxLcQn5uQ\",NhBkJo21q:addImageAlt({src:\"https://framerusercontent.com/images/IfWMZm4pWR6Od61fCQeRZd3nc.png\",srcSet:\"https://framerusercontent.com/images/IfWMZm4pWR6Od61fCQeRZd3nc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IfWMZm4pWR6Od61fCQeRZd3nc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IfWMZm4pWR6Od61fCQeRZd3nc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IfWMZm4pWR6Od61fCQeRZd3nc.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/IfWMZm4pWR6Od61fCQeRZd3nc.png 6210w\"},\"\"),qKOBsbAyJ:true,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"Cards\",TGkzNQ1dk:\"https://kibi-connect.de/\",variant:\"oO6m8pK61\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"max(min(100vw - 40px, 1200px), 200px)\"},Ulru_24ch:{width:\"max(min(100vw - 100px, 1200px), 200px)\",y:1494.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:362,width:\"max((min(100vw - 100px, 1200px) - 20px) / 2, 200px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t2y2hc-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:(_getLocalizedValue13=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:\"Mehr Infos\",fsUmuS24I:(_getLocalizedValue14=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:\"der Gro\\xdfk\\xfcchen-Leitstand\",g56HeEMzh:(_getLocalizedValue15=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:\"Kibi Scada\",height:\"100%\",HQlsDHpqI:true,id:\"vV3vYn1hw\",J2X4hmGjs:true,layoutId:\"vV3vYn1hw\",NhBkJo21q:addImageAlt({src:\"https://framerusercontent.com/images/yZloNlqTaxTGHbjSTwo4fKwk98.png\",srcSet:\"https://framerusercontent.com/images/yZloNlqTaxTGHbjSTwo4fKwk98.png?scale-down-to=512 512w,https://framerusercontent.com/images/yZloNlqTaxTGHbjSTwo4fKwk98.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yZloNlqTaxTGHbjSTwo4fKwk98.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yZloNlqTaxTGHbjSTwo4fKwk98.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/yZloNlqTaxTGHbjSTwo4fKwk98.png 6210w\"},\"\"),qKOBsbAyJ:true,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"Cube\",TGkzNQ1dk:\"https://kibi-scada.de/\",variant:\"oO6m8pK61\",width:\"100%\"})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{height:706,width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tnt5ao-container hidden-72rtr7 hidden-1feqjcj\",children:/*#__PURE__*/_jsx(KundenstimmenSliderCopy,{height:\"100%\",id:\"BIvmPR1wv\",layoutId:\"BIvmPR1wv\",style:{width:\"100%\"},variant:\"KAs3MYnno\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mjs0s6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pczq5p\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v4yzrk\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue16=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"WESLINK stellt sich jeder Herausforderung\"})}),className:\"framer-1758pr2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue17=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Wir digitalisieren Ihr Unternehmen!\"})}),className:\"framer-aevyc5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a9ggzj\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lCMKdjGrh\"},implicitPathVariables:undefined},{href:{webPageId:\"lCMKdjGrh\"},implicitPathVariables:undefined},{href:{webPageId:\"lCMKdjGrh\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"min(100vw - 40px, 591px)\"},Ulru_24ch:{y:2118.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a802nq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{gHeOvXgAq:resolvedLinks2[2],style:{width:\"100%\"},variant:\"b48suxf0R\"},Ulru_24ch:{gHeOvXgAq:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{cEvx2Nclh:false,gHeOvXgAq:resolvedLinks2[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:(_getLocalizedValue=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Referenzen ansehen\",id:\"pVeqJqqMq\",layoutId:\"pVeqJqqMq\",Uwhubicpx:false,variant:\"e26Z2vL7l\",width:\"100%\"})})})})});}}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined},{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined},{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"min(100vw - 40px, 591px)\"},Ulru_24ch:{y:2118.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-nq9pdw-container\",id:\"nq9pdw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{gHeOvXgAq:resolvedLinks3[2],style:{width:\"100%\"},variant:\"koqbpXF0Q\"},Ulru_24ch:{gHeOvXgAq:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{AzZNlMa5C:AzZNlMa5Cwelu7j({overlay}),cEvx2Nclh:false,gHeOvXgAq:resolvedLinks3[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:(_getLocalizedValue=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Jetzt Kontakt aufnehmen\",id:\"kQ8q4Uka8\",layoutId:\"kQ8q4Uka8\",Uwhubicpx:false,variant:\"I4Y6Mo9hB\",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:.1,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-wfdqwi\",\"data-framer-portal-id\":\"nq9pdw\",exit:{opacity:0,transition:{delay:0,duration:.1,ease:[.5,0,.88,.77],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"JsJfrUn8U\"),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b1lwkb\",\"data-framer-portal-id\":\"nq9pdw\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qlrsxy\",onTap:onTap1wvko5h({overlay}),children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ntwxhl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{svgContentId:9306919110},Ulru_24ch:{svgContentId:9306919110}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ivn6mw\",\"data-framer-name\":\"x\",layout:\"position\",name:\"x\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 22.5 7.5 L 7.5 22.5 M 7.5 7.5 L 22.5 22.5\" fill=\"transparent\" stroke-width=\"2.5\" stroke=\"hsl(0, 0%, 100%)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:716984518,withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pg9to7\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xr6hdg-container\",children:/*#__PURE__*/_jsx(Loader,{height:\"100%\",id:\"ZN9mPUOPI\",layoutId:\"ZN9mPUOPI\",variant:\"AXpNtSsXY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{animate:animation6,className:\"framer-9cym6m\",\"data-framer-name\":\"Video\",exit:animation5,initial:animation7,name:\"Video\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iqh96i-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"DE7YEbYrY\",isMixedBorderRadius:false,isRed:false,layoutId:\"DE7YEbYrY\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:(_getLocalizedValue1=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"https://youtu.be/hOXZzf05qbs\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s7v1uu\"})]})]}),document.querySelector(\"#overlay\"))})})]})})});}})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bl8bge\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19d3lwb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue18=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-13xnbb0\",\"data-styles-preset\":\"zFV_Olyc4\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Wir vertrauen auf \"})}),className:\"framer-gbd18d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1poek1n\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9wq8rq\",\"data-framer-name\":\"Logo_wei\\xdf_gru\u0308n\",fill:\"black\",intrinsicHeight:161,intrinsicWidth:679,name:\"Logo_wei\\xdf_gru\u0308n\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 679.06 161.43\"><path style=\"fill:#c4d600;fill-rule:evenodd\" d=\"M362.77 1.64h-24.16v119.68h66.58v-20.06h-42.42V1.64zm65.26 119.68h24.16V1.64h-24.16v119.68zM565.34 1.64h-24.09v78.58L505.83 1.64h-24.17v119.68h24.17V42.83l35.34 78.49h24.17V1.64zm85.03 119.68h28.69l-34.85-67.07 34.27-52.61h-29.59l-22.27 39.29-7.65 12.91V1.64H594.8v119.68h24.17V87.13l9.54-12 21.86 46.19zm-311.76 40.11h340.45v-20.05H338.61v20.05z\"/><path style=\"fill:#fff;fill-rule:evenodd\" d=\"M69.7 1.64H49.4L35.35 76.77 24.08 1.64H0l21.37 119.68H45.7L59.51 50.8l13.98 70.52h24.24L119.02 1.64H95.1L83.76 76.85 69.7 1.64zM205 50.06h-37.65V21.78h44.39V1.64h-68.55v119.68h68.71v-20.06h-44.55V69.54H205V50.06zm69.72 53.26c-6.08 0-10.47-1.56-13.15-4.68-2.69-3.12-4.03-8.14-4.03-15.04h-24.25c0 8.05 1.79 15.04 5.38 20.96 3.59 5.92 8.56 10.47 14.92 13.64 6.36 3.18 13.4 4.77 21.12 4.77 11.4 0 20.41-2.93 27.04-8.79 6.63-5.86 9.95-14 9.95-24.41 0-9.48-2.64-17.29-7.93-23.43-5.29-6.14-13.77-11.32-25.44-15.54-6.69-2.85-11.35-5.6-13.98-8.26-2.63-2.66-3.94-5.63-3.94-8.92 0-4.22 1.17-7.58 3.53-10.07s5.64-3.74 9.86-3.74c4.49 0 7.93 1.47 10.32 4.4 2.38 2.93 3.58 7.19 3.58 12.78h24.08c0-7.18-1.55-13.59-4.65-19.24-3.1-5.64-7.52-10.01-13.27-13.11C288.1 1.55 281.56 0 274.21 0c-11.01 0-20.1 3.06-27.25 9.17-7.15 6.11-10.73 14.21-10.73 24.29 0 8.32 2.63 15.54 7.89 21.65 5.26 6.11 13.89 11.44 25.89 15.99 6.58 2.69 11.11 5.27 13.61 7.77 2.49 2.49 3.74 6.18 3.74 11.05 0 8.93-4.22 13.4-12.66 13.4Z\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ibvkqp-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",hoverFactor:1,id:\"AMzyGc0cb\",layoutId:\"AMzyGc0cb\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Tu_Pd0zTZ:\"alsco-service-webapp\"},unresolvedPathSlugs:{Tu_Pd0zTZ:{collectionId:\"nWZy3UnCE\",collectionItemId:\"F1_yRNKWp\"}},webPageId:\"bcUIOegNe\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:283,intrinsicWidth:1200,pixelHeight:283,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/y8IrEDtbbeWZZlEwocvHhF5pFqA.png\",srcSet:\"https://framerusercontent.com/images/y8IrEDtbbeWZZlEwocvHhF5pFqA.png?scale-down-to=512 512w,https://framerusercontent.com/images/y8IrEDtbbeWZZlEwocvHhF5pFqA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/y8IrEDtbbeWZZlEwocvHhF5pFqA.png 1200w\"},className:\"framer-16nq5uz framer-lux5qc\",\"data-framer-name\":\"alsco\",name:\"alsco\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:196,intrinsicWidth:720,pixelHeight:196,pixelWidth:720,positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/1ahvhyAv1kJX8lR3sPqunW7twaY.png\",srcSet:\"https://framerusercontent.com/images/1ahvhyAv1kJX8lR3sPqunW7twaY.png?scale-down-to=512 512w,https://framerusercontent.com/images/1ahvhyAv1kJX8lR3sPqunW7twaY.png 720w\"},className:\"framer-6f5v0g\",\"data-framer-name\":\"schnieder\",name:\"schnieder\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:924,intrinsicWidth:1456,pixelHeight:924,pixelWidth:1456,positionX:\"center\",positionY:\"center\",sizes:\"195px\",src:\"https://framerusercontent.com/images/hbrCJrG96T1rsg66w2NvcdIn5U.png\",srcSet:\"https://framerusercontent.com/images/hbrCJrG96T1rsg66w2NvcdIn5U.png?scale-down-to=512 512w,https://framerusercontent.com/images/hbrCJrG96T1rsg66w2NvcdIn5U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hbrCJrG96T1rsg66w2NvcdIn5U.png 1456w\"},className:\"framer-nur400\",\"data-framer-name\":\"heek\",name:\"heek\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:86,intrinsicWidth:500,pixelHeight:86,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7iCQgoX4VM8sorqQDJAPurfTjQ.png\"},className:\"framer-dc347g\",\"data-framer-name\":\"hupfer\",name:\"hupfer\"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Tu_Pd0zTZ:\"opc-dusk\"},unresolvedPathSlugs:{Tu_Pd0zTZ:{collectionId:\"nWZy3UnCE\",collectionItemId:\"JMoO9uPhs\"}},webPageId:\"bcUIOegNe\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:72,intrinsicWidth:253,pixelHeight:72,pixelWidth:253,src:\"https://framerusercontent.com/images/dAsSOMPFhqFoexeYPeqMXzo2MZc.png\"},className:\"framer-17ibe2x framer-lux5qc\",\"data-framer-name\":\"opc\",name:\"opc\"})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Tu_Pd0zTZ:\"gh-fokus\"},unresolvedPathSlugs:{Tu_Pd0zTZ:{collectionId:\"nWZy3UnCE\",collectionItemId:\"xwnlBvURY\"}},webPageId:\"bcUIOegNe\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12sdhoi framer-lux5qc\",\"data-framer-name\":\"hagelschuer\",name:\"hagelschuer\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bizx14\",\"data-framer-name\":\"Hagelschuer\",fill:\"black\",intrinsicHeight:187,intrinsicWidth:284,name:\"Hagelschuer\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 283.5 187.1\" style=\"enable-background:new 0 0 283.5 187.1\" xml:space=\"preserve\"><path d=\"M148.9 17.7V2.8h-5.7v108h5.7V23.7c40.3 5.7 70.4 41.2 70.4 83.5l-.1 3.6 5.8.1.1-3.6c0-45.6-32.7-83.9-76.2-89.6m-16 66.8h5.8v26.3H58.4v-3c0-24.1 9-46.7 25.4-63.7C98.3 29 117.1 19.9 137.3 18v6c-18.7 1.9-36 10.4-49.4 24.3-14.6 15.2-23 35.2-23.7 56.5h68.7V84.5zM2.8 175.9h62.8v3.9H2.8zm91.5 0c-.5 1.4-1.2 2.7-2 3.9h188.4v-3.9H94.3zm15.3-12.3c-4.6 0-7.4-4-7.4-7.6 0-4.2 2.8-7.6 6.5-7.6 1.6 0 3 .4 3.8 1.3l-7.6 5.9 3.7 4.9 14.8-11.1c-1.9-4.4-6.4-8.6-14.2-8.6-9.1 0-14.8 7-14.8 15.3s5.7 15.3 14.8 15.3c8.2 0 14.3-5.2 15.7-13.1l-7.7-.8c-.6 3.7-3.8 6.1-7.6 6.1zm-31-23c-8.9 0-14.2 6.4-14.2 14.9s5.3 14.7 14.2 14.7c1 0 2.7-.2 4.3-.8v-8c-1.1.4-2.3.7-4.3.7-3.8 0-6.5-2.6-6.5-6.8s2.8-7 6.5-7c3.1 0 6.5 2.1 6.5 6.8v14.3c0 5.3-4.1 6.2-7.7 6.2-3.3 0-6-.5-9.1-1.7v7.9c2.9 1.1 6.2 1.5 9.3 1.5 10.1 0 15.3-5.1 15.3-15.1v-14.1c-.1-7-6.6-13.5-14.3-13.5zm66 9.3c0-1.2 1-1.3 1.9-1.3h8.9v-7.2h-9.2c-5 0-9.5 2.3-9.5 8.6 0 7.3 11.8 8.1 11.8 11.8 0 .9-.7 1.6-2.2 1.6h-9.9v7.2h10.7c5.5 0 9.8-3.1 9.8-8.9.1-7.7-12.3-9.2-12.3-11.8zM48 140.6c-8 0-14.3 6.2-14.3 15.6 0 7.6 4.9 14.5 13.9 14.5 1.6 0 3.1-.3 4.9-.7v-8c-1.4.5-2.7.9-4.4.9-3.9 0-6.7-3.1-6.7-7 0-4.3 2.8-7.6 6.5-7.6 4.2 0 6.8 2.3 6.8 5.8v16.5h7.7v-16.8c0-7.6-5.6-13.2-14.4-13.2zm-24.9-11.5v14.5H11.7v-14.5H2.8v41.4h8.9V152h11.4v18.5H32v-41.4zm103.5 0h7.7v41.4h-7.7zm120.7 34.5c-4.6 0-7.4-4-7.4-7.6 0-4.2 2.8-7.6 6.5-7.6 1.6 0 3 .4 3.8 1.3l-7.6 5.9 3.7 4.9 14.8-11.1c-1.9-4.4-6.4-8.6-14.2-8.6-9.1 0-14.8 7-14.8 15.3s5.7 15.3 14.8 15.3c8.2 0 14.3-5.2 15.7-13.1l-7.7-.8c-.5 3.7-3.7 6.1-7.6 6.1zM279 141c-3.2 0-6.1 2.1-7.4 5.9h-.1v-5.5h-7.3v29.2h8.2v-14.3c0-4.4 2.5-7.1 6.4-7.1h1.9V141H279zm-56.1 17.9c0 3-1.6 4.7-4.4 4.7-2.8 0-4.4-1.7-4.4-4.7v-17.5h-7.7v20.2c0 6.4 4.9 9.7 12.1 9.7 7.1 0 12.1-3.4 12.1-9.7v-20.2h-7.7v17.5zm-28.7-18.3c-2.7 0-4.9.6-6.6 2.9h-.1v-14.4h-7.7v41.4h7.7V153c0-3 1.6-4.7 4.4-4.7 2.8 0 4.4 1.7 4.4 4.7v17.5h7.7v-20.2c-.1-6.3-5-9.7-9.8-9.7zM158 155.9c0 8.9 5.4 14.6 14.4 14.6h5.3v-7.7h-5.1c-4.3 0-7-2.9-7-6.9s2.7-6.9 7-6.9h5.1v-7.7h-5.3c-8.9.1-14.4 5.7-14.4 14.6z\" style=\"fill:#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6v9yzd\",\"data-framer-name\":\"castapp\",name:\"castapp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7l8cvj\",\"data-framer-name\":\"castapp\",fill:\"black\",intrinsicHeight:59,intrinsicWidth:251,name:\"castapp\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 251.4 58.6\" style=\"enable-background:new 0 0 251.4 58.6\" xml:space=\"preserve\"><path d=\"M53 28.3c-.3 14.1-12 25.2-25.8 25.1-14.1-.1-25.9-12-25.3-26.8.5-13.3 12-24.6 26-24.3 14 .3 25.3 12.1 25.1 26zm-18.6-16c-.4-.2-.8-.3-1.3-.5-1.5-.6-3.1-.9-4.8-1-1.5-.1-3 .1-4.5.4-1 .2-2.1.6-3 1-1.2.6-2.3 1.3-3.4 2.1-1.7 1.3-3 3.1-4.2 4.9-.4.6-.6 1.2-.8 1.9-.6 1.7-1.1 3.4-1.1 5.2 0 1.7.1 3.4.6 5.1.3 1 .6 1.9 1.1 2.8.7 1.4 1.6 2.5 2.8 3.5 1.2 1 2.5 1.7 4 2.1 1.4.4 2.9.5 4.4.4 1.4-.1 2.7-.6 4-1.2 1.1-.5 2-1.4 2.9-2.3.2-.2.4-.5.7-.7l-1.5.6c-1 .4-2.1.4-3.1.4-2.9-.1-5.2-1.5-6.9-3.8-.9-1.2-1.5-2.5-1.8-4-.2-1-.5-1.9-.5-2.9-.1-1.1.1-2.3.3-3.4.4-2.1 1.3-4 2.7-5.7 1.4-1.8 3.2-3.1 5.3-4.1 1.2-.5 2.4-.8 3.6-1 1.5 0 3 0 4.5.2zM19.8 28.8c-.1-.6 0-1.2 0-1.7.1-1.5.5-2.9 1.4-4.1 1.1-1.6 2.4-2.8 4.3-3.4 1.2-.4 2.3-.5 3.5-.4 1.2.1 2.3.6 3.4 1.2 1.1.7 2 1.5 2.7 2.6.5.8 1.1 1.2 2.1 1.2h6.2c.2 0 .5 0 .7-.1.4-.1.6-.5.5-.9-.1-.7-.4-1.3-.7-2-.6-1.1-1.4-2.1-2.2-3.1-1.6-1.7-3.6-3-5.9-3.6-2-.5-4-.6-6-.2-.7.2-1.5.4-2.2.6-1.1.4-2 1-3 1.7-.9.6-1.6 1.4-2.3 2.2-.4.5-.7 1-1.1 1.6-.3.5-.6 1.1-.8 1.7-.5 1.3-.7 2.6-.8 3.9-.1 1-.1 1.9.2 2.8zm70.7-5.4h-4.6c-.4 0-.4 0-.5-.4 0-.6-.2-1.1-.4-1.6-.7-1.5-1.7-2.6-3.4-3.1-1.4-.4-2.8-.5-4.2-.2-1.6.4-3 1.2-4 2.6-.8 1.2-1.4 2.5-1.6 4-.1 1-.3 1.9-.3 2.9 0 1.7.1 3.4.6 5 .2.9.6 1.7 1.1 2.5.6.9 1.4 1.6 2.4 2.1 2 1 4.1 1.1 6.3.3 1.4-.5 2.5-1.3 3-2.8.2-.5.4-1 .5-1.5 0-.2.1-.2.3-.2H87c2.7 0 5.4 0 8.1.1.2 0 .3.1.3.3-.1 1-.4 1.9-.7 2.8-.6 1.6-1.4 3.1-2.4 4.4-.4.5-.8.9-1.2 1.4-1 1-2.2 1.9-3.5 2.6-1.5.8-3.2 1.4-4.9 1.7-1.7.3-3.3.3-5 .3-1.3-.1-2.7-.3-4-.6-3.3-1-6.2-2.6-8.3-5.4-1.5-1.9-2.5-4.1-3.1-6.4-.7-2.8-.8-5.7-.6-8.5.1-2.2.7-4.3 1.6-6.3.5-1.2 1.2-2.4 2.1-3.5 1.2-1.5 2.6-2.8 4.2-3.7 1.3-.8 2.7-1.4 4.3-1.8 2.4-.6 4.8-.8 7.2-.6 1.8.1 3.6.6 5.4 1.3 2.3.9 4.2 2.3 5.8 4.2.6.8 1.2 1.6 1.6 2.5.9 1.8 1.3 3.7 1.6 5.6 0 .3 0 .3-.3.3-1.6-.3-3.2-.3-4.7-.3zM113 42.1c-.2.2-.4.5-.5.7-1.1 1.7-2.6 2.7-4.6 3.2-1.5.4-2.9.5-4.4.3-2.1-.3-4.1-1-5.5-2.7-.8-1-1.3-2.1-1.5-3.4-.3-1.8-.2-3.6.5-5.3.6-1.4 1.6-2.4 2.8-3.2 1.7-1 3.5-1.5 5.4-1.7 1.7-.2 3.5-.3 5.2-.7.6-.1 1.1-.4 1.6-.8.4-.3.5-.8.5-1.3 0-.9-.5-1.5-1.5-1.8-1-.3-2-.3-3 0-.9.3-1.5.9-1.6 1.8 0 .2-.1.3-.4.3h-8.4c-.2 0-.3 0-.2-.3.3-2.7 1.5-4.9 3.7-6.5 1.4-1.1 3.1-1.7 4.8-2 2.1-.4 4.2-.5 6.3-.2 2.3.3 4.4.9 6.3 2.3 1.6 1.2 2.9 2.6 3.3 4.6.2.7.3 1.5.3 2.3v17.8c0 .3-.1.3-.3.3h-8.5c-.2 0-.3-.1-.3-.3v-3.1c.1 0 .1-.1 0-.3zm-.5-6.5v-1.1c0-.3-.1-.3-.3-.2-1.3.4-2.6.7-4 .9-.8.1-1.6.4-2.2 1-1.1 1.1-.9 3.3.9 3.8 1.5.4 2.9.2 4.1-.7.6-.4 1-.9 1.2-1.6.3-.7.3-1.4.3-2.1zm15.6 1.6h4.5c.2 0 .3 0 .4.2.3 1.3 1.2 1.9 2.3 2.2.8.2 1.7.4 2.6.2.5-.1.9-.2 1.3-.4.5-.2.8-.6.8-1.1 0-.6-.2-1-.7-1.4-.7-.4-1.5-.6-2.2-.7-1.8-.4-3.5-.6-5.3-1-1.6-.3-3-.8-4.4-1.6-1.5-.9-2.6-2.2-3.1-3.9-.5-1.6-.5-3.3 0-4.9.6-2.1 2-3.5 3.9-4.5 2.6-1.4 5.5-1.8 8.4-1.8 1.9 0 3.7.3 5.5.8 1.7.5 3.3 1.3 4.6 2.5 1.2 1.1 2 2.4 2.3 4 .1.5.2 1 .3 1.6 0 .3-.1.3-.3.3h-7.9c-.2 0-.4.1-.6 0-.2-.1-.1-.4-.2-.6-.3-.9-.9-1.4-1.8-1.7-1.4-.5-2.7-.4-4 .1-.6.2-1 .9-.8 1.6.1.4.4.8.8 1 .7.4 1.5.5 2.3.7 1.6.4 3.1.5 4.7.8 1.4.3 2.7.6 4 1.1 2.4 1 4.1 2.6 4.6 5.3.3 1.6-.1 3.2-.8 4.7-.7 1.5-1.9 2.6-3.3 3.5-1.5 1-3.2 1.6-5 2-1.8.4-3.6.4-5.4.3-1.4-.1-2.8-.2-4.1-.6-2.6-.7-4.8-2-6.4-4.2-.9-1.2-1.4-2.7-1.6-4.1 0-.2.1-.3.3-.3 1.2-.1 2.8-.1 4.3-.1zm34.6-5.4v5.4c0 .4 0 .8.3 1.2.3.4.8.6 1.3.6.6 0 1.2-.1 1.8-.2.3-.1.4 0 .4.3.2 1.5.6 3 .9 4.4.1.6.2 1.1.4 1.7.1.2 0 .3-.2.4-.8.2-1.5.4-2.3.5-1.8.3-3.5.4-5.3.1-1.5-.2-2.9-.6-4.1-1.5-1.5-1.1-2.3-2.6-2.6-4.4-.1-.7-.2-1.4-.2-2.2V26.3c0-.5 0-.5-.5-.5h-2.7c-.2 0-.3-.1-.3-.3v-6.4c0-.3 0-.4.4-.4h2.8c.2 0 .3-.1.3-.3v-6c0-.2.1-.3.2-.3h9.2c.3 0 .3.1.3.3v5.8c0 .4 0 .4.4.4h3.8c.4 0 .4 0 .4.4v6.2c0 .3-.1.4-.4.4h-3.9c-.3 0-.4.1-.4.4v5.8zm35.2 5.7V19.2c0-.2 0-.3.3-.3h3.4c.3 0 .3.1.3.4v3.6c0 .3.2.4.5.3.2-.1.3-.3.4-.5.9-1.3 1.9-2.5 3.3-3.2.8-.4 1.7-.7 2.7-.8 1.8-.2 3.7 0 5.4.6 1.3.5 2.5 1.2 3.6 2.2 1.3 1.2 2.2 2.6 2.8 4.1.6 1.5 1 3.1 1.2 4.7.2 1.7.1 3.5-.1 5.2-.3 2-.8 3.8-1.9 5.6-.4.7-.9 1.4-1.4 2-.8.9-1.6 1.6-2.7 2.2-2.3 1.3-4.8 1.6-7.4 1.2-1.9-.3-3.4-1.3-4.6-2.8-.3-.4-.7-.9-.9-1.3 0 0 0-.1-.1-.1-.1-.2-.3-.4-.5-.3-.2.1-.1.3-.1.5v13.4c0 .4 0 .4-.4.4h-3.4c-.3 0-.4-.1-.4-.4V37.5zm19.7-5.3c0-2-.3-4-1.2-5.8-1-2-2.5-3.4-4.7-3.8-1-.2-2-.3-3-.2-1.3.1-2.6.6-3.6 1.5-1.4 1.2-2.1 2.7-2.6 4.4-.3 1.2-.5 2.3-.5 3.5 0 2 .1 4 .8 5.9.5 1.3 1.2 2.5 2.2 3.5.8.7 1.7 1.3 2.8 1.5 1 .2 1.9.2 2.9.2 1.1-.1 2-.5 2.9-1 .3-.1.5-.3.8-.5 1.1-1 1.9-2.2 2.4-3.5.6-1.9.9-3.8.8-5.7zm8 5.3V19.2c0-.2.1-.3.3-.3h3.4c.2 0 .3.1.3.3v3.6c0 .1-.1.3.1.4.2.1.4 0 .5-.2.3-.5.7-1 1.1-1.4 1.7-2.2 4-3 6.6-3 1.9 0 3.7.4 5.4 1.4 1.4.8 2.6 1.9 3.6 3.3 2 3 2.7 6.3 2.6 9.9 0 1.8-.3 3.6-.9 5.4-.8 2.3-2 4.3-3.9 5.8-1 .8-2.2 1.5-3.5 1.8-1.5.4-2.9.5-4.4.4-1.4-.1-2.7-.6-3.9-1.4-.8-.6-1.5-1.3-2-2.2l-.6-.9c-.1-.2-.2-.2-.4-.2-.2.1-.1.2-.1.4v13.6c0 .2 0 .3-.3.3h-3.6c-.3 0-.3-.1-.3-.3V37.5zm4.1-5.1c.1 1.2.1 2.4.3 3.6.5 1.9 1.2 3.7 2.7 5.1.8.7 1.6 1.2 2.6 1.4 1.1.3 2.1.3 3.2.2 1-.1 1.8-.4 2.6-.9 1.4-.9 2.4-2.1 3-3.6.7-1.5.9-3.2 1.1-4.8.1-1.2 0-2.5-.2-3.7-.3-1.9-.9-3.6-2.1-5-.9-1.1-2.1-1.9-3.5-2.2-1.1-.2-2.3-.3-3.4-.1-1.2.1-2.2.6-3.1 1.3-1.3 1-2.2 2.4-2.7 4-.3 1.5-.5 3.1-.5 4.7zm-37 3.9v9.3c0 .3 0 .4-.3.4H189c-.3 0-.3-.1-.3-.3v-3c0-.1 0-.3-.2-.3-.1 0-.1.2-.2.3-.7 1.1-1.6 2.1-2.8 2.8-1 .6-2.1 1-3.2 1.2-1.1.2-2.3.2-3.4.1-1.8-.2-3.5-.9-4.9-2-1.2-.9-2-2.2-2.5-3.6-.5-1.8-.5-3.6.1-5.5.2-.7.7-1.2 1.1-1.7 1.1-1.3 2.6-2 4.2-2.4 1.5-.4 3.1-.7 4.6-.9 1.5-.2 3.1-.4 4.6-.6.6-.1 1.2-.3 1.8-.6.4-.2.6-.7.6-1.1.1-1.8-.2-3.5-1.7-4.8-.7-.6-1.4-.9-2.3-1-1.3-.2-2.7-.2-4 .1-1.6.3-2.9 1.3-3.9 2.5-.3.3-.6.7-.7 1.1-.1.2-.2.2-.4.1-1.2-.4-2.3-.8-3.5-1.3-.2-.1-.2-.1-.1-.3.8-1.7 1.9-3.1 3.4-4.1 1.2-.8 2.6-1.3 4-1.6 2.6-.6 5.2-.5 7.8.4 1.9.6 3.3 1.8 4.3 3.5.8 1.4 1.2 2.8 1.2 4.4.1 2.8.1 5.9.1 8.9zm-4-1.9v-1.8c0-.2-.1-.3-.3-.1-.5.3-.9.5-1.5.6-1.4.3-2.7.5-4.1.7-.9.1-1.9.2-2.8.4-.9.2-1.8.5-2.7.9-.5.2-.9.6-1.2.9-.7.7-.8 1.5-.8 2.4 0 .8.1 1.6.6 2.4.7 1 1.6 1.5 2.7 1.8 1.1.3 2.3.3 3.4.3 1.8-.1 3.3-.7 4.6-1.9.8-.7 1.3-1.6 1.7-2.7.3-1.4.4-2.6.4-3.9z\" style=\"fill:#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uj8sf6\",\"data-framer-name\":\"contradoo\",name:\"contradoo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-coxnij\",\"data-framer-name\":\"contradoo_logo_white\",fill:\"black\",intrinsicHeight:61,intrinsicWidth:171,name:\"contradoo_logo_white\",svg:'<svg width=\"171\" height=\"61\" xmlns=\"http://www.w3.org/2000/svg\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M73.2 42.279c-1.323 0-2.335-.29-3.038-.868-.703-.6-1.178-1.395-1.426-2.387-.227-1.013-.341-2.284-.341-3.813v-4.185c0-1.736.134-3.12.403-4.154.29-1.033.775-1.798 1.457-2.294.703-.517 1.684-.775 2.945-.775 1.757 0 2.955.486 3.596 1.457.64.95.961 2.377.961 4.278v.868h-2.108v-.868c0-1.054-.083-1.87-.248-2.449-.145-.579-.393-.982-.744-1.209-.351-.248-.837-.372-1.457-.372-.703 0-1.24.165-1.612.496-.351.33-.6.858-.744 1.581-.124.703-.186 1.726-.186 3.069v5.022c0 1.24.072 2.211.217 2.914.145.703.403 1.209.775 1.519.372.31.899.465 1.581.465.703 0 1.22-.145 1.55-.434.351-.31.579-.765.682-1.364.124-.6.186-1.436.186-2.511v-.992h2.108v.868c0 1.343-.124 2.46-.372 3.348-.227.868-.672 1.55-1.333 2.046-.661.496-1.612.744-2.852.744Zm12.018 0c-1.778 0-3.017-.548-3.72-1.643-.703-1.116-1.054-2.821-1.054-5.115v-4.96c0-2.294.351-3.989 1.054-5.084.703-1.116 1.942-1.674 3.72-1.674 1.798 0 3.048.558 3.75 1.674.703 1.095 1.055 2.79 1.055 5.084v4.96c0 2.294-.352 3.999-1.054 5.115-.703 1.095-1.953 1.643-3.751 1.643Zm0-1.705c.744 0 1.291-.196 1.643-.589.372-.393.61-.92.713-1.581.103-.682.155-1.602.155-2.759v-5.208c0-1.157-.052-2.067-.155-2.728-.103-.682-.341-1.22-.713-1.612-.352-.393-.9-.589-1.643-.589-.744 0-1.292.196-1.643.589-.352.393-.579.93-.682 1.612-.103.661-.155 1.57-.155 2.728v5.208c0 1.157.052 2.077.155 2.759.103.661.33 1.188.682 1.581.351.393.899.589 1.643.589Zm7.949-16.492h2.263v1.86a6.995 6.995 0 0 1 1.984-1.55 4.917 4.917 0 0 1 2.325-.589c.888 0 1.57.33 2.046.992.475.661.713 1.602.713 2.821V42h-2.263V28.112c0-.91-.145-1.56-.434-1.953-.269-.393-.693-.589-1.271-.589-.496 0-1.013.155-1.55.465a6.318 6.318 0 0 0-1.55 1.209V42h-2.263V24.082Zm16.931 18.135c-1.219 0-2.066-.33-2.542-.992-.454-.682-.682-1.664-.682-2.945V25.57h-2.201v-1.488h2.201v-5.549h2.263v5.549h2.976v1.488h-2.976v12.493c0 .91.104 1.54.31 1.891.207.33.631.496 1.271.496a6.17 6.17 0 0 0 1.302-.155v1.736c-.64.124-1.281.186-1.922.186Zm4.597-18.135h2.294v2.449c.537-.889 1.167-1.55 1.891-1.984.744-.434 1.488-.651 2.232-.651.144 0 .279.01.403.031v2.418a3.51 3.51 0 0 0-1.116-.186c-1.426 0-2.563.692-3.41 2.077V42h-2.294V24.082Zm12.057 18.197c-1.075 0-1.943-.382-2.604-1.147s-.992-1.715-.992-2.852c0-1.178.227-2.15.682-2.914.475-.765 1.199-1.447 2.17-2.046.971-.6 2.428-1.333 4.371-2.201v-1.271c0-1.116-.072-1.984-.217-2.604-.124-.62-.351-1.064-.682-1.333-.31-.269-.754-.403-1.333-.403-1.674 0-2.511 1.023-2.511 3.069v.62l-2.232-.031c.021-1.84.413-3.193 1.178-4.061.765-.868 1.994-1.302 3.689-1.302 1.571 0 2.687.475 3.348 1.426.682.95 1.023 2.449 1.023 4.495v8.711c0 .579.01 1.24.031 1.984.041.744.083 1.271.124 1.581h-2.015l-.341-2.48a4.319 4.319 0 0 1-1.395 1.984c-.641.517-1.405.775-2.294.775Zm.713-1.922c.62 0 1.178-.207 1.674-.62.517-.434.93-.94 1.24-1.519v-5.58c-1.405.744-2.428 1.323-3.069 1.736-.62.413-1.095.878-1.426 1.395-.31.496-.465 1.147-.465 1.953 0 .889.186 1.55.558 1.984.393.434.889.651 1.488.651Zm12.476 1.922c-1.529 0-2.635-.579-3.317-1.736-.661-1.157-.992-3.08-.992-5.766V31.46c0-2.542.3-4.454.899-5.735.6-1.281 1.705-1.922 3.317-1.922 1.158 0 2.212.517 3.162 1.55V16.89h2.263V42h-2.263v-1.271c-.95 1.033-1.973 1.55-3.069 1.55Zm.465-1.798c.868 0 1.736-.393 2.604-1.178V26.841c-.95-.847-1.839-1.271-2.666-1.271-.95 0-1.601.403-1.953 1.209-.33.806-.496 2.118-.496 3.937v4.247c0 1.943.166 3.348.496 4.216.352.868 1.023 1.302 2.015 1.302Zm12.806 1.798c-1.777 0-3.017-.548-3.72-1.643-.703-1.116-1.054-2.821-1.054-5.115v-4.96c0-2.294.351-3.989 1.054-5.084.703-1.116 1.943-1.674 3.72-1.674 1.798 0 3.048.558 3.751 1.674.703 1.095 1.054 2.79 1.054 5.084v4.96c0 2.294-.351 3.999-1.054 5.115-.703 1.095-1.953 1.643-3.751 1.643Zm0-1.705c.744 0 1.292-.196 1.643-.589.372-.393.61-.92.713-1.581.103-.682.155-1.602.155-2.759v-5.208c0-1.157-.052-2.067-.155-2.728-.103-.682-.341-1.22-.713-1.612-.351-.393-.899-.589-1.643-.589s-1.292.196-1.643.589c-.351.393-.579.93-.682 1.612-.103.661-.155 1.57-.155 2.728v5.208c0 1.157.052 2.077.155 2.759.103.661.331 1.188.682 1.581.351.393.899.589 1.643.589Zm12.382 1.705c-1.778 0-3.018-.548-3.72-1.643-.703-1.116-1.054-2.821-1.054-5.115v-4.96c0-2.294.351-3.989 1.054-5.084.702-1.116 1.942-1.674 3.72-1.674 1.798 0 3.048.558 3.751 1.674.702 1.095 1.054 2.79 1.054 5.084v4.96c0 2.294-.352 3.999-1.054 5.115-.703 1.095-1.953 1.643-3.751 1.643Zm0-1.705c.744 0 1.291-.196 1.643-.589.372-.393.609-.92.713-1.581.103-.682.155-1.602.155-2.759v-5.208c0-1.157-.052-2.067-.155-2.728-.104-.682-.341-1.22-.713-1.612-.352-.393-.899-.589-1.643-.589s-1.292.196-1.643.589c-.352.393-.579.93-.682 1.612-.104.661-.155 1.57-.155 2.728v5.208c0 1.157.051 2.077.155 2.759.103.661.33 1.188.682 1.581.351.393.899.589 1.643.589Z\" fill=\"#FFF\" fill-rule=\"nonzero\"/><path fill=\"#D6D6D6\" d=\"M50.816 45.798 25.898 60.953.058 44.24l23.045-14.386z\"/><path fill=\"#FFF\" d=\"M0 16.865 26.317 0l23.64 14.394L.058 44.24z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Tu_Pd0zTZ:\"zeiterfassung\"},unresolvedPathSlugs:{Tu_Pd0zTZ:{collectionId:\"nWZy3UnCE\",collectionItemId:\"SZM6CWO7K\"}},webPageId:\"bcUIOegNe\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:949,pixelHeight:201,pixelWidth:949,sizes:\"189px\",src:\"https://framerusercontent.com/images/zqFOJB0HZi5wMPeHFxd1ThDsGU.png\",srcSet:\"https://framerusercontent.com/images/zqFOJB0HZi5wMPeHFxd1ThDsGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zqFOJB0HZi5wMPeHFxd1ThDsGU.png 949w\"},className:\"framer-139a0zg framer-lux5qc\",\"data-framer-name\":\"time_ix\",name:\"time_ix\"})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{y:2402.6000000000004}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:523,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dtn064-container hidden-nj0mn7\",children:/*#__PURE__*/_jsx(KundenstimmenSlider,{height:\"100%\",id:\"pRBVvhAt_\",layoutId:\"pRBVvhAt_\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uqkayo\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-p84ml4\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue19=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255))\"},children:\"unsere Referenzen\"})}),className:\"framer-1t37hfd\",\"data-framer-name\":\"Sections\",fonts:[\"Inter\"],name:\"Sections\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue20=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Digitale L\\xf6sungen f\\xfcr Ihr Unternehmen\"})}),className:\"framer-1ovkh88\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{y:3222.0000000000005}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:347,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2o39du-container\",children:/*#__PURE__*/_jsx(SlideshowReferenzen,{height:\"100%\",id:\"pKuqVmi3a\",layoutId:\"pKuqVmi3a\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10pvn44\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r0ejel\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p4mtpv\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r0iany\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue21=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(24, 24, 24))\"},children:\"Weslink stellt sich jeder Herausforderung\"})}),className:\"framer-sxvnhw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue22=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(24, 24, 24))\"},children:\"Wir helfen Unternehmen dabei, interne Informationen & Angebote digital bereitzustellen, um das Wir-Gef\\xfchl im Unternehmen zu st\\xe4rken und Mitarbeitende zu halten.\"})}),className:\"framer-8ty9m4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YGUzsC5DF\"},implicitPathVariables:undefined},{href:{webPageId:\"YGUzsC5DF\"},implicitPathVariables:undefined},{href:{webPageId:\"YGUzsC5DF\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{y:3966.4000000000005}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11dribg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{gHeOvXgAq:resolvedLinks4[2]},Ulru_24ch:{gHeOvXgAq:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{cEvx2Nclh:false,gHeOvXgAq:resolvedLinks4[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:(_getLocalizedValue=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"mehr \\xfcber uns\",id:\"ZuvA_rtIu\",layoutId:\"ZuvA_rtIu\",Uwhubicpx:false,variant:\"zMIqz4YH_\",width:\"100%\"})})})})});}})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2722,intrinsicWidth:3880,pixelHeight:2722,pixelWidth:3880,positionX:\"49.8%\",positionY:\"10.1%\",sizes:\"calc(min(100vw - 60px, 1200px) * 1.003)\",src:\"https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg\",srcSet:\"https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg 3880w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2722,intrinsicWidth:3880,loading:getLoadingLazyAtYPosition(4062.4000000000005),pixelHeight:2722,pixelWidth:3880,positionX:\"49.8%\",positionY:\"10.1%\",sizes:\"min(100vw - 100px, 1200px)\",src:\"https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg\",srcSet:\"https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg 3880w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2722,intrinsicWidth:3880,pixelHeight:2722,pixelWidth:3880,positionX:\"49.8%\",positionY:\"10.1%\",sizes:\"min(100vw - 200px, 1200px)\",src:\"https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg\",srcSet:\"https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0VU7q09lpBKo7SDl8HkRiOMReA.jpg 3880w\"},className:\"framer-e9xbwq\",style:{transformPerspective:1200}})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{y:4663.400000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ckcn63-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"zMbm8Ltku\"},Ulru_24ch:{variant:\"zMbm8Ltku\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"PcygoYjxs\",layoutId:\"PcygoYjxs\",style:{width:\"100%\"},variant:\"NWDLXXgiF\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Xp6b6 { background: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(239, 239, 239)) /* {\"name\":\"WL-Offwhite\"} */; }`,\".framer-Xp6b6.framer-lux5qc, .framer-Xp6b6 .framer-lux5qc { display: block; }\",\".framer-Xp6b6.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #efefef); 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-Xp6b6 .framer-vpjptw-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",'.framer-Xp6b6 .framer-1u5wowh { align-content: center; align-items: center; background: radial-gradient(100% 91.8% at 100% 100%, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #c4d600) /* {\"name\":\"Wl-Gr\\xfcn\"} */ 0%, var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(239, 239, 239)) /* {\"name\":\"WL-Offwhite\"} */ 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 140px; height: 100vh; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }',\".framer-Xp6b6 .framer-1aivq4d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Xp6b6 .framer-1bivpm0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 1px; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-1hf6pdt { 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: flex-start; max-width: 492px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Xp6b6 .framer-1epr4dw, .framer-Xp6b6 .framer-1rrr18e, .framer-Xp6b6 .framer-gbd18d, .framer-Xp6b6 .framer-1t37hfd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Xp6b6 .framer-19ij0iw, .framer-Xp6b6 .framer-pru6wt, .framer-Xp6b6 .framer-dzzjiy, .framer-Xp6b6 .framer-aevyc5, .framer-Xp6b6 .framer-1ovkh88, .framer-Xp6b6 .framer-sxvnhw, .framer-Xp6b6 .framer-8ty9m4 { --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-Xp6b6 .framer-1154jd6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Xp6b6 .framer-ia2b21-container, .framer-Xp6b6 .framer-pfo4jn-container, .framer-Xp6b6 .framer-1a802nq-container, .framer-Xp6b6 .framer-nq9pdw-container, .framer-Xp6b6 .framer-11dribg-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Xp6b6 .framer-zfhk0p-container { flex: none; height: 615px; position: relative; width: 336px; }\",\".framer-Xp6b6 .framer-1h0kdrw, .framer-Xp6b6 .framer-uo43j4, .framer-Xp6b6 .framer-hjzkur, .framer-Xp6b6 .framer-zd15sd, .framer-Xp6b6 .framer-1n7vm7w, .framer-Xp6b6 .framer-1ee3aso, .framer-Xp6b6 .framer-1pvp0qp, .framer-Xp6b6 .framer-s2zvu0, .framer-Xp6b6 .framer-hvfvo, .framer-Xp6b6 .framer-1l76f9j, .framer-Xp6b6 .framer-7y5d7r { aspect-ratio: 0.5037037037037037 / 1; height: var(--framer-aspect-ratio-supported, 540px); overflow: visible; position: relative; width: 272px; }\",'.framer-Xp6b6 .framer-nskp2m { align-content: center; align-items: center; background: radial-gradient(100% 75% at 97.8% 2%, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #c4d600) /* {\"name\":\"Wl-Gr\\xfcn\"} */ 0%, var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(239, 239, 239)) /* {\"name\":\"WL-Offwhite\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 36px 50px 36px 50px; position: relative; width: 100%; }',\".framer-Xp6b6 .framer-l8kvls { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-f0btsu { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-1hvdw6a-container, .framer-Xp6b6 .framer-1t2y2hc-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-1tnt5ao-container, .framer-Xp6b6 .framer-dtn064-container, .framer-Xp6b6 .framer-2o39du-container, .framer-Xp6b6 .framer-1ckcn63-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-mjs0s6 { align-content: center; align-items: center; background-color: var(--token-33722da1-56ef-4815-82ed-442105eb06b1, #181818); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-1pczq5p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-v4yzrk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 591px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-1758pr2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.7; position: relative; white-space: pre; width: auto; }\",\".framer-Xp6b6 .framer-a9ggzj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Xp6b6 .framer-wfdqwi { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-Xp6b6 .framer-1b1lwkb { align-content: center; align-items: center; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; left: 0px; overflow: visible; padding: 50px; pointer-events: none; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-Xp6b6 .framer-1qlrsxy { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-ntwxhl { flex: none; height: 30px; overflow: hidden; position: relative; width: 30px; }\",\".framer-Xp6b6 .framer-ivn6mw { flex: none; height: 30px; left: calc(50.00000000000002% - 30px / 2); position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 30px; }\",\".framer-Xp6b6 .framer-pg9to7 { aspect-ratio: 1.7620137299771168 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 114px); max-height: 100%; max-width: 1500px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Xp6b6 .framer-1xr6hdg-container { flex: none; height: auto; left: 50%; opacity: 0.8; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; }\",\".framer-Xp6b6 .framer-9cym6m { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; pointer-events: auto; position: absolute; top: calc(49.91243432574433% - 100% / 2); width: 100%; z-index: 10; }\",\".framer-Xp6b6 .framer-1iqh96i-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-Xp6b6 .framer-s7v1uu { flex: none; height: 30px; overflow: visible; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-1bl8bge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-19d3lwb { 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-Xp6b6 .framer-1poek1n { flex: none; height: 26px; overflow: hidden; position: relative; width: 110px; }\",\".framer-Xp6b6 .framer-9wq8rq { aspect-ratio: 4.217391304347826 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 0px; position: absolute; width: 96px; }\",\".framer-Xp6b6 .framer-ibvkqp-container { flex: none; height: 119px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-16nq5uz { aspect-ratio: 2.9565217391304346 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: hidden; position: relative; text-decoration: none; width: 136px; }\",\".framer-Xp6b6 .framer-6f5v0g, .framer-Xp6b6 .framer-dc347g { aspect-ratio: 2.9565217391304346 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: hidden; position: relative; width: 136px; }\",\".framer-Xp6b6 .framer-nur400 { aspect-ratio: 2.9565217391304346 / 1; height: var(--framer-aspect-ratio-supported, 66px); overflow: hidden; position: relative; width: 195px; }\",\".framer-Xp6b6 .framer-17ibe2x { aspect-ratio: 3.513888888888889 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; text-decoration: none; width: 141px; }\",\".framer-Xp6b6 .framer-12sdhoi { height: 96px; overflow: hidden; position: relative; text-decoration: none; width: 146px; }\",\".framer-Xp6b6 .framer-1bizx14 { aspect-ratio: 1.518716577540107 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 83px); left: 0px; position: absolute; width: 126px; }\",\".framer-Xp6b6 .framer-6v9yzd { height: 43px; overflow: hidden; position: relative; width: 183px; }\",\".framer-Xp6b6 .framer-7l8cvj { aspect-ratio: 4.254237288135593 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Xp6b6 .framer-uj8sf6 { height: 61px; overflow: hidden; position: relative; width: 171px; }\",\".framer-Xp6b6 .framer-coxnij { aspect-ratio: 2.80327868852459 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Xp6b6 .framer-139a0zg { aspect-ratio: 4.721393034825871 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; text-decoration: none; width: 189px; }\",\".framer-Xp6b6 .framer-1uqkayo { align-content: center; align-items: center; background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f6f4ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-p84ml4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Xp6b6 .framer-10pvn44 { flex: none; height: 92px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-r0ejel { align-content: center; align-items: center; background-color: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #7421fc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-1p4mtpv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Xp6b6 .framer-1r0iany { 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: flex-start; max-width: 530px; min-width: 200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Xp6b6 .framer-e9xbwq { align-self: stretch; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Xp6b6.framer-72rtr7, .framer-Xp6b6 .framer-1u5wowh, .framer-Xp6b6 .framer-1aivq4d, .framer-Xp6b6 .framer-1bivpm0, .framer-Xp6b6 .framer-1hf6pdt, .framer-Xp6b6 .framer-1154jd6, .framer-Xp6b6 .framer-nskp2m, .framer-Xp6b6 .framer-l8kvls, .framer-Xp6b6 .framer-mjs0s6, .framer-Xp6b6 .framer-1pczq5p, .framer-Xp6b6 .framer-v4yzrk, .framer-Xp6b6 .framer-a9ggzj, .framer-Xp6b6 .framer-1qlrsxy, .framer-Xp6b6 .framer-9cym6m, .framer-Xp6b6 .framer-1bl8bge, .framer-Xp6b6 .framer-19d3lwb, .framer-Xp6b6 .framer-1uqkayo, .framer-Xp6b6 .framer-p84ml4, .framer-Xp6b6 .framer-r0ejel, .framer-Xp6b6 .framer-1p4mtpv, .framer-Xp6b6 .framer-1r0iany { gap: 0px; } .framer-Xp6b6.framer-72rtr7 > *, .framer-Xp6b6 .framer-mjs0s6 > *, .framer-Xp6b6 .framer-r0ejel > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Xp6b6.framer-72rtr7 > :first-child, .framer-Xp6b6 .framer-1aivq4d > :first-child, .framer-Xp6b6 .framer-1hf6pdt > :first-child, .framer-Xp6b6 .framer-nskp2m > :first-child, .framer-Xp6b6 .framer-l8kvls > :first-child, .framer-Xp6b6 .framer-mjs0s6 > :first-child, .framer-Xp6b6 .framer-1pczq5p > :first-child, .framer-Xp6b6 .framer-v4yzrk > :first-child, .framer-Xp6b6 .framer-1bl8bge > :first-child, .framer-Xp6b6 .framer-1uqkayo > :first-child, .framer-Xp6b6 .framer-p84ml4 > :first-child, .framer-Xp6b6 .framer-r0ejel > :first-child, .framer-Xp6b6 .framer-1r0iany > :first-child { margin-top: 0px; } .framer-Xp6b6.framer-72rtr7 > :last-child, .framer-Xp6b6 .framer-1aivq4d > :last-child, .framer-Xp6b6 .framer-1hf6pdt > :last-child, .framer-Xp6b6 .framer-nskp2m > :last-child, .framer-Xp6b6 .framer-l8kvls > :last-child, .framer-Xp6b6 .framer-mjs0s6 > :last-child, .framer-Xp6b6 .framer-1pczq5p > :last-child, .framer-Xp6b6 .framer-v4yzrk > :last-child, .framer-Xp6b6 .framer-1bl8bge > :last-child, .framer-Xp6b6 .framer-1uqkayo > :last-child, .framer-Xp6b6 .framer-p84ml4 > :last-child, .framer-Xp6b6 .framer-r0ejel > :last-child, .framer-Xp6b6 .framer-1r0iany > :last-child { margin-bottom: 0px; } .framer-Xp6b6 .framer-1u5wowh > * { margin: 0px; margin-left: calc(140px / 2); margin-right: calc(140px / 2); } .framer-Xp6b6 .framer-1u5wowh > :first-child, .framer-Xp6b6 .framer-1bivpm0 > :first-child, .framer-Xp6b6 .framer-1154jd6 > :first-child, .framer-Xp6b6 .framer-a9ggzj > :first-child, .framer-Xp6b6 .framer-1qlrsxy > :first-child, .framer-Xp6b6 .framer-9cym6m > :first-child, .framer-Xp6b6 .framer-19d3lwb > :first-child, .framer-Xp6b6 .framer-1p4mtpv > :first-child { margin-left: 0px; } .framer-Xp6b6 .framer-1u5wowh > :last-child, .framer-Xp6b6 .framer-1bivpm0 > :last-child, .framer-Xp6b6 .framer-1154jd6 > :last-child, .framer-Xp6b6 .framer-a9ggzj > :last-child, .framer-Xp6b6 .framer-1qlrsxy > :last-child, .framer-Xp6b6 .framer-9cym6m > :last-child, .framer-Xp6b6 .framer-19d3lwb > :last-child, .framer-Xp6b6 .framer-1p4mtpv > :last-child { margin-right: 0px; } .framer-Xp6b6 .framer-1aivq4d > *, .framer-Xp6b6 .framer-l8kvls > *, .framer-Xp6b6 .framer-1bl8bge > *, .framer-Xp6b6 .framer-p84ml4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Xp6b6 .framer-1bivpm0 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-Xp6b6 .framer-1hf6pdt > *, .framer-Xp6b6 .framer-v4yzrk > *, .framer-Xp6b6 .framer-1r0iany > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Xp6b6 .framer-1154jd6 > *, .framer-Xp6b6 .framer-1qlrsxy > *, .framer-Xp6b6 .framer-9cym6m > *, .framer-Xp6b6 .framer-19d3lwb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Xp6b6 .framer-nskp2m > *, .framer-Xp6b6 .framer-1pczq5p > *, .framer-Xp6b6 .framer-1uqkayo > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Xp6b6 .framer-a9ggzj > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Xp6b6 .framer-1p4mtpv > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-Xp6b6 { background: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(239, 239, 239)) /* {\"name\":\"WL-Offwhite\"} */; } .framer-Xp6b6.framer-72rtr7 { width: 810px; } .framer-Xp6b6 .framer-1u5wowh { gap: 0px; height: 90vh; padding: 0px; } .framer-Xp6b6 .framer-1bivpm0 { gap: 20px; padding: 0px 30px 0px 30px; } .framer-Xp6b6 .framer-1epr4dw { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Xp6b6 .framer-f0btsu { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-Xp6b6 .framer-r0ejel { padding: 50px; } .framer-Xp6b6 .framer-1p4mtpv { flex-direction: column; } .framer-Xp6b6 .framer-1r0iany { flex: none; max-width: unset; width: 100%; } .framer-Xp6b6 .framer-e9xbwq { align-self: unset; flex: none; height: 551px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Xp6b6 .framer-1u5wowh, .framer-Xp6b6 .framer-1bivpm0, .framer-Xp6b6 .framer-1p4mtpv { gap: 0px; } .framer-Xp6b6 .framer-1u5wowh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Xp6b6 .framer-1u5wowh > :first-child, .framer-Xp6b6 .framer-1bivpm0 > :first-child { margin-left: 0px; } .framer-Xp6b6 .framer-1u5wowh > :last-child, .framer-Xp6b6 .framer-1bivpm0 > :last-child { margin-right: 0px; } .framer-Xp6b6 .framer-1bivpm0 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Xp6b6 .framer-1p4mtpv > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Xp6b6 .framer-1p4mtpv > :first-child { margin-top: 0px; } .framer-Xp6b6 .framer-1p4mtpv > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-Xp6b6 { background: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(239, 239, 239)) /* {\"name\":\"WL-Offwhite\"} */; } .framer-Xp6b6.framer-72rtr7 { width: 390px; } .framer-Xp6b6 .framer-vpjptw-container { order: 0; } .framer-Xp6b6 .framer-1u5wowh { height: min-content; min-height: 630px; order: 1; padding: 0px; } .framer-Xp6b6 .framer-1aivq4d { align-self: stretch; height: auto; } .framer-Xp6b6 .framer-1bivpm0 { flex: none; flex-direction: column; gap: 50px; height: min-content; justify-content: flex-start; padding: 128px 20px 50px 20px; } .framer-Xp6b6 .framer-1hf6pdt { align-content: center; align-items: center; flex: none; max-width: 600px; width: 100%; } .framer-Xp6b6 .framer-1epr4dw, .framer-Xp6b6 .framer-1758pr2 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Xp6b6 .framer-1154jd6, .framer-Xp6b6 .framer-a9ggzj { flex-direction: column; width: 100%; } .framer-Xp6b6 .framer-ia2b21-container, .framer-Xp6b6 .framer-pfo4jn-container, .framer-Xp6b6 .framer-1a802nq-container, .framer-Xp6b6 .framer-nq9pdw-container { width: 100%; } .framer-Xp6b6 .framer-nskp2m { gap: 50px; order: 2; padding: 50px 20px 50px 20px; } .framer-Xp6b6 .framer-f0btsu { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-Xp6b6 .framer-1tnt5ao-container { order: 4; } .framer-Xp6b6 .framer-mjs0s6 { order: 3; padding: 50px 20px 50px 20px; } .framer-Xp6b6 .framer-1uqkayo { gap: 50px; order: 6; padding: 50px 20px 50px 20px; } .framer-Xp6b6 .framer-2o39du-container { order: 7; } .framer-Xp6b6 .framer-10pvn44 { order: 8; } .framer-Xp6b6 .framer-r0ejel { order: 9; padding: 100px 30px 100px 30px; } .framer-Xp6b6 .framer-e9xbwq { align-self: unset; flex: none; height: 230px; width: 100%; } .framer-Xp6b6 .framer-1ckcn63-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Xp6b6 .framer-1bivpm0, .framer-Xp6b6 .framer-1154jd6, .framer-Xp6b6 .framer-nskp2m, .framer-Xp6b6 .framer-a9ggzj, .framer-Xp6b6 .framer-1uqkayo { gap: 0px; } .framer-Xp6b6 .framer-1bivpm0 > *, .framer-Xp6b6 .framer-nskp2m > *, .framer-Xp6b6 .framer-1uqkayo > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Xp6b6 .framer-1bivpm0 > :first-child, .framer-Xp6b6 .framer-1154jd6 > :first-child, .framer-Xp6b6 .framer-nskp2m > :first-child, .framer-Xp6b6 .framer-a9ggzj > :first-child, .framer-Xp6b6 .framer-1uqkayo > :first-child { margin-top: 0px; } .framer-Xp6b6 .framer-1bivpm0 > :last-child, .framer-Xp6b6 .framer-1154jd6 > :last-child, .framer-Xp6b6 .framer-nskp2m > :last-child, .framer-Xp6b6 .framer-a9ggzj > :last-child, .framer-Xp6b6 .framer-1uqkayo > :last-child { margin-bottom: 0px; } .framer-Xp6b6 .framer-1154jd6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Xp6b6 .framer-a9ggzj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4109\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ulru_24ch\":{\"layout\":[\"fixed\",\"auto\"]},\"jvCw4IpzG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Xp6b6\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4109,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TopbarFonts,...ButtonFonts,...SlideshowFonts,...FeatureCardFonts,...KundenstimmenSliderCopyFonts,...LoaderFonts,...YouTubeFonts,...TickerFonts,...KundenstimmenSliderFonts,...SlideshowReferenzenFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4109\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ulru_24ch\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jvCw4IpzG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["useConstant", "init", "ref", "pe", "BASE62", "randomID", "length", "useRandomID", "useConstant", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "externalStyle", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1nijn8m", "args", "onAppear1fhcc5x", "useOnVariantChange", "variantProps", "se", "addVariantProps", "useAddVariantProps", "defaultLayoutId", "useRandomID", "pointerEvents", "style", "p", "LayoutGroup", "motion", "cx", "u", "SVG", "css", "FramerrlIcZ3c2D", "withCSS", "rlIcZ3c2D_default", "addPropertyControls", "ControlType", "addFonts", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "a6IlV3A15_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "__FramerMetadata__", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "logo", "name1", "position", "text", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "eJpJ7Kq9h", "Se4tLMHRt", "IbAR2NUPK", "vRKxl8HXn", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "Image2", "css", "FramerVU1zdOWsp", "withCSS", "VU1zdOWsp_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "KundenzitatFonts", "getFonts", "VU1zdOWsp_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "a6IlV3A15_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "addImageAlt", "image", "alt", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "Framera6IlV3A15", "withCSS", "a6IlV3A15_default", "addPropertyControls", "ControlType", "addFonts", "Kym4ifyAB_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v0", "v1", "v2", "v3", "v4", "__FramerMetadata__", "PhosphorFonts", "getFonts", "Icon", "CTAFonts", "OlTWqYMo3_default", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "Kym4ifyAB_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cTA", "cTA1", "height", "icon", "icon1", "id", "image", "link", "link2", "text", "text1", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_humanReadableVariantMap_props_variant", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "J2X4hmGjs", "SXDgbTQKy", "g56HeEMzh", "HQlsDHpqI", "fsUmuS24I", "qKOBsbAyJ", "EgEa9J473", "eZ5aNjZIy", "NhBkJo21q", "TGkzNQ1dk", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "LayoutGroup", "Link", "u", "cx", "Image2", "ComponentViewportProvider", "RichText2", "css", "FramerKym4ifyAB", "withCSS", "Kym4ifyAB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LZaNTUG2J_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "__FramerMetadata__", "KundenzitatFonts", "getFonts", "VU1zdOWsp_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "valuesByLocaleId", "LZaNTUG2J_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "addImageAlt", "image", "alt", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Slideshow", "VU1zdOWsp_default", "css", "FramerLZaNTUG2J", "withCSS", "LZaNTUG2J_default", "addFonts", "KundenzitatFonts", "SlideshowFonts", "TopbarFonts", "getFonts", "lWUcIJP0H_default", "ButtonFonts", "Tnz4seCKc_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "SlideshowFonts", "Slideshow", "MotionDivWithFX", "withFX", "FeatureCardFonts", "Kym4ifyAB_default", "ContainerWithFX", "Container", "KundenstimmenSliderCopyFonts", "a6IlV3A15_default", "LoaderFonts", "rlIcZ3c2D_default", "YouTubeFonts", "Youtube", "TickerFonts", "Ticker", "KundenstimmenSliderFonts", "LZaNTUG2J_default", "SlideshowReferenzenFonts", "J5wh7n_1L_default", "ImageWithFX", "Image2", "FooterFonts", "M82dauGNX_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "addImageAlt", "image", "alt", "animation4", "transition3", "animation5", "transition4", "animation6", "animation7", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "UaWHVX1Cz", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "AzZNlMa5Cwelu7j", "overlay", "paginationInfo", "args", "onTap1wvko5h", "preloadPromise", "ref1", "pe", "router", "useRouter", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "x", "RichText2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "l", "resolvedLinks3", "AnimatePresence", "Ga", "SVG", "Link", "resolvedLinks4", "getLoadingLazyAtYPosition", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
