{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/XmwM7mldapQURZ0r4Bhi/eU4mO6S1FmCxRF9zB7Gp/LgJ4kTmas.js", "ssg:https://framerusercontent.com/modules/loqRBPtFRoMqYW5SWnIF/yxYQYzQm4Yy8UTmptBQC/nuB3xU8jF.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.53", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js", "ssg:https://framerusercontent.com/modules/Beg7G0tTSCpX7edwWuCO/mawyqusGIJs4qdgJzWHD/qC0UFQzVn.js", "ssg:https://framerusercontent.com/modules/M9xJIlfWTV8Zb7gqzE4p/SCAiklFmOAxy1Iyh9ons/rGj6BX3Cc.js", "ssg:https://framerusercontent.com/modules/5ubAL9LMTUoZguHkuIeN/TFF19oMbszgNV93CHGiX/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-836ro\";const variantClassNames={ULeOVxo2L:\"framer-v-1j58i46\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ULeOVxo2L\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1j58i46\",className,classNames),\"data-framer-name\":\"Kundenbilder\",layoutDependency:layoutDependency,layoutId:\"ULeOVxo2L\",ref:refBinding,style:{backdropFilter:\"blur(20px)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,WebkitBackdropFilter:\"blur(20px)\",...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:147.5,intrinsicWidth:700,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||16)-0-16)/2)),pixelHeight:295,pixelWidth:1400,sizes:\"75.9322px\",src:\"https://framerusercontent.com/images/V5WVLzzkzMNbv8jomNflYMyu0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/V5WVLzzkzMNbv8jomNflYMyu0.png?scale-down-to=512 512w,https://framerusercontent.com/images/V5WVLzzkzMNbv8jomNflYMyu0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V5WVLzzkzMNbv8jomNflYMyu0.png 1400w\"},className:\"framer-1u9jn8a\",\"data-framer-name\":\"Kundenbilder_mediakrew\",layoutDependency:layoutDependency,layoutId:\"lJbGFpg3z\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.48px\",\"--framer-line-height\":\"14.004px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"300+ zufriedene Kunden\"})}),className:\"framer-8xw3r1\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"QtxHsqFP1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-836ro.framer-bpcarh, .framer-836ro .framer-bpcarh { display: block; }\",\".framer-836ro.framer-1j58i46 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-836ro .framer-1u9jn8a { aspect-ratio: 4.745762711864407 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: visible; position: relative; width: 76px; }\",\".framer-836ro .framer-8xw3r1 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-836ro.framer-1j58i46 { gap: 0px; } .framer-836ro.framer-1j58i46 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-836ro.framer-1j58i46 > :first-child { margin-left: 0px; } .framer-836ro.framer-1j58i46 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 244.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLgJ4kTmas=withCSS(Component,css,\"framer-836ro\");export default FramerLgJ4kTmas;FramerLgJ4kTmas.displayName=\"Badge Kundenbilder klein\";FramerLgJ4kTmas.defaultProps={height:16,width:244.5};addFonts(FramerLgJ4kTmas,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLgJ4kTmas\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"16\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"244.5\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LgJ4kTmas.map", "// Generated by Framer (0b5b7f5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/K8W4wXIGJ9rc5Pq6eFVY/p1SLwiDvIA9lB86JCvIE/rRLtLpNtu.js\";const cycleOrder=[\"bA4VeWB6h\"];const serializationHash=\"framer-9NW6H\";const variantClassNames={bA4VeWB6h:\"framer-v-d5udfq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({buttontext,height,id,width,...props})=>{var _ref;return{...props,WaW8zt6or:(_ref=buttontext!==null&&buttontext!==void 0?buttontext:props.WaW8zt6or)!==null&&_ref!==void 0?_ref:\"Buttontext\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,WaW8zt6or,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bA4VeWB6h\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hb9dr8UBf\"},children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-d5udfq\",className,classNames)} framer-1y934x`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bA4VeWB6h\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(201, 195, 217) 100%)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ccoagg\",\"data-styles-preset\":\"rRLtLpNtu\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b2d78ff-29d4-475a-b2ee-6217f53b7a02, rgb(12, 4, 33)))\"},children:\"Ich will auch eine solche Webseite\"})}),className:\"framer-nl5esc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JbV4Jyc9v\",style:{\"--extracted-r6o4lv\":\"var(--token-2b2d78ff-29d4-475a-b2ee-6217f53b7a02, rgb(12, 4, 33))\"},text:WaW8zt6or,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9NW6H.framer-1y934x, .framer-9NW6H .framer-1y934x { display: block; }\",\".framer-9NW6H.framer-d5udfq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 20px 24px 20px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-9NW6H .framer-nl5esc { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9NW6H.framer-d5udfq { gap: 0px; } .framer-9NW6H.framer-d5udfq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9NW6H.framer-d5udfq > :first-child { margin-left: 0px; } .framer-9NW6H.framer-d5udfq > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-9NW6H[data-border=\"true\"]::after, .framer-9NW6H [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 60.5\n * @framerIntrinsicWidth 135.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"WaW8zt6or\":\"buttontext\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernuB3xU8jF=withCSS(Component,css,\"framer-9NW6H\");export default FramernuB3xU8jF;FramernuB3xU8jF.displayName=\"Button weiss\";FramernuB3xU8jF.defaultProps={height:60.5,width:135.5};addPropertyControls(FramernuB3xU8jF,{WaW8zt6or:{defaultValue:\"Buttontext\",displayTextArea:false,placeholder:\"Ich will eine Beratung\",title:\"Buttontext\",type:ControlType.String}});addFonts(FramernuB3xU8jF,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernuB3xU8jF\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"60.5\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"WaW8zt6or\\\":\\\"buttontext\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"135.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nuB3xU8jF.map", "let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCounterClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (a417fcb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/CBBlXrprkgPPPbEORBLp/Ypge62LGj4gwAgpgdAfG/JB27lq8r8.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Ea512I88KSaol5O2btj3/aWLFEshFG9eiFuUfAhpZ/t8QYtgaYq.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"a8lZF4jVH\",\"vpSMNk3xn\"];const serializationHash=\"framer-kPdhv\";const variantClassNames={a8lZF4jVH:\"framer-v-16tway0\",vpSMNk3xn:\"framer-v-cd8voj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"a8lZF4jVH\",Open:\"vpSMNk3xn\"};const getProps=({answer,height,id,question,width,...props})=>{return{...props,hFWTiskGo:question??props.hFWTiskGo??\"Write your question here\",OjMK8RFig:answer??props.OjMK8RFig??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam\",variant:humanReadableVariantMap[props.variant]??props.variant??\"a8lZF4jVH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,hFWTiskGo,OjMK8RFig,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"a8lZF4jVH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapw4cai0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"vpSMNk3xn\");});const onTapslhwis=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"a8lZF4jVH\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"vpSMNk3xn\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-16tway0\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"a8lZF4jVH\",onTap:onTapw4cai0,ref:ref??ref1,style:{...style},...addPropertyOverrides({vpSMNk3xn:{\"data-framer-name\":\"Open\",onTap:onTapslhwis}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ppo6iq\",layoutDependency:layoutDependency,layoutId:\"uRcpcbytd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",children:\"Write your question here\"})}),className:\"framer-snqtvp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e2UoCSXLi\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:hFWTiskGo,variants:{vpSMNk3xn:{\"--extracted-1lwpl3i\":\"var(--token-36045645-ea42-4047-aca7-8e98b9e559b3, rgb(143, 110, 242))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({vpSMNk3xn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-36045645-ea42-4047-aca7-8e98b9e559b3, rgb(143, 110, 242)))\"},children:\"Write your question here\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e3pqip-container\",layoutDependency:layoutDependency,layoutId:\"fOoKxTQ29-container\",style:{rotate:0},variants:{vpSMNk3xn:{rotate:45}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7c433bf1-ff30-4da2-8ac7-b31a74f6c7f0, rgb(245, 245, 247))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"fOoKxTQ29\",layoutId:\"fOoKxTQ29\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({vpSMNk3xn:{color:\"var(--token-36045645-ea42-4047-aca7-8e98b9e559b3, rgb(143, 110, 242))\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam\"})}),className:\"framer-10b607t\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uSvbr0iRJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:OjMK8RFig,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kPdhv.framer-7dscyt, .framer-kPdhv .framer-7dscyt { display: block; }\",\".framer-kPdhv.framer-16tway0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1120px; }\",\".framer-kPdhv .framer-1ppo6iq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kPdhv .framer-snqtvp { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-kPdhv .framer-1e3pqip-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-kPdhv .framer-10b607t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kPdhv.framer-16tway0, .framer-kPdhv .framer-1ppo6iq { gap: 0px; } .framer-kPdhv.framer-16tway0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-kPdhv.framer-16tway0 > :first-child { margin-top: 0px; } .framer-kPdhv.framer-16tway0 > :last-child { margin-bottom: 0px; } .framer-kPdhv .framer-1ppo6iq > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-kPdhv .framer-1ppo6iq > :first-child { margin-left: 0px; } .framer-kPdhv .framer-1ppo6iq > :last-child { margin-right: 0px; } }\",\".framer-kPdhv.framer-v-cd8voj.framer-16tway0 { gap: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kPdhv.framer-v-cd8voj.framer-16tway0 { gap: 0px; } .framer-kPdhv.framer-v-cd8voj.framer-16tway0 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-kPdhv.framer-v-cd8voj.framer-16tway0 > :first-child { margin-top: 0px; } .framer-kPdhv.framer-v-cd8voj.framer-16tway0 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vpSMNk3xn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hFWTiskGo\":\"question\",\"OjMK8RFig\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqC0UFQzVn=withCSS(Component,css,\"framer-kPdhv\");export default FramerqC0UFQzVn;FramerqC0UFQzVn.displayName=\"Ablauf Akkordeon\";FramerqC0UFQzVn.defaultProps={height:28,width:1120};addPropertyControls(FramerqC0UFQzVn,{variant:{options:[\"a8lZF4jVH\",\"vpSMNk3xn\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},hFWTiskGo:{defaultValue:\"Write your question here\",displayTextArea:false,title:\"Question\",type:ControlType.String},OjMK8RFig:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam\",displayTextArea:false,title:\"Answer\",type:ControlType.String}});addFonts(FramerqC0UFQzVn,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqC0UFQzVn\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vpSMNk3xn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"hFWTiskGo\\\":\\\"question\\\",\\\"OjMK8RFig\\\":\\\"answer\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1120\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"28\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1e08357)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hmXEX6A1AjZlBRJbgAgg/QvPxzmjGVKELJFW841SU/CFvucXwj7.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/MIqyGTLEzPGn7EujwMSl/5yHkYKfIOldJwJz9yP1Q/WIhH9oCd3.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"HG1G_w7tC\",\"u2YJfUCLp\"];const serializationHash=\"framer-Ty25d\";const variantClassNames={HG1G_w7tC:\"framer-v-1r3dz54\",u2YJfUCLp:\"framer-v-j6bdbs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"HG1G_w7tC\",Open:\"u2YJfUCLp\"};const getProps=({antwort,frage,height,id,width,...props})=>{return{...props,hFWTiskGo:frage??props.hFWTiskGo??\"Write your question here\",OjMK8RFig:antwort??props.OjMK8RFig??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam\",variant:humanReadableVariantMap[props.variant]??props.variant??\"HG1G_w7tC\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,hFWTiskGo,OjMK8RFig,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HG1G_w7tC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1cgcmmd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"u2YJfUCLp\");});const onTap17iqlx5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"HG1G_w7tC\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"u2YJfUCLp\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1r3dz54\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"HG1G_w7tC\",onTap:onTap1cgcmmd,ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(103deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.11306) 23.55011261261261%, rgba(191, 170, 170, 0.15) 48.2861768018018%, rgba(255, 255, 255, 0.08487) 82.30249304914446%, rgba(255, 255, 255, 0.05) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({u2YJfUCLp:{\"data-framer-name\":\"Open\",onTap:onTap17iqlx5}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ppvgpx\",layoutDependency:layoutDependency,layoutId:\"JJ_gt2bxG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-d8o3jt\",\"data-styles-preset\":\"WIhH9oCd3\",children:\"Write your question here\"})}),className:\"framer-1d7ae9a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pcB_YCU2R\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:hFWTiskGo,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17mgb8g-container\",layoutDependency:layoutDependency,layoutId:\"Jm01YXkdp-container\",style:{rotate:0},variants:{u2YJfUCLp:{rotate:45}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7c433bf1-ff30-4da2-8ac7-b31a74f6c7f0, rgb(245, 245, 247))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"Jm01YXkdp\",layoutId:\"Jm01YXkdp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-guw2ys\",\"data-styles-preset\":\"CFvucXwj7\",children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam\"})}),className:\"framer-itysjd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x2Nng32sF\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:OjMK8RFig,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ty25d.framer-16g1lfn, .framer-Ty25d .framer-16g1lfn { display: block; }\",\".framer-Ty25d.framer-1r3dz54 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1120px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ty25d .framer-ppvgpx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ty25d .framer-1d7ae9a { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Ty25d .framer-17mgb8g-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Ty25d .framer-itysjd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ty25d.framer-1r3dz54, .framer-Ty25d .framer-ppvgpx { gap: 0px; } .framer-Ty25d.framer-1r3dz54 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Ty25d.framer-1r3dz54 > :first-child { margin-top: 0px; } .framer-Ty25d.framer-1r3dz54 > :last-child { margin-bottom: 0px; } .framer-Ty25d .framer-ppvgpx > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Ty25d .framer-ppvgpx > :first-child { margin-left: 0px; } .framer-Ty25d .framer-ppvgpx > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-Ty25d[data-border=\"true\"]::after, .framer-Ty25d [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 72\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"u2YJfUCLp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hFWTiskGo\":\"frage\",\"OjMK8RFig\":\"antwort\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrGj6BX3Cc=withCSS(Component,css,\"framer-Ty25d\");export default FramerrGj6BX3Cc;FramerrGj6BX3Cc.displayName=\"FAQ Akkordeon\";FramerrGj6BX3Cc.defaultProps={height:72,width:1120};addPropertyControls(FramerrGj6BX3Cc,{variant:{options:[\"HG1G_w7tC\",\"u2YJfUCLp\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},hFWTiskGo:{defaultValue:\"Write your question here\",displayTextArea:false,title:\"Frage\",type:ControlType.String},OjMK8RFig:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam\",displayTextArea:true,title:\"Antwort\",type:ControlType.String}});addFonts(FramerrGj6BX3Cc,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrGj6BX3Cc\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"72\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u2YJfUCLp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1120\",\"framerVariables\":\"{\\\"hFWTiskGo\\\":\\\"frage\\\",\\\"OjMK8RFig\\\":\\\"antwort\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import CTAButtonSticky from\"#framer/local/canvasComponent/BeZc8HnPc/BeZc8HnPc.js\";import FuZeile from\"#framer/local/canvasComponent/BmHq0sjzm/BmHq0sjzm.js\";import MiniCard1 from\"#framer/local/canvasComponent/Eg_iHkm_T/Eg_iHkm_T.js\";import Testimonials from\"#framer/local/canvasComponent/gkpjeCYRX/gkpjeCYRX.js\";import Navigation from\"#framer/local/canvasComponent/inYqcVBIN/inYqcVBIN.js\";import BadgeKundenbilderKlein from\"#framer/local/canvasComponent/LgJ4kTmas/LgJ4kTmas.js\";import ButtonWeiss from\"#framer/local/canvasComponent/nuB3xU8jF/nuB3xU8jF.js\";import AblaufAkkordeon from\"#framer/local/canvasComponent/qC0UFQzVn/qC0UFQzVn.js\";import ReferenzenKarte from\"#framer/local/canvasComponent/qulw_bbXz/qulw_bbXz.js\";import FAQAkkordeon from\"#framer/local/canvasComponent/rGj6BX3Cc/rGj6BX3Cc.js\";import BadgeKundenbilderRahmen from\"#framer/local/canvasComponent/TXJqNhsCa/TXJqNhsCa.js\";import Button from\"#framer/local/canvasComponent/yTgzmC_OT/yTgzmC_OT.js\";import*as sharedStyle2 from\"#framer/local/css/bYTF0mB4o/bYTF0mB4o.js\";import*as sharedStyle1 from\"#framer/local/css/CFvucXwj7/CFvucXwj7.js\";import*as sharedStyle8 from\"#framer/local/css/fA54s8Wih/fA54s8Wih.js\";import*as sharedStyle3 from\"#framer/local/css/fcfd7WKCo/fcfd7WKCo.js\";import*as sharedStyle4 from\"#framer/local/css/JB27lq8r8/JB27lq8r8.js\";import*as sharedStyle from\"#framer/local/css/Qs4CwH_jb/Qs4CwH_jb.js\";import*as sharedStyle5 from\"#framer/local/css/t8QYtgaYq/t8QYtgaYq.js\";import*as sharedStyle7 from\"#framer/local/css/WgDQvzZmj/WgDQvzZmj.js\";import*as sharedStyle6 from\"#framer/local/css/WIhH9oCd3/WIhH9oCd3.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const CTAButtonStickyFonts=getFonts(CTAButtonSticky);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const BadgeKundenbilderRahmenFonts=getFonts(BadgeKundenbilderRahmen);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const MiniCard1Fonts=getFonts(MiniCard1);const BadgeKundenbilderKleinFonts=getFonts(BadgeKundenbilderKlein);const ReferenzenKarteFonts=getFonts(ReferenzenKarte);const ContainerWithFX=withFX(Container);const AblaufAkkordeonFonts=getFonts(AblaufAkkordeon);const TestimonialsFonts=getFonts(Testimonials);const ImageWithFX=withFX(Image);const FeatherFonts=getFonts(Feather);const FAQAkkordeonFonts=getFonts(FAQAkkordeon);const ButtonWeissFonts=getFonts(ButtonWeiss);const FuZeileFonts=getFonts(FuZeile);const breakpoints={fJdIJpTB9:\"(min-width: 810px) and (max-width: 1199px)\",HBF66IbWr:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-HHlKa\";const variantClassNames={fJdIJpTB9:\"framer-v-1en3tnm\",HBF66IbWr:\"framer-v-xntyzz\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:35,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition2={delay:0,duration:14,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:.55,rotate:100,rotateX:0,rotateY:10,scale:1,skewX:0,skewY:0,x:-120,y:-50};const animation3={opacity:.35,rotate:300,rotateX:-30,rotateY:-60,scale:1,skewX:0,skewY:0,x:100,y:200};const animation4={opacity:.75,rotate:300,rotateX:-30,rotateY:-20,scale:1,skewX:0,skewY:0,x:-100,y:-100};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation5={opacity:.4,rotate:300,rotateX:-30,rotateY:-60,scale:1,skewX:0,skewY:0,x:100,y:200};const animation6={opacity:.7,rotate:140,rotateX:-30,rotateY:40,scale:1,skewX:0,skewY:0,x:200,y:-100};const animation7={opacity:.8,rotate:220,rotateX:20,rotateY:0,scale:1,skewX:0,skewY:0,x:250,y:50};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:80};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"HBF66IbWr\",Tablet:\"fJdIJpTB9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Stcxq8or8\");const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"fJdIJpTB9\",\"HBF66IbWr\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"fJdIJpTB9\",\"HBF66IbWr\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"HJOIdc3BJ\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"iQ4GTjt2m\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"QcdZhB8nT\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"rIgySMpP2\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"szeGfQvg3\");const ref6=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"HBF66IbWr\")return false;return true;};const elementId6=useRouteElementId(\"cKFVJoNwe\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"JdRmnEkqZ\");const ref8=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-2b2d78ff-29d4-475a-b2ee-6217f53b7a02, rgb(12, 4, 33)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{width:`min(${componentViewport?.width||\"100vw\"}, 1400px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px)`,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fno8y5-container\",nodeId:\"hPVYyb8y0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"GSvsMEpw8\"},HBF66IbWr:{variant:\"zru6XjTA3\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"hPVYyb8y0\",layoutId:\"hPVYyb8y0\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"fyE9l45yS\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:152,y:688,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-19gyml5-container\",\"data-framer-appear-id\":\"19gyml5\",\"data-framer-name\":\"CTA Button Sticky\",initial:animation1,layoutScroll:true,name:\"CTA Button Sticky\",nodeId:\"h8vBD358c\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{variant:\"UWuzSyFCQ\"}},children:/*#__PURE__*/_jsx(CTAButtonSticky,{height:\"100%\",id:\"h8vBD358c\",layoutId:\"h8vBD358c\",name:\"CTA Button Sticky\",variant:\"Y1jzvvhHf\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yj6lmu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{__targetOpacity:.27}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:.25,className:\"framer-1d2q4ja\",\"data-framer-name\":\"Ellipse 5\",style:{rotate:95}})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:.4,className:\"framer-l1wszg\",\"data-framer-name\":\"Ellipse 5\",style:{rotate:95}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:.35,className:\"framer-m4ondg\",\"data-framer-name\":\"Ellipse 5\",style:{rotate:95}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:.2,className:\"framer-11pq0bz\",\"data-framer-name\":\"Ellipse 5\",style:{rotate:95},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:.6,className:\"framer-1htmam6\",\"data-framer-name\":\"Ellipse 5\",style:{rotate:95}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:.4,className:\"framer-1s4otvf\",\"data-framer-name\":\"Ellipse 5\",style:{rotate:95}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:.5,className:\"framer-16uy5kx\",\"data-framer-name\":\"Ellipse 5\",style:{rotate:90}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x0gt5a\",\"data-framer-name\":\"Herobanner\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12keyfl\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+74+60+0+0+0},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+74+80+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8xa6qf-container\",nodeId:\"Xv811W0m6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{variant:\"CYrGFeuOO\"}},children:/*#__PURE__*/_jsx(BadgeKundenbilderRahmen,{height:\"100%\",id:\"Xv811W0m6\",layoutId:\"Xv811W0m6\",variant:\"D7VRopXNQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p8deew\",\"data-framer-name\":\"Oben\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1kbv7fe\",\"data-styles-preset\":\"Qs4CwH_jb\",style:{\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228))\"},children:\"Du gibst jeden Tag 100\u202F%\"}),\", aber zeigt deine Website das auch?\"]})}),className:\"framer-16pakve\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-guw2ys\",\"data-styles-preset\":\"CFvucXwj7\",style:{\"--framer-text-alignment\":\"center\"},children:\"Wir gestalten Webseiten, die genau das widerspiegeln, was dich stark macht: Kompetenz, Qualit\\xe4t und Charakter.\"})}),className:\"framer-4m38wm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined},{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined},{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+74+60+0+0+353.75},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+74+80+0+0+353.75,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4t9hhz-container\",nodeId:\"K_oejAf3G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{RkUa_hs15:resolvedLinks[1],variant:\"n7iHUl9pK\"},HBF66IbWr:{RkUa_hs15:resolvedLinks[2],variant:\"n7iHUl9pK\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"K_oejAf3G\",layoutId:\"K_oejAf3G\",RkUa_hs15:resolvedLinks[0],variant:\"AgoJDvBr1\",width:\"100%\",X_w4zKkSC:\"Kostenlose Designprobe sichern\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xxhxz8\",\"data-framer-name\":\"Grafik\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-run75n hidden-72rtr7\",\"data-framer-name\":\"Mobil\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k0jvi1-container\",isModuleExternal:true,nodeId:\"REDGgZekG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:25,height:\"100%\",hoverFactor:1,id:\"REDGgZekG\",layoutId:\"REDGgZekG\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:921,intrinsicWidth:1728,pixelHeight:1842,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/rZF8hMwHIl8v4qUbpQSWt9F8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rZF8hMwHIl8v4qUbpQSWt9F8.png?scale-down-to=512 512w,https://framerusercontent.com/images/rZF8hMwHIl8v4qUbpQSWt9F8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rZF8hMwHIl8v4qUbpQSWt9F8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rZF8hMwHIl8v4qUbpQSWt9F8.png 3456w\"},className:\"framer-igp5z8\",\"data-framer-name\":\"Bildschirmfoto 2025-04-02 um 10.24.52\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/lp4wAmHAutPeghVRtMR5Zu040.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/lp4wAmHAutPeghVRtMR5Zu040.png?scale-down-to=512 512w,https://framerusercontent.com/images/lp4wAmHAutPeghVRtMR5Zu040.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lp4wAmHAutPeghVRtMR5Zu040.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lp4wAmHAutPeghVRtMR5Zu040.png 3456w\"},className:\"framer-1mrv2wh\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.25.02\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:953,intrinsicWidth:1728,pixelHeight:1906,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/4X8oNAa0yZaOOEwAzENVfAIQTA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4X8oNAa0yZaOOEwAzENVfAIQTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4X8oNAa0yZaOOEwAzENVfAIQTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4X8oNAa0yZaOOEwAzENVfAIQTA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4X8oNAa0yZaOOEwAzENVfAIQTA.png 3456w\"},className:\"framer-1a0wfua\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.24.03\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:926,intrinsicWidth:1728,pixelHeight:1852,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/f1ANo41JMeomVvH6hQo5IbntE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/f1ANo41JMeomVvH6hQo5IbntE.png?scale-down-to=512 512w,https://framerusercontent.com/images/f1ANo41JMeomVvH6hQo5IbntE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f1ANo41JMeomVvH6hQo5IbntE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/f1ANo41JMeomVvH6hQo5IbntE.png 3456w\"},className:\"framer-1a013d0\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.24.50\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png 3456w\"},className:\"framer-62sjyn\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.48\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:956,intrinsicWidth:1726,pixelHeight:1912,pixelWidth:3452,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/UATbqK9zsudvyEIUBD5kVWMF8c.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/UATbqK9zsudvyEIUBD5kVWMF8c.png?scale-down-to=512 512w,https://framerusercontent.com/images/UATbqK9zsudvyEIUBD5kVWMF8c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UATbqK9zsudvyEIUBD5kVWMF8c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UATbqK9zsudvyEIUBD5kVWMF8c.png 3452w\"},className:\"framer-1nas0ok\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.19\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:957,intrinsicWidth:1728,pixelHeight:1914,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/1RThT4SxGPAiLboq3vpcHC5olDE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/1RThT4SxGPAiLboq3vpcHC5olDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/1RThT4SxGPAiLboq3vpcHC5olDE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1RThT4SxGPAiLboq3vpcHC5olDE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1RThT4SxGPAiLboq3vpcHC5olDE.png 3456w\"},className:\"framer-1lnlsmx\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.11\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:956,intrinsicWidth:1728,pixelHeight:1912,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/g7B0eoMvhzAX7wzRss2ngt3louQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/g7B0eoMvhzAX7wzRss2ngt3louQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/g7B0eoMvhzAX7wzRss2ngt3louQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g7B0eoMvhzAX7wzRss2ngt3louQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g7B0eoMvhzAX7wzRss2ngt3louQ.png 3456w\"},className:\"framer-vepj80\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.55\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/M3nIM6DCTo05EfAVAXgt5gvjCLQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/M3nIM6DCTo05EfAVAXgt5gvjCLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/M3nIM6DCTo05EfAVAXgt5gvjCLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/M3nIM6DCTo05EfAVAXgt5gvjCLQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/M3nIM6DCTo05EfAVAXgt5gvjCLQ.png 3456w\"},className:\"framer-ypoo2q\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.27\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o8w1vf-container\",isModuleExternal:true,nodeId:\"VVnDt0As4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:25,height:\"100%\",hoverFactor:1,id:\"VVnDt0As4\",layoutId:\"VVnDt0As4\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/saigkL5plNHNWTAtKWZmV4jjZXI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/saigkL5plNHNWTAtKWZmV4jjZXI.png?scale-down-to=512 512w,https://framerusercontent.com/images/saigkL5plNHNWTAtKWZmV4jjZXI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/saigkL5plNHNWTAtKWZmV4jjZXI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/saigkL5plNHNWTAtKWZmV4jjZXI.png 3456w\"},className:\"framer-wjv2md\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.25.02\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:921,intrinsicWidth:1728,pixelHeight:1842,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/2unLyVZyYBR0yTrrvWuMHLylc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/2unLyVZyYBR0yTrrvWuMHLylc.png?scale-down-to=512 512w,https://framerusercontent.com/images/2unLyVZyYBR0yTrrvWuMHLylc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2unLyVZyYBR0yTrrvWuMHLylc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2unLyVZyYBR0yTrrvWuMHLylc.png 3456w\"},className:\"framer-ik90nz\",\"data-framer-name\":\"Bildschirmfoto 2025-04-02 um 10.24.52\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:926,intrinsicWidth:1728,pixelHeight:1852,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/NDiUk2xMLdotnSnGhvzg1YE00.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/NDiUk2xMLdotnSnGhvzg1YE00.png?scale-down-to=512 512w,https://framerusercontent.com/images/NDiUk2xMLdotnSnGhvzg1YE00.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NDiUk2xMLdotnSnGhvzg1YE00.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NDiUk2xMLdotnSnGhvzg1YE00.png 3456w\"},className:\"framer-9ixs4u\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.24.50\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:953,intrinsicWidth:1728,pixelHeight:1906,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/gisFtPSIcdG3YjXFS20Kuml0A8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/gisFtPSIcdG3YjXFS20Kuml0A8.png?scale-down-to=512 512w,https://framerusercontent.com/images/gisFtPSIcdG3YjXFS20Kuml0A8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gisFtPSIcdG3YjXFS20Kuml0A8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gisFtPSIcdG3YjXFS20Kuml0A8.png 3456w\"},className:\"framer-8d8scx\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.24.03\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:956,intrinsicWidth:1728,pixelHeight:1912,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/WCCsEStgRdeXZFT3430HqmvgV7c.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/WCCsEStgRdeXZFT3430HqmvgV7c.png?scale-down-to=512 512w,https://framerusercontent.com/images/WCCsEStgRdeXZFT3430HqmvgV7c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WCCsEStgRdeXZFT3430HqmvgV7c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WCCsEStgRdeXZFT3430HqmvgV7c.png 3456w\"},className:\"framer-1j1rgyu\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.55\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/Sqd1zhTF05YgmllQVNXlopDHK70.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Sqd1zhTF05YgmllQVNXlopDHK70.png?scale-down-to=512 512w,https://framerusercontent.com/images/Sqd1zhTF05YgmllQVNXlopDHK70.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Sqd1zhTF05YgmllQVNXlopDHK70.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Sqd1zhTF05YgmllQVNXlopDHK70.png 3456w\"},className:\"framer-mhr7r8\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.48\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/CzKvgOr2vdR13aHoNwmHcRDfc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/CzKvgOr2vdR13aHoNwmHcRDfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/CzKvgOr2vdR13aHoNwmHcRDfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CzKvgOr2vdR13aHoNwmHcRDfc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CzKvgOr2vdR13aHoNwmHcRDfc.png 3454w\"},className:\"framer-1qcfsj7\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.27\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:956,intrinsicWidth:1726,pixelHeight:1912,pixelWidth:3452,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/qN0qpXdLXwomAEBJsCtCgIuqE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/qN0qpXdLXwomAEBJsCtCgIuqE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qN0qpXdLXwomAEBJsCtCgIuqE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qN0qpXdLXwomAEBJsCtCgIuqE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qN0qpXdLXwomAEBJsCtCgIuqE.png 3456w\"},className:\"framer-9hh2bh\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.19\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:957,intrinsicWidth:1728,pixelHeight:1914,pixelWidth:3456,sizes:\"262.5px\",src:\"https://framerusercontent.com/images/ZN3b0zKbNDCarHYM7RzMuUwM4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ZN3b0zKbNDCarHYM7RzMuUwM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZN3b0zKbNDCarHYM7RzMuUwM4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZN3b0zKbNDCarHYM7RzMuUwM4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZN3b0zKbNDCarHYM7RzMuUwM4.png 3456w\"},className:\"framer-29nlxl\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.11\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6fl5o3 hidden-1en3tnm hidden-xntyzz\",\"data-framer-name\":\"Desktop\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yotv46-container\",isModuleExternal:true,nodeId:\"u6qOtcl_T\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"u6qOtcl_T\",layoutId:\"u6qOtcl_T\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:921,intrinsicWidth:1728,pixelHeight:1842,pixelWidth:3456,sizes:\"438px\",src:\"https://framerusercontent.com/images/rZF8hMwHIl8v4qUbpQSWt9F8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rZF8hMwHIl8v4qUbpQSWt9F8.png?scale-down-to=512 512w,https://framerusercontent.com/images/rZF8hMwHIl8v4qUbpQSWt9F8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rZF8hMwHIl8v4qUbpQSWt9F8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rZF8hMwHIl8v4qUbpQSWt9F8.png 3456w\"},className:\"framer-16gynqr\",\"data-framer-name\":\"Bildschirmfoto 2025-04-02 um 10.24.52\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"438px\",src:\"https://framerusercontent.com/images/lp4wAmHAutPeghVRtMR5Zu040.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/lp4wAmHAutPeghVRtMR5Zu040.png?scale-down-to=512 512w,https://framerusercontent.com/images/lp4wAmHAutPeghVRtMR5Zu040.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lp4wAmHAutPeghVRtMR5Zu040.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lp4wAmHAutPeghVRtMR5Zu040.png 3456w\"},className:\"framer-1vl45c7\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.25.02\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:953,intrinsicWidth:1728,pixelHeight:1906,pixelWidth:3456,sizes:\"437.5px\",src:\"https://framerusercontent.com/images/4X8oNAa0yZaOOEwAzENVfAIQTA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4X8oNAa0yZaOOEwAzENVfAIQTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4X8oNAa0yZaOOEwAzENVfAIQTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4X8oNAa0yZaOOEwAzENVfAIQTA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4X8oNAa0yZaOOEwAzENVfAIQTA.png 3456w\"},className:\"framer-ktpfdu\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.24.03\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:956,intrinsicWidth:1728,pixelHeight:1912,pixelWidth:3456,sizes:\"437.5px\",src:\"https://framerusercontent.com/images/g7B0eoMvhzAX7wzRss2ngt3louQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/g7B0eoMvhzAX7wzRss2ngt3louQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/g7B0eoMvhzAX7wzRss2ngt3louQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g7B0eoMvhzAX7wzRss2ngt3louQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g7B0eoMvhzAX7wzRss2ngt3louQ.png 3456w\"},className:\"framer-mi4tm9\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.55\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"437.5px\",src:\"https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png 3456w\"},className:\"framer-6s6fuv\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.48\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"437.5px\",src:\"https://framerusercontent.com/images/M3nIM6DCTo05EfAVAXgt5gvjCLQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/M3nIM6DCTo05EfAVAXgt5gvjCLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/M3nIM6DCTo05EfAVAXgt5gvjCLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/M3nIM6DCTo05EfAVAXgt5gvjCLQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/M3nIM6DCTo05EfAVAXgt5gvjCLQ.png 3456w\"},className:\"framer-1ndi2yq\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.27\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"437.5px\",src:\"https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZKrQSgbfONPWVxTRUyL2neISguU.png 3456w\"},className:\"framer-6s6fuv\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.48\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:956,intrinsicWidth:1726,pixelHeight:1912,pixelWidth:3452,sizes:\"437.5px\",src:\"https://framerusercontent.com/images/UATbqK9zsudvyEIUBD5kVWMF8c.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/UATbqK9zsudvyEIUBD5kVWMF8c.png?scale-down-to=512 512w,https://framerusercontent.com/images/UATbqK9zsudvyEIUBD5kVWMF8c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UATbqK9zsudvyEIUBD5kVWMF8c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UATbqK9zsudvyEIUBD5kVWMF8c.png 3452w\"},className:\"framer-3hn3xw\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.19\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:957,intrinsicWidth:1728,pixelHeight:1914,pixelWidth:3456,sizes:\"437.5px\",src:\"https://framerusercontent.com/images/1RThT4SxGPAiLboq3vpcHC5olDE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/1RThT4SxGPAiLboq3vpcHC5olDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/1RThT4SxGPAiLboq3vpcHC5olDE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1RThT4SxGPAiLboq3vpcHC5olDE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1RThT4SxGPAiLboq3vpcHC5olDE.png 3456w\"},className:\"framer-ge46n4\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.11\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ijrx7-container\",isModuleExternal:true,nodeId:\"Ocy0fLm9H\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"Ocy0fLm9H\",layoutId:\"Ocy0fLm9H\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:921,intrinsicWidth:1728,pixelHeight:1842,pixelWidth:3456,sizes:\"440px\",src:\"https://framerusercontent.com/images/2unLyVZyYBR0yTrrvWuMHLylc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/2unLyVZyYBR0yTrrvWuMHLylc.png?scale-down-to=512 512w,https://framerusercontent.com/images/2unLyVZyYBR0yTrrvWuMHLylc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2unLyVZyYBR0yTrrvWuMHLylc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2unLyVZyYBR0yTrrvWuMHLylc.png 3456w\"},className:\"framer-16s3b1n\",\"data-framer-name\":\"Bildschirmfoto 2025-04-02 um 10.24.52\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"440px\",src:\"https://framerusercontent.com/images/saigkL5plNHNWTAtKWZmV4jjZXI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/saigkL5plNHNWTAtKWZmV4jjZXI.png?scale-down-to=512 512w,https://framerusercontent.com/images/saigkL5plNHNWTAtKWZmV4jjZXI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/saigkL5plNHNWTAtKWZmV4jjZXI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/saigkL5plNHNWTAtKWZmV4jjZXI.png 3456w\"},className:\"framer-1s7zee5\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.25.02\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:926,intrinsicWidth:1728,pixelHeight:1852,pixelWidth:3456,sizes:\"439.25px\",src:\"https://framerusercontent.com/images/NDiUk2xMLdotnSnGhvzg1YE00.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/NDiUk2xMLdotnSnGhvzg1YE00.png?scale-down-to=512 512w,https://framerusercontent.com/images/NDiUk2xMLdotnSnGhvzg1YE00.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NDiUk2xMLdotnSnGhvzg1YE00.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NDiUk2xMLdotnSnGhvzg1YE00.png 3456w\"},className:\"framer-zc1qh4\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.24.50\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:953,intrinsicWidth:1728,pixelHeight:1906,pixelWidth:3456,sizes:\"439.25px\",src:\"https://framerusercontent.com/images/gisFtPSIcdG3YjXFS20Kuml0A8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/gisFtPSIcdG3YjXFS20Kuml0A8.png?scale-down-to=512 512w,https://framerusercontent.com/images/gisFtPSIcdG3YjXFS20Kuml0A8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gisFtPSIcdG3YjXFS20Kuml0A8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gisFtPSIcdG3YjXFS20Kuml0A8.png 3456w\"},className:\"framer-1artri1\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.24.03\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"439.25px\",src:\"https://framerusercontent.com/images/Sqd1zhTF05YgmllQVNXlopDHK70.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Sqd1zhTF05YgmllQVNXlopDHK70.png?scale-down-to=512 512w,https://framerusercontent.com/images/Sqd1zhTF05YgmllQVNXlopDHK70.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Sqd1zhTF05YgmllQVNXlopDHK70.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Sqd1zhTF05YgmllQVNXlopDHK70.png 3456w\"},className:\"framer-192rh9z\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.48\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:955,intrinsicWidth:1728,pixelHeight:1910,pixelWidth:3456,sizes:\"439.25px\",src:\"https://framerusercontent.com/images/CzKvgOr2vdR13aHoNwmHcRDfc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/CzKvgOr2vdR13aHoNwmHcRDfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/CzKvgOr2vdR13aHoNwmHcRDfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CzKvgOr2vdR13aHoNwmHcRDfc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CzKvgOr2vdR13aHoNwmHcRDfc.png 3454w\"},className:\"framer-127wcbc\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.27\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:956,intrinsicWidth:1726,pixelHeight:1912,pixelWidth:3452,sizes:\"439.25px\",src:\"https://framerusercontent.com/images/qN0qpXdLXwomAEBJsCtCgIuqE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/qN0qpXdLXwomAEBJsCtCgIuqE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qN0qpXdLXwomAEBJsCtCgIuqE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qN0qpXdLXwomAEBJsCtCgIuqE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qN0qpXdLXwomAEBJsCtCgIuqE.png 3456w\"},className:\"framer-147zqvo\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.19\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:957,intrinsicWidth:1728,pixelHeight:1914,pixelWidth:3456,sizes:\"439.25px\",src:\"https://framerusercontent.com/images/ZN3b0zKbNDCarHYM7RzMuUwM4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ZN3b0zKbNDCarHYM7RzMuUwM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZN3b0zKbNDCarHYM7RzMuUwM4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZN3b0zKbNDCarHYM7RzMuUwM4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZN3b0zKbNDCarHYM7RzMuUwM4.png 3456w\"},className:\"framer-1yu0iku\",\"data-framer-name\":\"Bildschirmfoto 2025-03-26 um 13.23.11\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lzgwqx\",\"data-framer-name\":\"Leistungen\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-89v93h\",\"data-styles-preset\":\"bYTF0mB4o\",children:[\"Mehr Kunden, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228))\"},children:\"mehr Vertrauen\"}),\", mehr Wirkung \u2013 mit deiner neuen Webseite\"]})}),className:\"framer-b9za5f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bac7jn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12s7x3e\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fo9dr8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2239,intrinsicWidth:3492,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+952.75+120+97.5+0+0+160.15+0-300.5),pixelHeight:2239,pixelWidth:3492,positionX:\"center\",positionY:\"center\",sizes:`calc((max((min(${componentViewport?.width||\"100vw\"}, 810px) - 80px) / 2, 105px) * 2 + 20px) * 0.3 + 197px)`,src:\"https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png\",srcSet:\"https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png 3492w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2239,intrinsicWidth:3492,pixelHeight:2239,pixelWidth:3492,positionX:\"center\",positionY:\"center\",sizes:\"422px\",src:\"https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png\",srcSet:\"https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png 3492w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2239,intrinsicWidth:3492,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1257.75+125+97.5+0+0+170.15+0),pixelHeight:2239,pixelWidth:3492,positionX:\"center\",positionY:\"center\",sizes:`calc((max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 40px) / 2, 105px) * 2 + 40px) * 0.3 + 197px)`,src:\"https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png\",srcSet:\"https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dbWRXnlRV7WjDghlYUS5jc8gTwQ.png 3492w\"},className:\"framer-1uo0erl\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ex7jz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1s8y35l\",\"data-styles-preset\":\"fcfd7WKCo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Was w\\xe4re, wenn deine Website f\\xfcr dich Kunden generiert \u2013 statt nur da zu sein?\"})}),className:\"framer-w68m1z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:\"Wir entwickeln Webseiten, die genau das tun: Vertrauen aufbauen, Kunden \\xfcberzeugen und dich sichtbar machen \u2013 ohne Spielerei, sondern mit Strategie.\"})}),className:\"framer-1597m3k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined},{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined},{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+952.75+120+97.5+0+0+10+20+200.3},HBF66IbWr:{width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 810px) - 60px) / 2, 105px) * 2 - 20px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+1257.75+125+97.5+0+0+20+20+200.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qhbh02-container\",nodeId:\"V5CULh_R1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{RkUa_hs15:resolvedLinks1[1],variant:\"n7iHUl9pK\"},HBF66IbWr:{RkUa_hs15:resolvedLinks1[2],style:{width:\"100%\"},variant:\"n7iHUl9pK\",X_w4zKkSC:\"Kostenfreies Probedesign sichern\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"V5CULh_R1\",layoutId:\"V5CULh_R1\",RkUa_hs15:resolvedLinks1[0],variant:\"AgoJDvBr1\",width:\"100%\",X_w4zKkSC:\"Jetzt mein kostenfreies Probedesign sichern\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u4zqem\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2272,intrinsicWidth:2821,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+952.75+120+97.5+0+340.3+20+0),pixelHeight:2272,pixelWidth:2821,positionX:\"center\",positionY:\"center\",sizes:\"373px\",src:\"https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png\",srcSet:\"https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png?scale-down-to=512 512w,https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png 2821w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2272,intrinsicWidth:2821,pixelHeight:2272,pixelWidth:2821,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png\",srcSet:\"https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png?scale-down-to=512 512w,https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png 2821w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2272,intrinsicWidth:2821,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1257.75+125+97.5+0+380.3+20+0),pixelHeight:2272,pixelWidth:2821,positionX:\"center\",positionY:\"center\",sizes:\"373px\",src:\"https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png\",srcSet:\"https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png?scale-down-to=512 512w,https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Md1q5KvIA8itk0oNDfUc7NANo8g.png 2821w\"},className:\"framer-4ceqsa\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sichtbarkeit, die Kunden bringt \u2013 nicht nur Klicks\"})}),className:\"framer-q1ohsf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Deine Website wird dort gefunden, wo Menschen nach dir suchen \u2013 bei Google. Wir sorgen daf\\xfcr, dass du nicht einfach existierst, sondern pr\\xe4sent bist.\"})}),className:\"framer-1un6w5e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1z7u5p\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2272,intrinsicWidth:2822,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+952.75+120+97.5+0+340.3+20+0),pixelHeight:2272,pixelWidth:2822,positionX:\"center\",positionY:\"center\",sizes:\"373px\",src:\"https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png\",srcSet:\"https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png 2822w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2272,intrinsicWidth:2822,pixelHeight:2272,pixelWidth:2822,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png\",srcSet:\"https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png 2822w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2272,intrinsicWidth:2822,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1257.75+125+97.5+0+380.3+20+0),pixelHeight:2272,pixelWidth:2822,positionX:\"center\",positionY:\"center\",sizes:\"373px\",src:\"https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png\",srcSet:\"https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bsm1SaSod3qIClZMzR2Sh6TSjLo.png 2822w\"},className:\"framer-1p4msh8\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Mehr Anfragen von Kunden, die wirklich buchen wollen\"})}),className:\"framer-251o71\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unsere Strategien bringen dir keine beliebigen Klicks \u2013 sondern die passenden Anfragen. Damit du mehr Auftr\\xe4ge bekommst, die zu deinem Unternehmen passen.\"})}),className:\"framer-1wqdctb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k6mpmx\",\"data-framer-name\":\"\\xdcber Mich\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2080.65+60+0),positionX:\"48.9%\",positionY:\"23.7%\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px)`,src:\"https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg\",srcSet:\"https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg 3982w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",positionX:\"48.9%\",positionY:\"23.7%\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`,src:\"https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg\",srcSet:\"https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg 3982w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2455.65+85),positionX:\"48.9%\",positionY:\"23.7%\",sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg\",srcSet:\"https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OUdv8YNf0BFmp6EjIscPdBgGk4.jpg 3982w\"},className:\"framer-1s8wi4e\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3y40z0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1giujgp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+2080.65+60+390+0+0+0+0},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+2455.65+85+40+-557.75+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z8w77g-container\",\"data-framer-name\":\"Subtitel\",name:\"Subtitel\",nodeId:\"SpHS94u0Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MiniCard1,{height:\"100%\",id:\"SpHS94u0Z\",isAHbpQQ9:\"Die Strategie hinter deiner neuen Website\",layoutId:\"SpHS94u0Z\",name:\"Subtitel\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-89v93h\",\"data-styles-preset\":\"bYTF0mB4o\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Du suchst \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228))\"},children:\"eine Website\"}),\", die endlich Kunden bringt? \"]})}),className:\"framer-kwdl9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:[\"Du bist selbstst\\xe4ndig, du hast ein gutes Angebot \u2013\",/*#__PURE__*/_jsx(\"br\",{}),\"aber irgendwie kommt online nicht das an, was du leistest?\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:[\"Vielleicht hast du schon eine Website.\",/*#__PURE__*/_jsx(\"br\",{}),\"Oder eine, die mal funktioniert hat.\",/*#__PURE__*/_jsx(\"br\",{}),\"Aber jetzt? Du wirst nicht gefunden. Du wirkst nicht professionell.\",/*#__PURE__*/_jsx(\"br\",{}),\"Und neue Anfragen bleiben aus.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-guw2ys\",\"data-styles-preset\":\"CFvucXwj7\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Genau da setzen wir an.\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:[\"Wir erstellen Websites, die \",/*#__PURE__*/_jsx(\"strong\",{children:\"Google versteht\"}),\",\",/*#__PURE__*/_jsx(\"br\",{}),\"die \",/*#__PURE__*/_jsx(\"strong\",{children:\"deine Leistung so zeigen, dass sie Vertrauen ausl\\xf6sen\"}),\" \u2013\",/*#__PURE__*/_jsx(\"br\",{}),\"und die \",/*#__PURE__*/_jsx(\"strong\",{children:\"aus Besuchern echte Kunden machen\"}),\".\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:[\"Keine Baukasten-L\\xf6sung.\",/*#__PURE__*/_jsx(\"br\",{}),\"Kein Blabla-Design.\",/*#__PURE__*/_jsx(\"br\",{}),\"Sondern eine durchdachte Strategie:\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"Optik, Struktur, Texte \u2013 alles auf deine Zielgruppe abgestimmt.\"})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:[\"Damit du endlich den Auftritt bekommst,\",/*#__PURE__*/_jsx(\"br\",{}),\"der deinem Unternehmen gerecht wird \u2013\",/*#__PURE__*/_jsx(\"br\",{}),\"und Anfragen generiert, statt Chancen zu verlieren.\"]})]}),className:\"framer-18syc41\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iuiecw\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mhvajh\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X993oMbJm\"},implicitPathVariables:undefined},{href:{webPageId:\"X993oMbJm\"},implicitPathVariables:undefined},{href:{webPageId:\"X993oMbJm\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+2080.65+60+390+0+949.5+0+0+0+0},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+2455.65+85+40+391.75+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-67343l-container\",nodeId:\"udZQwE0nN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{RkUa_hs15:resolvedLinks2[1],variant:\"n7iHUl9pK\",X_w4zKkSC:\"Ich will ein kostenloses Probedesign\"},HBF66IbWr:{RkUa_hs15:resolvedLinks2[2],variant:\"n7iHUl9pK\",X_w4zKkSC:\"Ich will auch mehr Webseite-Anfragen\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"udZQwE0nN\",layoutId:\"udZQwE0nN\",RkUa_hs15:resolvedLinks2[0],variant:\"AgoJDvBr1\",width:\"100%\",X_w4zKkSC:\"Ich will auch mehr Anfragen \\xfcber die Webseite\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+2080.65+60+390+0+949.5+0+0+0+70},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+0+2455.65+85+40+391.75+0+0+0+70,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gwzm6d-container\",nodeId:\"sWivKzN_m\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BadgeKundenbilderKlein,{height:\"100%\",id:\"sWivKzN_m\",layoutId:\"sWivKzN_m\",width:\"100%\"})})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1737br2\",\"data-framer-name\":\"Referenzen\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sfig11\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+3636.15+60+0+0+0},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+2635.65+85+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dn3dd6-container\",\"data-framer-name\":\"Subtitel\",name:\"Subtitel\",nodeId:\"YjAnvdcLI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MiniCard1,{height:\"100%\",id:\"YjAnvdcLI\",isAHbpQQ9:\"Ergebnisse, die f\\xfcr sich sprechen\",layoutId:\"YjAnvdcLI\",name:\"Subtitel\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-89v93h\",\"data-styles-preset\":\"bYTF0mB4o\",children:[\"So sehen Webseiten aus, die \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228))\"},children:\"Kunden bringen\"}),\" \u2013 nicht nur Komplimente\"]})}),className:\"framer-f615b9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jk8ocg\",\"data-framer-name\":\"Work\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 84px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3636.15+60+139.5+0+0},HBF66IbWr:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2635.65+85+139.5+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lvw1qw-container\",nodeId:\"GQxQjRLdH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"Ji15JJJXD\"},HBF66IbWr:{variant:\"Ji15JJJXD\"}},children:/*#__PURE__*/_jsx(ReferenzenKarte,{height:\"100%\",id:\"GQxQjRLdH\",layoutId:\"GQxQjRLdH\",LmYp3m1Ww:addImageAlt({src:\"https://framerusercontent.com/images/sMIeMURFK5DjZVKIAnmOGh272DQ.jpg\",srcSet:\"https://framerusercontent.com/images/sMIeMURFK5DjZVKIAnmOGh272DQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sMIeMURFK5DjZVKIAnmOGh272DQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sMIeMURFK5DjZVKIAnmOGh272DQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sMIeMURFK5DjZVKIAnmOGh272DQ.jpg 2200w\"},\"\"),q7uXEl3oN:true,s2wZvDTHZ:\"Kassensystemanbieter mit eigener Software\",style:{width:\"100%\"},variant:\"qHJ786jAm\",width:\"100%\",wMbavrzAP:\"https://smartkasse24.de/\",wW7LBJasl:\"SmartKasse24\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 84px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3636.15+60+139.5+0+0},HBF66IbWr:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2635.65+85+139.5+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wzzeb1-container\",nodeId:\"U2j5TrrXi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"Ji15JJJXD\"},HBF66IbWr:{variant:\"Ji15JJJXD\"}},children:/*#__PURE__*/_jsx(ReferenzenKarte,{height:\"100%\",id:\"U2j5TrrXi\",layoutId:\"U2j5TrrXi\",LmYp3m1Ww:addImageAlt({src:\"https://framerusercontent.com/images/bpVYMwa2ai1Btvc6yXO5DP7qQrY.jpg\",srcSet:\"https://framerusercontent.com/images/bpVYMwa2ai1Btvc6yXO5DP7qQrY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bpVYMwa2ai1Btvc6yXO5DP7qQrY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bpVYMwa2ai1Btvc6yXO5DP7qQrY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bpVYMwa2ai1Btvc6yXO5DP7qQrY.jpg 2200w\"},\"\"),q7uXEl3oN:true,s2wZvDTHZ:\"Praxis f\\xfcr Physiotherapie & Osteopathie \",style:{width:\"100%\"},variant:\"qHJ786jAm\",width:\"100%\",wMbavrzAP:\"https://therapie-seidewitz.de/\",wW7LBJasl:\"Therapie Seidewitz\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 84px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3636.15+60+139.5+0+457},HBF66IbWr:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2635.65+85+139.5+0+457,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w4o5l8-container\",nodeId:\"YFJVNScEy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"Ji15JJJXD\"},HBF66IbWr:{variant:\"Ji15JJJXD\"}},children:/*#__PURE__*/_jsx(ReferenzenKarte,{height:\"100%\",id:\"YFJVNScEy\",layoutId:\"YFJVNScEy\",LmYp3m1Ww:addImageAlt({src:\"https://framerusercontent.com/images/kK0NFKJf0Ka0equXa7Khe3QS7NU.jpg\",srcSet:\"https://framerusercontent.com/images/kK0NFKJf0Ka0equXa7Khe3QS7NU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kK0NFKJf0Ka0equXa7Khe3QS7NU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kK0NFKJf0Ka0equXa7Khe3QS7NU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kK0NFKJf0Ka0equXa7Khe3QS7NU.jpg 2200w\"},\"\"),q7uXEl3oN:true,s2wZvDTHZ:\"Fahrschule mit 2 Standorten in Hamburg\",style:{width:\"100%\"},variant:\"qHJ786jAm\",width:\"100%\",wMbavrzAP:\"https://fahrschule-infinity.de/\",wW7LBJasl:\"Fahrschule Infinity\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 84px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3636.15+60+139.5+0+457},HBF66IbWr:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2635.65+85+139.5+0+457,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18hwgi3-container\",nodeId:\"idMWOIv68\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"Ji15JJJXD\"},HBF66IbWr:{variant:\"Ji15JJJXD\"}},children:/*#__PURE__*/_jsx(ReferenzenKarte,{height:\"100%\",id:\"idMWOIv68\",layoutId:\"idMWOIv68\",LmYp3m1Ww:addImageAlt({src:\"https://framerusercontent.com/images/dgIVdbL9fLzmuH7LJTxo3OTyA.jpg\",srcSet:\"https://framerusercontent.com/images/dgIVdbL9fLzmuH7LJTxo3OTyA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dgIVdbL9fLzmuH7LJTxo3OTyA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dgIVdbL9fLzmuH7LJTxo3OTyA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dgIVdbL9fLzmuH7LJTxo3OTyA.jpg 2200w\"},\"\"),q7uXEl3oN:true,s2wZvDTHZ:\"Elektroinstallationsbetrieb mit gro\\xdfem Leistungsprofoli\",style:{width:\"100%\"},variant:\"qHJ786jAm\",width:\"100%\",wMbavrzAP:\"http://elektrotechnik-steinmetz.de/\",wW7LBJasl:\"Elektrotechnik Steinmetz\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 84px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3636.15+60+139.5+0+914},HBF66IbWr:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2635.65+85+139.5+0+914,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dtmplg-container\",nodeId:\"BKXQ4sFGR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"Ji15JJJXD\"},HBF66IbWr:{variant:\"Ji15JJJXD\"}},children:/*#__PURE__*/_jsx(ReferenzenKarte,{height:\"100%\",id:\"BKXQ4sFGR\",layoutId:\"BKXQ4sFGR\",LmYp3m1Ww:addImageAlt({src:\"https://framerusercontent.com/images/REHaJH7vOKauMCEkrixhBVKH6w.jpg\",srcSet:\"https://framerusercontent.com/images/REHaJH7vOKauMCEkrixhBVKH6w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/REHaJH7vOKauMCEkrixhBVKH6w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/REHaJH7vOKauMCEkrixhBVKH6w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/REHaJH7vOKauMCEkrixhBVKH6w.jpg 2200w\"},\"\"),q7uXEl3oN:true,s2wZvDTHZ:\"Kosmetikstudio in M\\xfcnchen f\\xfcr medizisnische Behandlungen\",style:{width:\"100%\"},variant:\"qHJ786jAm\",width:\"100%\",wMbavrzAP:\"https://medical-cosmetics-spa.de/\",wW7LBJasl:\"Medical Cosmetics & Spa\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 84px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3636.15+60+139.5+0+914},HBF66IbWr:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2635.65+85+139.5+0+914,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a9q0hq-container\",nodeId:\"Ps9kw80oT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"Ji15JJJXD\"},HBF66IbWr:{variant:\"Ji15JJJXD\"}},children:/*#__PURE__*/_jsx(ReferenzenKarte,{height:\"100%\",id:\"Ps9kw80oT\",layoutId:\"Ps9kw80oT\",LmYp3m1Ww:addImageAlt({src:\"https://framerusercontent.com/images/Ev8Si0FsheaKN4px4RKz2OV3j0.jpg\",srcSet:\"https://framerusercontent.com/images/Ev8Si0FsheaKN4px4RKz2OV3j0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ev8Si0FsheaKN4px4RKz2OV3j0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ev8Si0FsheaKN4px4RKz2OV3j0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ev8Si0FsheaKN4px4RKz2OV3j0.jpg 2200w\"},\"\"),q7uXEl3oN:true,s2wZvDTHZ:\"Raumaustatter mit zahlreichen Handwerksleistungen\",style:{width:\"100%\"},variant:\"qHJ786jAm\",width:\"100%\",wMbavrzAP:\"https://raumwerkstatt-richter.de/\",wW7LBJasl:\"Raumwerkstatt Richter\"})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X993oMbJm\"},implicitPathVariables:undefined},{href:{webPageId:\"X993oMbJm\"},implicitPathVariables:undefined},{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{height:60,y:(componentViewport?.y||0)+0+3636.15+60+1526.5},HBF66IbWr:{height:60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jwvi1a-container hidden-72rtr7\",nodeId:\"XC5HyKSAu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{RkUa_hs15:resolvedLinks3[1]},HBF66IbWr:{RkUa_hs15:resolvedLinks3[2],X_w4zKkSC:\"Kostenloses Probedesign reservieren\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"XC5HyKSAu\",layoutId:\"XC5HyKSAu\",RkUa_hs15:resolvedLinks3[0],variant:\"n7iHUl9pK\",width:\"100%\",X_w4zKkSC:\"Ich will auch eine solche Webseite\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10rern8\",\"data-framer-name\":\"Ablauf\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14qzbd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qiex1k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-89v93h\",\"data-styles-preset\":\"bYTF0mB4o\",style:{\"--framer-text-alignment\":\"left\"},children:[\"In \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228))\"},children:\"4 einfachen Schritten\"}),\" zu einer Website, die dir Kunden bringt\"]})}),className:\"framer-bkxkrg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:[\"Eine gute Website muss dich nicht stressen \u2013 im Gegenteil:\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"Wir \\xfcbernehmen die Arbeit, du triffst nur ein paar Entscheidungen.\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Klarer Ablauf, keine Hektik, kein Fachchinesisch.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"So entsteht deine neue Website \u2013 Schritt f\\xfcr Schritt.\"})]})}),className:\"framer-1hd3yic\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pyj24g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px)`,y:(componentViewport?.y||0)+0+5352.65+60+440+0+219.5+0+0},HBF66IbWr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4302.15+85+40+-79.25+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y48gsi-container\",nodeId:\"Gq0XxeZCV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AblaufAkkordeon,{height:\"100%\",hFWTiskGo:\"01. Kostenloses Probedesign\",id:\"Gq0XxeZCV\",layoutId:\"Gq0XxeZCV\",OjMK8RFig:\"Sieh selbst, wie deine neue Website wirken kann \u2013 noch bevor du dich entscheidest. Du bekommst von uns einen echten Entwurf deines Startbereichs \u2013 komplett kostenlos. Modern, individuell und auf deine Zielgruppe ausgerichtet. Danach entscheidest du, ob wir gemeinsam loslegen.\",style:{width:\"100%\"},variant:\"vpSMNk3xn\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px)`,y:(componentViewport?.y||0)+0+5352.65+60+440+0+219.5+0+48},HBF66IbWr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4302.15+85+40+-79.25+0+48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12jzjsu-container\",nodeId:\"IfxvfVCDF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AblaufAkkordeon,{height:\"100%\",hFWTiskGo:\"02. Konzept & Strategie\",id:\"IfxvfVCDF\",layoutId:\"IfxvfVCDF\",OjMK8RFig:\"Wir lernen dein Unternehmen kennen \u2013 und entwickeln daraus ein stimmiges Webkonzept. Kein langes Hin und Her, sondern ein klarer Fahrplan: Struktur, Inhalte, Wirkung \u2013 alles abgestimmt auf das, was du erreichen willst.\",style:{width:\"100%\"},variant:\"a8lZF4jVH\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px)`,y:(componentViewport?.y||0)+0+5352.65+60+440+0+219.5+0+96},HBF66IbWr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4302.15+85+40+-79.25+0+96,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s9t0bp-container\",nodeId:\"fqk6Fd3s0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AblaufAkkordeon,{height:\"100%\",hFWTiskGo:\"03. Design & Umsetzung\",id:\"fqk6Fd3s0\",layoutId:\"fqk6Fd3s0\",OjMK8RFig:\"Jetzt wird\u2019s sichtbar: Wir bauen deine Website genau nach Plan. Klares Design, \\xfcberzeugende Texte, mobil optimiert & suchmaschinenfreundlich. Und immer mit dem Ziel: Kunden gewinnen \u2013 nicht nur h\\xfcbsch aussehen.\",style:{width:\"100%\"},variant:\"a8lZF4jVH\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px)`,y:(componentViewport?.y||0)+0+5352.65+60+440+0+219.5+0+144},HBF66IbWr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4302.15+85+40+-79.25+0+144,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iitn56-container\",nodeId:\"P1CanjwWR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AblaufAkkordeon,{height:\"100%\",hFWTiskGo:\"04. Online gehen & gefunden werden\",id:\"P1CanjwWR\",layoutId:\"P1CanjwWR\",OjMK8RFig:\"Deine Website geht live \u2013 sichtbar, schnell und professionell. Jetzt bist du online auffindbar, wirkst vertrauensw\\xfcrdig und ziehst genau die Kunden an, die zu dir passen.\",style:{width:\"100%\"},variant:\"a8lZF4jVH\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17o34va\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16hio62\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined},{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined},{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+5352.65+60+440+0+431.5+0+0+0+0},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+4302.15+85+40+132.75+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f7q6oq-container\",nodeId:\"HsB4uLbOm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{RkUa_hs15:resolvedLinks4[1],variant:\"n7iHUl9pK\"},HBF66IbWr:{RkUa_hs15:resolvedLinks4[2],variant:\"n7iHUl9pK\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"HsB4uLbOm\",layoutId:\"HsB4uLbOm\",RkUa_hs15:resolvedLinks4[0],variant:\"AgoJDvBr1\",width:\"100%\",X_w4zKkSC:\"Mein kostenloses Probedesign sichern\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+5352.65+60+440+0+431.5+0+0+0+70},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+0+4302.15+85+40+132.75+0+0+0+70,children:/*#__PURE__*/_jsx(Container,{className:\"framer-94h8px-container\",nodeId:\"ewt96feWQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BadgeKundenbilderKlein,{height:\"100%\",id:\"ewt96feWQ\",layoutId:\"ewt96feWQ\",width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5352.65+60+0),positionX:\"60.6%\",positionY:\"19%\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px)`,src:\"https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg\",srcSet:\"https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg 2400w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",positionX:\"60.6%\",positionY:\"19%\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`,src:\"https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg\",srcSet:\"https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg 2400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4302.15+85),positionX:\"60.6%\",positionY:\"19%\",sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg\",srcSet:\"https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Lv37tgZAxzmNrLVBwFAf1KEi8.jpg 2400w\"},className:\"framer-11xks1w\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kc2g5l\",\"data-framer-name\":\"Bewertungen\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mse6fe\",\"data-framer-name\":\"Titel\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+6440.15+60+0+0+0},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+4482.15+85+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8nnnnh-container\",\"data-framer-name\":\"Subtitel\",name:\"Subtitel\",nodeId:\"zbK3_ImEH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MiniCard1,{height:\"100%\",id:\"zbK3_ImEH\",isAHbpQQ9:\"Echte Stimmen. Echte Ergebnisse.\",layoutId:\"zbK3_ImEH\",name:\"Subtitel\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-89v93h\",\"data-styles-preset\":\"bYTF0mB4o\",children:[\"Was unsere Kunden sagen \u2013 und warum sie \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228))\"},children:\"wieder mit uns arbeiten\"}),\" w\\xfcrden\"]})}),className:\"framer-ehc2sp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e017n9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-715dyu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i2uh1c\",\"data-framer-name\":\"Spalte 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 100px) / 3, 1px)`,y:(componentViewport?.y||0)+0+6440.15+60+139.5+0+0+0+0+0},HBF66IbWr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4482.15+85+139.5+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ag95yi-container\",\"data-framer-name\":\"Bewertung\",name:\"Bewertung\",nodeId:\"TkSjSjHNn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"LpZCcfdN7\"},HBF66IbWr:{variant:\"LpZCcfdN7\"}},children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Wir haben eine Homepage f\\xfcr meinen Elektrobetrieb erstellen lassen. Wir sind sehr zufrieden mit dem Ergebnis der Homepage, es wurde ein tolles Design entworfen. Toller Service, immer erreichbar und hilfsbereit wenn man Fragen hat!\"',height:\"100%\",iC8wxXvNq:addImageAlt({src:\"https://framerusercontent.com/images/8Q8DI5JSeG0b4ODNeyEdlWpFeFc.jpg\",srcSet:\"https://framerusercontent.com/images/8Q8DI5JSeG0b4ODNeyEdlWpFeFc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8Q8DI5JSeG0b4ODNeyEdlWpFeFc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Q8DI5JSeG0b4ODNeyEdlWpFeFc.jpg 1032w\"},\"\"),id:\"TkSjSjHNn\",layoutId:\"TkSjSjHNn\",name:\"Bewertung\",Oe4Q9T3oL:\"Elektrotechnik Steinmetz\",PQ4NsqLtd:\"Christian Steinmetz\",style:{width:\"100%\"},variant:\"Ir4D48Iui\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 100px) / 3, 1px)`,y:(componentViewport?.y||0)+0+6440.15+60+139.5+0+0+0+0+138},HBF66IbWr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4482.15+85+139.5+0+0+0+0+138,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jc0jaz-container\",\"data-framer-name\":\"Bewertung\",name:\"Bewertung\",nodeId:\"JYUjzk8f5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"LpZCcfdN7\"},HBF66IbWr:{variant:\"LpZCcfdN7\"}},children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Super Agentur. Wir haben die Seite f\\xfcr unser Physiopraxis neu machen lassen und alle W\\xfcnsche wurden zu 100% erf\\xfcllt.\"',height:\"100%\",iC8wxXvNq:addImageAlt({src:\"https://framerusercontent.com/images/baX3vsXSa81HcQT4VtGvCyrVSO4.png\"},\"\"),id:\"JYUjzk8f5\",layoutId:\"JYUjzk8f5\",name:\"Bewertung\",Oe4Q9T3oL:\"Therapie Seidewitz\",PQ4NsqLtd:\"Jonathan Seidewitz\",style:{width:\"100%\"},variant:\"Ir4D48Iui\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 100px) / 3, 1px)`,y:(componentViewport?.y||0)+0+6440.15+60+139.5+0+0+0+0+276},HBF66IbWr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4482.15+85+139.5+0+0+0+0+276,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17sydeo-container\",\"data-framer-name\":\"Bewertung\",name:\"Bewertung\",nodeId:\"SxmUwN6rJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"LpZCcfdN7\"},HBF66IbWr:{variant:\"LpZCcfdN7\"}},children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Super professionelle Arbeit, sehr kompetent und zuverl\\xe4ssig - Felix und sein Team sind echt top!\"',height:\"100%\",iC8wxXvNq:addImageAlt({src:\"https://framerusercontent.com/images/FXujCuB70mgNJ80IpE4tvCeLbF4.jpg\",srcSet:\"https://framerusercontent.com/images/FXujCuB70mgNJ80IpE4tvCeLbF4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FXujCuB70mgNJ80IpE4tvCeLbF4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FXujCuB70mgNJ80IpE4tvCeLbF4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FXujCuB70mgNJ80IpE4tvCeLbF4.jpg 2200w\"},\"\"),id:\"SxmUwN6rJ\",layoutId:\"SxmUwN6rJ\",name:\"Bewertung\",Oe4Q9T3oL:\"ErfolgsRecruiting GmbH\",PQ4NsqLtd:\"Marco Cappellin\",style:{width:\"100%\"},variant:\"Ir4D48Iui\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rmjqnc\",\"data-framer-name\":\"Spalte 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 100px) / 3, 1px)`,y:(componentViewport?.y||0)+0+6440.15+60+139.5+0+0+0+0+0},HBF66IbWr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4482.15+85+139.5+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m04m2i-container\",\"data-framer-name\":\"Bewertung\",name:\"Bewertung\",nodeId:\"ePRjGY3Ex\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"LpZCcfdN7\"},HBF66IbWr:{variant:\"LpZCcfdN7\"}},children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Sehr gute Arbeit! Kann man nur weiterempfehlen.\\nErstmal ein gro\\xdfes Dankesch\\xf6n an Felix f\\xfcr die professionelle und freundliche Hilfe. Hervorragende Leistung, was die Website-Erstellung angeht! Meine Vorstellungen ohne gro\\xdfes Wissen bez\\xfcglich des Internets wurden perfekt umgesetzt. Die Erreichbarkeit ist auch top. Sehr flexibel konnten wir zu fast schon jeder Uhrzeit zusammen arbeiten.',height:\"100%\",iC8wxXvNq:addImageAlt({src:\"https://framerusercontent.com/images/FqGJqiDC9s4hhwczsj2rdsguaU.png\",srcSet:\"https://framerusercontent.com/images/FqGJqiDC9s4hhwczsj2rdsguaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/FqGJqiDC9s4hhwczsj2rdsguaU.png 968w\"},\"\"),id:\"ePRjGY3Ex\",layoutId:\"ePRjGY3Ex\",name:\"Bewertung\",Oe4Q9T3oL:\"Medical Cosmetics & Spa\",PQ4NsqLtd:\"Ildiko Br\\xfcckner\",style:{width:\"100%\"},variant:\"Ir4D48Iui\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 100px) / 3, 1px)`,y:(componentViewport?.y||0)+0+6440.15+60+139.5+0+0+0+0+138}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4482.15+85+139.5+0+0+0+0+138,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xpeprp-container hidden-xntyzz\",\"data-framer-name\":\"Bewertung\",name:\"Bewertung\",nodeId:\"njqNcMrzd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"LpZCcfdN7\"}},children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:\"Tolle Erfahrung. Wir hatten aufgrund von Erfahrungen mit einer anderen Agentur enormen Zeitdruck. Die mediakrew hat uns toll beraten und in k\\xfcrzester Zeit ein absolutes Spitzendesign f\\xfcr unsere Webseite gezaubert. Wir waren echt beeindrucklt und kriegen seit Launch fast t\\xe4glich von Kunden anfragen die von unserem Onlineauftritt beeindruckt sind. Kann ich nur so weiterempfehlen.!\",height:\"100%\",id:\"njqNcMrzd\",layoutId:\"njqNcMrzd\",name:\"Bewertung\",Oe4Q9T3oL:\"\",PQ4NsqLtd:\"Thoma Beucke\",style:{width:\"100%\"},variant:\"Ir4D48Iui\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4sqfsc\",\"data-framer-name\":\"Spalte 3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 100px) / 3, 1px)`,y:(componentViewport?.y||0)+0+6440.15+60+139.5+0+0+0+0+0},HBF66IbWr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4482.15+85+139.5+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q0w8ja-container\",\"data-framer-name\":\"Bewertung\",name:\"Bewertung\",nodeId:\"xQehkGB60\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"LpZCcfdN7\"},HBF66IbWr:{variant:\"LpZCcfdN7\"}},children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:\"Ich habe die letzten Wochen sehr eng mit dem Team von Mediacrew in Bezug meiner neuen Website zusammengearbeitet. Ich muss sagen, ich habe es selten erlebt, dass meine Ideen und Gedanken so professionell,, auf mich passend, und zur vereinbarten Zeit umgesetzt wurden. Ganz besonders gef\\xe4llt mir die ruhige und bedachte Art von Felix und das Gesp\\xfcr, dass er f\\xfcr meine Dienstleistungen entwickelt hat.\\n... Und das Preis-/Leistungsverh\\xe4ltnis ist m.E. unschlagbar!\\nIch freue mich auf weitere Projekte!\",height:\"100%\",iC8wxXvNq:addImageAlt({src:\"https://framerusercontent.com/images/Fu0FnKHSVukAqCSIjVwlaybIt6o.jpg\",srcSet:\"https://framerusercontent.com/images/Fu0FnKHSVukAqCSIjVwlaybIt6o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Fu0FnKHSVukAqCSIjVwlaybIt6o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fu0FnKHSVukAqCSIjVwlaybIt6o.jpg 1076w\"},\"\"),id:\"xQehkGB60\",layoutId:\"xQehkGB60\",name:\"Bewertung\",Oe4Q9T3oL:\"Human Design Potenzial\",PQ4NsqLtd:\"Susanne Hagemann\",style:{width:\"100%\"},variant:\"Ir4D48Iui\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 810px) - 100px) / 3, 1px)`,y:(componentViewport?.y||0)+0+6440.15+60+139.5+0+0+0+0+138}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4482.15+85+139.5+0+0+0+0+138,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mmi0nm-container hidden-xntyzz\",\"data-framer-name\":\"Bewertung\",name:\"Bewertung\",nodeId:\"WWhZEe8C3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"LpZCcfdN7\"}},children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Super Service, bin sehr zufrieden. Ich wei\\xdf wenn ich mediakrew engagiere laufen die Sachen und ich kann mich entspannt zur\\xfcck lehnen. Vielen Dank f\\xfcr alles!\"',height:\"100%\",iC8wxXvNq:addImageAlt({src:\"https://framerusercontent.com/images/k3ODa0rhGmBS57aNpXsL9NjrL8.jpg\",srcSet:\"https://framerusercontent.com/images/k3ODa0rhGmBS57aNpXsL9NjrL8.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/k3ODa0rhGmBS57aNpXsL9NjrL8.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/k3ODa0rhGmBS57aNpXsL9NjrL8.jpg 1875w\"},\"\"),id:\"WWhZEe8C3\",layoutId:\"WWhZEe8C3\",name:\"Bewertung\",Oe4Q9T3oL:\"Fahrschule Infinity\",PQ4NsqLtd:\"Anosh Khoramkhel\",style:{width:\"100%\"},variant:\"Ir4D48Iui\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1neakoc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.55555768954906,intrinsicWidth:277.7777851363761,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6440.15+60+139.5+0+550+0),pixelHeight:145,pixelWidth:500,src:\"https://framerusercontent.com/images/8FI299n69ymZZoJEHffGetOgU.png\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.55555768954906,intrinsicWidth:277.7777851363761,pixelHeight:145,pixelWidth:500,src:\"https://framerusercontent.com/images/8FI299n69ymZZoJEHffGetOgU.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.55555768954906,intrinsicWidth:277.7777851363761,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4482.15+85+139.5+0+620+0),pixelHeight:145,pixelWidth:500,src:\"https://framerusercontent.com/images/8FI299n69ymZZoJEHffGetOgU.png\"},className:\"framer-17ka6cy\",\"data-framer-name\":\"$656700b9d89e877f85b6ab80_mediakrew_Grafiken_12_p_500\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:113.33333633564145,intrinsicWidth:277.7777851363761,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6440.15+60+139.5+0+550+0),pixelHeight:204,pixelWidth:500,src:\"https://framerusercontent.com/images/UHsidV3u9SslR0JLvHQBDhmYRzs.png\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:113.33333633564145,intrinsicWidth:277.7777851363761,pixelHeight:204,pixelWidth:500,src:\"https://framerusercontent.com/images/UHsidV3u9SslR0JLvHQBDhmYRzs.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:113.33333633564145,intrinsicWidth:277.7777851363761,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4482.15+85+139.5+0+620+0),pixelHeight:204,pixelWidth:500,src:\"https://framerusercontent.com/images/UHsidV3u9SslR0JLvHQBDhmYRzs.png\"},className:\"framer-qma172\",\"data-framer-name\":\"$656700b712718d09e5cb7717_mediakrew_Grafiken_13_p_500\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:113.33333633564145,intrinsicWidth:277.7777851363761,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6440.15+60+139.5+0+550+0),pixelHeight:204,pixelWidth:500,sizes:\"98.0392px\",src:\"https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png?scale-down-to=512 512w,https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png 1425w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:113.33333633564145,intrinsicWidth:277.7777851363761,pixelHeight:204,pixelWidth:500,sizes:\"53.9216px\",src:\"https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png?scale-down-to=512 512w,https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png 1425w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:113.33333633564145,intrinsicWidth:277.7777851363761,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4482.15+85+139.5+0+620+0),pixelHeight:204,pixelWidth:500,sizes:\"122.549px\",src:\"https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png?scale-down-to=512 512w,https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HjbKRRKmbS4H63AqAAHFTW8A0.png 1425w\"},className:\"framer-81tk7n\",\"data-framer-name\":\"$656700b712718d09e5cb7717_mediakrew_Grafiken_13_p_500\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:115.55555861673245,intrinsicWidth:277.7777851363761,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6440.15+60+139.5+0+550+0),pixelHeight:208,pixelWidth:500,src:\"https://framerusercontent.com/images/LW9FjcOVHC01PnuOX4C8Smi2Dw.png\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:115.55555861673245,intrinsicWidth:277.7777851363761,pixelHeight:208,pixelWidth:500,src:\"https://framerusercontent.com/images/LW9FjcOVHC01PnuOX4C8Smi2Dw.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:115.55555861673245,intrinsicWidth:277.7777851363761,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4482.15+85+139.5+0+620+0),pixelHeight:208,pixelWidth:500,src:\"https://framerusercontent.com/images/LW9FjcOVHC01PnuOX4C8Smi2Dw.png\"},className:\"framer-1s3vsy\",\"data-framer-name\":\"$656700ba7db334699b904a82_mediakrew_Grafiken_11_p_500\"})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined},{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined},{href:{webPageId:\"hb9dr8UBf\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+6440.15+60+769.5},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+4482.15+85+849.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mh8kdy-container\",nodeId:\"Fecorbk5w\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{RkUa_hs15:resolvedLinks5[1],variant:\"n7iHUl9pK\",X_w4zKkSC:\"Lass uns gemeinsam sprechen...\"},HBF66IbWr:{RkUa_hs15:resolvedLinks5[2],variant:\"n7iHUl9pK\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Fecorbk5w\",layoutId:\"Fecorbk5w\",RkUa_hs15:resolvedLinks5[0],variant:\"AgoJDvBr1\",width:\"100%\",X_w4zKkSC:\"Mein Designprobe sichern\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-169im9w\",\"data-framer-name\":\"Vorteile\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w2oonn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-89v93h\",\"data-styles-preset\":\"bYTF0mB4o\",children:[\"Was du bekommst, wenn wir \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228))\"},children:\"deine Website \"}),\"\\xfcbernehmen\"]})}),className:\"framer-1wd0383\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ehumbz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18njxmh\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o9pjrq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2184,intrinsicWidth:3139,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7399.65+60+97.5+0+0+0+0),pixelHeight:2184,pixelWidth:3139,positionX:\"left\",positionY:\"bottom\",sizes:\"531.7903px\",src:\"https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png\",srcSet:\"https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png?scale-down-to=512 512w,https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png 3139w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2184,intrinsicWidth:3139,pixelHeight:2184,pixelWidth:3139,positionX:\"center\",positionY:\"top\",sizes:\"355px\",src:\"https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png\",srcSet:\"https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png?scale-down-to=512 512w,https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png 3139w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2184,intrinsicWidth:3139,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5571.65+85+97.5+0+0+0+0),pixelHeight:2184,pixelWidth:3139,positionX:\"center\",positionY:\"center\",sizes:\"632.3993px\",src:\"https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png\",srcSet:\"https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png?scale-down-to=512 512w,https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/66BnofH0ctDwZ0557IDC8WVQ2Bs.png 3139w\"},className:\"framer-q9hc0i\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ixcdcy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1s8y35l\",\"data-styles-preset\":\"fcfd7WKCo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Deine Website wird gefunden & \\xfcberzeugt vom ersten Klick.\"})}),className:\"framer-qij6qs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r8bzjd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-um05ek\",\"data-framer-name\":\"Feature 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS02MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"SEO-Optimierung\"})}),fonts:[\"GF;Raleway-600\"]},HBF66IbWr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS02MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"SEO-Optimierung\"})}),fonts:[\"GF;Raleway-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",children:\"SEO-Optimierung\"})}),className:\"framer-1ttfuyk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:\"Werde bei Google sichtbar \u2013 genau dann, wenn Kunden suchen.\"})}),className:\"framer-19aabx0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ibnmmg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS02MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"Auswertungen\"})}),fonts:[\"GF;Raleway-600\"]},HBF66IbWr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS02MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"Auswertungen\"})}),fonts:[\"GF;Raleway-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",children:\"Auswertungen\"})}),className:\"framer-5dj41k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:\"Verstehe, was Besucher tun \u2013 und was sie wollen.\"})}),className:\"framer-rfn2u9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jrcfls\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS02MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"Verkaufsoptimiert\"})}),fonts:[\"GF;Raleway-600\"]},HBF66IbWr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS02MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"Verkaufsoptimiert\"})}),fonts:[\"GF;Raleway-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",children:\"Verkaufsoptimiert\"})}),className:\"framer-jcaouc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:\"Mehr Anfragen durch starke Texte und klare Struktur.\"})}),className:\"framer-ntrs08\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-315riq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS02MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"F\\xfcr alle Ger\\xe4te\"})}),fonts:[\"GF;Raleway-600\"]},HBF66IbWr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS02MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"F\\xfcr alle Ger\\xe4te\"})}),fonts:[\"GF;Raleway-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",children:\"F\\xfcr alle Ger\\xe4te\"})}),className:\"framer-okn1mp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:\"Immer perfekt \u2013 egal ob am Handy, Tablet oder PC.\"})}),className:\"framer-ggn7ii\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7399.65+60+97.5+0+390),pixelHeight:1333,pixelWidth:2e3,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 810px) - 120px) / 4, 105px) * 2 + 20px)`,src:\"https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg\",srcSet:\"https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg 2000w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",pixelHeight:1333,pixelWidth:2e3,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 810px) - 100px) / 4, 40px) * 4 + 60px)`,src:\"https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg\",srcSet:\"https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg 2000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5571.65+85+97.5+0+480),pixelHeight:1333,pixelWidth:2e3,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 120px) / 4, 105px) * 2 + 40px)`,src:\"https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg\",srcSet:\"https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8ioVGIIGlWt8xw8JU3RQD8EQ4M.jpg 2000w\"},className:\"framer-ikn9js\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",children:\"Design, das bleibt.\"})}),className:\"framer-6mb6fx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:[\"Deine Website sieht nicht nur gut aus \u2013 sie wirkt.\",/*#__PURE__*/_jsx(\"br\",{}),\"Sie zeigt, dass du Qualit\\xe4t bietest \u2013 und macht dich online unverwechselbar.\"]})}),className:\"framer-1kmbd0y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mrd5lc\",\"data-border\":true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eipy7v\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11mduki\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",children:\"Kein Warten. Kein Abspringen.\"})}),className:\"framer-1gbmiyg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:\"Schnelle Ladezeiten sorgen daf\\xfcr, dass Interessenten auf deiner Seite bleiben \u2013 und nicht zur Konkurrenz wechseln.\"})}),className:\"framer-70wv7e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vcss93\",\"data-framer-name\":\"Bild\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1464,intrinsicWidth:1905,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7399.65+60+97.5+0+390+0+0+0),pixelHeight:1464,pixelWidth:1905,sizes:\"227.7152px\",src:\"https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png\",srcSet:\"https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png?scale-down-to=512 512w,https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png 1905w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1464,intrinsicWidth:1905,pixelHeight:1464,pixelWidth:1905,sizes:\"227.7152px\",src:\"https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png\",srcSet:\"https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png?scale-down-to=512 512w,https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png 1905w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1464,intrinsicWidth:1905,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5571.65+85+97.5+0+480+0+0+0),pixelHeight:1464,pixelWidth:1905,sizes:\"260.2459px\",src:\"https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png\",srcSet:\"https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png?scale-down-to=512 512w,https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NbcttwihnhCtPXlVKZAEXd4GMV8.png 1905w\"},className:\"framer-uyowx1\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xbt0vy\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h8bw7z\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",children:\"Texte, die verkaufen \u2013 statt nur zu beschreiben.\"})}),className:\"framer-1bx6trb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:[\"Wir schreiben so, wie deine Kunden denken.\",/*#__PURE__*/_jsx(\"br\",{}),\"Klar, relevant, zielgerichtet \u2013 mit Wirkung.\"]})}),className:\"framer-at9v7b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-36dsi7\",\"data-framer-name\":\"Bild\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1455,intrinsicWidth:1896,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7399.65+60+97.5+0+585+87.5+-80),pixelHeight:1455,pixelWidth:1896,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 810px) - 120px) / 4, 105px) * 2 + 20px) * 0.4 - 10px, 1px) + 36.5px)`,src:\"https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png\",srcSet:\"https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png?scale-down-to=512 512w,https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png 1896w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1455,intrinsicWidth:1896,pixelHeight:1455,pixelWidth:1896,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 810px) - 100px) / 4, 40px) * 4 + 60px) * 0.4 - 10px, 1px) + 36.5px)`,src:\"https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png\",srcSet:\"https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png?scale-down-to=512 512w,https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png 1896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1455,intrinsicWidth:1896,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5571.65+85+97.5+0+720+100+-80),pixelHeight:1455,pixelWidth:1896,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 120px) / 4, 105px) * 2 + 40px) * 0.4 - 10px, 1px) + 36.5px)`,src:\"https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png\",srcSet:\"https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png?scale-down-to=512 512w,https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/35xI1JyqgSUP21p5QxRw7BI2ss.png 1896w\"},className:\"framer-1q4e1ru\",transformTemplate:transformTemplate2})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z2rebw\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1812wua\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-d8o3jt\",\"data-styles-preset\":\"WIhH9oCd3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Verl\\xe4sslicher Support ohne Hotline\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Verl\\xe4sslicher Support ohne Hotline\"})}),className:\"framer-wdpp2j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1164,intrinsicWidth:1731,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7399.65+60+97.5+0+780+20+38.05),pixelHeight:1164,pixelWidth:1731,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 810px) - 120px) / 4, 105px) - 40px)`,src:\"https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png\",srcSet:\"https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png 1731w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1164,intrinsicWidth:1731,pixelHeight:1164,pixelWidth:1731,sizes:\"133.8402px\",src:\"https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png\",srcSet:\"https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png 1731w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1164,intrinsicWidth:1731,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5571.65+85+97.5+0+960+20+58.05),pixelHeight:1164,pixelWidth:1731,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px) - 120px) / 4, 105px) - 40px)`,src:\"https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png\",srcSet:\"https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kA94HLSomXova3WYwfhwiLUpxaI.png 1731w\"},className:\"framer-1i9usrx\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t6mvfe\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1164,intrinsicWidth:1730,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7399.65+60+97.5+0+780+20+9.7),pixelHeight:1164,pixelWidth:1730,sizes:\"212px\",src:\"https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png\",srcSet:\"https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png 1730w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1164,intrinsicWidth:1730,pixelHeight:1164,pixelWidth:1730,sizes:\"133.7629px\",src:\"https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png\",srcSet:\"https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png 1730w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1164,intrinsicWidth:1730,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5571.65+85+97.5+0+960+20+29.7),pixelHeight:1164,pixelWidth:1730,sizes:\"212px\",src:\"https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png\",srcSet:\"https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qrz0PKVbeNeA22u7mLmjpq0d6mk.png 1730w\"},className:\"framer-1pqqsxv\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-d8o3jt\",\"data-styles-preset\":\"WIhH9oCd3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Jede Seite individuell angepasst\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Jede Seite individuell \u2013 keine Baukastenl\\xf6sung\"})}),className:\"framer-1iwlxgq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sed6zu\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-d8o3jt\",\"data-styles-preset\":\"WIhH9oCd3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Fester Ansprechpartner \u2013 direkt & verl\\xe4sslich\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Fester Ansprechpartner \u2013 direkt & verl\\xe4sslich\"})}),className:\"framer-1hkogk4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1281,intrinsicWidth:1739,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7399.65+60+97.5+0+780+40+47),pixelHeight:1281,pixelWidth:1739,sizes:\"207px\",src:\"https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png\",srcSet:\"https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png 1739w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1281,intrinsicWidth:1739,pixelHeight:1281,pixelWidth:1739,sizes:\"149.3286px\",src:\"https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png\",srcSet:\"https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png 1739w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1281,intrinsicWidth:1739,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5571.65+85+97.5+0+960+40+87),pixelHeight:1281,pixelWidth:1739,sizes:\"207px\",src:\"https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png\",srcSet:\"https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vIrd2Kwsn0ZdCHrIGO664wlKlrw.png 1739w\"},className:\"framer-oarvdz\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ad9e6\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1163,intrinsicWidth:1731,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7399.65+60+97.5+0+780+20+9.7),pixelHeight:1163,pixelWidth:1731,sizes:\"212px\",src:\"https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png\",srcSet:\"https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png 1731w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1163,intrinsicWidth:1731,pixelHeight:1163,pixelWidth:1731,sizes:\"163.7231px\",src:\"https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png\",srcSet:\"https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png 1731w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1163,intrinsicWidth:1731,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5571.65+85+97.5+0+960+20+29.7),pixelHeight:1163,pixelWidth:1731,sizes:\"212px\",src:\"https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png\",srcSet:\"https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/42NzBfnnhqwnXrKKGhPOUezpdQ8.png 1731w\"},className:\"framer-yzwtwv\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-d8o3jt\",\"data-styles-preset\":\"WIhH9oCd3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Datenschutz passt \u2013 100\u202F% DSGVO-ready\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-i7g1j4\",\"data-styles-preset\":\"t8QYtgaYq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Datenschutz passt \u2013 100\u202F% DSGVO-ready\"})}),className:\"framer-n2c1bj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a9hfwe\",\"data-framer-name\":\"Standort\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16lgxt0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10pfpi7\",\"data-framer-name\":\"Titel\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+8647.15+60+40+38.25+0+0},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+7089.15+85+40+13.25+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7gfdoh-container\",\"data-framer-name\":\"Subtitel\",name:\"Subtitel\",nodeId:\"xowXQ2wVY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MiniCard1,{height:\"100%\",id:\"xowXQ2wVY\",isAHbpQQ9:\"Hier sind wir zuhause\",layoutId:\"xowXQ2wVY\",name:\"Subtitel\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-89v93h\",\"data-styles-preset\":\"bYTF0mB4o\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:[\"Von Frankfurt aus \u2013 f\\xfcr Unternehmen in der \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228))\"},children:\"ganzen Welt\"})]})}),className:\"framer-1mronpt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",children:[\"Von unserem Standort bei Frankfurt aus betreuen wir Kunden in ganz Deutschland, \\xd6sterreich, der Schweiz \u2013 und sogar in den USA. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Ob lokal oder international \u2013 was z\\xe4hlt, ist die Wirkung deiner Website. Und genau darum k\\xfcmmern wir uns.\"})]})}),className:\"framer-11c4gzd\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-88bfmm\",children:[/*#__PURE__*/_jsx(Link,{href:\"tel: +49 176 95274138\",motionChild:true,nodeId:\"Xo7Ktyr3O\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-f8hc2h framer-lux5qc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bzgp0r\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1isr7xd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oPuPXMZzq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Phone\",iconSelection:\"home\",id:\"oPuPXMZzq\",layoutId:\"oPuPXMZzq\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-guw2ys\",\"data-styles-preset\":\"CFvucXwj7\",style:{\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"0176 952 74 138\"})}),className:\"framer-qlnkmu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/4917695274138\",motionChild:true,nodeId:\"svUUOUOBB\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-v83ekk framer-lux5qc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jhsjth\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vy2wl6\",\"data-framer-name\":\"whatsapp\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 24 24\" xml:space=\"preserve\"><path fill=\"#FFF\" d=\"M16.6 14c-.2-.1-1.5-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.2-.6.8-.8 1-.1.2-.3.2-.5.1-.7-.3-1.4-.7-2-1.2-.5-.5-1-1.1-1.4-1.7-.1-.2 0-.4.1-.5.1-.1.2-.3.4-.4.1-.1.2-.3.2-.4.1-.1.1-.3 0-.4-.1-.1-.6-1.3-.8-1.8-.1-.7-.3-.7-.5-.7h-.5c-.2 0-.5.2-.6.3-.6.6-.9 1.3-.9 2.1.1.9.4 1.8 1 2.6 1.1 1.6 2.5 2.9 4.2 3.7.5.2.9.4 1.4.5.5.2 1 .2 1.6.1.7-.1 1.3-.6 1.7-1.2.2-.4.2-.8.1-1.2l-.4-.2m2.5-9.1C15.2 1 8.9 1 5 4.9c-3.2 3.2-3.8 8.1-1.6 12L2 22l5.3-1.4c1.5.8 3.1 1.2 4.7 1.2 5.5 0 9.9-4.4 9.9-9.9.1-2.6-1-5.1-2.8-7m-2.7 14c-1.3.8-2.8 1.3-4.4 1.3-1.5 0-2.9-.4-4.2-1.1l-.3-.2-3.1.8.8-3-.2-.3c-2.4-4-1.2-9 2.7-11.5S16.6 3.7 19 7.5c2.4 3.9 1.3 9-2.6 11.4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-guw2ys\",\"data-styles-preset\":\"CFvucXwj7\",style:{\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"0176 952 74 138\"})}),className:\"framer-l7bd1z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"mailto: kontakt@mediakrew.de\",motionChild:true,nodeId:\"TB9GRD1jn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-lsivd8 framer-lux5qc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wlynoa\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-el26ff-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qPfToZzc1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Mail\",iconSelection:\"home\",id:\"qPfToZzc1\",layoutId:\"qPfToZzc1\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-guw2ys\",\"data-styles-preset\":\"CFvucXwj7\",style:{\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"kontakt@mediakrew.de\"})}),className:\"framer-6urf6c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X993oMbJm\"},implicitPathVariables:undefined},{href:{webPageId:\"X993oMbJm\"},implicitPathVariables:undefined},{href:{webPageId:\"X993oMbJm\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+8647.15+60+40+481.75},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+7089.15+85+40+456.75,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16g9ev2-container\",nodeId:\"L28iZAKvK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{RkUa_hs15:resolvedLinks6[1],variant:\"n7iHUl9pK\"},HBF66IbWr:{RkUa_hs15:resolvedLinks6[2],variant:\"n7iHUl9pK\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"L28iZAKvK\",layoutId:\"L28iZAKvK\",RkUa_hs15:resolvedLinks6[0],variant:\"AgoJDvBr1\",width:\"100%\",X_w4zKkSC:\"Zur kostenlosen Webseite Beratung\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1id2f06\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:815.0000215901274,intrinsicWidth:1222.2222546000548,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8647.15+60+40+65),pixelHeight:1467,pixelWidth:2200,sizes:\"520px\",src:\"https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png\",srcSet:\"https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png?scale-down-to=512 512w,https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png 1800w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:815.0000215901274,intrinsicWidth:1222.2222546000548,pixelHeight:1467,pixelWidth:2200,sizes:\"520px\",src:\"https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png\",srcSet:\"https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png?scale-down-to=512 512w,https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:815.0000215901274,intrinsicWidth:1222.2222546000548,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7089.15+85+40+40),pixelHeight:1467,pixelWidth:2200,sizes:\"520px\",src:\"https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png\",srcSet:\"https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png?scale-down-to=512 512w,https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9zkIeaVl63m9GbI4TNMTIB4hyvc.png 1800w\"},className:\"framer-rhjget\",\"data-framer-name\":\"Deutschland\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ks844s\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sd6qiu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fqsl1z\",\"data-styles-preset\":\"WgDQvzZmj\",style:{\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"mediakrew UG\"})}),className:\"framer-11mlz6r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pz95vk\",\"data-styles-preset\":\"fA54s8Wih\",style:{\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"B\\xfcchnerweg 8A\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS01MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:\"61267 Neu-Anspach\"})]}),className:\"framer-dl63tf\",fonts:[\"GF;Raleway-500\"],id:\"dl63tf\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xxp6xk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395.0000104639268,intrinsicWidth:444.44445621820176,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8647.15+60+660-195.6+22.1938+0),pixelHeight:711,pixelWidth:800,sizes:\"70px\",src:\"https://framerusercontent.com/images/r6AzdOAgteOmayVKpV3hgkgAJig.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/r6AzdOAgteOmayVKpV3hgkgAJig.png?scale-down-to=512 512w,https://framerusercontent.com/images/r6AzdOAgteOmayVKpV3hgkgAJig.png 800w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395.0000104639268,intrinsicWidth:444.44445621820176,pixelHeight:711,pixelWidth:800,sizes:\"70px\",src:\"https://framerusercontent.com/images/r6AzdOAgteOmayVKpV3hgkgAJig.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/r6AzdOAgteOmayVKpV3hgkgAJig.png?scale-down-to=512 512w,https://framerusercontent.com/images/r6AzdOAgteOmayVKpV3hgkgAJig.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395.0000104639268,intrinsicWidth:444.44445621820176,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7089.15+85+610-166.6+22.1938+0),pixelHeight:711,pixelWidth:800,sizes:\"70px\",src:\"https://framerusercontent.com/images/r6AzdOAgteOmayVKpV3hgkgAJig.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/r6AzdOAgteOmayVKpV3hgkgAJig.png?scale-down-to=512 512w,https://framerusercontent.com/images/r6AzdOAgteOmayVKpV3hgkgAJig.png 800w\"},className:\"framer-1tjqfco\",\"data-framer-name\":\"mediakrew_icon\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{style:{rotate:-30}}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15zbgf7\",\"data-framer-name\":\"Verbindung Karte\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:281,intrinsicWidth:78,svg:'<svg width=\"78\" height=\"281\" viewBox=\"-2 -2 78 281\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.123736 273.895C-0.125241 274.971 0.54531 276.045 1.62145 276.294C2.6976 276.543 3.77182 275.873 4.0208 274.797L0.123736 273.895ZM60.5957 21.3921C66.3351 22.72 72.0643 19.1438 73.3922 13.4043C74.72 7.66489 71.1438 1.93571 65.4043 0.607832C59.6649 -0.720044 53.9357 2.85623 52.6078 8.59566C51.28 14.3351 54.8562 20.0643 60.5957 21.3921ZM5.40552 268.811C5.65449 267.735 4.98394 266.661 3.9078 266.412C2.83166 266.163 1.75743 266.834 1.50846 267.91L5.40552 268.811ZM4.2779 255.94C4.02892 257.016 4.69947 258.09 5.77562 258.339C6.85176 258.588 7.92598 257.917 8.17496 256.841L4.2779 255.94ZM10.9444 244.871C11.1934 243.795 10.5228 242.721 9.44668 242.472C8.37054 242.223 7.29632 242.893 7.04734 243.969L10.9444 244.871ZM9.81678 231.999C9.56781 233.075 10.2384 234.149 11.3145 234.398C12.3906 234.647 13.4649 233.977 13.7138 232.901L9.81678 231.999ZM16.4833 220.93C16.7323 219.854 16.0617 218.78 14.9856 218.531C13.9094 218.282 12.8352 218.953 12.5862 220.029L16.4833 220.93ZM15.3557 208.058C15.1067 209.135 15.7772 210.209 16.8534 210.458C17.9295 210.707 19.0038 210.036 19.2527 208.96L15.3557 208.058ZM22.0222 196.99C22.2711 195.914 21.6006 194.839 20.5245 194.59C19.4483 194.342 18.3741 195.012 18.1251 196.088L22.0222 196.99ZM20.8946 184.118C20.6456 185.194 21.3161 186.268 22.3923 186.517C23.4684 186.766 24.5426 186.096 24.7916 185.02L20.8946 184.118ZM27.5611 173.049C27.81 171.973 27.1395 170.899 26.0633 170.65C24.9872 170.401 23.913 171.072 23.664 172.148L27.5611 173.049ZM26.4334 160.177C26.1845 161.254 26.855 162.328 27.9312 162.577C29.0073 162.826 30.0815 162.155 30.3305 161.079L26.4334 160.177ZM33.0999 149.109C33.3489 148.033 32.6784 146.958 31.6022 146.709C30.5261 146.46 29.4519 147.131 29.2029 148.207L33.0999 149.109ZM31.9723 136.237C31.7233 137.313 32.3939 138.387 33.47 138.636C34.5462 138.885 35.6204 138.215 35.8694 137.139L31.9723 136.237ZM38.6388 125.168C38.8878 124.092 38.2173 123.018 37.1411 122.769C36.065 122.52 34.9907 123.191 34.7418 124.267L38.6388 125.168ZM37.5112 112.296C37.2622 113.373 37.9328 114.447 39.0089 114.696C40.0851 114.945 41.1593 114.274 41.4083 113.198L37.5112 112.296ZM44.1777 101.228C44.4267 100.152 43.7561 99.0774 42.68 98.8284C41.6038 98.5794 40.5296 99.25 40.2807 100.326L44.1777 101.228ZM43.0501 88.3559C42.8011 89.432 43.4717 90.5062 44.5478 90.7552C45.624 91.0042 46.6982 90.3336 46.9472 89.2575L43.0501 88.3559ZM49.7166 77.2872C49.9656 76.2111 49.295 75.1369 48.2189 74.8879C47.1427 74.6389 46.0685 75.3095 45.8195 76.3856L49.7166 77.2872ZM48.589 64.4154C48.34 65.4915 49.0106 66.5657 50.0867 66.8147C51.1628 67.0637 52.2371 66.3931 52.486 65.317L48.589 64.4154ZM55.2555 53.3467C55.5045 52.2706 54.8339 51.1964 53.7578 50.9474C52.6816 50.6984 51.6074 51.369 51.3584 52.4451L55.2555 53.3467ZM54.1279 40.4748C53.8789 41.551 54.5494 42.6252 55.6256 42.8742C56.7017 43.1231 57.7759 42.4526 58.0249 41.3765L54.1279 40.4748ZM60.7944 29.4062C61.0433 28.3301 60.3728 27.2558 59.2966 27.0069C58.2205 26.7579 57.1463 27.4284 56.8973 28.5046L60.7944 29.4062ZM59.6668 16.5343C59.4178 17.6104 60.0883 18.6847 61.1645 18.9336C62.2406 19.1826 63.3148 18.5121 63.5638 17.4359L59.6668 16.5343ZM4.0208 274.797L5.40552 268.811L1.50846 267.91L0.123736 273.895L4.0208 274.797ZM8.17496 256.841L10.9444 244.871L7.04734 243.969L4.2779 255.94L8.17496 256.841ZM13.7138 232.901L16.4833 220.93L12.5862 220.029L9.81678 231.999L13.7138 232.901ZM19.2527 208.96L22.0222 196.99L18.1251 196.088L15.3557 208.058L19.2527 208.96ZM24.7916 185.02L27.5611 173.049L23.664 172.148L20.8946 184.118L24.7916 185.02ZM30.3305 161.079L33.0999 149.109L29.2029 148.207L26.4334 160.177L30.3305 161.079ZM35.8694 137.139L38.6388 125.168L34.7418 124.267L31.9723 136.237L35.8694 137.139ZM41.4083 113.198L44.1777 101.228L40.2807 100.326L37.5112 112.296L41.4083 113.198ZM46.9472 89.2575L49.7166 77.2872L45.8195 76.3856L43.0501 88.3559L46.9472 89.2575ZM52.486 65.317L55.2555 53.3467L51.3584 52.4451L48.589 64.4154L52.486 65.317ZM58.0249 41.3765L60.7944 29.4062L56.8973 28.5046L54.1279 40.4748L58.0249 41.3765ZM63.5638 17.4359L64.9485 11.4508L61.0515 10.5492L59.6668 16.5343L63.5638 17.4359Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1etrnsp\",\"data-framer-name\":\"H\\xe4ufige Fragen\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-89v93h\",\"data-styles-preset\":\"bYTF0mB4o\",children:\"Hast Du noch offene Fragen?\"})}),className:\"framer-1u98d1t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-adqnmc\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px, 9720px)`,y:(componentViewport?.y||0)+0+9437.15+60+97.5+0+0},HBF66IbWr:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px, 9720px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px), 9720px)`,y:(componentViewport?.y||0)+0+7879.15+85+97.5+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13x00y-container\",nodeId:\"fl08w1G5G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HBF66IbWr:{variant:\"u2YJfUCLp\"}},children:/*#__PURE__*/_jsx(FAQAkkordeon,{height:\"100%\",hFWTiskGo:\"Bringt mir eine neue Website \\xfcberhaupt wirklich mehr Kunden?\",id:\"fl08w1G5G\",layoutId:\"fl08w1G5G\",OjMK8RFig:\"Die kurze Antwort: Ja \u2013 wenn sie richtig gemacht ist.\\nDie meisten Websites sehen \u201Eokay\u201C aus, funktionieren aber nicht psychologisch. Sie zeigen nicht klar, was du machst, schaffen kein Vertrauen und \\xfcberzeugen niemanden.\\nUnsere Webseiten dagegen sind nicht nur sch\\xf6n \u2013 sie sind gezielt daf\\xfcr gebaut, Anfragen zu generieren: durch klare Struktur, mobiloptimierte Technik, \\xfcberzeugende Texte und vor allem: durch Sichtbarkeit bei Google.\\nWenn du aktuell kaum \\xfcber deine Website gefunden wirst, dann verlierst du t\\xe4glich potenzielle Kunden \u2013 und eine neue Website kann genau das \\xe4ndern.\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"HG1G_w7tC\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px, 9720px)`,y:(componentViewport?.y||0)+0+9437.15+60+97.5+0+92},HBF66IbWr:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px, 9720px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px), 9720px)`,y:(componentViewport?.y||0)+0+7879.15+85+97.5+0+92,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5y34gn-container\",nodeId:\"ZHrrwbw_b\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQAkkordeon,{height:\"100%\",hFWTiskGo:\"Klingt alles gut \u2013 aber ist mir das nicht zu teuer?\",id:\"ZHrrwbw_b\",layoutId:\"ZHrrwbw_b\",OjMK8RFig:\"Die Frage ist verst\\xe4ndlich \u2013 aber genau hier liegt einer unserer gro\\xdfen Vorteile:\\nWir sind kein \\xfcberdimensionierter Agentur-Apparat mit 12 Zwischeninstanzen, internen Meetings ohne Ende und teuren Overhead-Kosten.\\n\\nUnser Team ist schlank, fokussiert und arbeitet effizient \u2013 deshalb k\\xf6nnen wir Webseiten in echter Qualit\\xe4t anbieten, ohne Agenturpreise zu verlangen.\\n\\nUnsere Kunden sagen oft:\\n\\n\u201EIch h\\xe4tte nicht gedacht, dass das in dem Budget m\\xf6glich ist \u2013 und trotzdem so gut aussieht.\u201C\\n\\nGanz ehrlich: Wir bieten faire, ehrliche Preise \u2013 abgestimmt auf deinen Bedarf.\\nWenn du nur eine kleine, aber effektive Seite brauchst, bekommst du auch genau das. Und wenn\u2019s mehr sein soll, liefern wir skalierbar nach oben mit.\\n\\nUnd: Du bekommst vorher eine kostenlose Designprobe, damit du siehst, was du bekommst \u2013 bevor du entscheidest.\\n\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"HG1G_w7tC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px, 9720px)`,y:(componentViewport?.y||0)+0+9437.15+60+97.5+0+184},HBF66IbWr:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px, 9720px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px), 9720px)`,y:(componentViewport?.y||0)+0+7879.15+85+97.5+0+184,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11py7oe-container\",nodeId:\"g4LRxPtSe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQAkkordeon,{height:\"100%\",hFWTiskGo:\"Ich habe keine Zeit f\\xfcr so ein Projekt. Wie viel Aufwand ist das wirklich f\\xfcr mich?\",id:\"g4LRxPtSe\",layoutId:\"g4LRxPtSe\",OjMK8RFig:\"Weniger als du denkst.\\nWir \\xfcbernehmen den kompletten Aufbau \u2013 von der Strategie \\xfcber das Design bis zur Umsetzung. Du gibst nur Feedback, wo es n\\xf6tig ist.\\nWir strukturieren den Prozess so, dass du maximal 2\u20133 kurze Abstimmungen brauchst, den Rest regeln wir im Hintergrund.\\nDas hei\\xdft: Du beh\\xe4ltst die Kontrolle \u2013 aber sparst dir Stress, Technik und Kopfzerbrechen.\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"HG1G_w7tC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px, 9720px)`,y:(componentViewport?.y||0)+0+9437.15+60+97.5+0+276},HBF66IbWr:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px, 9720px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px), 9720px)`,y:(componentViewport?.y||0)+0+7879.15+85+97.5+0+276,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pmhqx3-container\",nodeId:\"No0zay13i\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQAkkordeon,{height:\"100%\",hFWTiskGo:\"Was, wenn mir das Ergebnis am Ende doch nicht gef\\xe4llt?\",id:\"No0zay13i\",layoutId:\"No0zay13i\",OjMK8RFig:\"Genau deswegen gibt\u2019s bei uns die kostenlose Designprobe vorab.\\nBevor du irgendetwas zahlst, zeigen wir dir, wie dein neuer Auftritt aussehen kann. Wenn du sagst: \u201EDas ist\u2019s nicht\u201C \u2013 gehst du einfach. Ohne Verpflichtung.\\nAber ehrlicherweise: \\xdcber 90\u202F% der Interessenten sagen nach dem Probedesign: \u201EDas ist besser als alles, was ich bisher hatte.\u201C\\nWeil wir nicht einfach loslegen, sondern zuh\\xf6ren \u2013 und zielgenau umsetzen.\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"HG1G_w7tC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px, 9720px)`,y:(componentViewport?.y||0)+0+9437.15+60+97.5+0+368},HBF66IbWr:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px, 9720px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px), 9720px)`,y:(componentViewport?.y||0)+0+7879.15+85+97.5+0+368,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1egvjn2-container\",nodeId:\"GKU0bwyuE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQAkkordeon,{height:\"100%\",hFWTiskGo:\"Ich wurde schon mal entt\\xe4uscht \u2013 warum sollte ich diesmal Vertrauen haben?\",id:\"GKU0bwyuE\",layoutId:\"GKU0bwyuE\",OjMK8RFig:\"Diese Angst h\\xf6ren wir oft \u2013 und sie ist absolut verst\\xe4ndlich.\\nViele Anbieter versprechen viel, liefern aber 08/15-L\\xf6sungen oder verschwinden nach dem Go-Live.\\nWir ticken anders: Bei uns bekommst du einen festen Ansprechpartner, echte Erreichbarkeit und klare Schritte. Kein Baukasten, kein anonymer Support, keine Ausreden.\\nUnd: Du zahlst nichts, bevor du siehst, was du bekommst. Wir liefern erst \u2013 du entscheidest danach.\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"HG1G_w7tC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px, 9720px)`,y:(componentViewport?.y||0)+0+9437.15+60+97.5+0+460},HBF66IbWr:{width:`min(min(${componentViewport?.width||\"100vw\"}, 810px) - 40px, 9720px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px), 9720px)`,y:(componentViewport?.y||0)+0+7879.15+85+97.5+0+460,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vx8pij-container\",nodeId:\"rM0JKnj0A\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQAkkordeon,{height:\"100%\",hFWTiskGo:\"Was bringt mir das alles, wenn ich trotzdem nicht bei Google gefunden werde?\",id:\"rM0JKnj0A\",layoutId:\"rM0JKnj0A\",OjMK8RFig:\"Das ist einer der h\\xe4ufigsten Gr\\xfcnde, warum viele \\xfcberhaupt \\xfcber eine neue Website nachdenken \u2013 und v\\xf6llig zu Recht.\\n\\nDeshalb achten wir bei jedem Projekt darauf, dass deine Seite technisch sauber, schnell ladend und strukturell SEO-tauglich aufgebaut ist.\\nWir kombinieren das mit zielgerichteten Texten, die Google versteht \u2013 und deine Kunden auch.\\n\\nNat\\xfcrlich h\\xe4ngt das Google-Ranking immer auch von Faktoren ab, die au\\xdferhalb der Webseite liegen (z.\u202FB. Wettbewerbsumfeld, Suchvolumen, Standort).\\nAber:\\nUnsere Erfahrung zeigt, dass viele Kunden schon durch eine gut strukturierte, SEO-optimierte Website sp\\xfcrbar mehr Sichtbarkeit und Anfragen erreichen.\\n\\nWenn du heute kaum \\xfcber Google gefunden wirst, ist der Schritt zu einer professionellen Website oft genau der Hebel, der den Unterschied macht.\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"HG1G_w7tC\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X993oMbJm\"},implicitPathVariables:undefined},{href:{webPageId:\"X993oMbJm\"},implicitPathVariables:undefined},{href:{webPageId:\"X993oMbJm\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+9437.15+60+689.5},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+7879.15+85+689.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tax6xs-container\",nodeId:\"gyX6Bkzad\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{RkUa_hs15:resolvedLinks7[1],variant:\"n7iHUl9pK\"},HBF66IbWr:{RkUa_hs15:resolvedLinks7[2],variant:\"n7iHUl9pK\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"gyX6Bkzad\",layoutId:\"gyX6Bkzad\",RkUa_hs15:resolvedLinks7[0],variant:\"AgoJDvBr1\",width:\"100%\",X_w4zKkSC:\"Beratungstermin buchen\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ie7d\",\"data-framer-name\":\"CTA Banner\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l4efo4\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4lw0gl\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qdpgqf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-89v93h\",\"data-styles-preset\":\"bYTF0mB4o\",style:{\"--framer-text-alignment\":\"left\"},children:\"Du bist fast da \u2013 jetzt fehlt nur noch der wichtigste Klick\"})}),className:\"framer-1ghmmro\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10cj76e\",\"data-styles-preset\":\"JB27lq8r8\",style:{\"--framer-text-color\":\"var(--token-745de703-8513-4de5-a1f9-528ee50d471a, rgb(255, 255, 255))\"},children:[\"Du hast dir gerade alles angesehen.\",/*#__PURE__*/_jsx(\"br\",{}),\"Du wei\\xdft, wie wichtig eine starke Website f\\xfcr deinen Erfolg ist.\",/*#__PURE__*/_jsx(\"br\",{}),\"Jetzt geht\u2019s nur noch um den n\\xe4chsten Schritt: \",/*#__PURE__*/_jsx(\"strong\",{children:\"Dein pers\\xf6nliches Design \u2013 kostenlos und unverbindlich.\"})]})}),className:\"framer-3mehwc\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{y:(componentViewport?.y||0)+0+10316.65+60+60.25+0+219.5},HBF66IbWr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+8808.65+85+60.25+0+219.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t59bgk-container\",nodeId:\"Jn9W9_s80\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonWeiss,{height:\"100%\",id:\"Jn9W9_s80\",layoutId:\"Jn9W9_s80\",WaW8zt6or:\"Jetzt mein Designvorschlag anfordern\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4h39ak\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1955,intrinsicWidth:2100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10316.65+60+0+20),pixelHeight:1955,pixelWidth:2100,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(${componentViewport?.width||\"100vw\"}, 810px) - 60px, 1px) - 80px) / 2 - 10px, 1px) + 126.087px)`,src:\"https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png\",srcSet:\"https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png?scale-down-to=512 512w,https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png 2100w\"}},HBF66IbWr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1955,intrinsicWidth:2100,pixelHeight:1955,pixelWidth:2100,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 810px) + 46.087px)`,src:\"https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png\",srcSet:\"https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png?scale-down-to=512 512w,https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png 2100w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1955,intrinsicWidth:2100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8808.65+85+0+20),pixelHeight:1955,pixelWidth:2100,positionX:\"center\",positionY:\"center\",sizes:`max((max(min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px), 1px) - 80px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png\",srcSet:\"https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png?scale-down-to=512 512w,https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/w8sfGardT1O4WsSi2Ih5fUGhDzI.png 2100w\"},className:\"framer-1gmw6vu\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{width:`min(${componentViewport?.width||\"100vw\"}, 1400px)`,y:(componentViewport?.y||0)+0+10786.65},HBF66IbWr:{width:`min(${componentViewport?.width||\"100vw\"}, 1400px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1400px)`,y:(componentViewport?.y||0)+0+9303.65,children:/*#__PURE__*/_jsx(Container,{className:\"framer-169j0uk-container\",nodeId:\"aYB18wzeH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fJdIJpTB9:{variant:\"RZcb8ZyXu\"},HBF66IbWr:{variant:\"Br16HJrrV\"}},children:/*#__PURE__*/_jsx(FuZeile,{height:\"100%\",id:\"aYB18wzeH\",layoutId:\"aYB18wzeH\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"FZPE2Lm5r\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HHlKa.framer-lux5qc, .framer-HHlKa .framer-lux5qc { display: block; }\",\".framer-HHlKa.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-2b2d78ff-29d4-475a-b2ee-6217f53b7a02, #0c0421); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-HHlKa .framer-1fno8y5-container { flex: none; height: auto; max-width: 1400px; position: relative; width: 90%; z-index: 5; }\",\".framer-HHlKa .framer-19gyml5-container { bottom: 160px; flex: none; height: auto; position: fixed; right: 20px; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 5; }\",\".framer-HHlKa .framer-yj6lmu { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-HHlKa .framer-1d2q4ja { -webkit-filter: blur(100px); background: linear-gradient(132.19765868774704deg, var(--token-6c34000b-736a-4790-ac1a-92082de07c15, #855cf3) 0%, var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228)) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 1806px; filter: blur(100px); flex: none; height: 769px; opacity: 0.25; position: absolute; right: -116px; width: 680px; z-index: 0; }\",\".framer-HHlKa .framer-l1wszg { -webkit-filter: blur(100px); background: linear-gradient(132.19765868774704deg, var(--token-6c34000b-736a-4790-ac1a-92082de07c15, #855cf3) 0%, var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228)) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(100px); flex: none; height: 990px; left: 0px; opacity: 0.4; position: absolute; top: calc(52.661018343341304% - 990px / 2); width: 670px; z-index: 0; }\",\".framer-HHlKa .framer-m4ondg { -webkit-filter: blur(100px); background: linear-gradient(132.19765868774704deg, var(--token-6c34000b-736a-4790-ac1a-92082de07c15, #855cf3) 0%, var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228)) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 3528px; filter: blur(100px); flex: none; height: 896px; opacity: 0.35; position: absolute; right: -140px; width: 841px; z-index: 0; }\",\".framer-HHlKa .framer-11pq0bz { -webkit-filter: blur(100px); aspect-ratio: 0.875 / 1; background: linear-gradient(132.19765868774704deg, var(--token-6c34000b-736a-4790-ac1a-92082de07c15, #855cf3) 0%, var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228)) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 1178px); left: 57%; opacity: 0.2; position: absolute; top: 4754px; transform: translateX(-50%); width: 1031px; z-index: 0; }\",\".framer-HHlKa .framer-1htmam6 { -webkit-filter: blur(100px); aspect-ratio: 0.875 / 1; background: linear-gradient(132.19765868774704deg, var(--token-6c34000b-736a-4790-ac1a-92082de07c15, #855cf3) 0%, var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228)) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 670px); left: 400px; opacity: 0.6; position: absolute; top: 3200px; width: 586px; z-index: 0; }\",\".framer-HHlKa .framer-1s4otvf { -webkit-filter: blur(100px); aspect-ratio: 0.875 / 1; background: linear-gradient(132.19765868774704deg, var(--token-6c34000b-736a-4790-ac1a-92082de07c15, #855cf3) 0%, var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228)) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 999px); opacity: 0.4; position: absolute; right: -68px; top: 1671px; width: 874px; z-index: 0; }\",\".framer-HHlKa .framer-16uy5kx { -webkit-filter: blur(100px); aspect-ratio: 0.875 / 1; background: linear-gradient(132.19765868774704deg, var(--token-6c34000b-736a-4790-ac1a-92082de07c15, #855cf3) 0%, var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228)) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 935px); left: -109px; opacity: 0.5; position: absolute; top: 191px; width: 818px; z-index: 0; }\",\".framer-HHlKa .framer-x0gt5a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-12keyfl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-HHlKa .framer-8xa6qf-container, .framer-HHlKa .framer-4t9hhz-container, .framer-HHlKa .framer-qhbh02-container, .framer-HHlKa .framer-z8w77g-container, .framer-HHlKa .framer-67343l-container, .framer-HHlKa .framer-gwzm6d-container, .framer-HHlKa .framer-1dn3dd6-container, .framer-HHlKa .framer-jwvi1a-container, .framer-HHlKa .framer-1f7q6oq-container, .framer-HHlKa .framer-94h8px-container, .framer-HHlKa .framer-8nnnnh-container, .framer-HHlKa .framer-1mh8kdy-container, .framer-HHlKa .framer-7gfdoh-container, .framer-HHlKa .framer-16g9ev2-container, .framer-HHlKa .framer-tax6xs-container, .framer-HHlKa .framer-t59bgk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HHlKa .framer-1p8deew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-16pakve, .framer-HHlKa .framer-4m38wm, .framer-HHlKa .framer-w68m1z, .framer-HHlKa .framer-1597m3k, .framer-HHlKa .framer-1un6w5e, .framer-HHlKa .framer-251o71, .framer-HHlKa .framer-1wqdctb, .framer-HHlKa .framer-kwdl9, .framer-HHlKa .framer-18syc41, .framer-HHlKa .framer-bkxkrg, .framer-HHlKa .framer-1hd3yic, .framer-HHlKa .framer-ehc2sp, .framer-HHlKa .framer-1wd0383, .framer-HHlKa .framer-qij6qs, .framer-HHlKa .framer-1ttfuyk, .framer-HHlKa .framer-19aabx0, .framer-HHlKa .framer-5dj41k, .framer-HHlKa .framer-rfn2u9, .framer-HHlKa .framer-jcaouc, .framer-HHlKa .framer-ntrs08, .framer-HHlKa .framer-okn1mp, .framer-HHlKa .framer-ggn7ii, .framer-HHlKa .framer-1gbmiyg, .framer-HHlKa .framer-1bx6trb, .framer-HHlKa .framer-at9v7b, .framer-HHlKa .framer-wdpp2j, .framer-HHlKa .framer-1iwlxgq, .framer-HHlKa .framer-1hkogk4, .framer-HHlKa .framer-n2c1bj, .framer-HHlKa .framer-1mronpt, .framer-HHlKa .framer-1u98d1t, .framer-HHlKa .framer-1ghmmro, .framer-HHlKa .framer-3mehwc { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HHlKa .framer-1xxhxz8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-run75n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-1k0jvi1-container, .framer-HHlKa .framer-1o8w1vf-container { flex: none; height: 150px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-igp5z8, .framer-HHlKa .framer-1mrv2wh, .framer-HHlKa .framer-1a0wfua, .framer-HHlKa .framer-1a013d0, .framer-HHlKa .framer-62sjyn, .framer-HHlKa .framer-1nas0ok, .framer-HHlKa .framer-1lnlsmx, .framer-HHlKa .framer-vepj80, .framer-HHlKa .framer-ypoo2q, .framer-HHlKa .framer-wjv2md, .framer-HHlKa .framer-ik90nz, .framer-HHlKa .framer-9ixs4u, .framer-HHlKa .framer-8d8scx, .framer-HHlKa .framer-1j1rgyu, .framer-HHlKa .framer-mhr7r8, .framer-HHlKa .framer-1qcfsj7, .framer-HHlKa .framer-9hh2bh, .framer-HHlKa .framer-29nlxl { aspect-ratio: 1.75 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 150px); overflow: visible; position: relative; width: 263px; }\",\".framer-HHlKa .framer-6fl5o3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-yotv46-container, .framer-HHlKa .framer-8ijrx7-container { flex: none; height: 250px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-16gynqr, .framer-HHlKa .framer-1vl45c7 { aspect-ratio: 1.75 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 251px); overflow: visible; position: relative; width: 438px; }\",\".framer-HHlKa .framer-ktpfdu, .framer-HHlKa .framer-mi4tm9, .framer-HHlKa .framer-6s6fuv, .framer-HHlKa .framer-1ndi2yq, .framer-HHlKa .framer-3hn3xw, .framer-HHlKa .framer-ge46n4 { aspect-ratio: 1.75 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 250px); overflow: visible; position: relative; width: 438px; }\",\".framer-HHlKa .framer-16s3b1n, .framer-HHlKa .framer-1s7zee5 { aspect-ratio: 1.75 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 252px); overflow: visible; position: relative; width: 440px; }\",\".framer-HHlKa .framer-zc1qh4, .framer-HHlKa .framer-1artri1, .framer-HHlKa .framer-192rh9z, .framer-HHlKa .framer-127wcbc, .framer-HHlKa .framer-147zqvo, .framer-HHlKa .framer-1yu0iku { aspect-ratio: 1.75 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 251px); overflow: visible; position: relative; width: 440px; }\",\".framer-HHlKa .framer-lzgwqx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 125px 0px 85px 0px; position: relative; width: 90%; }\",\".framer-HHlKa .framer-b9za5f, .framer-HHlKa .framer-f615b9 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1020px; word-break: break-word; word-wrap: break-word; }\",\".framer-HHlKa .framer-1bac7jn { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(105px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-12s7x3e { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; align-self: start; backdrop-filter: blur(20px); background: linear-gradient(142deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.11) 23.55011261261261%, rgba(77, 67, 67, 0.1) 48.2861768018018%, rgba(255, 255, 255, 0.08) 82.30249304914446%, rgba(255, 255, 255, 0.05) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; grid-column: auto / span 2; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HHlKa .framer-fo9dr8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 334px; overflow: hidden; padding: 0px; position: relative; width: 30%; }\",\".framer-HHlKa .framer-1uo0erl { aspect-ratio: 1.5596248325145154 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 335px); left: -197px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-HHlKa .framer-4ex7jz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 60px 20px 0px; position: relative; width: 1px; }\",\".framer-HHlKa .framer-u4zqem, .framer-HHlKa .framer-1z7u5p { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; align-self: start; backdrop-filter: blur(20px); background: linear-gradient(194deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.11) 23.55011261261261%, rgba(77, 67, 67, 0.1) 48.2861768018018%, rgba(255, 255, 255, 0.08) 82.30249304914446%, rgba(255, 255, 255, 0.05) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HHlKa .framer-4ceqsa { aspect-ratio: 1.241637323943662 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 301px); position: relative; width: 373px; }\",\".framer-HHlKa .framer-q1ohsf { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 85%; word-break: break-word; word-wrap: break-word; }\",\".framer-HHlKa .framer-1p4msh8 { aspect-ratio: 1.2420774647887325 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 301px); position: relative; width: 373px; }\",\".framer-HHlKa .framer-k6mpmx, .framer-HHlKa .framer-10rern8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 85px 0px 85px 0px; position: relative; width: 90%; }\",\".framer-HHlKa .framer-1s8wi4e { align-self: stretch; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-HHlKa .framer-3y40z0, .framer-HHlKa .framer-14qzbd { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; padding: 40px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-HHlKa .framer-1giujgp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-iuiecw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-1mhvajh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HHlKa .framer-1737br2, .framer-HHlKa .framer-kc2g5l, .framer-HHlKa .framer-169im9w, .framer-HHlKa .framer-1etrnsp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 85px 0px 85px 0px; position: relative; width: 90%; }\",\".framer-HHlKa .framer-sfig11, .framer-HHlKa .framer-mse6fe, .framer-HHlKa .framer-1w2oonn, .framer-HHlKa .framer-qdpgqf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-jk8ocg { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-1lvw1qw-container, .framer-HHlKa .framer-1wzzeb1-container, .framer-HHlKa .framer-w4o5l8-container, .framer-HHlKa .framer-18hwgi3-container, .framer-HHlKa .framer-1dtmplg-container, .framer-HHlKa .framer-1a9q0hq-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-HHlKa .framer-1qiex1k, .framer-HHlKa .framer-10pfpi7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-pyj24g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-1y48gsi-container, .framer-HHlKa .framer-12jzjsu-container, .framer-HHlKa .framer-s9t0bp-container, .framer-HHlKa .framer-1iitn56-container, .framer-HHlKa .framer-ag95yi-container, .framer-HHlKa .framer-1jc0jaz-container, .framer-HHlKa .framer-17sydeo-container, .framer-HHlKa .framer-1m04m2i-container, .framer-HHlKa .framer-xpeprp-container, .framer-HHlKa .framer-q0w8ja-container, .framer-HHlKa .framer-mmi0nm-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-HHlKa .framer-17o34va { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-16hio62 { 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: min-content; }\",\".framer-HHlKa .framer-11xks1w { align-self: stretch; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-HHlKa .framer-1e017n9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-715dyu { -webkit-mask: linear-gradient(180deg, #000000 55.00000000000001%, rgba(0,0,0,0) 95%) add; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 620px; justify-content: center; mask: linear-gradient(180deg, #000000 55.00000000000001%, rgba(0,0,0,0) 95%) add; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-1i2uh1c, .framer-HHlKa .framer-rmjqnc, .framer-HHlKa .framer-4sqfsc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-HHlKa .framer-1neakoc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-HHlKa .framer-17ka6cy { aspect-ratio: 3.4482758620689657 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 172px; }\",\".framer-HHlKa .framer-qma172, .framer-HHlKa .framer-81tk7n { aspect-ratio: 2.450980392156863 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 123px; }\",\".framer-HHlKa .framer-1s3vsy { aspect-ratio: 2.403846153846154 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 120px; }\",\".framer-HHlKa .framer-1ehumbz { display: grid; flex: none; gap: 40px; grid-auto-rows: 40px; grid-template-columns: repeat(4, minmax(105px, 1fr)); grid-template-rows: repeat(16, 40px); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-18njxmh { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; align-self: start; backdrop-filter: blur(20px); background: linear-gradient(213deg, rgba(255, 255, 255, 0.2) -8%, rgba(255, 255, 255, 0.11) 23.55011261261261%, rgba(77, 67, 67, 0.1) 65%, rgba(255, 255, 255, 0.08) 85%, rgba(255, 255, 255, 0.05) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; grid-column: auto / span 4; grid-row: auto / span 6; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HHlKa .framer-1o9pjrq { -webkit-mask: linear-gradient(90deg, #000000 84.43482545045046%, rgba(0,0,0,0) 100%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; mask: linear-gradient(90deg, #000000 84.43482545045046%, rgba(0,0,0,0) 100%) add; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-HHlKa .framer-q9hc0i { aspect-ratio: 1.4372710622710623 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 632px); }\",\".framer-HHlKa .framer-ixcdcy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 1px; }\",\".framer-HHlKa .framer-1r8bzjd { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-um05ek, .framer-HHlKa .framer-ibnmmg, .framer-HHlKa .framer-jrcfls, .framer-HHlKa .framer-315riq { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-ikn9js { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; align-self: start; backdrop-filter: blur(20px); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-column: auto / span 2; grid-row: auto / span 6; height: 100%; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HHlKa .framer-6mb6fx, .framer-HHlKa .framer-1kmbd0y { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-HHlKa .framer-mrd5lc { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; backdrop-filter: blur(20px); background-color: #000000; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: flex-end; left: 0px; opacity: 0.7; overflow: hidden; padding: 40px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-HHlKa .framer-1eipy7v { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; align-self: start; backdrop-filter: blur(20px); background: linear-gradient(142deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.11) 23.55011261261261%, rgba(77, 67, 67, 0.1) 48.2861768018018%, rgba(255, 255, 255, 0.08) 82.30249304914446%, rgba(255, 255, 255, 0.05) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; grid-row: auto / span 3; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HHlKa .framer-11mduki, .framer-HHlKa .framer-h8bw7z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 20px; position: relative; width: 60%; }\",\".framer-HHlKa .framer-70wv7e { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HHlKa .framer-1vcss93 { 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-HHlKa .framer-uyowx1 { aspect-ratio: 1.3012295081967213 / 1; 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: 1px; position: relative; width: var(--framer-aspect-ratio-supported, 260px); }\",\".framer-HHlKa .framer-1xbt0vy { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; align-self: start; backdrop-filter: blur(20px); background: linear-gradient(142deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.11) 23.55011261261261%, rgba(77, 67, 67, 0.1) 48.2861768018018%, rgba(255, 255, 255, 0.08) 82.30249304914446%, rgba(255, 255, 255, 0.05) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; grid-column: auto / span 2; grid-row: auto / span 3; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HHlKa .framer-36dsi7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 206px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HHlKa .framer-1q4e1ru { aspect-ratio: 1.3030927835051547 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 180px); left: -7px; position: absolute; right: -29px; top: 50%; transform: translateY(-50%); z-index: 1; }\",\".framer-HHlKa .framer-z2rebw, .framer-HHlKa .framer-1t6mvfe, .framer-HHlKa .framer-1ad9e6 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; align-self: start; backdrop-filter: blur(20px); background: linear-gradient(142deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.11) 23.55011261261261%, rgba(77, 67, 67, 0.1) 48.2861768018018%, rgba(255, 255, 255, 0.08) 82.30249304914446%, rgba(255, 255, 255, 0.05) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-row: auto / span 4; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HHlKa .framer-1812wua { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-1i9usrx { aspect-ratio: 1.4871134020618557 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 135px); position: relative; width: 100%; }\",\".framer-HHlKa .framer-1pqqsxv { aspect-ratio: 1.486254295532646 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 143px); position: relative; width: 212px; }\",\".framer-HHlKa .framer-1sed6zu { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; align-self: start; backdrop-filter: blur(20px); background: linear-gradient(142deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.11) 23.55011261261261%, rgba(77, 67, 67, 0.1) 48.2861768018018%, rgba(255, 255, 255, 0.08) 82.30249304914446%, rgba(255, 255, 255, 0.05) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; grid-row: auto / span 4; height: 100%; justify-content: space-between; justify-self: start; overflow: hidden; padding: 40px 10px 0px 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HHlKa .framer-oarvdz { aspect-ratio: 1.3575331772053083 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 153px); position: relative; width: 207px; }\",\".framer-HHlKa .framer-yzwtwv { aspect-ratio: 1.4883920894239038 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 143px); position: relative; width: 212px; }\",\".framer-HHlKa .framer-1a9hfwe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 780px; justify-content: center; max-width: 1400px; overflow: hidden; padding: 85px 0px 85px 0px; position: relative; width: 90%; }\",\".framer-HHlKa .framer-16lgxt0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; padding: 40px 0px 40px 0px; position: relative; width: 45%; }\",\".framer-HHlKa .framer-11c4gzd { --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-HHlKa .framer-88bfmm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-f8hc2h, .framer-HHlKa .framer-v83ekk, .framer-HHlKa .framer-lsivd8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-HHlKa .framer-bzgp0r, .framer-HHlKa .framer-1jhsjth, .framer-HHlKa .framer-1wlynoa { align-content: center; align-items: center; background: linear-gradient(148deg, var(--token-6c34000b-736a-4790-ac1a-92082de07c15, #855cf3) 0%, var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, rgb(164, 148, 228)) 100%); border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 38px; justify-content: center; padding: 0px; position: relative; width: 38px; }\",\".framer-HHlKa .framer-1isr7xd-container, .framer-HHlKa .framer-el26ff-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-HHlKa .framer-qlnkmu, .framer-HHlKa .framer-l7bd1z, .framer-HHlKa .framer-6urf6c, .framer-HHlKa .framer-11mlz6r, .framer-HHlKa .framer-dl63tf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HHlKa .framer-vy2wl6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-HHlKa .framer-1id2f06 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; padding: 40px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-HHlKa .framer-rhjget { aspect-ratio: 1.1555555555555554 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 450px); overflow: visible; position: relative; width: 520px; }\",\".framer-HHlKa .framer-1ks844s { --border-bottom-width: 2px; --border-color: var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, #a494e4); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background: linear-gradient(123deg, var(--token-62cb6ac7-17ae-43db-9b25-880569bf951d, #a494e4) -16%, var(--token-6c34000b-736a-4790-ac1a-92082de07c15, rgb(133, 92, 243)) 110.00000000000001%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 60px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; left: -35px; overflow: visible; padding: 20px; position: absolute; width: min-content; z-index: 1; }\",\".framer-HHlKa .framer-1sd6qiu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HHlKa .framer-xxp6xk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HHlKa .framer-1tjqfco { aspect-ratio: 1.1251758087201125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); opacity: 0.3; overflow: visible; position: relative; width: 70px; }\",\".framer-HHlKa .framer-15zbgf7 { aspect-ratio: 0.2775800711743772 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 99px); left: 171px; position: absolute; top: -99px; width: 28px; z-index: 1; }\",\".framer-HHlKa .framer-adqnmc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-13x00y-container, .framer-HHlKa .framer-5y34gn-container, .framer-HHlKa .framer-11py7oe-container, .framer-HHlKa .framer-1pmhqx3-container, .framer-HHlKa .framer-1egvjn2-container, .framer-HHlKa .framer-vx8pij-container { flex: none; height: auto; max-width: 9720px; position: relative; width: 100%; }\",\".framer-HHlKa .framer-14ie7d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 85px 0px 0px 0px; position: relative; width: 90%; }\",\".framer-HHlKa .framer-1l4efo4 { align-content: center; align-items: center; background: linear-gradient(0deg, #a494ef 0%, rgb(128, 84, 244) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HHlKa .framer-4lw0gl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-HHlKa .framer-4h39ak { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-HHlKa .framer-1gmw6vu { aspect-ratio: 1.0741687979539642 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 457px); left: 0px; position: absolute; right: 0px; top: 20px; z-index: 1; }\",\".framer-HHlKa .framer-169j0uk-container { flex: none; height: auto; max-width: 1400px; position: relative; width: 90%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HHlKa.framer-72rtr7, .framer-HHlKa .framer-x0gt5a, .framer-HHlKa .framer-12keyfl, .framer-HHlKa .framer-1p8deew, .framer-HHlKa .framer-1xxhxz8, .framer-HHlKa .framer-run75n, .framer-HHlKa .framer-6fl5o3, .framer-HHlKa .framer-lzgwqx, .framer-HHlKa .framer-12s7x3e, .framer-HHlKa .framer-fo9dr8, .framer-HHlKa .framer-4ex7jz, .framer-HHlKa .framer-u4zqem, .framer-HHlKa .framer-1z7u5p, .framer-HHlKa .framer-k6mpmx, .framer-HHlKa .framer-3y40z0, .framer-HHlKa .framer-1giujgp, .framer-HHlKa .framer-iuiecw, .framer-HHlKa .framer-1mhvajh, .framer-HHlKa .framer-1737br2, .framer-HHlKa .framer-sfig11, .framer-HHlKa .framer-10rern8, .framer-HHlKa .framer-14qzbd, .framer-HHlKa .framer-1qiex1k, .framer-HHlKa .framer-pyj24g, .framer-HHlKa .framer-17o34va, .framer-HHlKa .framer-16hio62, .framer-HHlKa .framer-kc2g5l, .framer-HHlKa .framer-mse6fe, .framer-HHlKa .framer-1e017n9, .framer-HHlKa .framer-715dyu, .framer-HHlKa .framer-1i2uh1c, .framer-HHlKa .framer-rmjqnc, .framer-HHlKa .framer-4sqfsc, .framer-HHlKa .framer-169im9w, .framer-HHlKa .framer-1w2oonn, .framer-HHlKa .framer-18njxmh, .framer-HHlKa .framer-1o9pjrq, .framer-HHlKa .framer-ixcdcy, .framer-HHlKa .framer-um05ek, .framer-HHlKa .framer-ibnmmg, .framer-HHlKa .framer-jrcfls, .framer-HHlKa .framer-315riq, .framer-HHlKa .framer-ikn9js, .framer-HHlKa .framer-mrd5lc, .framer-HHlKa .framer-1eipy7v, .framer-HHlKa .framer-11mduki, .framer-HHlKa .framer-1vcss93, .framer-HHlKa .framer-1xbt0vy, .framer-HHlKa .framer-h8bw7z, .framer-HHlKa .framer-36dsi7, .framer-HHlKa .framer-z2rebw, .framer-HHlKa .framer-1812wua, .framer-HHlKa .framer-1t6mvfe, .framer-HHlKa .framer-1ad9e6, .framer-HHlKa .framer-1a9hfwe, .framer-HHlKa .framer-16lgxt0, .framer-HHlKa .framer-10pfpi7, .framer-HHlKa .framer-88bfmm, .framer-HHlKa .framer-f8hc2h, .framer-HHlKa .framer-bzgp0r, .framer-HHlKa .framer-v83ekk, .framer-HHlKa .framer-1jhsjth, .framer-HHlKa .framer-lsivd8, .framer-HHlKa .framer-1wlynoa, .framer-HHlKa .framer-1id2f06, .framer-HHlKa .framer-1ks844s, .framer-HHlKa .framer-1sd6qiu, .framer-HHlKa .framer-xxp6xk, .framer-HHlKa .framer-1etrnsp, .framer-HHlKa .framer-adqnmc, .framer-HHlKa .framer-14ie7d, .framer-HHlKa .framer-1l4efo4, .framer-HHlKa .framer-4lw0gl, .framer-HHlKa .framer-qdpgqf, .framer-HHlKa .framer-4h39ak { gap: 0px; } .framer-HHlKa.framer-72rtr7 > *, .framer-HHlKa .framer-u4zqem > *, .framer-HHlKa .framer-1z7u5p > *, .framer-HHlKa .framer-1giujgp > *, .framer-HHlKa .framer-1mhvajh > *, .framer-HHlKa .framer-sfig11 > *, .framer-HHlKa .framer-1qiex1k > *, .framer-HHlKa .framer-16hio62 > *, .framer-HHlKa .framer-mse6fe > *, .framer-HHlKa .framer-1w2oonn > *, .framer-HHlKa .framer-um05ek > *, .framer-HHlKa .framer-ibnmmg > *, .framer-HHlKa .framer-jrcfls > *, .framer-HHlKa .framer-315riq > *, .framer-HHlKa .framer-ikn9js > *, .framer-HHlKa .framer-mrd5lc > *, .framer-HHlKa .framer-11mduki > *, .framer-HHlKa .framer-1vcss93 > *, .framer-HHlKa .framer-h8bw7z > *, .framer-HHlKa .framer-36dsi7 > *, .framer-HHlKa .framer-z2rebw > *, .framer-HHlKa .framer-1t6mvfe > *, .framer-HHlKa .framer-1ad9e6 > *, .framer-HHlKa .framer-10pfpi7 > *, .framer-HHlKa .framer-bzgp0r > *, .framer-HHlKa .framer-1jhsjth > *, .framer-HHlKa .framer-1wlynoa > *, .framer-HHlKa .framer-qdpgqf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HHlKa.framer-72rtr7 > :first-child, .framer-HHlKa .framer-x0gt5a > :first-child, .framer-HHlKa .framer-12keyfl > :first-child, .framer-HHlKa .framer-1p8deew > :first-child, .framer-HHlKa .framer-1xxhxz8 > :first-child, .framer-HHlKa .framer-run75n > :first-child, .framer-HHlKa .framer-6fl5o3 > :first-child, .framer-HHlKa .framer-lzgwqx > :first-child, .framer-HHlKa .framer-4ex7jz > :first-child, .framer-HHlKa .framer-u4zqem > :first-child, .framer-HHlKa .framer-1z7u5p > :first-child, .framer-HHlKa .framer-3y40z0 > :first-child, .framer-HHlKa .framer-1giujgp > :first-child, .framer-HHlKa .framer-iuiecw > :first-child, .framer-HHlKa .framer-1mhvajh > :first-child, .framer-HHlKa .framer-1737br2 > :first-child, .framer-HHlKa .framer-sfig11 > :first-child, .framer-HHlKa .framer-14qzbd > :first-child, .framer-HHlKa .framer-1qiex1k > :first-child, .framer-HHlKa .framer-pyj24g > :first-child, .framer-HHlKa .framer-17o34va > :first-child, .framer-HHlKa .framer-16hio62 > :first-child, .framer-HHlKa .framer-kc2g5l > :first-child, .framer-HHlKa .framer-mse6fe > :first-child, .framer-HHlKa .framer-1e017n9 > :first-child, .framer-HHlKa .framer-1i2uh1c > :first-child, .framer-HHlKa .framer-rmjqnc > :first-child, .framer-HHlKa .framer-4sqfsc > :first-child, .framer-HHlKa .framer-169im9w > :first-child, .framer-HHlKa .framer-1w2oonn > :first-child, .framer-HHlKa .framer-ixcdcy > :first-child, .framer-HHlKa .framer-um05ek > :first-child, .framer-HHlKa .framer-ibnmmg > :first-child, .framer-HHlKa .framer-jrcfls > :first-child, .framer-HHlKa .framer-315riq > :first-child, .framer-HHlKa .framer-ikn9js > :first-child, .framer-HHlKa .framer-mrd5lc > :first-child, .framer-HHlKa .framer-11mduki > :first-child, .framer-HHlKa .framer-1vcss93 > :first-child, .framer-HHlKa .framer-h8bw7z > :first-child, .framer-HHlKa .framer-36dsi7 > :first-child, .framer-HHlKa .framer-z2rebw > :first-child, .framer-HHlKa .framer-1812wua > :first-child, .framer-HHlKa .framer-1t6mvfe > :first-child, .framer-HHlKa .framer-1ad9e6 > :first-child, .framer-HHlKa .framer-16lgxt0 > :first-child, .framer-HHlKa .framer-10pfpi7 > :first-child, .framer-HHlKa .framer-88bfmm > :first-child, .framer-HHlKa .framer-bzgp0r > :first-child, .framer-HHlKa .framer-1jhsjth > :first-child, .framer-HHlKa .framer-1wlynoa > :first-child, .framer-HHlKa .framer-1id2f06 > :first-child, .framer-HHlKa .framer-1sd6qiu > :first-child, .framer-HHlKa .framer-1etrnsp > :first-child, .framer-HHlKa .framer-adqnmc > :first-child, .framer-HHlKa .framer-4lw0gl > :first-child, .framer-HHlKa .framer-qdpgqf > :first-child { margin-top: 0px; } .framer-HHlKa.framer-72rtr7 > :last-child, .framer-HHlKa .framer-x0gt5a > :last-child, .framer-HHlKa .framer-12keyfl > :last-child, .framer-HHlKa .framer-1p8deew > :last-child, .framer-HHlKa .framer-1xxhxz8 > :last-child, .framer-HHlKa .framer-run75n > :last-child, .framer-HHlKa .framer-6fl5o3 > :last-child, .framer-HHlKa .framer-lzgwqx > :last-child, .framer-HHlKa .framer-4ex7jz > :last-child, .framer-HHlKa .framer-u4zqem > :last-child, .framer-HHlKa .framer-1z7u5p > :last-child, .framer-HHlKa .framer-3y40z0 > :last-child, .framer-HHlKa .framer-1giujgp > :last-child, .framer-HHlKa .framer-iuiecw > :last-child, .framer-HHlKa .framer-1mhvajh > :last-child, .framer-HHlKa .framer-1737br2 > :last-child, .framer-HHlKa .framer-sfig11 > :last-child, .framer-HHlKa .framer-14qzbd > :last-child, .framer-HHlKa .framer-1qiex1k > :last-child, .framer-HHlKa .framer-pyj24g > :last-child, .framer-HHlKa .framer-17o34va > :last-child, .framer-HHlKa .framer-16hio62 > :last-child, .framer-HHlKa .framer-kc2g5l > :last-child, .framer-HHlKa .framer-mse6fe > :last-child, .framer-HHlKa .framer-1e017n9 > :last-child, .framer-HHlKa .framer-1i2uh1c > :last-child, .framer-HHlKa .framer-rmjqnc > :last-child, .framer-HHlKa .framer-4sqfsc > :last-child, .framer-HHlKa .framer-169im9w > :last-child, .framer-HHlKa .framer-1w2oonn > :last-child, .framer-HHlKa .framer-ixcdcy > :last-child, .framer-HHlKa .framer-um05ek > :last-child, .framer-HHlKa .framer-ibnmmg > :last-child, .framer-HHlKa .framer-jrcfls > :last-child, .framer-HHlKa .framer-315riq > :last-child, .framer-HHlKa .framer-ikn9js > :last-child, .framer-HHlKa .framer-mrd5lc > :last-child, .framer-HHlKa .framer-11mduki > :last-child, .framer-HHlKa .framer-1vcss93 > :last-child, .framer-HHlKa .framer-h8bw7z > :last-child, .framer-HHlKa .framer-36dsi7 > :last-child, .framer-HHlKa .framer-z2rebw > :last-child, .framer-HHlKa .framer-1812wua > :last-child, .framer-HHlKa .framer-1t6mvfe > :last-child, .framer-HHlKa .framer-1ad9e6 > :last-child, .framer-HHlKa .framer-16lgxt0 > :last-child, .framer-HHlKa .framer-10pfpi7 > :last-child, .framer-HHlKa .framer-88bfmm > :last-child, .framer-HHlKa .framer-bzgp0r > :last-child, .framer-HHlKa .framer-1jhsjth > :last-child, .framer-HHlKa .framer-1wlynoa > :last-child, .framer-HHlKa .framer-1id2f06 > :last-child, .framer-HHlKa .framer-1sd6qiu > :last-child, .framer-HHlKa .framer-1etrnsp > :last-child, .framer-HHlKa .framer-adqnmc > :last-child, .framer-HHlKa .framer-4lw0gl > :last-child, .framer-HHlKa .framer-qdpgqf > :last-child { margin-bottom: 0px; } .framer-HHlKa .framer-x0gt5a > *, .framer-HHlKa .framer-ixcdcy > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-HHlKa .framer-12keyfl > *, .framer-HHlKa .framer-1xxhxz8 > *, .framer-HHlKa .framer-6fl5o3 > *, .framer-HHlKa .framer-lzgwqx > *, .framer-HHlKa .framer-3y40z0 > *, .framer-HHlKa .framer-1737br2 > *, .framer-HHlKa .framer-14qzbd > *, .framer-HHlKa .framer-kc2g5l > *, .framer-HHlKa .framer-169im9w > *, .framer-HHlKa .framer-16lgxt0 > *, .framer-HHlKa .framer-1id2f06 > *, .framer-HHlKa .framer-1etrnsp > *, .framer-HHlKa .framer-4lw0gl > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-HHlKa .framer-1p8deew > *, .framer-HHlKa .framer-iuiecw > *, .framer-HHlKa .framer-17o34va > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-HHlKa .framer-run75n > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-HHlKa .framer-12s7x3e > *, .framer-HHlKa .framer-1ks844s > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-HHlKa .framer-12s7x3e > :first-child, .framer-HHlKa .framer-fo9dr8 > :first-child, .framer-HHlKa .framer-k6mpmx > :first-child, .framer-HHlKa .framer-10rern8 > :first-child, .framer-HHlKa .framer-715dyu > :first-child, .framer-HHlKa .framer-18njxmh > :first-child, .framer-HHlKa .framer-1o9pjrq > :first-child, .framer-HHlKa .framer-1eipy7v > :first-child, .framer-HHlKa .framer-1xbt0vy > :first-child, .framer-HHlKa .framer-1a9hfwe > :first-child, .framer-HHlKa .framer-f8hc2h > :first-child, .framer-HHlKa .framer-v83ekk > :first-child, .framer-HHlKa .framer-lsivd8 > :first-child, .framer-HHlKa .framer-1ks844s > :first-child, .framer-HHlKa .framer-xxp6xk > :first-child, .framer-HHlKa .framer-14ie7d > :first-child, .framer-HHlKa .framer-1l4efo4 > :first-child, .framer-HHlKa .framer-4h39ak > :first-child { margin-left: 0px; } .framer-HHlKa .framer-12s7x3e > :last-child, .framer-HHlKa .framer-fo9dr8 > :last-child, .framer-HHlKa .framer-k6mpmx > :last-child, .framer-HHlKa .framer-10rern8 > :last-child, .framer-HHlKa .framer-715dyu > :last-child, .framer-HHlKa .framer-18njxmh > :last-child, .framer-HHlKa .framer-1o9pjrq > :last-child, .framer-HHlKa .framer-1eipy7v > :last-child, .framer-HHlKa .framer-1xbt0vy > :last-child, .framer-HHlKa .framer-1a9hfwe > :last-child, .framer-HHlKa .framer-f8hc2h > :last-child, .framer-HHlKa .framer-v83ekk > :last-child, .framer-HHlKa .framer-lsivd8 > :last-child, .framer-HHlKa .framer-1ks844s > :last-child, .framer-HHlKa .framer-xxp6xk > :last-child, .framer-HHlKa .framer-14ie7d > :last-child, .framer-HHlKa .framer-1l4efo4 > :last-child, .framer-HHlKa .framer-4h39ak > :last-child { margin-right: 0px; } .framer-HHlKa .framer-fo9dr8 > *, .framer-HHlKa .framer-18njxmh > *, .framer-HHlKa .framer-1o9pjrq > *, .framer-HHlKa .framer-1xbt0vy > *, .framer-HHlKa .framer-xxp6xk > *, .framer-HHlKa .framer-1l4efo4 > *, .framer-HHlKa .framer-4h39ak > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HHlKa .framer-4ex7jz > *, .framer-HHlKa .framer-pyj24g > *, .framer-HHlKa .framer-1i2uh1c > *, .framer-HHlKa .framer-rmjqnc > *, .framer-HHlKa .framer-4sqfsc > *, .framer-HHlKa .framer-adqnmc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-HHlKa .framer-k6mpmx > *, .framer-HHlKa .framer-10rern8 > *, .framer-HHlKa .framer-1a9hfwe > *, .framer-HHlKa .framer-14ie7d > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-HHlKa .framer-1e017n9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HHlKa .framer-715dyu > *, .framer-HHlKa .framer-f8hc2h > *, .framer-HHlKa .framer-v83ekk > *, .framer-HHlKa .framer-lsivd8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-HHlKa .framer-1eipy7v > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-HHlKa .framer-1812wua > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-HHlKa .framer-88bfmm > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-HHlKa .framer-1sd6qiu > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-HHlKa[data-border=\"true\"]::after, .framer-HHlKa [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-HHlKa.framer-72rtr7 { width: 810px; } .framer-HHlKa .framer-x0gt5a { max-width: 810px; padding: 60px 30px 10px 30px; } .framer-HHlKa .framer-12keyfl, .framer-HHlKa .framer-b9za5f, .framer-HHlKa .framer-f615b9, .framer-HHlKa .framer-169j0uk-container { width: 100%; } .framer-HHlKa .framer-lzgwqx { max-width: 810px; padding: 120px 30px 60px 30px; width: 100%; } .framer-HHlKa .framer-1bac7jn { gap: 20px; } .framer-HHlKa .framer-12s7x3e { padding: 10px 0px 10px 0px; } .framer-HHlKa .framer-1uo0erl { bottom: 30px; height: var(--framer-aspect-ratio-supported, 271px); top: unset; } .framer-HHlKa .framer-k6mpmx, .framer-HHlKa .framer-10rern8 { flex-direction: column; gap: 40px; max-width: 810px; padding: 60px 30px 60px 30px; width: 100%; } .framer-HHlKa .framer-1s8wi4e { align-self: unset; flex: none; height: 350px; width: 100%; } .framer-HHlKa .framer-3y40z0 { align-self: unset; flex: none; height: min-content; padding: 0px; width: 100%; } .framer-HHlKa .framer-1giujgp { overflow: visible; } .framer-HHlKa .framer-1737br2, .framer-HHlKa .framer-kc2g5l, .framer-HHlKa .framer-169im9w, .framer-HHlKa .framer-1a9hfwe, .framer-HHlKa .framer-1etrnsp { max-width: 810px; padding: 60px 30px 60px 30px; width: 100%; } .framer-HHlKa .framer-14qzbd { align-self: unset; flex: none; height: min-content; order: 1; padding: 0px; width: 100%; } .framer-HHlKa .framer-11xks1w { align-self: unset; flex: none; height: 400px; order: 0; width: 100%; } .framer-HHlKa .framer-715dyu { -webkit-mask: linear-gradient(180deg, #000000 59%, rgba(0,0,0,0) 92%) add; height: 550px; mask: linear-gradient(180deg, #000000 59%, rgba(0,0,0,0) 92%) add; } .framer-HHlKa .framer-1neakoc { width: 85%; } .framer-HHlKa .framer-17ka6cy { height: var(--framer-aspect-ratio-supported, 40px); width: 138px; } .framer-HHlKa .framer-qma172, .framer-HHlKa .framer-81tk7n { height: var(--framer-aspect-ratio-supported, 40px); width: 98px; } .framer-HHlKa .framer-1s3vsy { height: var(--framer-aspect-ratio-supported, 40px); width: 96px; } .framer-HHlKa .framer-1ehumbz { gap: 20px; grid-auto-rows: 45px; grid-template-rows: repeat(16, 45px); } .framer-HHlKa .framer-1o9pjrq { justify-content: flex-end; } .framer-HHlKa .framer-q9hc0i { order: 0; width: var(--framer-aspect-ratio-supported, 532px); } .framer-HHlKa .framer-ixcdcy { gap: 40px; } .framer-HHlKa .framer-uyowx1 { width: var(--framer-aspect-ratio-supported, 228px); } .framer-HHlKa .framer-1q4e1ru { height: var(--framer-aspect-ratio-supported, 133px); } .framer-HHlKa .framer-1i9usrx { height: var(--framer-aspect-ratio-supported, 89px); } .framer-HHlKa .framer-1ks844s { bottom: 89px; left: -42px; } .framer-HHlKa .framer-1tjqfco { height: var(--framer-aspect-ratio-supported, 62px); } .framer-HHlKa .framer-14ie7d { max-width: 810px; padding: 60px 30px 0px 30px; width: 100%; } .framer-HHlKa .framer-4h39ak { justify-content: flex-start; } .framer-HHlKa .framer-1gmw6vu { height: var(--framer-aspect-ratio-supported, 420px); right: -126px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HHlKa .framer-1bac7jn, .framer-HHlKa .framer-k6mpmx, .framer-HHlKa .framer-10rern8, .framer-HHlKa .framer-1ehumbz, .framer-HHlKa .framer-ixcdcy { gap: 0px; } .framer-HHlKa .framer-1bac7jn > *, .framer-HHlKa .framer-1bac7jn > :first-child, .framer-HHlKa .framer-1bac7jn > :last-child, .framer-HHlKa .framer-1ehumbz > *, .framer-HHlKa .framer-1ehumbz > :first-child, .framer-HHlKa .framer-1ehumbz > :last-child { margin: 0px; } .framer-HHlKa .framer-k6mpmx > *, .framer-HHlKa .framer-10rern8 > *, .framer-HHlKa .framer-ixcdcy > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-HHlKa .framer-k6mpmx > :first-child, .framer-HHlKa .framer-10rern8 > :first-child, .framer-HHlKa .framer-ixcdcy > :first-child { margin-top: 0px; } .framer-HHlKa .framer-k6mpmx > :last-child, .framer-HHlKa .framer-10rern8 > :last-child, .framer-HHlKa .framer-ixcdcy > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-HHlKa.framer-72rtr7 { width: 390px; } .framer-HHlKa .framer-1fno8y5-container, .framer-HHlKa .framer-b9za5f, .framer-HHlKa .framer-qhbh02-container, .framer-HHlKa .framer-f615b9, .framer-HHlKa .framer-1neakoc, .framer-HHlKa .framer-169j0uk-container { width: 100%; } .framer-HHlKa .framer-19gyml5-container { right: 10px; } .framer-HHlKa .framer-1d2q4ja { bottom: 1795px; height: 434px; opacity: 0.27; right: -433px; width: 1009px; } .framer-HHlKa .framer-l1wszg { height: 437px; left: 43px; top: calc(51.70750237416907% - 437px / 2); width: 434px; } .framer-HHlKa .framer-m4ondg { bottom: 3523px; height: 596px; right: -135px; width: 557px; } .framer-HHlKa .framer-11pq0bz { aspect-ratio: unset; height: 398px; left: calc(57.43589743589745% - 834px / 2); top: 4882px; transform: unset; width: 834px; } .framer-HHlKa .framer-1htmam6 { left: 200px; } .framer-HHlKa .framer-1s4otvf { height: var(--framer-aspect-ratio-supported, 709px); left: -134px; right: -96px; top: 1703px; width: unset; } .framer-HHlKa .framer-16uy5kx { height: var(--framer-aspect-ratio-supported, 618px); left: -129px; right: -22px; top: 211px; width: unset; } .framer-HHlKa .framer-x0gt5a { max-width: 810px; padding: 60px 0px 10px 0px; } .framer-HHlKa .framer-12keyfl { padding: 0px 25px 0px 25px; width: 100%; } .framer-HHlKa .framer-lzgwqx, .framer-HHlKa .framer-1737br2, .framer-HHlKa .framer-kc2g5l, .framer-HHlKa .framer-169im9w, .framer-HHlKa .framer-1etrnsp { max-width: 810px; padding: 50px 20px 50px 20px; width: 100%; } .framer-HHlKa .framer-1bac7jn { gap: 20px; } .framer-HHlKa .framer-12s7x3e { flex-direction: column; padding: 10px 0px 10px 0px; } .framer-HHlKa .framer-fo9dr8 { justify-content: flex-end; min-height: unset; padding: 20px 20px 0px 0px; width: 100%; } .framer-HHlKa .framer-1uo0erl { height: var(--framer-aspect-ratio-supported, 271px); left: unset; position: relative; right: unset; top: unset; width: 422px; } .framer-HHlKa .framer-4ex7jz { flex: none; padding: 20px; width: 100%; } .framer-HHlKa .framer-u4zqem, .framer-HHlKa .framer-1z7u5p { grid-column: auto / span 2; } .framer-HHlKa .framer-4ceqsa { height: var(--framer-aspect-ratio-supported, 202px); width: 250px; } .framer-HHlKa .framer-1p4msh8 { height: var(--framer-aspect-ratio-supported, 201px); width: 250px; } .framer-HHlKa .framer-k6mpmx, .framer-HHlKa .framer-10rern8 { flex-direction: column; gap: 40px; max-width: 810px; padding: 50px 20px 50px 20px; width: 100%; } .framer-HHlKa .framer-1s8wi4e { align-self: unset; flex: none; height: 250px; width: 100%; } .framer-HHlKa .framer-3y40z0 { align-self: unset; flex: none; height: min-content; padding: 0px; width: 100%; } .framer-HHlKa .framer-1giujgp { overflow: visible; } .framer-HHlKa .framer-jk8ocg { gap: 14px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); } .framer-HHlKa .framer-14qzbd { align-self: unset; flex: none; height: min-content; order: 1; padding: 0px; width: 100%; } .framer-HHlKa .framer-11xks1w { align-self: unset; flex: none; height: 250px; order: 0; width: 100%; } .framer-HHlKa .framer-715dyu { -webkit-mask: linear-gradient(180deg, #000000 71%, rgba(0,0,0,0) 97%, rgba(0, 0, 0, 0.01841) 97%) add; flex-direction: column; height: min-content; mask: linear-gradient(180deg, #000000 71%, rgba(0,0,0,0) 97%, rgba(0, 0, 0, 0.01841) 97%) add; } .framer-HHlKa .framer-1i2uh1c { flex: none; order: 2; width: 100%; } .framer-HHlKa .framer-ag95yi-container { order: 1; } .framer-HHlKa .framer-1jc0jaz-container, .framer-HHlKa .framer-rhjget { order: 0; } .framer-HHlKa .framer-17sydeo-container { order: 2; } .framer-HHlKa .framer-rmjqnc { flex: none; order: 0; width: 100%; } .framer-HHlKa .framer-4sqfsc { flex: none; order: 1; width: 100%; } .framer-HHlKa .framer-17ka6cy { height: var(--framer-aspect-ratio-supported, 22px); width: 76px; } .framer-HHlKa .framer-qma172, .framer-HHlKa .framer-81tk7n { height: var(--framer-aspect-ratio-supported, 22px); width: 54px; } .framer-HHlKa .framer-1s3vsy { height: var(--framer-aspect-ratio-supported, 22px); width: 53px; } .framer-HHlKa .framer-1ehumbz { gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(40px, 1fr)); grid-template-rows: repeat(6, min-content); } .framer-HHlKa .framer-18njxmh { flex-direction: column; height: min-content; order: 0; } .framer-HHlKa .framer-1o9pjrq { align-content: flex-end; align-items: flex-end; height: 220px; justify-content: flex-end; width: 100%; } .framer-HHlKa .framer-q9hc0i { bottom: -26px; height: var(--framer-aspect-ratio-supported, 247px); order: 0; position: absolute; right: 0px; width: 355px; z-index: 1; } .framer-HHlKa .framer-ixcdcy { flex: none; gap: 40px; width: 100%; } .framer-HHlKa .framer-ikn9js { grid-column: auto / span 4; height: 220px; order: 1; } .framer-HHlKa .framer-mrd5lc { right: unset; width: 100%; } .framer-HHlKa .framer-1eipy7v { grid-column: auto / span 4; height: 175px; order: 2; } .framer-HHlKa .framer-1vcss93 { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 59%) add; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 59%) add; } .framer-HHlKa .framer-uyowx1 { width: var(--framer-aspect-ratio-supported, 228px); } .framer-HHlKa .framer-1xbt0vy { grid-column: auto / span 4; height: 175px; order: 3; } .framer-HHlKa .framer-1q4e1ru { height: var(--framer-aspect-ratio-supported, 128px); } .framer-HHlKa .framer-z2rebw { grid-column: auto / span 2; height: 240px; order: 4; } .framer-HHlKa .framer-1i9usrx, .framer-HHlKa .framer-1pqqsxv { height: var(--framer-aspect-ratio-supported, 90px); width: 134px; } .framer-HHlKa .framer-1t6mvfe { grid-column: auto / span 2; height: 240px; order: 5; } .framer-HHlKa .framer-1sed6zu { grid-column: auto / span 2; height: 240px; order: 6; padding: 20px 10px 0px 10px; } .framer-HHlKa .framer-oarvdz { height: var(--framer-aspect-ratio-supported, 110px); width: 149px; } .framer-HHlKa .framer-1ad9e6 { grid-column: auto / span 2; height: 240px; order: 7; } .framer-HHlKa .framer-yzwtwv { height: var(--framer-aspect-ratio-supported, 110px); width: 164px; } .framer-HHlKa .framer-1a9hfwe { flex-direction: column; gap: 40px; height: min-content; max-width: 810px; padding: 0px 20px 50px 20px; width: 100%; } .framer-HHlKa .framer-16lgxt0 { height: min-content; order: 1; padding: 0px; width: 100%; } .framer-HHlKa .framer-1id2f06 { flex: none; height: min-content; order: 0; width: 100%; } .framer-HHlKa .framer-1ks844s { bottom: 31px; left: -2px; order: 1; } .framer-HHlKa .framer-1tjqfco { height: var(--framer-aspect-ratio-supported, 62px); } .framer-HHlKa .framer-15zbgf7 { left: 150px; } .framer-HHlKa .framer-14ie7d { flex-direction: column; max-width: 810px; padding: 50px 20px 0px 20px; width: 100%; } .framer-HHlKa .framer-1l4efo4 { flex: none; flex-direction: column; padding: 0px 20px 0px 20px; width: 100%; } .framer-HHlKa .framer-4lw0gl { padding: 40px 0px 0px 0px; width: 100%; } .framer-HHlKa .framer-4h39ak { flex: none; justify-content: flex-start; width: 100%; } .framer-HHlKa .framer-1gmw6vu { height: var(--framer-aspect-ratio-supported, 406px); right: -126px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HHlKa .framer-1bac7jn, .framer-HHlKa .framer-12s7x3e, .framer-HHlKa .framer-k6mpmx, .framer-HHlKa .framer-jk8ocg, .framer-HHlKa .framer-10rern8, .framer-HHlKa .framer-715dyu, .framer-HHlKa .framer-1ehumbz, .framer-HHlKa .framer-18njxmh, .framer-HHlKa .framer-ixcdcy, .framer-HHlKa .framer-1a9hfwe, .framer-HHlKa .framer-14ie7d, .framer-HHlKa .framer-1l4efo4 { gap: 0px; } .framer-HHlKa .framer-1bac7jn > *, .framer-HHlKa .framer-1bac7jn > :first-child, .framer-HHlKa .framer-1bac7jn > :last-child, .framer-HHlKa .framer-jk8ocg > *, .framer-HHlKa .framer-jk8ocg > :first-child, .framer-HHlKa .framer-jk8ocg > :last-child, .framer-HHlKa .framer-1ehumbz > *, .framer-HHlKa .framer-1ehumbz > :first-child, .framer-HHlKa .framer-1ehumbz > :last-child { margin: 0px; } .framer-HHlKa .framer-12s7x3e > *, .framer-HHlKa .framer-k6mpmx > *, .framer-HHlKa .framer-10rern8 > *, .framer-HHlKa .framer-ixcdcy > *, .framer-HHlKa .framer-1a9hfwe > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-HHlKa .framer-12s7x3e > :first-child, .framer-HHlKa .framer-k6mpmx > :first-child, .framer-HHlKa .framer-10rern8 > :first-child, .framer-HHlKa .framer-715dyu > :first-child, .framer-HHlKa .framer-18njxmh > :first-child, .framer-HHlKa .framer-ixcdcy > :first-child, .framer-HHlKa .framer-1a9hfwe > :first-child, .framer-HHlKa .framer-14ie7d > :first-child, .framer-HHlKa .framer-1l4efo4 > :first-child { margin-top: 0px; } .framer-HHlKa .framer-12s7x3e > :last-child, .framer-HHlKa .framer-k6mpmx > :last-child, .framer-HHlKa .framer-10rern8 > :last-child, .framer-HHlKa .framer-715dyu > :last-child, .framer-HHlKa .framer-18njxmh > :last-child, .framer-HHlKa .framer-ixcdcy > :last-child, .framer-HHlKa .framer-1a9hfwe > :last-child, .framer-HHlKa .framer-14ie7d > :last-child, .framer-HHlKa .framer-1l4efo4 > :last-child { margin-bottom: 0px; } .framer-HHlKa .framer-715dyu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-HHlKa .framer-18njxmh > *, .framer-HHlKa .framer-1l4efo4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HHlKa .framer-14ie7d > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11674\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fJdIJpTB9\":{\"layout\":[\"fixed\",\"auto\"]},\"HBF66IbWr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Stcxq8or8\":{\"pattern\":\":Stcxq8or8\",\"name\":\"start\"},\"HJOIdc3BJ\":{\"pattern\":\":HJOIdc3BJ\",\"name\":\"ueber-uns\"},\"iQ4GTjt2m\":{\"pattern\":\":iQ4GTjt2m\",\"name\":\"referenzen\"},\"QcdZhB8nT\":{\"pattern\":\":QcdZhB8nT\",\"name\":\"\"},\"rIgySMpP2\":{\"pattern\":\":rIgySMpP2\",\"name\":\"ablauf\"},\"szeGfQvg3\":{\"pattern\":\":szeGfQvg3\",\"name\":\"kunden\"},\"cKFVJoNwe\":{\"pattern\":\":cKFVJoNwe\",\"name\":\"kontakt\"},\"JdRmnEkqZ\":{\"pattern\":\":JdRmnEkqZ\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-HHlKa\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:11674,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\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Raleway\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCKNLA3JC9c.woff2\",weight:\"600\"},{family:\"Raleway\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCKNLA3JC9c.woff2\",weight:\"500\"}]},...NavigationFonts,...CTAButtonStickyFonts,...BadgeKundenbilderRahmenFonts,...ButtonFonts,...TickerFonts,...MiniCard1Fonts,...BadgeKundenbilderKleinFonts,...ReferenzenKarteFonts,...AblaufAkkordeonFonts,...TestimonialsFonts,...FeatherFonts,...FAQAkkordeonFonts,...ButtonWeissFonts,...FuZeileFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"11674\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"Stcxq8or8\\\":{\\\"pattern\\\":\\\":Stcxq8or8\\\",\\\"name\\\":\\\"start\\\"},\\\"HJOIdc3BJ\\\":{\\\"pattern\\\":\\\":HJOIdc3BJ\\\",\\\"name\\\":\\\"ueber-uns\\\"},\\\"iQ4GTjt2m\\\":{\\\"pattern\\\":\\\":iQ4GTjt2m\\\",\\\"name\\\":\\\"referenzen\\\"},\\\"QcdZhB8nT\\\":{\\\"pattern\\\":\\\":QcdZhB8nT\\\",\\\"name\\\":\\\"\\\"},\\\"rIgySMpP2\\\":{\\\"pattern\\\":\\\":rIgySMpP2\\\",\\\"name\\\":\\\"ablauf\\\"},\\\"szeGfQvg3\\\":{\\\"pattern\\\":\\\":szeGfQvg3\\\",\\\"name\\\":\\\"kunden\\\"},\\\"cKFVJoNwe\\\":{\\\"pattern\\\":\\\":cKFVJoNwe\\\",\\\"name\\\":\\\"kontakt\\\"},\\\"JdRmnEkqZ\\\":{\\\"pattern\\\":\\\":JdRmnEkqZ\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fJdIJpTB9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HBF66IbWr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerLgJ4kTmas", "withCSS", "LgJ4kTmas_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "buttontext", "height", "id", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "WaW8zt6or", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "RichText2", "css", "FramernuB3xU8jF", "withCSS", "nuB3xU8jF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Component", "House_default", "React", "weights", "House", "props", "ref", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hFWTiskGo", "OjMK8RFig", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapw4cai0", "args", "onTapslhwis", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerqC0UFQzVn", "withCSS", "qC0UFQzVn_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "antwort", "frage", "height", "id", "width", "props", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hFWTiskGo", "OjMK8RFig", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1cgcmmd", "args", "onTap17iqlx5", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerrGj6BX3Cc", "withCSS", "rGj6BX3Cc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationFonts", "getFonts", "inYqcVBIN_default", "CTAButtonStickyFonts", "BeZc8HnPc_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithFX", "withFX", "motion", "BadgeKundenbilderRahmenFonts", "TXJqNhsCa_default", "ButtonFonts", "yTgzmC_OT_default", "TickerFonts", "Ticker", "MiniCard1Fonts", "Eg_iHkm_T_default", "BadgeKundenbilderKleinFonts", "LgJ4kTmas_default", "ReferenzenKarteFonts", "qulw_bbXz_default", "ContainerWithFX", "AblaufAkkordeonFonts", "qC0UFQzVn_default", "TestimonialsFonts", "gkpjeCYRX_default", "ImageWithFX", "Image2", "FeatherFonts", "Icon", "FAQAkkordeonFonts", "rGj6BX3Cc_default", "ButtonWeissFonts", "nuB3xU8jF_default", "FuZeileFonts", "BmHq0sjzm_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "transformTemplate1", "_", "t", "animation5", "animation6", "animation7", "addImageAlt", "image", "alt", "animation8", "animation9", "transformTemplate2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "isDisplayed", "isDisplayed1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "isDisplayed2", "elementId6", "ref7", "elementId7", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "RichText2", "x", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "Link", "SVG", "resolvedLinks6", "resolvedLinks7", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
