{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/d1yGqUhMg2csjihKQV6a/ilDN6hiHCb00xvWKM3hY/oGlL_yyb8.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// 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[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"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_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import BrandLogos from\"#framer/local/canvasComponent/a4K0zNq4w/a4K0zNq4w.js\";import CallToAction from\"#framer/local/canvasComponent/AtAkIKfH7/AtAkIKfH7.js\";import NavigationCopy from\"#framer/local/canvasComponent/Nb5hgYFdz/Nb5hgYFdz.js\";import Footer2025 from\"#framer/local/canvasComponent/PPlubLOJn/PPlubLOJn.js\";import SpeakersSlider from\"#framer/local/canvasComponent/x0G3U0wos/x0G3U0wos.js\";import*as sharedStyle4 from\"#framer/local/css/amKuOzFA9/amKuOzFA9.js\";import*as sharedStyle from\"#framer/local/css/CyAR9YT_z/CyAR9YT_z.js\";import*as sharedStyle1 from\"#framer/local/css/ljW6N2dCg/ljW6N2dCg.js\";import*as sharedStyle3 from\"#framer/local/css/OHTulweSe/OHTulweSe.js\";import*as sharedStyle2 from\"#framer/local/css/qgbwtunKf/qgbwtunKf.js\";import*as sharedStyle5 from\"#framer/local/css/rXjo_L3Nt/rXjo_L3Nt.js\";import metadataProvider from\"#framer/local/webPageMetadata/oGlL_yyb8/oGlL_yyb8.js\";const NavigationCopyFonts=getFonts(NavigationCopy);const TickerFonts=getFonts(Ticker);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const CallToActionFonts=getFonts(CallToAction);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const YouTubeFonts=getFonts(YouTube);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithFX=withFX(RichText);const SpeakersSliderFonts=getFonts(SpeakersSlider);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const BrandLogosFonts=getFonts(BrandLogos);const ImageWithFX=withFX(Image);const EmbedFonts=getFonts(Embed);const Footer2025Fonts=getFonts(Footer2025);const breakpoints={drJTvkUhb:\"(min-width: 1200px)\",ocwGbkWhC:\"(max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-w6c7y\";const variantClassNames={drJTvkUhb:\"framer-v-1vw6ww3\",ocwGbkWhC:\"framer-v-u1dtln\"};const transition1={delay:.2,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:.1,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const transition4={delay:.3,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition5={delay:.6,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:.4,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={delay:.5,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transition8={delay:.7,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation16={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition9={damping:30,delay:1.4,mass:1,stiffness:400,type:\"spring\"};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const animation18={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition10={damping:30,delay:1.5,mass:1,stiffness:400,type:\"spring\"};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const transition11={damping:30,delay:1.6,mass:1,stiffness:400,type:\"spring\"};const animation20={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const transition12={damping:30,delay:1.7,mass:1,stiffness:400,type:\"spring\"};const animation21={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:0};const transition13={damping:30,delay:1.8,mass:1,stiffness:400,type:\"spring\"};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const transition14={delay:1.8,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const animation23={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:0};const transition15={delay:1.9,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const animation24={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:0,y:0};const transition16={delay:.1,duration:.5,ease:[.5,0,.88,.77],type:\"tween\"};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition16,x:0,y:0};const animation26={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition3};const animation27={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition17={bounce:.2,delay:.1,duration:.4,type:\"spring\"};const animation28={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition17,x:0,y:0};const animation29={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.1,skewX:0,skewY:0,x:0,y:0};const transition18={bounce:.2,delay:.2,duration:.4,type:\"spring\"};const animation30={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition18,x:0,y:0};const animation31={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation32={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:150};const animation33={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const transition19={delay:.1,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const animation34={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition19,x:0,y:0};const transition20={delay:.1,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation35={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition20,x:0,y:0};const transition21={delay:.2,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation36={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition21,x:0,y:0};const transition22={delay:.3,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation37={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition22,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"drJTvkUhb\",Phone:\"ocwGbkWhC\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"drJTvkUhb\"};};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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ocwGbkWhC\")return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"IO_qNLix1\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"XcxQb5HC3\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"drJTvkUhb\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f5608a5f-7c0b-4f44-b119-e9b11d6b41ff, rgb(250, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1vw6ww3\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j19xoy-container\",\"data-framer-name\":\"Nav\",name:\"Nav\",nodeId:\"Z0ZvXegcV\",scopeId:\"oGlL_yyb8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{variant:\"g_VLuf23v\"}},children:/*#__PURE__*/_jsx(NavigationCopy,{height:\"100%\",id:\"Z0ZvXegcV\",layoutId:\"Z0ZvXegcV\",name:\"Nav\",style:{width:\"100%\"},variant:\"Zz4WpRtKR\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19d7h33\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10585bo-container\",isModuleExternal:true,nodeId:\"wS0hngyIk\",scopeId:\"oGlL_yyb8\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"wS0hngyIk\",layoutId:\"wS0hngyIk\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"286.2222px\",src:\"https://framerusercontent.com/images/dSZqMRUqXzir1fBgn7yEjBHVlv0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dSZqMRUqXzir1fBgn7yEjBHVlv0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dSZqMRUqXzir1fBgn7yEjBHVlv0.jpg 1024w\"},className:\"framer-179zjg2\",\"data-framer-name\":\"HOLY WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"286.2222px\",src:\"https://framerusercontent.com/images/glF4xSwseNoiKxHBmlQ4SGrQik.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/glF4xSwseNoiKxHBmlQ4SGrQik.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/glF4xSwseNoiKxHBmlQ4SGrQik.jpg 1024w\"},className:\"framer-1xak85d\",\"data-framer-name\":\"Herone WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"286.2222px\",src:\"https://framerusercontent.com/images/OHHC0fJXYuYmNvGCzX5l3594Is.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OHHC0fJXYuYmNvGCzX5l3594Is.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OHHC0fJXYuYmNvGCzX5l3594Is.jpg 1024w\"},className:\"framer-m4uyzy\",\"data-framer-name\":\"Duschbrocken WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"286.2222px\",src:\"https://framerusercontent.com/images/xB7NYdCmDBSG9CmNkMQdfaEvWw.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xB7NYdCmDBSG9CmNkMQdfaEvWw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xB7NYdCmDBSG9CmNkMQdfaEvWw.jpg 1024w\"},className:\"framer-vp72eo\",\"data-framer-name\":\"Viktoria WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"286.2222px\",src:\"https://framerusercontent.com/images/4EqPNvbcIKpW1g8OE5peOvVIwSo.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4EqPNvbcIKpW1g8OE5peOvVIwSo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4EqPNvbcIKpW1g8OE5peOvVIwSo.jpg 1024w\"},className:\"framer-sbqt22\",\"data-framer-name\":\"Universal WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"286.2222px\",src:\"https://framerusercontent.com/images/MWOmT17OSeL0ueDqH1soDsz2xg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MWOmT17OSeL0ueDqH1soDsz2xg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MWOmT17OSeL0ueDqH1soDsz2xg.jpg 1024w\"},className:\"framer-114bre7\",\"data-framer-name\":\"Dropsnocks WP-1\"})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p47qey\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s05f32\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n3rftu hidden-u1dtln\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kzhkhn\",\"data-framer-name\":\"Mit25-white\",fill:\"black\",intrinsicHeight:185,intrinsicWidth:460,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 460.1 184.7\" style=\"enable-background:new 0 0 460.1 184.7\" xml:space=\"preserve\"><path d=\"M244 24.6h-32.7c-10.3 0-18.7 8.4-18.7 18.7v92.4c0 10.3 8.4 18.7 18.7 18.7H244c10.3 0 18.7-8.4 18.7-18.7V43.2c0-10.3-8.4-18.6-18.7-18.6zm-82.4.1c-13.7-1-27.7-.1-41.6-.4-12 .7-15.4 23.2-24.2 13.5-4.3-5.6-8.1-12.4-15.7-13.5H39.8c-7.4 1-14.2 5.9-15.9 13.4-1.4 32.1-.1 64.4-.5 96.5-.1 9.6 8.5 17.4 18.1 17.1 9.8-.2 19.7-.2 29.6-.3 5-.1 3.6-7.9 4.2-12.1 29.6 18.6 20.5 18.7 50.1 0 .7 4.7-.4 12.5 6.2 12.6 9.1.1 18.2-.1 27.3-.2 9.3.2 18-7.5 17.9-17 0-30.9-.1-61.8 0-92.6.1-8.4-6.4-15.7-15.2-17zm245 1.6H292.8c-10.3 0-18.7 7.8-18.7 17.5v86.4c0 9.6 8.4 17.5 18.7 17.5h29.3c3 0 5.9 1 8.2 2.9l16.2 13.2c1.9 2.1 5.3 2.1 7.2 0l16.2-13.2c2.3-1.9 5.2-2.9 8.2-2.9h28.4c10.3 0 18.7-7.8 18.7-17.5V43.7c.1-9.6-8.3-17.4-18.6-17.4zm-59.2 84.9v.2c-.1 1.6-1.4 2.8-3 2.8h-39.6c-1.2-.1-2-1.3-1.8-2.5.3-2.4 6.5-11.5 11.1-18.2 2.9-4.2 5.1-7.5 4.8-7.5h-12.7c-2.7-.1-2.9-2.4-2.9-5.2v-.5c.2-11 8.2-19.8 19.2-19.8h3.1c10 0 20.4 7 19.8 16.9 0 6.7-5.9 13.1-9.1 16.1-.6.6-.2 1.8.7 1.8h8.3c1.2.4 2.1 1.5 2.1 2.8v13.1zm32.1 3.2H358c-2.2 0-3.9-1.4-3.9-4.1 0-.8.1-6 .1-12.6 0-2 1.9-2.5 3.5-2.5h5.4c1.2 0 1.9-1.8 0-2.6-2.1-.9-2.4-1-5.3-2.5-2-1.1-3.6-1.6-3.6-3.6 0-10.5-.1-21.6-.1-21.6 0-1 1.2-2.1 2.4-2.1h33.1c2 0 3.4 1.2 3.4 3.1v11.2c0 1.9-.3 2.8-2.3 2.8l-12.4.2c-1.2 0-1.3 1.8-.1 2 9.9 1.7 17.7 6.4 17.5 16.3 0 9.3-5.8 16-16.2 16z\" style=\"fill:#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 217, 253)\"},children:\"16.Oktober, 2025\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 217, 253)\"},children:\"16.Oktober, 2025\"})}),className:\"framer-16qw8dt\",\"data-framer-appear-id\":\"16qw8dt\",fonts:[\"CUSTOM;Gordita Medium\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgQm9sZA==\",\"--framer-font-family\":'\"Gordita Bold\", \"Gordita Bold Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 252, 255) 0%, rgb(245, 179, 252) 185%)\"},children:\"Lerne von den besten Shopify Brands\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgQm9sZA==\",\"--framer-font-family\":'\"Gordita Bold\", \"Gordita Bold Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 252, 255) 0%, rgb(245, 179, 252) 185%)\"},children:\"Lerne von den besten Shopify Brands\"})})}),className:\"framer-y0c4nb\",fonts:[\"CUSTOM;Gordita Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Medium\", \"Inter Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Das Shopify-Event Nr. 1 in DACH ist in 2025 zur\\xfcck. Melde dich jetzt an und profitiere von 25 % Rabatt auf dein Ticket \u2013 nur f\\xfcr kurze Zeit!\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Medium\", \"Inter Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Das Shopify-Event Nr. 1 in DACH ist in 2025 zur\\xfcck. Melde dich jetzt an und profitiere von 25 % Rabatt auf dein Ticket \u2013 nur f\\xfcr kurze Zeit!\"})}),className:\"framer-24s969\",\"data-framer-appear-id\":\"24s969\",fonts:[\"CUSTOM;Inter Medium\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s7cx8k\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":XcxQb5HC3\",webPageId:\"oGlL_yyb8\"},implicitPathVariables:undefined},{href:{hash:\":XcxQb5HC3\",webPageId:\"oGlL_yyb8\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 768px) - 60px)`,y:(componentViewport?.y||0)+0+64+0+0+0+0+457+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,y:(componentViewport?.y||0)+0+64+0+0+0+0+633+20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o7rjqh-container\",nodeId:\"FrmnZCvnD\",scopeId:\"oGlL_yyb8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{hn4gIwiei:resolvedLinks[1],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CallToAction,{athY4Lpm7:false,height:\"100%\",hn4gIwiei:resolvedLinks[0],id:\"FrmnZCvnD\",kTkMas5wO:false,layoutId:\"FrmnZCvnD\",QsxmmCRVV:\"Jetzt anmelden\",variant:\"MjhVrPYUz\",wHQNeShTl:\"0px 0px 0px 0px rgba(0, 0, 0, 0.25)\",width:\"100%\"})})})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q87tuv-container\",isModuleExternal:true,nodeId:\"yjlZ4EzZc\",scopeId:\"oGlL_yyb8\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"yjlZ4EzZc\",layoutId:\"yjlZ4EzZc\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"286.2222px\",src:\"https://framerusercontent.com/images/9KGh7gEKUBAYm3sepSUeFSs23w.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9KGh7gEKUBAYm3sepSUeFSs23w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9KGh7gEKUBAYm3sepSUeFSs23w.jpg 1024w\"},className:\"framer-12i067z\",\"data-framer-name\":\"Bears WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"302px\",src:\"https://framerusercontent.com/images/MDTOgKrfNJm8E4isMxfZsrNqBo.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MDTOgKrfNJm8E4isMxfZsrNqBo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MDTOgKrfNJm8E4isMxfZsrNqBo.jpg 1024w\"},className:\"framer-1r61eh2\",\"data-framer-name\":\"Lfdy WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"302px\",src:\"https://framerusercontent.com/images/SF9UTaeEhfy4XdTewAcn9GZwU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SF9UTaeEhfy4XdTewAcn9GZwU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SF9UTaeEhfy4XdTewAcn9GZwU.jpg 1024w\"},className:\"framer-13ih1m3\",\"data-framer-name\":\"Pfemale WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"302px\",src:\"https://framerusercontent.com/images/sbIp3KoxBBBIfnCEXnoXiqR3hwc.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sbIp3KoxBBBIfnCEXnoXiqR3hwc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sbIp3KoxBBBIfnCEXnoXiqR3hwc.jpg 1024w\"},className:\"framer-1saj1fq\",\"data-framer-name\":\"Purelei WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"302px\",src:\"https://framerusercontent.com/images/FnkzK5cuJfvot8Jt8zQhyExCM.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FnkzK5cuJfvot8Jt8zQhyExCM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FnkzK5cuJfvot8Jt8zQhyExCM.jpg 1024w\"},className:\"framer-isaweg\",\"data-framer-name\":\"Adrian WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"302px\",src:\"https://framerusercontent.com/images/siaovT89QBpPzADfOFNK2FAmM0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/siaovT89QBpPzADfOFNK2FAmM0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/siaovT89QBpPzADfOFNK2FAmM0.jpg 1024w\"},className:\"framer-1a0d25e\",\"data-framer-name\":\"Dropsnocks2 WP\"})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10p3eg3-container\",isModuleExternal:true,nodeId:\"urXnHeKKT\",scopeId:\"oGlL_yyb8\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"urXnHeKKT\",layoutId:\"urXnHeKKT\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"302px\",src:\"https://framerusercontent.com/images/FnkzK5cuJfvot8Jt8zQhyExCM.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FnkzK5cuJfvot8Jt8zQhyExCM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FnkzK5cuJfvot8Jt8zQhyExCM.jpg 1024w\"},className:\"framer-isaweg\",\"data-framer-name\":\"Adrian WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"302px\",src:\"https://framerusercontent.com/images/vDZaIHjerQmCb96XWXKNARHqhRQ.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vDZaIHjerQmCb96XWXKNARHqhRQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vDZaIHjerQmCb96XWXKNARHqhRQ.jpg 1024w\"},className:\"framer-z1n7vc\",\"data-framer-name\":\"Klar WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"302px\",src:\"https://framerusercontent.com/images/2AvtGN2vYCZq1R4oG8u48K3RmR0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2AvtGN2vYCZq1R4oG8u48K3RmR0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2AvtGN2vYCZq1R4oG8u48K3RmR0.jpg 1024w\"},className:\"framer-reyefl\",\"data-framer-name\":\"Ahead WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"303px\",src:\"https://framerusercontent.com/images/BIFkzmcNbjEps66BSvZfuLJqmfM.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BIFkzmcNbjEps66BSvZfuLJqmfM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BIFkzmcNbjEps66BSvZfuLJqmfM.jpg 1024w\"},className:\"framer-1g5o42g\",\"data-framer-name\":\"1fc WP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:288,intrinsicWidth:512,pixelHeight:576,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"286.2222px\",src:\"https://framerusercontent.com/images/xB7NYdCmDBSG9CmNkMQdfaEvWw.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xB7NYdCmDBSG9CmNkMQdfaEvWw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xB7NYdCmDBSG9CmNkMQdfaEvWw.jpg 1024w\"},className:\"framer-vp72eo\",\"data-framer-name\":\"Viktoria WP\"})],speed:90,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jsszmf\",\"data-framer-name\":\"Card Highlights\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fa2ov8\",\"data-framer-name\":\"Highlights\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13v1etk\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-no7gzr\",\"data-styles-preset\":\"CyAR9YT_z\",children:\"Was ist MIT 2025?\"})}),className:\"framer-1lgc7xy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-js57jw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgQm9sZA==\",\"--framer-font-family\":'\"Gordita Bold\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3dbf6c2f-653c-4ad1-8329-8f7d3ae917d2, rgb(23, 23, 23))\"},children:\"Wir bringen das Who is Who der deutschsprachigen Shopify Community f\\xfcr einen Tag in Berlin zusammen\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgQm9sZA==\",\"--framer-font-family\":'\"Gordita Bold\", \"Gordita Bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3dbf6c2f-653c-4ad1-8329-8f7d3ae917d2, rgb(23, 23, 23))\"},children:\"Wir bringen das Who is Who der deutschsprachigen Shopify Community f\\xfcr einen Tag in Berlin zusammen\"})}),className:\"framer-11w5f48\",fonts:[\"CUSTOM;Gordita Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-3dbf6c2f-653c-4ad1-8329-8f7d3ae917d2, rgb(47, 47, 47))\"},children:[\"Wir bringen die E-Com Entscheider:innen der f\\xfchrenden Brands auf Shopify und Shopify Plus mit \",/*#__PURE__*/_jsx(\"strong\",{children:\"einer ganzt\\xe4gigen Konferenz\"}),\" plus \",/*#__PURE__*/_jsx(\"strong\",{children:\"Satellite Events am Vortag\"}),\" zusammen. Das Ziel: Ehrlicher Erfahrungsaustausch und entspanntes Networking mit klarem Fokus auf hands-on Learnings & Umsetzungen.\"]})}),className:\"framer-lzv46y\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1navzjk\",\"data-framer-name\":\"Video Teaser\",id:\"1navzjk\",onTap:onTap3bnx0g({overlay}),style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kolq5h-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yZveYwX_S\",scopeId:\"oGlL_yyb8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{playing:false,poster:\"https://framerusercontent.com/images/0wcBYOJLYEPXDJLpxe3usW6D8.webp\",posterEnabled:true}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"yZveYwX_S\",isMixedBorderRadius:false,layoutId:\"yZveYwX_S\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/GmwD0ry1Kwhx4uupe4qX2HV8yLg.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k85xty\",\"data-framer-name\":\"Action Video\",whileHover:animation5}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5vm49b\",whileHover:animation6,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-99fy61\",\"data-framer-name\":\"Frame 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:66,svg:'<svg width=\"66\" height=\"66\" viewBox=\"0 0 66 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"66\" height=\"66\" rx=\"33\" fill=\"white\" fill-opacity=\"0.27\"/>\\n<path d=\"M47.5569 32.1408C48.2081 32.5285 48.2081 33.4715 47.5569 33.8592L26.5116 46.3894C25.845 46.7863 25 46.306 25 45.5302L25 20.4698C25 19.694 25.845 19.2137 26.5116 19.6106L47.5569 32.1408Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIEJvbGQ=\",\"--framer-font-family\":'\"Inter Bold\", \"Inter Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Schau dir unseren Aftermovie an\"})})}),className:\"framer-1cz4qsa\",fonts:[\"CUSTOM;Inter Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1t89087\"),\"data-framer-portal-id\":\"1navzjk\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"JPTh9vrsv\"),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-1f1cvs3\"),\"data-framer-portal-id\":\"1navzjk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-146udd6\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgQm9sZA==\",\"--framer-font-family\":'\"Gordita Bold\", \"Gordita Bold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Schliessen\"})}),className:\"framer-10rpn4i\",fonts:[\"CUSTOM;Gordita Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{animate:animation8,className:\"framer-1ep7t9m\",\"data-framer-name\":\"Card\",exit:animation7,initial:animation2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation10,className:\"framer-7mfv2f-container\",exit:animation9,initial:animation11,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uEy8PsZwM\",rendersWithMotion:true,scopeId:\"oGlL_yyb8\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"uEy8PsZwM\",isMixedBorderRadius:false,isRed:true,layoutId:\"uEy8PsZwM\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/9K7JNLseit0\",width:\"100%\"})})})})]})]}),getContainer())})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6svtov\",\"data-framer-name\":\"USPs\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17d7n07\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gkv1p7\",\"data-framer-name\":\"Group 62\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:58,intrinsicWidth:58,svg:'<svg width=\"58\" height=\"58\" viewBox=\"0 0 58 58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 0.5C2.96243 0.5 0.5 2.96244 0.5 6V52C0.5 55.0376 2.96244 57.5 6 57.5H52C55.0376 57.5 57.5 55.0376 57.5 52V6C57.5 2.96243 55.0376 0.5 52 0.5H6ZM3.5 6C3.5 4.61929 4.61929 3.5 6 3.5H52C53.3807 3.5 54.5 4.61929 54.5 6V52C54.5 53.3807 53.3807 54.5 52 54.5H6C4.61929 54.5 3.5 53.3807 3.5 52V6ZM32.7771 24.8409L29 13L25.2229 24.8409H13L22.8885 32.1591L19.1115 44L29 36.6819L38.8885 44L35.1115 32.1591L45 24.8409H32.7771Z\" fill=\"#6D00F9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxw614\",\"data-styles-preset\":\"ljW6N2dCg\",children:\"400 der f\\xfchrenden Brands auf Shopify\"})}),className:\"framer-1s7ppae\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lmodvy\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pvk2w5\",\"data-framer-name\":\"Union (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:58,intrinsicWidth:62,svg:'<svg width=\"62\" height=\"58\" viewBox=\"-2 -2 62 58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.66667 3.5C5.72776 3.5 3.5 5.72352 3.5 8.28114V39.3728C3.5 41.9304 5.72776 44.1539 8.66667 44.1539H15.8145C19.3861 44.1539 22.8482 45.3874 25.6153 47.6458L28.93 50.3513L29.01 50.4413C29.0334 50.4677 29.0836 50.5 29.1667 50.5C29.2497 50.5 29.2999 50.4677 29.3234 50.4413L29.4033 50.3513L32.7181 47.6458C35.4851 45.3874 38.9472 44.1539 42.5189 44.1539H49.3333C52.2722 44.1539 54.5 41.9304 54.5 39.3728V8.28114C54.5 5.72352 52.2722 3.5 49.3333 3.5H8.66667ZM0.5 8.28114C0.5 3.90081 4.24177 0.5 8.66667 0.5H49.3333C53.7582 0.5 57.5 3.90081 57.5 8.28114V39.3728C57.5 43.7531 53.7582 47.1539 49.3333 47.1539H42.5189C39.6385 47.1539 36.8465 48.1487 34.615 49.97L31.4721 52.5352C30.225 53.8216 28.1083 53.8216 26.8613 52.5352L23.7183 49.97C21.4869 48.1487 18.6949 47.1539 15.8145 47.1539H8.66667C4.24177 47.1539 0.5 43.7531 0.5 39.3728V8.28114Z\" fill=\"url(#paint0_linear_145_113)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_145_113\" x1=\"2\" y1=\"-7\" x2=\"29\" y2=\"52\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9948FF\"/>\\n<stop offset=\"1\" stop-color=\"#6D00F9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxw614\",\"data-styles-preset\":\"ljW6N2dCg\",children:\"10 Keynotes von Top-E-Commerce-Manager:innen und Gr\\xfcnder:innen in DACH\"})}),className:\"framer-15ozjnd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b262k0\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qd4bjn\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:75,svg:'<svg width=\"75\" height=\"53\" viewBox=\"-2 -2 75 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.1083 0.598995L35.1098 0.599339L67.6041 8.04064C69.3396 8.43802 70.5861 9.95735 70.6388 11.736C70.6914 13.5149 69.5347 15.1051 67.8261 15.6031L65 16.4271V33H62V17.3019L55.0861 19.3178L59.5017 36.1035C59.9456 37.7926 59.2157 39.5718 57.7124 40.4612C49.4699 45.3408 41.7988 47.1341 35.2962 47.3834L35.2986 47.4146H33.6777C30.0654 47.4146 26.865 46.9502 24.1871 46.3215C15.7878 44.3497 10.6473 40.4168 10.3452 40.182C9.14109 39.2454 8.59041 37.693 8.93947 36.2059L8.93977 36.2046L12.3641 21.5802L13.0413 18.6879L8.27507 17.1723L3.22374 15.5659C1.55812 15.0356 0.445932 13.464 0.502029 11.7165C0.558133 9.96832 1.76774 8.47204 3.46282 8.04826L33.2908 0.615963C33.8842 0.46849 34.5071 0.460406 35.1083 0.598995ZM33.5461 44.4144H33.6777C40.0001 44.4144 47.7333 42.8827 56.1845 37.8795C56.5332 37.6731 56.7037 37.2598 56.6003 36.8664L51.4415 17.2555L66.9864 12.723C67.3832 12.6074 67.6523 12.2376 67.6401 11.8247C67.6279 11.4101 67.3377 11.0573 66.9346 10.965L34.4348 3.52242C34.3006 3.49143 34.1564 3.49209 34.0144 3.52739L4.19045 10.9587C3.79463 11.0578 3.51352 11.4065 3.50049 11.8127C3.48748 12.2179 3.74514 12.5833 4.13289 12.707L16.595 16.67L14.8242 24.2323L11.8602 36.8911C11.7792 37.2355 11.9061 37.5955 12.1865 37.8136C12.3145 37.913 17.0603 41.5669 24.8727 43.4009C27.3209 43.9757 30.2452 44.4033 33.5461 44.4144ZM59.5454 39.9732C59.5454 37.8148 61.2956 36.0646 63.4539 36.0646C65.6124 36.0646 67.3625 37.8149 67.3625 39.9732V44.8388C67.3625 46.997 65.6132 48.7474 63.4539 48.7474C61.2955 48.7474 59.5454 46.9971 59.5454 44.8388V39.9732ZM63.4539 39.0646C62.9524 39.0646 62.5454 39.4717 62.5454 39.9732V44.8388C62.5454 45.3403 62.9524 45.7474 63.4539 45.7474C63.9559 45.7474 64.3625 45.3406 64.3625 44.8388V39.9732C64.3625 39.4717 63.9554 39.0646 63.4539 39.0646ZM21.7832 16.5271L21.2167 19.4731L34.4586 22.0196L45.7026 20.4864L45.2973 17.5139L34.5413 18.9806L21.7832 16.5271Z\" fill=\"url(#paint0_linear_145_112)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_145_112\" x1=\"21.4999\" y1=\"17.6401\" x2=\"21.6224\" y2=\"20.4891\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9948FF\"/>\\n<stop offset=\"1\" stop-color=\"#6D00F9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxw614\",\"data-styles-preset\":\"ljW6N2dCg\",children:\"10 Masterclasses mit f\\xfchrenden Shopify Apps\"})}),className:\"framer-xtresa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2fgrsc\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-feka15\",\"data-framer-name\":\"Vector (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:57,intrinsicWidth:57,svg:'<svg width=\"57\" height=\"57\" viewBox=\"-2 -2 57 57\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.7217 2.62115C27.2312 1.35098 29.1785 0.5 31.2029 0.5C35.4052 0.5 38.2548 4.13065 37.4665 8.243L37.4664 8.24318L35.9654 16.0684C35.6697 17.6099 36.851 19.0394 38.4206 19.0394H46.1079C50.3058 19.0394 53.1695 22.674 52.3637 26.7855C51.9786 28.7897 50.8 30.5687 49.2913 31.8392C47.7831 33.1091 45.8375 33.9606 43.8159 33.9606H34.594C33.3949 33.9606 32.3647 34.812 32.1388 35.9896L30.3491 45.3187C30.349 45.3191 30.3489 45.3196 30.3488 45.3201C29.9682 47.3265 28.7906 49.1073 27.2808 50.3785C25.772 51.6491 23.8245 52.5 21.8001 52.5C17.5979 52.5 14.7483 48.8693 15.5366 44.757L15.5366 44.7568L17.0377 36.9316C17.3334 35.3901 16.1521 33.9606 14.5825 33.9606H6.89521C2.69299 33.9606 -0.156644 30.33 0.631671 26.2176C1.01592 24.2131 2.19248 22.4329 3.70161 21.1612C5.2095 19.8906 7.15533 19.0394 9.18004 19.0394H18.4019C19.601 19.0394 20.6313 18.188 20.8572 17.0104L22.6474 7.6782C23.0319 5.67269 24.211 3.89237 25.7217 2.62115ZM27.6533 4.9166C26.582 5.81807 25.8286 7.01805 25.5938 8.243L25.5937 8.2432L23.8034 17.5756C23.3064 20.1663 21.0399 22.0394 18.4019 22.0394H9.18004C7.98745 22.0394 6.70531 22.5532 5.63474 23.4553C4.56542 24.3564 3.81303 25.5565 3.57802 26.7824C3.12782 29.131 4.66281 30.9606 6.89521 30.9606H14.5825C18.0356 30.9606 20.6345 34.1055 19.984 37.4968L18.483 45.3218C18.4829 45.3219 18.4829 45.3219 18.4829 45.322C18.0328 47.6705 19.5678 49.5 21.8001 49.5C22.9931 49.5 24.2771 48.9859 25.3485 48.0837C26.4187 47.1826 27.1697 45.9836 27.4016 44.7601L27.4022 44.7568L29.1925 35.4244C29.6895 32.8337 31.956 30.9606 34.594 30.9606H43.8159C45.0045 30.9606 46.2868 30.4471 47.3589 29.5444C48.4296 28.6428 49.1831 27.4427 49.4179 26.2176L49.4193 26.2108C49.8779 23.8772 48.3433 22.0394 46.1079 22.0394H38.4206C34.9675 22.0394 32.3686 18.8945 33.0191 15.5032L34.5201 7.6782C34.5201 7.67814 34.5201 7.67808 34.5201 7.67802C34.9702 5.32954 33.4353 3.5 31.2029 3.5C30.01 3.5 28.7258 4.01409 27.6533 4.9166Z\" fill=\"url(#paint0_linear_145_114)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_145_114\" x1=\"2\" y1=\"-6.82\" x2=\"29.7765\" y2=\"49.3807\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9948FF\"/>\\n<stop offset=\"1\" stop-color=\"#6D00F9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxw614\",\"data-styles-preset\":\"ljW6N2dCg\",children:\"Ein Tag f\\xfcr ehrlichen Erfahrungsaustausch\"})}),className:\"framer-xju4mh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-o9nea3\",\"data-framer-appear-id\":\"o9nea3\",\"data-framer-name\":\"Reviews Carousel\",initial:animation16,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4f3lo0\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation17,className:\"framer-1k5r018\",\"data-framer-appear-id\":\"1k5r018\",\"data-framer-name\":\"Star\",initial:animation18,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-k709wf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 21\"><path d=\"M 11.509 0 L 14.377 7.558 L 22.454 7.949 L 16.149 13.011 L 18.273 20.81 L 11.509 16.381 L 4.744 20.81 L 6.868 13.011 L 0.563 7.949 L 8.64 7.558 Z\" fill=\"rgb(248,208,0)\"></path></svg>',svgContentId:9154689248,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation19,className:\"framer-1893ax9\",\"data-framer-appear-id\":\"1893ax9\",\"data-framer-name\":\"Star\",initial:animation18,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10a5cbt\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 21\"><path d=\"M 11.509 0 L 14.377 7.558 L 22.454 7.949 L 16.149 13.011 L 18.273 20.81 L 11.509 16.381 L 4.744 20.81 L 6.868 13.011 L 0.563 7.949 L 8.64 7.558 Z\" fill=\"rgb(248,208,0)\"></path></svg>',svgContentId:9154689248,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation20,className:\"framer-gni6yp\",\"data-framer-appear-id\":\"gni6yp\",\"data-framer-name\":\"Star\",initial:animation18,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8o7q15\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 21\"><path d=\"M 11.509 0 L 14.377 7.558 L 22.454 7.949 L 16.149 13.011 L 18.273 20.81 L 11.509 16.381 L 4.744 20.81 L 6.868 13.011 L 0.563 7.949 L 8.64 7.558 Z\" fill=\"rgb(248,208,0)\"></path></svg>',svgContentId:9154689248,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation21,className:\"framer-3f6ai0\",\"data-framer-appear-id\":\"3f6ai0\",\"data-framer-name\":\"Star\",initial:animation18,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14lnphi\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 21\"><path d=\"M 11.509 0 L 14.377 7.558 L 22.454 7.949 L 16.149 13.011 L 18.273 20.81 L 11.509 16.381 L 4.744 20.81 L 6.868 13.011 L 0.563 7.949 L 8.64 7.558 Z\" fill=\"rgb(248,208,0)\"></path></svg>',svgContentId:9154689248,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation22,className:\"framer-16swc7\",\"data-framer-appear-id\":\"16swc7\",\"data-framer-name\":\"Star\",initial:animation18,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1g8ccrr\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 21\"><path d=\"M 11.509 0 L 14.377 7.558 L 22.454 7.949 L 16.149 13.011 L 18.273 20.81 L 11.509 16.381 L 4.744 20.81 L 6.868 13.011 L 0.563 7.949 L 8.64 7.558 Z\" fill=\"rgb(248,208,0)\"></path></svg>',svgContentId:9154689248,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6dct6\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation23,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3dbf6c2f-653c-4ad1-8329-8f7d3ae917d2, rgb(47, 47, 47))\"},children:\"Das MI Team hat etwas wirklich beeindruckendes geliefert, viele spannende Menschen, tolle Vortr\\xe4ge und eine super Location.\u201D\"})}),className:\"framer-b6deh\",\"data-framer-appear-id\":\"b6deh\",fonts:[\"CUSTOM;Inter Regular\"],initial:animation16,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation24,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIEJvbGQ=\",\"--framer-font-family\":'\"Inter Bold\", \"Inter Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--token-3dbf6c2f-653c-4ad1-8329-8f7d3ae917d2, rgb(47, 47, 47))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Artur Wagner, CDO Braun GmbH & Co\"})})}),className:\"framer-usplqr\",\"data-framer-appear-id\":\"usplqr\",fonts:[\"CUSTOM;Inter Bold\"],initial:animation16,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxxso9\",\"data-framer-name\":\"Speakers\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s1ohrp\",\"data-styles-preset\":\"qgbwtunKf\",children:\"Lerne von den Erfahrungen Anderer, wie\u2026\"})}),className:\"framer-3hm236\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+0+1959.5+10+77.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:374,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1494.6+40+77.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hheigu-container\",nodeId:\"KJwUuogKT\",scopeId:\"oGlL_yyb8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{variant:\"G3bf1TAvW\"}},children:/*#__PURE__*/_jsx(SpeakersSlider,{CF6oc2dQt:\"var(--token-04df45f7-6155-49f4-ac00-2ed8fdd118f3, rgb(92, 15, 217))\",height:\"100%\",id:\"KJwUuogKT\",layoutId:\"KJwUuogKT\",style:{width:\"100%\"},t5AqlPQcs:\"rgb(255, 255, 255)\",variant:\"VWESwjCIY\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"shgY2cDXn\"},implicitPathVariables:undefined},{href:{webPageId:\"shgY2cDXn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+0+1959.5+10+476.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,y:(componentViewport?.y||0)+0+1494.6+40+476.5,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation27,className:\"framer-16ka0b1-container\",\"data-framer-appear-id\":\"16ka0b1\",initial:animation1,nodeId:\"VNx0SCu21\",optimized:true,rendersWithMotion:true,scopeId:\"oGlL_yyb8\",whileHover:animation26,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{hn4gIwiei:resolvedLinks1[1],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CallToAction,{athY4Lpm7:true,height:\"100%\",hn4gIwiei:resolvedLinks1[0],id:\"VNx0SCu21\",kTkMas5wO:true,layoutId:\"VNx0SCu21\",QsxmmCRVV:\"Alle 2024 Speaker:innen\",variant:\"STyHguu48\",wHQNeShTl:\"\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gy0dic\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-79igh8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3dbf6c2f-653c-4ad1-8329-8f7d3ae917d2, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"einige der Marken, die 2024 auf der B\\xfchne standen\"})}),className:\"framer-1nq2i4z\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{width:`min(${componentViewport?.width||\"100vw\"} - 20px, 1024px)`,y:(componentViewport?.y||0)+0+1959.5+10+562.5+0+138}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:134,width:`min(${componentViewport?.width||\"100vw\"}, 1024px)`,y:(componentViewport?.y||0)+0+1494.6+40+562.5+0+138,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vrjz2f-container\",nodeId:\"hzE_gQNQ5\",scopeId:\"oGlL_yyb8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{variant:\"YRef90RvL\"}},children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"hzE_gQNQ5\",layoutId:\"hzE_gQNQ5\",style:{width:\"100%\"},variant:\"FqKnAMgwC\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1138,intrinsicWidth:2317,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2814),pixelHeight:1138,pixelWidth:2317,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp\",srcSet:\"https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp 2317w\"}}},children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1138,intrinsicWidth:2317,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2446.1),pixelHeight:1138,pixelWidth:2317,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp\",srcSet:\"https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp 2317w\"},className:\"framer-14wqzrs\",\"data-framer-name\":\"Two Days\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-iu058g\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v42x2f\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zk3d23\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s1ohrp\",\"data-styles-preset\":\"qgbwtunKf\",children:\"Zwei Tage voller Shopify-Wissen!\"})}),className:\"framer-m81inj\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ik3dlv\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5a6bv9\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation28,className:\"framer-1j3a1sn\",\"data-framer-appear-id\":\"1j3a1sn\",initial:animation29,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"MI 15.10. - ab 18 Uhr\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"MI 15.10. - ab 18 Uhr\"})}),className:\"framer-1levgo4\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s1ohrp\",\"data-styles-preset\":\"qgbwtunKf\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Satellite Events\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-spl80c\",\"data-styles-preset\":\"OHTulweSe\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Satellite Events\"})}),className:\"framer-18v94o3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Mehrere Locations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Mehrere Locations\"})}),className:\"framer-100xkk7\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Kleinere Veranstaltungen, die von einigen der besten Shopify-Marken in Berlin ausgerichtet werden.\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Kleinere Veranstaltungen, die von einigen der besten Shopify-Marken in Berlin ausgerichtet werden.\"})})})}),className:\"framer-14rmslw\",fonts:[\"CUSTOM;Gordita Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Zugang ist im Ticket enthalten, aber die Pl\\xe4tze sind begrenzt. First come, first serve.\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Zugang ist im Ticket enthalten, aber die Pl\\xe4tze sind begrenzt. First come, first serve.\"})})})}),className:\"framer-86h2qh\",fonts:[\"CUSTOM;Gordita Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Getr\\xe4nke und Snacks inklusive.\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Getr\\xe4nke und Snacks inklusive.\"})})})}),className:\"framer-6asdte\",fonts:[\"CUSTOM;Gordita Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation30,className:\"framer-430ce1\",\"data-framer-appear-id\":\"430ce1\",initial:animation29,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"DO. 16.10. - 09:00 bis 23:30\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"DO. 16.10. - 09:00 bis 23:30\"})}),className:\"framer-k1tcmo\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s1ohrp\",\"data-styles-preset\":\"qgbwtunKf\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MIT2025 Konferenz\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-spl80c\",\"data-styles-preset\":\"OHTulweSe\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MIT2025 Konferenz\"})}),className:\"framer-13xsm5z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Festsaal Kreuzberg\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Festsaal Kreuzberg\"})}),className:\"framer-s2ao72\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Das gro\\xdfe Event mit 450 Shopify-H\\xe4ndler:innen, mehr als 20 Partner:innen, B\\xfchnen, Masterclasses und vieles mehr.\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Das gro\\xdfe Event mit 450 Shopify-H\\xe4ndler:innen, mehr als 20 Partner:innen, B\\xfchnen, Masterclasses und vieles mehr.\"})})})}),className:\"framer-1oh0r18\",fonts:[\"CUSTOM;Gordita Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Exklusive Afterparty ab 18:00\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Exklusive Afterparty ab 18:00\"})})})}),className:\"framer-11q5blx\",fonts:[\"CUSTOM;Gordita Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Kaffee & Getr\\xe4nke inklusive\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Kaffee & Getr\\xe4nke inklusive\"})})})}),className:\"framer-1owjx28\",fonts:[\"CUSTOM;Gordita Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Goodie Bag mit tollen Geschenken unserer Sponsoren\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Goodie Bag mit tollen Geschenken unserer Sponsoren\"})})})}),className:\"framer-16wvsxf\",fonts:[\"CUSTOM;Gordita Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Tickets ab \u20AC120\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Tickets ab \u20AC120\"})})})}),className:\"framer-r2i03n\",fonts:[\"CUSTOM;Gordita Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ikeekm\",\"data-framer-name\":\"Venue\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:723,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4979.5+0+0),pixelHeight:723,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,src:\"https://framerusercontent.com/images/0Y9zjDWWsxcinvE97l8TntO1Efs.webp\",srcSet:\"https://framerusercontent.com/images/0Y9zjDWWsxcinvE97l8TntO1Efs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/0Y9zjDWWsxcinvE97l8TntO1Efs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/0Y9zjDWWsxcinvE97l8TntO1Efs.webp 1600w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation31,__framer__exit:animation32,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:723,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3990.5+0),pixelHeight:723,pixelWidth:1600,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/0Y9zjDWWsxcinvE97l8TntO1Efs.webp\",srcSet:\"https://framerusercontent.com/images/0Y9zjDWWsxcinvE97l8TntO1Efs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/0Y9zjDWWsxcinvE97l8TntO1Efs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/0Y9zjDWWsxcinvE97l8TntO1Efs.webp 1600w\"},className:\"framer-f7sgtb\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ky4dqc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g4293c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k6uoep\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgQm9sZA==\",\"--framer-font-family\":'\"Gordita Bold\", \"Gordita Bold Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Die perfekte Location im Herzen von Kreuzberg\"})}),className:\"framer-71pjs2\",fonts:[\"CUSTOM;Gordita Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Der Festsaal Berlin ist die perfekte Location f\\xfcr ungezwungenen Austausch, typischen Gro\\xdfstadtflair und einen entspannten Tag - mit ausreichend Au\\xdfen- und Innenbereichen, ideal f\\xfcr jedes Wetter.\"})}),className:\"framer-6d2o5c\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:\"https://goo.gl/maps/fYqjAAMVP7XdRPBPA\",motionChild:true,nodeId:\"Tkl1QAQUX\",openInNewTab:true,scopeId:\"oGlL_yyb8\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1idyjtd framer-g6wi26\",\"data-framer-name\":\"Venue Link\",whileHover:animation33,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qpbt9m\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"17\" viewBox=\"0 0 13 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.60049 16.5166C6.60055 16.5167 6.59871 16.516 6.59485 16.5142C6.59852 16.5155 6.60044 16.5164 6.60049 16.5166ZM12.5 6.56818C12.5 7.3483 12.1427 8.36376 11.5427 9.49408C10.9506 10.6097 10.1551 11.7769 9.35081 12.8433C8.54787 13.9079 7.74375 14.862 7.13977 15.5504C6.83801 15.8944 6.58678 16.1714 6.41137 16.362C6.40638 16.3674 6.40144 16.3728 6.39657 16.378C6.37358 16.3598 6.34895 16.3397 6.32268 16.3176C6.1146 16.1429 5.84345 15.8793 5.5281 15.5399C4.8994 14.8631 4.12446 13.9165 3.37095 12.855C2.61705 11.7929 1.89278 10.6274 1.35907 9.5126C0.819647 8.3859 0.5 7.36211 0.5 6.56818C0.5 3.21189 3.1912 0.5 6.5 0.5C9.8088 0.5 12.5 3.21189 12.5 6.56818Z\" stroke=\"white\"/>\\n<circle cx=\"6.5\" cy=\"6.5\" r=\"2.5\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Am Flutgraben 12435 Berlin / Treptow\"})}),className:\"framer-1hwlmt1\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v0lgqa\"})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1138,intrinsicWidth:2317,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5440.3),pixelHeight:1138,pixelWidth:2317,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp\",srcSet:\"https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp 2317w\"}}},children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1138,intrinsicWidth:2317,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4590.5),pixelHeight:1138,pixelWidth:2317,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp\",srcSet:\"https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/3y27reqoo2ZysltdnzymjJ1A.webp 2317w\"},className:\"framer-nhxojo\",\"data-framer-name\":\"Event Details\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wjcy82\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17ddsrt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kunpi0\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s1ohrp\",\"data-styles-preset\":\"qgbwtunKf\",children:\"Das Event f\\xfcr die E-Commerce Manager:innen & Entscheider:innen der f\\xfchrenden Brands auf Shopify\"})}),className:\"framer-li4tqx\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation34,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3vsr0n\",\"data-styles-preset\":\"amKuOzFA9\",children:\"Konkrete Erfahrungen & L\\xf6sungen zu den relevantesten Herausforderungen auf Shopify und Shopify Plus\"})}),className:\"framer-1alywo3\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9yba2b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11zgoap\",\"data-framer-name\":\"Card Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:703,intrinsicWidth:1049,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5440.3+20+318.5+0+0+0+0),pixelHeight:1867,pixelWidth:2800,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1140px)`,src:\"https://framerusercontent.com/images/itFeJ8bGwGL2TyYvrSRwiFddWSU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/itFeJ8bGwGL2TyYvrSRwiFddWSU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/itFeJ8bGwGL2TyYvrSRwiFddWSU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/itFeJ8bGwGL2TyYvrSRwiFddWSU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/itFeJ8bGwGL2TyYvrSRwiFddWSU.jpg 2800w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:703,intrinsicWidth:1049,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4590.5+0+413.5+0+0+0),pixelHeight:1867,pixelWidth:2800,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 12px) / 2, 1px)`,src:\"https://framerusercontent.com/images/itFeJ8bGwGL2TyYvrSRwiFddWSU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/itFeJ8bGwGL2TyYvrSRwiFddWSU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/itFeJ8bGwGL2TyYvrSRwiFddWSU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/itFeJ8bGwGL2TyYvrSRwiFddWSU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/itFeJ8bGwGL2TyYvrSRwiFddWSU.jpg 2800w\"},className:\"framer-2ewx95\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-888kzk\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-no7gzr\",\"data-styles-preset\":\"CyAR9YT_z\",children:\"Austausch\"})}),className:\"framer-kk9n28\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a0kkxx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rbhw0n\",\"data-styles-preset\":\"rXjo_L3Nt\",children:\"Triff andere Brands und tausche dich aus\"})}),className:\"framer-1ayjgfy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-3dbf6c2f-653c-4ad1-8329-8f7d3ae917d2, rgb(47, 47, 47))\"},children:\"Lerne die E-Commerce Manager:innen und Gr\\xfcnder:innen anderer Brands in entspannter Atmosph\\xe4re kennen, tausch dich zu deinen aktuellen Herausforderungen auf Shopify und Shopify Plus aus und teile deine Erfahrungen.\"})}),className:\"framer-1qigbg\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12r7pxi\",\"data-framer-name\":\"Card Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:703,intrinsicWidth:1049,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5440.3+20+318.5+0+463.6+0+0),pixelHeight:1867,pixelWidth:2800,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1140px)`,src:\"https://framerusercontent.com/images/hUIQmZfcOsZFsCprE0uLGJNAQmM.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hUIQmZfcOsZFsCprE0uLGJNAQmM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hUIQmZfcOsZFsCprE0uLGJNAQmM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hUIQmZfcOsZFsCprE0uLGJNAQmM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hUIQmZfcOsZFsCprE0uLGJNAQmM.jpg 2800w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation36,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:703,intrinsicWidth:1049,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4590.5+0+413.5+0+437+0),pixelHeight:1867,pixelWidth:2800,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 12px) / 2, 1px)`,src:\"https://framerusercontent.com/images/hUIQmZfcOsZFsCprE0uLGJNAQmM.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hUIQmZfcOsZFsCprE0uLGJNAQmM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hUIQmZfcOsZFsCprE0uLGJNAQmM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hUIQmZfcOsZFsCprE0uLGJNAQmM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hUIQmZfcOsZFsCprE0uLGJNAQmM.jpg 2800w\"},className:\"framer-lu68h8\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j0mlff\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-no7gzr\",\"data-styles-preset\":\"CyAR9YT_z\",children:\"Learnings\"})}),className:\"framer-1yxh54r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fj3hsj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rbhw0n\",\"data-styles-preset\":\"rXjo_L3Nt\",children:\"Erfahrungswerte & Insights anderer Brands auf Shopify\"})}),className:\"framer-1bh2s5y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-3dbf6c2f-653c-4ad1-8329-8f7d3ae917d2, rgb(47, 47, 47))\"},children:\"H\\xf6r auf der Hauptb\\xfchne Cases anderer Brands auf Shopify und Shopify Plus zu, lerne wie sie die Herausforderungen auf Shopify gemeistert haben und erfahre ihre Learnings.\"})}),className:\"framer-1pmxcuf\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15jd9af\",\"data-framer-name\":\"Card Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:703,intrinsicWidth:1049,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5440.3+20+318.5+0+927.2+0+0),pixelHeight:5818,pixelWidth:3879,positionX:\"54%\",positionY:\"74.4%\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1140px)`,src:\"https://framerusercontent.com/images/jsgva7vkylhqtGBgCQH6Jb1xyM.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jsgva7vkylhqtGBgCQH6Jb1xyM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/jsgva7vkylhqtGBgCQH6Jb1xyM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/jsgva7vkylhqtGBgCQH6Jb1xyM.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/jsgva7vkylhqtGBgCQH6Jb1xyM.jpg 3879w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation36,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:703,intrinsicWidth:1049,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4590.5+0+413.5+0+874+0),pixelHeight:5818,pixelWidth:3879,positionX:\"54%\",positionY:\"74.4%\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 12px) / 2, 1px)`,src:\"https://framerusercontent.com/images/jsgva7vkylhqtGBgCQH6Jb1xyM.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jsgva7vkylhqtGBgCQH6Jb1xyM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/jsgva7vkylhqtGBgCQH6Jb1xyM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/jsgva7vkylhqtGBgCQH6Jb1xyM.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/jsgva7vkylhqtGBgCQH6Jb1xyM.jpg 3879w\"},className:\"framer-12kdr39\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6zsyra\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-no7gzr\",\"data-styles-preset\":\"CyAR9YT_z\",children:\"Deep Dives\"})}),className:\"framer-dnnx2z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-410ko2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rbhw0n\",\"data-styles-preset\":\"rXjo_L3Nt\",children:\"Erhalte konkrete Tipps in den Masterclasses\"})}),className:\"framer-p4whyr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-3dbf6c2f-653c-4ad1-8329-8f7d3ae917d2, rgb(47, 47, 47))\"},children:\"In kleiner Runde teilen erfahrene Shopify H\\xe4ndler:innen in hands-on Sessions ihre Learnings mit dir, gehen auf ihre gr\\xf6\\xdften Herausforderungen ein und geben Tipps zu wichtigen Umsetzungen auf Shopify.\"})}),className:\"framer-t363fy\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yuyl9v\",\"data-framer-name\":\"Card Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:703,intrinsicWidth:1049,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5440.3+20+318.5+0+1390.8+0+0),pixelHeight:1450,pixelWidth:2158,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1140px)`,src:\"https://framerusercontent.com/images/h26JnZKr7PraUCuGDgC6yu6f2wM.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/h26JnZKr7PraUCuGDgC6yu6f2wM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/h26JnZKr7PraUCuGDgC6yu6f2wM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/h26JnZKr7PraUCuGDgC6yu6f2wM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/h26JnZKr7PraUCuGDgC6yu6f2wM.jpg 2158w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation37,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:703,intrinsicWidth:1049,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4590.5+0+413.5+0+1311+0),pixelHeight:1450,pixelWidth:2158,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 12px) / 2, 1px)`,src:\"https://framerusercontent.com/images/h26JnZKr7PraUCuGDgC6yu6f2wM.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/h26JnZKr7PraUCuGDgC6yu6f2wM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/h26JnZKr7PraUCuGDgC6yu6f2wM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/h26JnZKr7PraUCuGDgC6yu6f2wM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/h26JnZKr7PraUCuGDgC6yu6f2wM.jpg 2158w\"},className:\"framer-1d9a9wo\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ycpn9\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-no7gzr\",\"data-styles-preset\":\"CyAR9YT_z\",children:\"EXPO\"})}),className:\"framer-pc5hnb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yq7a55\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rbhw0n\",\"data-styles-preset\":\"rXjo_L3Nt\",children:\"Lerne f\\xfchrende Shopify Apps kennen\"})}),className:\"framer-zw5hkl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-3dbf6c2f-653c-4ad1-8329-8f7d3ae917d2, rgb(47, 47, 47))\"},children:\"In der Expo Hallo triffst du auf Vertreter:innen der f\\xfchrenden Shopify Apps im DACH-Raum. Lerne das perfekte Tool Stack auf Shopify im deutschsprachigen Raum kennen, um deinen Shop auf das n\\xe4chste Level zu bringen.\"})}),className:\"framer-4hdb1s\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lkql6t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Regular\", \"Inter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-04df45f7-6155-49f4-ac00-2ed8fdd118f3, rgb(109, 0, 249))\",\"--framer-text-transform\":\"uppercase\"},children:\"Plus\u2026\"})}),className:\"framer-14x62vj\",fonts:[\"CUSTOM;Inter Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wwkxud\",\"data-framer-name\":\"USPs\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-246tc7\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7lrimy\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:82,intrinsicWidth:83,svg:'<svg width=\"83\" height=\"82\" viewBox=\"0 0 83 82\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M31.509 0.411133C31.8112 0.656738 32.0198 0.999023 32.1 1.37988L38.23 30.2798C39.32 37.1299 37.42 42.5601 32.9 45.5601L24.3 51.2798C23.4158 52.0308 22.7017 52.9614 22.2051 54.0098C21.7086 55.0581 21.4409 56.2002 21.42 57.3599V78.0298H29.76C30.2109 78.0298 30.6433 78.209 30.9621 78.5278C31.2809 78.8467 31.46 79.2793 31.46 79.73C31.46 80.1807 31.2809 80.6133 30.9621 80.9321C30.6433 81.251 30.2109 81.4302 29.76 81.4302H9.75999C9.65965 81.4302 9.55975 81.4214 9.46144 81.4038C9.34103 81.3823 9.22299 81.3477 9.10943 81.3008C8.90318 81.2153 8.71577 81.0898 8.55792 80.9321C8.43765 80.812 8.33633 80.6743 8.25711 80.5244C8.23234 80.4775 8.20974 80.4297 8.1894 80.3804C8.10397 80.1743 8.05999 79.9531 8.05999 79.73C8.05999 79.6226 8.0702 79.5156 8.09033 79.4106C8.11198 79.2974 8.14512 79.1865 8.1894 79.0796C8.27484 78.873 8.40005 78.6855 8.55792 78.5278C8.71577 78.3701 8.90318 78.2446 9.10943 78.1592C9.31568 78.0737 9.53675 78.0298 9.75999 78.0298H18.02V57.27C17.9975 56.1211 17.7277 54.9902 17.229 53.9551C16.7303 52.9194 16.0144 52.0039 15.13 51.27L6.55 45.5601C2.19 42.6699 0.36999 37.4302 1.19 30.4302L7.35 1.37988C7.43019 0.999023 7.6388 0.656738 7.94097 0.411133C8.24314 0.165527 8.62052 0.0307617 9.00999 0.0297852H30.44C30.8295 0.0307617 31.2069 0.165527 31.509 0.411133ZM17.07 48.4502C18.1672 49.2744 19.0828 50.3164 19.76 51.5098C20.4266 50.3237 21.3283 49.2856 22.41 48.46L31.01 42.73C35.53 39.71 35.38 34.02 34.89 30.8901L29.06 3.43018H10.39L4.53999 30.98C3.88999 36.5898 5.19999 40.5698 8.44 42.73L17.07 48.4502ZM21.7416 17.5894C20.7106 18.2764 19.499 18.6421 18.26 18.6401C16.6032 18.6372 15.015 17.978 13.8435 16.8066C12.672 15.6348 12.0126 14.0469 12.01 12.3901C12.008 11.1509 12.3737 9.93945 13.0608 8.9082C13.7479 7.87744 14.7255 7.07324 15.8698 6.59863C17.014 6.12354 18.2736 5.99854 19.4888 6.23975C20.7041 6.48096 21.8204 7.07764 22.6965 7.95361C23.5726 8.82959 24.169 9.9458 24.4102 11.1611C24.6514 12.3765 24.5266 13.6357 24.0516 14.7803C23.5765 15.9243 22.7726 16.9019 21.7416 17.5894ZM20.6295 8.84326C19.9276 8.37598 19.103 8.12793 18.26 8.12988C17.1319 8.13281 16.0509 8.58252 15.2542 9.38135C14.4574 10.1797 14.01 11.2617 14.01 12.3901C14.01 13.2329 14.2601 14.0571 14.7286 14.7578C15.1972 15.4585 15.8631 16.0044 16.6421 16.3267C17.4211 16.6489 18.2781 16.7324 19.1048 16.5674C19.9314 16.4023 20.6904 15.9956 21.2858 15.3989C21.8812 14.8018 22.2861 14.042 22.4494 13.2148C22.6126 12.3877 22.5268 11.5312 22.2028 10.7529C21.8789 9.97461 21.3313 9.31006 20.6295 8.84326ZM25.27 19.5801C24.031 19.5781 22.8193 19.9438 21.7884 20.6309C20.7574 21.3179 19.9535 22.2954 19.4784 23.4399C19.0034 24.584 18.8786 25.8438 19.1198 27.0586C19.361 28.2739 19.9574 29.3906 20.8335 30.2666C21.7096 31.1426 22.8259 31.7388 24.0412 31.98C25.2564 32.2212 26.5159 32.0967 27.6602 31.6216C28.8045 31.1465 29.7821 30.3428 30.4692 29.3115C31.1563 28.2808 31.522 27.0688 31.52 25.8301C31.5173 24.1733 30.858 22.585 29.6865 21.4136C28.515 20.2422 26.9268 19.5825 25.27 19.5801ZM25.27 30.0898C24.427 30.0918 23.6024 29.8438 22.9006 29.377C22.1987 28.9102 21.6511 28.2456 21.3271 27.4673C21.0032 26.689 20.9174 25.832 21.0806 25.0049C21.2439 24.1782 21.6488 23.418 22.2442 22.8213C22.8395 22.2246 23.5986 21.8179 24.4252 21.6528C25.2519 21.4873 26.1089 21.5713 26.8879 21.8936C27.6669 22.2153 28.3328 22.7612 28.8014 23.4624C29.2699 24.1631 29.52 24.9868 29.52 25.8301C29.52 26.958 29.0726 28.04 28.2758 28.8389C27.4791 29.6372 26.3981 30.0874 25.27 30.0898ZM11.2784 31.1406C12.3094 30.4536 13.521 30.0879 14.76 30.0898C16.4168 30.0928 18.005 30.752 19.1765 31.9233C20.348 33.0952 21.0073 34.6831 21.01 36.3398C21.012 37.5791 20.6463 38.7905 19.9592 39.8218C19.2721 40.8525 18.2945 41.6567 17.1502 42.1313C16.0059 42.6064 14.7464 42.7314 13.5312 42.4902C12.3159 42.249 11.1996 41.6523 10.3235 40.7764C9.44744 39.9004 8.85102 38.7842 8.6098 37.5688C8.36857 36.3535 8.49339 35.0942 8.96842 33.9497C9.44348 32.8057 10.2474 31.8281 11.2784 31.1406ZM12.3905 39.8867C13.0924 40.354 13.917 40.6021 14.76 40.6001C15.8881 40.5972 16.9691 40.1475 17.7658 39.3486C18.5626 38.5503 19.01 37.4683 19.01 36.3398C19.01 35.4971 18.7599 34.6729 18.2914 33.9722C17.8228 33.2715 17.1569 32.7256 16.3779 32.4033C15.5989 32.0811 14.7419 31.9976 13.9152 32.1626C13.0886 32.3276 12.3296 32.7344 11.7342 33.3311C11.1388 33.9282 10.7339 34.688 10.5706 35.5151C10.4074 36.3423 10.4932 37.1987 10.8171 37.9771C11.1411 38.7554 11.6887 39.4199 12.3905 39.8867ZM80.68 66.73C80.1786 66.1841 79.8972 65.4712 79.89 64.73V33.73L79.8907 33.6953C79.9024 33.2017 80.0183 28.3364 75.72 21.5498C72.41 16.3198 71.92 12.9199 71.92 11.4102H72.92C73.3709 11.4102 73.8032 11.231 74.1221 10.9121C74.4409 10.5933 74.62 10.1606 74.62 9.70996V1.72998C74.62 1.2793 74.4409 0.84668 74.1221 0.527832C73.8032 0.208984 73.3709 0.0297852 72.92 0.0297852H54.3C53.8491 0.0297852 53.4167 0.208984 53.0979 0.527832C52.7791 0.84668 52.6 1.2793 52.6 1.72998V9.72998C52.6 10.1807 52.7791 10.6133 53.0979 10.9321C53.4167 11.251 53.8491 11.4302 54.3 11.4302H55.1C55.1 12.9399 54.53 16.3301 51.3 21.5898C46.94 28.73 47.14 33.5 47.15 33.6602V64.7798C47.1428 65.5215 46.8614 66.2339 46.36 66.7798C45.2515 67.9253 44.6158 69.4468 44.58 71.04C44.5692 71.1499 44.5692 71.2603 44.58 71.3701L45.79 77.5498C45.8389 78.5776 46.2818 79.5469 47.0267 80.2563C47.7716 80.9658 48.7612 81.3613 49.79 81.3599H77.22C78.2487 81.3613 79.2384 80.9658 79.9833 80.2563C80.7282 79.5469 81.1711 78.5776 81.22 77.5498L82.43 71.3799C82.4403 71.2671 82.4403 71.1533 82.43 71.04C82.4098 69.4341 81.7849 67.895 80.68 66.73ZM77.86 77.02C77.8501 77.1299 77.8501 77.2402 77.86 77.3501C77.86 77.4297 77.8442 77.5083 77.8134 77.582C77.7826 77.6553 77.7375 77.7222 77.6808 77.7778C77.6568 77.8013 77.6309 77.8228 77.6035 77.8418C77.5659 77.8682 77.5254 77.8901 77.4827 77.9072C77.4087 77.937 77.3296 77.9512 77.25 77.9502H49.81C49.6509 77.9502 49.4983 77.8867 49.3857 77.7744C49.2732 77.6616 49.21 77.5093 49.21 77.3501C49.2203 77.2437 49.2203 77.1362 49.21 77.0298L48.01 70.8901C48.0981 70.1938 48.4146 69.5469 48.91 69.0498C49.9799 67.8848 50.5755 66.3618 50.58 64.7798V33.6001C50.58 33.6001 50.51 29.4502 54.23 23.3901C57.78 17.6099 58.49 13.6299 58.53 11.4502H68.53C68.53 13.6602 69.23 17.6699 72.87 23.4502C76.63 29.3901 76.52 33.4502 76.51 33.7002V64.7798C76.5145 66.3618 77.1101 67.8848 78.18 69.0498C78.6753 69.5469 78.9919 70.1938 79.08 70.8901L77.86 77.02ZM71.18 3.3999V8.0498H56.01V3.3999H71.18ZM65.5646 62.751C65.6497 62.7866 65.7294 62.8335 65.8014 62.8906C65.8324 62.9155 65.862 62.9419 65.89 62.9702L67.36 64.4399C67.5462 64.6274 67.6508 64.8809 67.6508 65.145C67.6508 65.1807 67.6489 65.2158 67.6452 65.251C67.641 65.29 67.6345 65.3291 67.6258 65.3672C67.6079 65.4458 67.5806 65.522 67.5446 65.5938C67.4974 65.6875 67.4354 65.7739 67.36 65.8501C67.1726 66.0361 66.9192 66.1406 66.655 66.1406C66.3908 66.1406 66.1374 66.0361 65.95 65.8501L64.47 64.3799C64.2837 64.1929 64.1792 63.939 64.1792 63.6748C64.1792 63.5479 64.2033 63.4238 64.2489 63.3081C64.2984 63.1826 64.3731 63.0674 64.47 62.9702C64.563 62.8765 64.6735 62.8018 64.7954 62.751C64.9173 62.7002 65.048 62.6743 65.18 62.6743C65.312 62.6743 65.4427 62.7002 65.5646 62.751ZM67.76 59.1001L65.76 59.6299C65.6323 59.6636 65.5126 59.7222 65.4076 59.8022C65.3027 59.8823 65.2147 59.9829 65.1487 60.0972C65.0827 60.2114 65.04 60.3379 65.0231 60.4688C65.0061 60.5996 65.0153 60.7324 65.05 60.8599C65.1086 61.0781 65.2393 61.27 65.4209 61.4043C65.5053 61.4668 65.5983 61.5151 65.6963 61.5483C65.7349 61.5615 65.7743 61.5723 65.8143 61.5806C65.8487 61.5874 65.8834 61.5928 65.9184 61.5962C65.9619 61.6001 66.0059 61.6016 66.05 61.6001C66.1331 61.6099 66.2169 61.6099 66.3 61.6001L68.3 61.0601C68.3487 61.0464 68.3962 61.0293 68.4422 61.0088C68.5177 60.9756 68.589 60.9326 68.6545 60.8818C68.6781 60.8638 68.7008 60.8442 68.7227 60.8242C68.7605 60.7891 68.7955 60.751 68.8275 60.7104C68.8594 60.6699 68.8883 60.627 68.9139 60.582C68.9798 60.4658 69.0222 60.3379 69.0387 60.2056C69.0552 60.0732 69.0455 59.9385 69.01 59.8101C68.9745 59.6812 68.9141 59.561 68.8321 59.4556C68.7501 59.3501 68.6481 59.2622 68.532 59.1963C68.4947 59.1753 68.4561 59.1562 68.4166 59.1396C68.3842 59.1265 68.3511 59.1147 68.3176 59.105C68.2647 59.0894 68.2105 59.0781 68.1556 59.0713C68.1073 59.0654 68.0587 59.063 68.0102 59.064C67.964 59.0649 67.9179 59.0688 67.8722 59.0762C67.8344 59.082 67.797 59.0898 67.76 59.1001ZM61.9787 63.5029C62.1096 63.4863 62.2426 63.4951 62.37 63.5298C62.6247 63.5918 62.8449 63.751 62.9833 63.9736C63.1217 64.1963 63.1672 64.4644 63.11 64.7202L62.57 66.7202C62.5114 66.938 62.3807 67.1299 62.1991 67.2646C62.0175 67.3989 61.7957 67.4678 61.57 67.46C61.4839 67.4746 61.3961 67.4746 61.31 67.46C61.0543 67.3921 60.8361 67.2251 60.703 66.9966C60.5699 66.7681 60.5329 66.4961 60.6 66.2402L61.14 64.2402C61.1736 64.1123 61.2322 63.9927 61.3124 63.8877C61.3926 63.7827 61.4927 63.6948 61.6071 63.6289C61.7214 63.5625 61.8477 63.52 61.9787 63.5029ZM68.66 52.73C68.4677 52.5952 68.234 52.5322 68 52.5522C67.766 52.5723 67.5464 52.6743 67.38 52.8398L54.38 65.8398C54.2168 66.0059 54.1165 66.2236 54.0964 66.4551C54.0845 66.5933 54.1013 66.731 54.1449 66.8604C54.1745 66.9482 54.2164 67.0322 54.27 67.1099C54.6207 67.6201 55.0155 68.0986 55.45 68.54C56.387 69.5972 57.5303 70.4517 58.8097 71.0508C60.0891 71.6499 61.4775 71.981 62.8896 72.0239C64.3016 72.0664 65.7075 71.8198 67.0208 71.2993C68.3341 70.7788 69.527 69.9951 70.5263 68.9966C71.5256 67.998 72.3101 66.8057 72.8315 65.4927C73.353 64.1797 73.6004 62.7739 73.5586 61.3618C73.5168 59.9497 73.1867 58.561 72.5885 57.2812C71.9902 56.0015 71.1366 54.8579 70.08 53.9199C69.6428 53.4819 69.1676 53.084 68.66 52.73ZM68.66 67.1499C67.0893 68.7153 64.9623 69.5938 62.745 69.5938C60.5276 69.5938 58.4007 68.7153 56.83 67.1499C56.68 67 56.53 66.8398 56.38 66.6602L68.18 54.8901C68.3438 55.0244 68.4983 55.1694 68.6525 55.314L68.6587 55.3198L68.67 55.3301C70.2351 56.9009 71.1139 59.0278 71.1139 61.2451C71.1139 63.4624 70.2351 65.5894 68.67 67.1602L68.66 67.1499ZM61.31 33.1299L62.76 31.6602C62.947 31.4648 63.2037 31.3525 63.4738 31.3467C63.7438 31.3413 64.0051 31.4429 64.2 31.6299C64.3949 31.8169 64.5076 32.0737 64.5132 32.3438C64.5189 32.6138 64.417 32.875 64.23 33.0698L62.76 34.54C62.6674 34.6353 62.557 34.7114 62.435 34.7637C62.313 34.8164 62.1819 34.8442 62.0491 34.8462C61.9163 34.8481 61.7845 34.8237 61.6611 34.7744C61.5377 34.7256 61.4252 34.6523 61.33 34.5601C61.2907 34.522 61.2547 34.4805 61.2223 34.4365C61.1761 34.3745 61.1371 34.3066 61.1062 34.2349C61.0537 34.1133 61.0257 33.9819 61.0238 33.8491C61.022 33.7163 61.0463 33.5845 61.0954 33.4609C61.1172 33.4062 61.1437 33.3535 61.1746 33.3032C61.2132 33.2407 61.2585 33.1826 61.31 33.1299ZM66.14 35.46C66.1986 35.6782 66.3293 35.8701 66.5109 36.0044C66.6925 36.1387 66.9142 36.2075 67.14 36.2002C67.2261 36.2139 67.3139 36.2139 67.4 36.2002C67.6538 36.1299 67.8697 35.9624 68.0007 35.7339C68.1318 35.5054 68.1674 35.2344 68.1 34.98L67.56 32.98C67.5295 32.8491 67.4731 32.7261 67.394 32.6177C67.3149 32.5093 67.2148 32.418 67.0997 32.3486C67.0715 32.332 67.0426 32.3164 67.0131 32.3027C66.9808 32.2876 66.9478 32.2739 66.9142 32.2622C66.8525 32.2407 66.7887 32.2256 66.7237 32.2163C66.5908 32.1978 66.4555 32.2065 66.3259 32.2412C66.1963 32.2764 66.0751 32.3369 65.9694 32.4194C65.8638 32.5024 65.7759 32.6055 65.7109 32.7231C65.646 32.8403 65.6054 32.9697 65.5915 33.1035C65.5864 33.1519 65.5849 33.2002 65.5869 33.2485C65.5904 33.3335 65.6049 33.418 65.63 33.5L66.14 35.46ZM59.6596 28.8843C59.6434 28.752 59.6537 28.6182 59.69 28.4902C59.7169 28.3569 59.7707 28.231 59.8479 28.1191C59.9252 28.0073 60.0244 27.9126 60.1395 27.8408C60.1893 27.8096 60.2416 27.7832 60.2958 27.7612C60.3668 27.7324 60.4412 27.7119 60.5173 27.7002C60.6515 27.6792 60.7885 27.686 60.92 27.7202L62.92 28.2598C63.1852 28.2944 63.4259 28.4331 63.589 28.645C63.7522 28.8569 63.8245 29.125 63.79 29.3901C63.7555 29.6553 63.6171 29.896 63.4052 30.0591C63.1933 30.2222 62.9252 30.2944 62.66 30.2598C62.5739 30.2744 62.486 30.2744 62.4 30.2598L60.4 29.73C60.2712 29.6963 60.1504 29.6377 60.0447 29.5566C59.9899 29.5146 59.9396 29.4673 59.8947 29.415C59.8532 29.3667 59.8162 29.3145 59.7844 29.2593C59.7183 29.1436 59.6758 29.0161 59.6596 28.8843ZM61.29 21.54C61.2103 21.4604 61.1183 21.3955 61.0185 21.3477C60.9099 21.2954 60.7919 21.2627 60.67 21.2524C60.4359 21.2319 60.2023 21.2949 60.01 21.4302C58.7606 22.292 57.7164 23.4189 56.9516 24.73C56.1867 26.0415 55.7199 27.5049 55.5844 29.0171C55.4488 30.5288 55.6479 32.0522 56.1673 33.4785C56.6868 34.9048 57.5139 36.1992 58.59 37.27C60.5358 39.2104 63.1718 40.3003 65.92 40.3003C68.6681 40.3003 71.3042 39.2104 73.25 37.27C73.6816 36.8262 74.0762 36.3481 74.43 35.8398C74.5637 35.6465 74.6249 35.4121 74.6029 35.1782C74.581 34.9438 74.4773 34.7251 74.31 34.5601L61.29 21.54ZM71.83 35.8501C70.2612 37.4175 68.1341 38.2974 65.9165 38.2964C63.6988 38.2954 61.5724 37.4136 60.005 35.8452C58.4376 34.2764 57.5575 32.1489 57.5585 29.9316C57.5594 27.7139 58.4412 25.5874 60.01 24.02C60.16 23.8701 60.32 23.7202 60.5 23.5698L72.28 35.3599C72.1405 35.5327 71.9902 35.6963 71.83 35.8501ZM62.5169 52.813C61.5237 53.4663 60.3588 53.8101 59.17 53.7998C57.5874 53.7866 56.0741 53.1489 54.9597 52.0249C53.8452 50.9014 53.2199 49.3828 53.22 47.7998C53.22 46.6113 53.5732 45.4492 54.2347 44.4614C54.8963 43.4736 55.8363 42.7046 56.9356 42.252C58.0349 41.7993 59.2438 41.6836 60.4091 41.9194C61.5743 42.1548 62.6432 42.7314 63.4803 43.5752C64.3174 44.4194 64.8849 45.4932 65.1107 46.6606C65.3366 47.8276 65.2106 49.0356 64.7488 50.1309C64.287 51.2266 63.5102 52.1602 62.5169 52.813ZM61.4057 44.5396C60.7414 44.1064 59.9632 43.8799 59.17 43.8901C58.1178 43.9033 57.1132 44.3306 56.3738 45.0791C55.6345 45.8276 55.2199 46.8379 55.22 47.8901C55.2201 48.6831 55.456 49.4585 55.8977 50.1172C56.3395 50.7764 56.9672 51.2891 57.701 51.5898C58.4349 51.8911 59.2417 51.9673 60.0189 51.8091C60.7962 51.6509 61.5088 51.2646 62.0662 50.7002C62.6235 50.1357 63.0005 49.4185 63.1491 48.6392C63.2978 47.8599 63.2114 47.0542 62.901 46.3242C62.5905 45.5942 62.0701 44.9731 61.4057 44.5396Z\" fill=\"#6D00F9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxw614\",\"data-styles-preset\":\"ljW6N2dCg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-04df45f7-6155-49f4-ac00-2ed8fdd118f3, rgb(109, 0, 249))\"},children:\"Alle Getr\\xe4nke inklusive\"})}),className:\"framer-j96o7n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6qmtwf\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58 51\"><path d=\"M 28.174 50.43 C 20.983 50.43 13.03 50.43 12.585 50.43 C 8.048 50.319 5.625 47.809 5.562 43.179 L 5.562 41.689 L 19.275 41.689 L 18.552 41.155 C 13.133 37.17 9.558 29.568 8.756 20.34 C 8.54 17.525 8.489 14.699 8.605 11.878 C 8.962 9.527 10.44 8.005 13.006 7.359 C 14.357 7.025 15.509 6.937 18.854 6.905 C 22.183 6.905 23.152 6.849 24.288 6.57 C 25.925 6.156 26.545 5.471 26.672 3.949 C 26.65 3.654 26.717 3.36 26.863 3.104 C 26.971 2.889 27.136 2.709 27.34 2.583 C 27.544 2.457 27.779 2.391 28.019 2.391 C 28.258 2.391 28.493 2.457 28.697 2.583 C 28.902 2.709 29.067 2.889 29.175 3.104 C 29.325 3.359 29.391 3.654 29.365 3.949 C 29.336 4.524 29.514 5.09 29.867 5.544 C 30.22 5.998 30.725 6.308 31.288 6.419 C 32.424 6.817 33.521 6.905 37.184 6.905 C 42.626 6.969 44.438 7.383 46.003 8.921 C 47.075 9.997 47.401 10.985 47.457 13.344 L 47.457 14.579 L 47.965 14.619 C 49.584 14.87 51.132 15.458 52.51 16.346 C 53.889 17.234 55.066 18.402 55.966 19.775 C 57.171 21.564 57.867 23.65 57.98 25.806 C 58.093 27.963 57.618 30.11 56.606 32.016 C 55.594 33.923 54.083 35.516 52.236 36.627 C 50.389 37.737 48.275 38.322 46.122 38.318 C 44.555 38.316 43.004 38.01 41.553 37.417 L 41.299 37.314 L 41.077 37.585 C 40.017 38.917 38.801 40.116 37.454 41.155 L 36.731 41.689 L 50.42 41.689 L 50.373 43.609 C 50.373 44.055 50.373 44.302 50.373 44.502 C 49.84 48.247 47.552 50.231 43.556 50.406 C 43.222 50.422 35.324 50.43 28.174 50.43 Z M 27.991 44.39 C 8.35 44.39 8.35 44.39 8.35 44.581 C 8.361 44.678 8.38 44.774 8.406 44.868 C 8.859 46.621 9.947 47.49 11.926 47.705 C 12.148 47.705 18.727 47.705 22.628 47.705 C 29.858 47.705 44.128 47.705 44.358 47.641 C 46.058 47.323 46.972 46.629 47.401 45.322 C 47.51 45.068 47.585 44.8 47.624 44.526 C 47.6 44.39 47.6 44.39 27.967 44.39 Z M 11.219 17.607 C 11.227 17.719 11.227 17.83 11.219 17.942 C 11.219 18.053 11.219 18.181 11.219 18.292 C 11.767 31.377 18.028 40.772 26.799 41.657 L 27.459 41.657 C 28.15 41.657 29.103 41.657 29.389 41.609 C 33.696 40.995 37.263 38.557 40.004 34.373 L 40.306 33.895 L 40.393 33.76 L 40.592 33.903 C 41.735 34.728 43.051 35.278 44.439 35.514 C 45.827 35.749 47.25 35.662 48.599 35.259 C 49.948 34.857 51.188 34.15 52.222 33.193 C 53.257 32.236 54.059 31.054 54.568 29.737 C 55.076 28.421 55.277 27.005 55.155 25.598 C 55.033 24.192 54.592 22.832 53.865 21.623 C 53.138 20.415 52.144 19.389 50.96 18.625 C 49.776 17.861 48.434 17.379 47.036 17.217 C 46.702 17.161 44.652 17.161 28.984 17.161 L 11.219 17.161 Z M 27.649 7.774 C 26.619 8.647 25.357 9.201 24.018 9.367 C 22.368 9.591 20.702 9.682 19.037 9.638 C 14.953 9.638 13.817 9.79 12.681 10.316 C 11.544 10.842 11.29 11.391 11.258 13.208 L 11.258 14.491 L 44.747 14.491 L 44.747 13.208 C 44.747 11.384 44.438 10.818 43.325 10.308 C 42.213 9.798 41.021 9.662 36.969 9.63 C 34.585 9.63 33.87 9.567 32.996 9.479 C 31.311 9.427 29.686 8.838 28.356 7.798 L 28.039 7.519 Z M 46.035 32.278 L 45.701 32.278 C 44.374 32.197 43.117 31.653 42.149 30.74 L 42.046 30.636 L 42.165 30.341 C 43.285 27.53 44.028 24.583 44.374 21.576 L 44.374 21.408 C 44.389 21.166 44.426 20.926 44.485 20.691 L 44.636 20.691 C 45.956 20.378 47.344 20.53 48.566 21.12 C 49.788 21.71 50.771 22.704 51.35 23.934 C 51.762 24.831 51.942 25.817 51.875 26.802 C 51.807 27.787 51.493 28.739 50.962 29.57 C 50.431 30.401 49.699 31.085 48.836 31.558 C 47.972 32.031 47.003 32.279 46.019 32.278 Z M 46.829 23.512 C 46.829 23.512 46.829 23.775 46.734 24.07 C 46.419 25.788 45.992 27.484 45.455 29.146 C 45.444 29.195 45.428 29.243 45.407 29.289 L 45.407 29.409 C 45.407 29.6 45.621 29.6 45.876 29.6 C 46.233 29.605 46.59 29.57 46.94 29.496 C 47.543 29.333 48.085 28.995 48.497 28.525 C 48.91 28.054 49.175 27.473 49.26 26.852 C 49.345 26.231 49.245 25.6 48.974 25.035 C 48.703 24.471 48.272 23.999 47.735 23.679 C 47.498 23.544 47.248 23.434 46.988 23.353 L 46.853 23.353 Z\" fill=\"rgb(109,0,249)\"></path></svg>',svgContentId:12247698049}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1m3c9is\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 73 64\"><path d=\"M 35.46 63.285 C 26.41 63.285 16.4 63.285 15.84 63.285 C 10.13 63.145 7.08 59.995 7 54.185 L 7 52.315 L 24.26 52.315 L 23.35 51.645 C 16.53 46.645 12.03 37.105 11.02 25.525 C 10.748 21.992 10.685 18.446 10.83 14.905 C 11.28 11.955 13.14 10.045 16.37 9.235 C 18.07 8.815 19.52 8.705 23.73 8.665 C 27.92 8.665 29.14 8.595 30.57 8.245 C 32.63 7.725 33.41 6.865 33.57 4.955 C 33.543 4.586 33.626 4.217 33.81 3.895 C 33.946 3.626 34.154 3.4 34.411 3.242 C 34.668 3.084 34.963 3 35.265 3 C 35.567 3 35.862 3.084 36.119 3.242 C 36.376 3.4 36.584 3.626 36.72 3.895 C 36.909 4.215 36.992 4.586 36.96 4.955 C 36.922 5.677 37.147 6.388 37.591 6.957 C 38.036 7.527 38.671 7.917 39.38 8.055 C 40.81 8.555 42.19 8.665 46.8 8.665 C 53.65 8.745 55.93 9.265 57.9 11.195 C 59.25 12.545 59.66 13.785 59.73 16.745 L 59.73 18.295 L 60.37 18.345 C 62.407 18.66 64.356 19.398 66.091 20.513 C 67.825 21.627 69.307 23.093 70.44 24.815 C 71.957 27.061 72.833 29.678 72.975 32.385 C 73.117 35.091 72.519 37.785 71.245 40.177 C 69.971 42.57 68.07 44.57 65.745 45.963 C 63.42 47.356 60.76 48.09 58.05 48.085 C 56.078 48.083 54.126 47.699 52.3 46.955 L 51.98 46.825 L 51.7 47.165 C 50.366 48.837 48.835 50.342 47.14 51.645 L 46.23 52.315 L 63.46 52.315 L 63.4 54.725 C 63.4 55.285 63.4 55.595 63.4 55.845 C 62.73 60.545 59.85 63.035 54.82 63.255 C 54.4 63.275 44.46 63.285 35.46 63.285 Z M 35.23 55.705 C 10.51 55.705 10.51 55.705 10.51 55.945 C 10.524 56.067 10.547 56.187 10.58 56.305 C 11.15 58.505 12.52 59.595 15.01 59.865 C 15.29 59.865 23.57 59.865 28.48 59.865 C 37.58 59.865 55.54 59.865 55.83 59.785 C 57.97 59.385 59.12 58.515 59.66 56.875 C 59.797 56.556 59.891 56.22 59.94 55.875 C 59.91 55.705 59.91 55.705 35.2 55.705 Z M 14.12 22.095 C 14.131 22.235 14.131 22.375 14.12 22.515 C 14.12 22.655 14.12 22.815 14.12 22.955 C 14.81 39.375 22.69 51.165 33.73 52.275 L 34.56 52.275 C 35.43 52.275 36.63 52.275 36.99 52.215 C 42.41 51.445 46.9 48.385 50.35 43.135 L 50.73 42.535 L 50.84 42.365 L 51.09 42.545 C 52.528 43.58 54.184 44.271 55.931 44.566 C 57.678 44.861 59.47 44.752 61.168 44.247 C 62.866 43.743 64.426 42.856 65.728 41.654 C 67.03 40.453 68.04 38.969 68.68 37.317 C 69.32 35.665 69.573 33.889 69.419 32.124 C 69.266 30.359 68.71 28.652 67.795 27.135 C 66.88 25.618 65.629 24.331 64.139 23.373 C 62.649 22.414 60.96 21.809 59.2 21.605 C 58.78 21.535 56.2 21.535 36.48 21.535 L 14.12 21.535 Z M 34.8 9.755 C 33.503 10.851 31.915 11.546 30.23 11.755 C 28.152 12.036 26.056 12.15 23.96 12.095 C 18.82 12.095 17.39 12.285 15.96 12.945 C 14.53 13.605 14.21 14.295 14.17 16.575 L 14.17 18.185 L 56.32 18.185 L 56.32 16.575 C 56.32 14.285 55.93 13.575 54.53 12.935 C 53.13 12.295 51.63 12.125 46.53 12.085 C 43.53 12.085 42.63 12.005 41.53 11.895 C 39.409 11.829 37.363 11.09 35.69 9.785 L 35.29 9.435 Z M 57.94 40.505 L 57.52 40.505 C 55.85 40.405 54.268 39.722 53.05 38.575 L 52.92 38.445 L 53.07 38.075 C 54.479 34.548 55.414 30.849 55.85 27.075 L 55.85 26.865 C 55.868 26.562 55.915 26.26 55.99 25.965 L 56.18 25.965 C 57.842 25.573 59.588 25.763 61.126 26.504 C 62.664 27.245 63.901 28.491 64.63 30.035 C 65.149 31.16 65.376 32.398 65.29 33.634 C 65.205 34.87 64.81 36.064 64.141 37.107 C 63.473 38.15 62.553 39.008 61.465 39.602 C 60.378 40.196 59.159 40.507 57.92 40.505 Z M 58.94 29.505 C 58.94 29.505 58.94 29.835 58.82 30.205 C 58.424 32.362 57.886 34.49 57.21 36.575 C 57.196 36.637 57.176 36.697 57.15 36.755 L 57.15 36.905 C 57.15 37.145 57.42 37.145 57.74 37.145 C 58.19 37.151 58.639 37.108 59.08 37.015 C 59.839 36.81 60.521 36.386 61.04 35.796 C 61.559 35.206 61.893 34.476 61.999 33.697 C 62.106 32.918 61.981 32.125 61.64 31.417 C 61.298 30.709 60.756 30.117 60.08 29.715 C 59.783 29.545 59.467 29.407 59.14 29.305 L 58.97 29.305 Z\" fill=\"rgb(109,0,249)\"></path></svg>',svgContentId:11179250630,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxw614\",\"data-styles-preset\":\"ljW6N2dCg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-04df45f7-6155-49f4-ac00-2ed8fdd118f3, rgb(109, 0, 249))\"},children:\"Kostenlose Kaffeespezialit\\xe4ten\"})}),className:\"framer-1o9s6of\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1120wti\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18epphc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19sak7x\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58 69\"><path d=\"M 54.502 15.153 C 54.486 14.628 54.264 14.13 53.883 13.766 C 53.502 13.402 52.993 13.201 52.465 13.205 L 44.149 13.205 L 44.149 11.154 C 44.149 5.007 38.5 0 31.549 0 L 26.434 0 C 19.482 0 13.825 5.007 13.825 11.154 L 13.825 13.205 L 5.535 13.205 C 5.015 13.2 4.514 13.394 4.134 13.747 C 3.755 14.1 3.527 14.585 3.498 15.101 L 0 69 L 58 69 Z M 13.833 16.422 L 13.833 21.525 C 13.863 21.932 14.047 22.313 14.348 22.591 C 14.649 22.869 15.045 23.024 15.455 23.024 C 15.866 23.024 16.261 22.869 16.562 22.591 C 16.863 22.313 17.047 21.932 17.077 21.525 L 17.077 16.422 L 40.914 16.422 L 40.914 21.525 C 40.914 21.952 41.084 22.361 41.388 22.662 C 41.691 22.964 42.103 23.133 42.532 23.133 C 42.961 23.133 43.372 22.964 43.675 22.662 C 43.979 22.361 44.149 21.952 44.149 21.525 L 44.149 16.422 L 51.346 16.422 L 54.59 65.783 L 3.393 65.783 L 6.637 16.422 Z M 40.94 13.205 L 17.069 13.205 L 17.069 11.154 C 17.069 6.807 21.266 3.217 26.434 3.217 L 31.54 3.217 C 36.708 3.217 40.905 6.781 40.905 11.154 Z\" fill=\"rgb(109,0,249)\"></path><path d=\"M 21.065 38.538 C 22.61 38.538 23.863 36.413 23.863 33.792 C 23.863 31.17 22.61 29.045 21.065 29.045 C 19.519 29.045 18.267 31.17 18.267 33.792 C 18.267 36.413 19.519 38.538 21.065 38.538 Z\" fill=\"rgb(109,0,249)\"></path><path d=\"M 35.799 38.703 C 37.337 38.703 38.597 36.582 38.597 33.957 C 38.597 31.331 37.337 29.219 35.799 29.219 C 34.26 29.219 33 31.34 33 33.957 C 33 36.573 34.251 38.703 35.799 38.703 Z\" fill=\"rgb(109,0,249)\"></path><path d=\"M 28.917 56.247 C 36.577 56.247 42.794 49.518 42.794 46.067 C 42.794 42.615 41.465 43.737 28.917 43.737 C 16.797 43.737 15.031 42.607 15.031 46.067 C 15.031 49.527 21.274 56.247 28.917 56.247 Z\" fill=\"rgb(109,0,249)\"></path></svg>',svgContentId:9714921691,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxw614\",\"data-styles-preset\":\"ljW6N2dCg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-04df45f7-6155-49f4-ac00-2ed8fdd118f3, rgb(109, 0, 249))\"},children:\"Hochwertige Give-Aways\"})}),className:\"framer-18ftggf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bf34df\",\"data-framer-name\":\"Registrierung\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qbmimu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgQm9sZA==\",\"--framer-font-family\":'\"Gordita Bold\", \"Gordita Bold Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 252, 255) 0%, rgb(245, 179, 252) 185%)\"},children:\"Melde dich jetzt an und erhalte 25% Rabatt\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgQm9sZA==\",\"--framer-font-family\":'\"Gordita Bold\", \"Gordita Bold Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 252, 255) 0%, rgb(245, 179, 252) 185%)\"},children:\"Melde dich jetzt an und erhalte 25% Rabatt\"})})}),className:\"framer-1bs50gk\",fonts:[\"CUSTOM;Gordita Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Registriere dich f\\xfcr Updates zu MIT2025 und erhalte 25 % Rabatt, wenn der Ticketverkauf beginnt\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvcmRpdGEgTWVkaXVt\",\"--framer-font-family\":'\"Gordita Medium\", \"Gordita Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Registriere dich f\\xfcr Updates zu MIT2025 und erhalte 25 % Rabatt, wenn der Ticketverkauf beginnt\"})})}),className:\"framer-12dh3wt\",fonts:[\"CUSTOM;Gordita Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oy64g8-container\",isModuleExternal:true,nodeId:\"pqynoC4QR\",scopeId:\"oGlL_yyb8\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Begin Brevo Form -->\\n<!-- START - We recommend to place the below code in head tag of your website html  -->\\n<style>\\n  @font-face {\\n    font-display: block;\\n    font-family: Roboto;\\n    src: url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2) format(\"woff2\"), url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff) format(\"woff\")\\n  }\\n\\n  @font-face {\\n    font-display: fallback;\\n    font-family: Roboto;\\n    font-weight: 600;\\n    src: url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2) format(\"woff2\"), url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff) format(\"woff\")\\n  }\\n\\n  @font-face {\\n    font-display: fallback;\\n    font-family: Roboto;\\n    font-weight: 700;\\n    src: url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2) format(\"woff2\"), url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff) format(\"woff\")\\n  }\\n\\n  #sib-container input:-ms-input-placeholder {\\n    text-align: left;\\n    font-family: Helvetica, sans-serif;\\n    color: #c0ccda;\\n  }\\n\\n  #sib-container input::placeholder {\\n    text-align: left;\\n    font-family: Helvetica, sans-serif;\\n    color: #c0ccda;\\n  }\\n\\n  #sib-container textarea::placeholder {\\n    text-align: left;\\n    font-family: Helvetica, sans-serif;\\n    color: #c0ccda;\\n  }\\n\\n  #sib-container a {\\n    text-decoration: underline;\\n    color: #2BB2FC;\\n  }\\n</style>\\n<link rel=\"stylesheet\" href=\"https://sibforms.com/forms/end-form/build/sib-styles.css\">\\n<!--  END - We recommend to place the above code in head tag of your website html -->\\n\\n<!-- START - We recommend to place the below code where you want the form in your website html  -->\\n<div class=\"sib-form\" style=\"text-align: center;       \">\\n  <div id=\"sib-form-container\" class=\"sib-form-container\">\\n    <div id=\"error-message\" class=\"sib-form-message-panel\" style=\"font-size:16px; text-align:left; font-family:Helvetica, sans-serif; color:#661d1d; background-color:#ffeded; border-radius:3px; border-color:#ff4949;max-width:540px;\">\\n      <div class=\"sib-form-message-panel__text sib-form-message-panel__text--center\">\\n        <svg viewBox=\"0 0 512 512\" class=\"sib-icon sib-notification__icon\">\\n          <path d=\"M256 40c118.621 0 216 96.075 216 216 0 119.291-96.61 216-216 216-119.244 0-216-96.562-216-216 0-119.203 96.602-216 216-216m0-32C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm-11.49 120h22.979c6.823 0 12.274 5.682 11.99 12.5l-7 168c-.268 6.428-5.556 11.5-11.99 11.5h-8.979c-6.433 0-11.722-5.073-11.99-11.5l-7-168c-.283-6.818 5.167-12.5 11.99-12.5zM256 340c-15.464 0-28 12.536-28 28s12.536 28 28 28 28-12.536 28-28-12.536-28-28-28z\" />\\n        </svg>\\n        <span class=\"sib-form-message-panel__inner-text\">\\n                          Your subscription could not be saved. Please try again.\\n                      </span>\\n      </div>\\n    </div>\\n    <div></div>\\n    <div id=\"success-message\" class=\"sib-form-message-panel\" style=\"font-size:16px; text-align:left; font-family:Helvetica, sans-serif; color:#085229; background-color:#e7faf0; border-radius:3px; border-color:#13ce66;max-width:540px;\">\\n      <div class=\"sib-form-message-panel__text sib-form-message-panel__text--center\">\\n        <svg viewBox=\"0 0 512 512\" class=\"sib-icon sib-notification__icon\">\\n          <path d=\"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 464c-118.664 0-216-96.055-216-216 0-118.663 96.055-216 216-216 118.664 0 216 96.055 216 216 0 118.663-96.055 216-216 216zm141.63-274.961L217.15 376.071c-4.705 4.667-12.303 4.637-16.97-.068l-85.878-86.572c-4.667-4.705-4.637-12.303.068-16.97l8.52-8.451c4.705-4.667 12.303-4.637 16.97.068l68.976 69.533 163.441-162.13c4.705-4.667 12.303-4.637 16.97.068l8.451 8.52c4.668 4.705 4.637 12.303-.068 16.97z\" />\\n        </svg>\\n        <span class=\"sib-form-message-panel__inner-text\">\\n                          Your subscription has been successful.\\n                      </span>\\n      </div>\\n    </div>\\n    <div></div>\\n    <div id=\"sib-container\" class=\"sib-container--large sib-container--vertical\" style=\"text-align:center; background-color:rgba(255,255,255,1); max-width:540px; border-radius:3px; border-width:1px; border-color:#C0CCD9; border-style:solid; direction:ltr\">\\n      <form id=\"sib-form\" method=\"POST\" action=\"https://e96538b6.sibforms.com/serve/MUIFAAOGoKVwHD8FYYgnfPQXPmeVSXTnQUdpBH3YuMDZmdfIsKQ22bH2QksZGTs7a3FzHHu8o1rqADsHbnWfvWnSTNxxmOkDPuBKGYH3DgZa_tZq8y9o1be0f5FAZHs074GdqeXzh6c0YUDs8gQMCA9IG834lpUMKOMvR63WJkZfWjrOlMKiKUAvizFjdbnyughQo4dTYQodimon\" data-type=\"subscription\">\\n        <div style=\"padding: 8px 0;\">\\n          <div class=\"sib-input sib-form-block\">\\n            <div class=\"form__entry entry_block\">\\n              <div class=\"form__label-row \">\\n\\n                <div class=\"entry__field\">\\n                  <input class=\"input \" maxlength=\"200\" type=\"text\" id=\"FIRSTNAME\" name=\"FIRSTNAME\" autocomplete=\"off\" placeholder=\"Vorname\" />\\n                </div>\\n              </div>\\n\\n              <label class=\"entry__error entry__error--primary\" style=\"font-size:16px; text-align:left; font-family:Helvetica, sans-serif; color:#661d1d; background-color:#ffeded; border-radius:3px; border-color:#ff4949;\">\\n              </label>\\n            </div>\\n          </div>\\n        </div>\\n        <div style=\"padding: 8px 0;\">\\n          <div class=\"sib-input sib-form-block\">\\n            <div class=\"form__entry entry_block\">\\n              <div class=\"form__label-row \">\\n\\n                <div class=\"entry__field\">\\n                  <input class=\"input \" maxlength=\"200\" type=\"text\" id=\"LASTNAME\" name=\"LASTNAME\" autocomplete=\"off\" placeholder=\"Nachname\" data-required=\"true\" required />\\n                </div>\\n              </div>\\n\\n              <label class=\"entry__error entry__error--primary\" style=\"font-size:16px; text-align:left; font-family:Helvetica, sans-serif; color:#661d1d; background-color:#ffeded; border-radius:3px; border-color:#ff4949;\">\\n              </label>\\n            </div>\\n          </div>\\n        </div>\\n        <div style=\"padding: 8px 0;\">\\n          <div class=\"sib-input sib-form-block\">\\n            <div class=\"form__entry entry_block\">\\n              <div class=\"form__label-row \">\\n\\n                <div class=\"entry__field\">\\n                  <input class=\"input \" type=\"text\" id=\"EMAIL\" name=\"EMAIL\" autocomplete=\"off\" placeholder=\"E-Mail Addresse\" data-required=\"true\" required />\\n                </div>\\n              </div>\\n\\n              <label class=\"entry__error entry__error--primary\" style=\"font-size:16px; text-align:left; font-family:Helvetica, sans-serif; color:#661d1d; background-color:#ffeded; border-radius:3px; border-color:#ff4949;\">\\n              </label>\\n            </div>\\n          </div>\\n        </div>\\n        <div style=\"padding: 8px 0;\">\\n          <div class=\"sib-optin sib-form-block\" data-required=\"true\">\\n            <div class=\"form__entry entry_mcq\">\\n              <div class=\"form__label-row \">\\n                <div class=\"entry__choice\" style=\"\">\\n                  <label>\\n                    <input type=\"checkbox\" class=\"input_replaced\" value=\"1\" id=\"OPT_IN\" name=\"OPT_IN\" required />\\n                    <span class=\"checkbox checkbox_tick_positive\"\\n            style=\"margin-left:\"\\n            ></span><span style=\"font-size:14px; text-align:left; font-family:Helvetica, sans-serif; color:#3C4858; background-color:transparent;\"><p>Ich stimme der Verarbeitung meiner personenbezogenen Daten wie in der <a href=\"https://www.merchantinspiration.com/datenschutz\" target=\"_blank\">Datenschutzerkl\\xe4rung</a> beschrieben - zu.</p><span data-required=\"*\" style=\"display: inline;\" class=\"entry__label entry__label_optin\"></span></span> </label>\\n                </div>\\n              </div>\\n              <label class=\"entry__error entry__error--primary\" style=\"font-size:16px; text-align:left; font-family:Helvetica, sans-serif; color:#661d1d; background-color:#ffeded; border-radius:3px; border-color:#ff4949;\">\\n              </label>\\n              <label class=\"entry__specification\" style=\"font-size:12px; text-align:left; font-family:Helvetica, sans-serif; color:#8390A4; text-align:left\">\\n                Du kannst deine Zustimmung zu alle Punkten jederzeit widerrufen.\\n              </label>\\n            </div>\\n          </div>\\n        </div>\\n        <div style=\"padding: 8px 0;\">\\n          <div class=\"sib-form-block\" style=\"text-align: left\">\\n            <button class=\"sib-form-block__button sib-form-block__button-with-loader\" style=\"font-size:16px; text-align:left; font-weight:700; font-family:Helvetica, sans-serif; color:#FFFFFF; background-color:#000000; border-radius:3px; border-width:0px;\" form=\"sib-form\" type=\"submit\">\\n              <svg class=\"icon clickable__icon progress-indicator__icon sib-hide-loader-icon\" viewBox=\"0 0 512 512\">\\n                <path d=\"M460.116 373.846l-20.823-12.022c-5.541-3.199-7.54-10.159-4.663-15.874 30.137-59.886 28.343-131.652-5.386-189.946-33.641-58.394-94.896-95.833-161.827-99.676C261.028 55.961 256 50.751 256 44.352V20.309c0-6.904 5.808-12.337 12.703-11.982 83.556 4.306 160.163 50.864 202.11 123.677 42.063 72.696 44.079 162.316 6.031 236.832-3.14 6.148-10.75 8.461-16.728 5.01z\" />\\n              </svg>\\n              Anmelden\\n            </button>\\n          </div>\\n        </div>\\n\\n        <input type=\"text\" name=\"email_address_check\" value=\"\" class=\"input--hidden\">\\n        <input type=\"hidden\" name=\"locale\" value=\"en\">\\n      </form>\\n    </div>\\n  </div>\\n</div>\\n<!-- END - We recommend to place the above code where you want the form in your website html  -->\\n\\n<!-- START - We recommend to place the below code in footer or bottom of your website html  -->\\n<script>\\n  window.REQUIRED_CODE_ERROR_MESSAGE = \\'Please choose a country code\\';\\n  window.LOCALE = \\'en\\';\\n  window.EMAIL_INVALID_MESSAGE = window.SMS_INVALID_MESSAGE = \"The information provided is invalid. Please review the field format and try again.\";\\n\\n  window.REQUIRED_ERROR_MESSAGE = \"This field cannot be left blank. \";\\n\\n  window.GENERIC_INVALID_MESSAGE = \"The information provided is invalid. Please review the field format and try again.\";\\n\\n\\n\\n\\n  window.translation = {\\n    common: {\\n      selectedList: \\'{quantity} list selected\\',\\n      selectedLists: \\'{quantity} lists selected\\'\\n    }\\n  };\\n\\n  var AUTOHIDE = Boolean(0);\\n</script>\\n\\n<script defer src=\"https://sibforms.com/forms/end-form/build/main.js\"></script>\\n\\n\\n<!-- END - We recommend to place the above code in footer or bottom of your website html  -->\\n<!-- End Brevo Form -->',id:\"pqynoC4QR\",layoutId:\"pqynoC4QR\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{y:(componentViewport?.y||0)+0+9205.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:529,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8128.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n7mu5u-container\",nodeId:\"Gn2LHHpdG\",scopeId:\"oGlL_yyb8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ocwGbkWhC:{variant:\"REDvxIDhT\"}},children:/*#__PURE__*/_jsx(Footer2025,{height:\"100%\",id:\"Gn2LHHpdG\",layoutId:\"Gn2LHHpdG\",style:{width:\"100%\"},variant:\"xqDAenulQ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w6c7y.framer-g6wi26, .framer-w6c7y .framer-g6wi26 { display: block; }\",\".framer-w6c7y.framer-1vw6ww3 { align-content: center; align-items: center; background-color: var(--token-f5608a5f-7c0b-4f44-b119-e9b11d6b41ff, #faffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-w6c7y .framer-1j19xoy-container { flex: none; height: auto; position: relative; width: 100%; z-index: 8; }\",\".framer-w6c7y .framer-19d7h33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 550px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-10585bo-container { flex: 1 0 0px; height: 1px; position: relative; width: 120%; }\",\".framer-w6c7y .framer-179zjg2, .framer-w6c7y .framer-1xak85d, .framer-w6c7y .framer-m4uyzy, .framer-w6c7y .framer-vp72eo, .framer-w6c7y .framer-sbqt22 { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: var(--framer-aspect-ratio-supported, 161px); overflow: visible; position: relative; width: 301px; }\",\".framer-w6c7y .framer-114bre7, .framer-w6c7y .framer-12i067z { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: var(--framer-aspect-ratio-supported, 161px); overflow: visible; position: relative; width: 302px; }\",\".framer-w6c7y .framer-p47qey { align-content: center; align-items: center; background: radial-gradient(50% 107% at 50% 76.1%, #4a5ba1 0%, rgba(95, 104, 199, 0.77) 48%, rgba(51, 77, 161, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-w6c7y .framer-1s05f32 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; max-width: 768px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-1n3rftu { 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: 11px 0px 11px 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-1kzhkhn { aspect-ratio: 2.4864864864864864 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); position: relative; width: 142px; }\",\".framer-w6c7y .framer-16qw8dt, .framer-w6c7y .framer-24s969 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; text-shadow: 0px 0px 14px #7f44cf; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-w6c7y .framer-y0c4nb, .framer-w6c7y .framer-1lgc7xy, .framer-w6c7y .framer-11w5f48, .framer-w6c7y .framer-1s7ppae, .framer-w6c7y .framer-15ozjnd, .framer-w6c7y .framer-xtresa, .framer-w6c7y .framer-xju4mh, .framer-w6c7y .framer-3hm236, .framer-w6c7y .framer-1nq2i4z, .framer-w6c7y .framer-1levgo4, .framer-w6c7y .framer-18v94o3, .framer-w6c7y .framer-100xkk7, .framer-w6c7y .framer-k1tcmo, .framer-w6c7y .framer-13xsm5z, .framer-w6c7y .framer-s2ao72, .framer-w6c7y .framer-71pjs2, .framer-w6c7y .framer-kk9n28, .framer-w6c7y .framer-1ayjgfy, .framer-w6c7y .framer-1yxh54r, .framer-w6c7y .framer-1bh2s5y, .framer-w6c7y .framer-dnnx2z, .framer-w6c7y .framer-p4whyr, .framer-w6c7y .framer-pc5hnb, .framer-w6c7y .framer-zw5hkl, .framer-w6c7y .framer-j96o7n, .framer-w6c7y .framer-1o9s6of, .framer-w6c7y .framer-18ftggf, .framer-w6c7y .framer-1bs50gk, .framer-w6c7y .framer-12dh3wt { --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-w6c7y .framer-1s7cx8k { 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: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-o7rjqh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-w6c7y .framer-q87tuv-container { flex: 1 0 0px; height: 1px; position: relative; width: 150%; }\",\".framer-w6c7y .framer-1r61eh2, .framer-w6c7y .framer-13ih1m3, .framer-w6c7y .framer-1saj1fq, .framer-w6c7y .framer-isaweg, .framer-w6c7y .framer-1a0d25e, .framer-w6c7y .framer-z1n7vc, .framer-w6c7y .framer-reyefl { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: var(--framer-aspect-ratio-supported, 170px); overflow: visible; position: relative; width: 302px; }\",\".framer-w6c7y .framer-10p3eg3-container { flex: 1 0 0px; height: 1px; position: relative; width: 110%; }\",\".framer-w6c7y .framer-1g5o42g { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: var(--framer-aspect-ratio-supported, 171px); overflow: visible; position: relative; width: 303px; }\",\".framer-w6c7y .framer-jsszmf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 23px 0px 23px 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-fa2ov8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-13v1etk { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 1px 44px 0px rgba(0, 0, 0, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 40px; position: relative; width: 1px; }\",\".framer-w6c7y .framer-js57jw, .framer-w6c7y .framer-a0kkxx, .framer-w6c7y .framer-1fj3hsj, .framer-w6c7y .framer-410ko2, .framer-w6c7y .framer-1yq7a55 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-lzv46y, .framer-w6c7y .framer-6d2o5c, .framer-w6c7y .framer-1qigbg, .framer-w6c7y .framer-1pmxcuf, .framer-w6c7y .framer-t363fy, .framer-w6c7y .framer-4hdb1s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w6c7y .framer-1navzjk { align-content: center; align-items: center; align-self: stretch; background-color: #000000; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 1px 44px 0px rgba(0, 0, 0, 0.05); cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-w6c7y .framer-1kolq5h-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-w6c7y .framer-1k85xty { background-color: #000000; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.31; overflow: hidden; position: absolute; top: calc(49.80026631158457% - 100% / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-w6c7y .framer-5vm49b { 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: 436px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w6c7y .framer-99fy61 { flex: none; height: 66px; position: relative; width: 66px; }\",\".framer-w6c7y .framer-1cz4qsa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 50%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-w6c7y.framer-1t89087 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-w6c7y.framer-1f1cvs3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: fixed; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 5; }\",\".framer-w6c7y .framer-146udd6 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-10rpn4i, .framer-w6c7y .framer-14x62vj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-w6c7y .framer-1ep7t9m { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 1px 44px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 470px; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w6c7y .framer-7mfv2f-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w6c7y .framer-6svtov { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 262px; justify-content: flex-start; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 95%; }\",\".framer-w6c7y .framer-17d7n07, .framer-w6c7y .framer-lmodvy, .framer-w6c7y .framer-b262k0, .framer-w6c7y .framer-2fgrsc { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 1px 44px 0px rgba(0, 0, 0, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; padding: 35px; position: relative; width: 1px; }\",\".framer-w6c7y .framer-1gkv1p7 { flex: none; height: 58px; position: relative; width: 58px; }\",\".framer-w6c7y .framer-1pvk2w5 { flex: none; height: 58px; position: relative; width: 62px; }\",\".framer-w6c7y .framer-qd4bjn { flex: none; height: 53px; position: relative; width: 75px; }\",\".framer-w6c7y .framer-feka15 { flex: none; height: 57px; position: relative; width: 57px; }\",\".framer-w6c7y .framer-o9nea3 { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(249, 254, 254) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 31px 0px 39px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w6c7y .framer-4f3lo0 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 35px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-w6c7y .framer-1k5r018, .framer-w6c7y .framer-1893ax9, .framer-w6c7y .framer-gni6yp, .framer-w6c7y .framer-3f6ai0, .framer-w6c7y .framer-16swc7 { flex: none; height: 21px; overflow: hidden; position: relative; width: 23px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w6c7y .framer-k709wf, .framer-w6c7y .framer-10a5cbt, .framer-w6c7y .framer-8o7q15, .framer-w6c7y .framer-14lnphi, .framer-w6c7y .framer-1g8ccrr { flex: none; height: 21px; left: calc(47.82608695652176% - 23px / 2); position: absolute; top: calc(47.61904761904764% - 21px / 2); width: 23px; }\",\".framer-w6c7y .framer-h6dct6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-b6deh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-w6c7y .framer-usplqr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w6c7y .framer-sxxso9 { 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: 40px 0px 77px 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-hheigu-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-w6c7y .framer-16ka0b1-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w6c7y .framer-gy0dic { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1024px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-79igh8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 10px 10px 10px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-vrjz2f-container, .framer-w6c7y .framer-oy64g8-container, .framer-w6c7y .framer-n7mu5u-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-w6c7y .framer-14wqzrs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-iu058g, .framer-w6c7y .framer-1wjcy82 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-1v42x2f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 25px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-zk3d23, .framer-w6c7y .framer-kunpi0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-m81inj, .framer-w6c7y .framer-li4tqx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 960px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w6c7y .framer-1ik3dlv { 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: 44px 0px 44px 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-5a6bv9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1024px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-1j3a1sn { align-content: center; align-items: center; background: linear-gradient(180deg, #69b4ff 0%, rgb(27, 139, 250) 100%); border-bottom-left-radius: 25px; border-top-left-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 30px 40px 30px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w6c7y .framer-14rmslw, .framer-w6c7y .framer-86h2qh, .framer-w6c7y .framer-6asdte, .framer-w6c7y .framer-1oh0r18, .framer-w6c7y .framer-11q5blx, .framer-w6c7y .framer-1owjx28, .framer-w6c7y .framer-16wvsxf, .framer-w6c7y .framer-r2i03n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; --framer-text-wrap: balance; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w6c7y .framer-430ce1 { align-content: center; align-items: center; background: linear-gradient(180deg, #a168fc 0%, rgb(87, 0, 227) 100%); border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 30px 40px 30px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w6c7y .framer-1ikeekm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-f7sgtb { -webkit-filter: drop-shadow(0px 1px 19px rgba(0, 0, 0, 0.05)); align-content: center; align-items: center; display: flex; filter: drop-shadow(0px 1px 19px rgba(0, 0, 0, 0.05)); flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 60vh; overflow: hidden; padding: 20px; position: relative; width: 1px; }\",\".framer-w6c7y .framer-1ky4dqc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1024px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-w6c7y .framer-g4293c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; max-width: 500px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-w6c7y .framer-1k6uoep { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-1idyjtd { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w6c7y .framer-qpbt9m { flex: none; height: 24px; position: relative; width: 18px; }\",\".framer-w6c7y .framer-1hwlmt1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-w6c7y .framer-v0lgqa { background-color: rgba(0, 0, 0, 0.33); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-w6c7y .framer-nhxojo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; min-height: 80vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-17ddsrt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 145px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-1alywo3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w6c7y .framer-9yba2b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-11zgoap, .framer-w6c7y .framer-12r7pxi, .framer-w6c7y .framer-15jd9af, .framer-w6c7y .framer-1yuyl9v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; max-width: 1140px; min-height: 100px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-2ewx95, .framer-w6c7y .framer-lu68h8, .framer-w6c7y .framer-12kdr39, .framer-w6c7y .framer-1d9a9wo { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 1px 44px 0px rgba(0, 0, 0, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-w6c7y .framer-888kzk, .framer-w6c7y .framer-1j0mlff, .framer-w6c7y .framer-6zsyra, .framer-w6c7y .framer-3ycpn9 { align-content: flex-start; align-items: flex-start; 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: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 400px; padding: 40px; position: relative; width: 1px; }\",\".framer-w6c7y .framer-1lkql6t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1140px; overflow: hidden; padding: 40px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-1wwkxud { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 194px; justify-content: flex-start; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 95%; }\",\".framer-w6c7y .framer-246tc7, .framer-w6c7y .framer-6qmtwf, .framer-w6c7y .framer-1120wti { --border-bottom-width: 2px; --border-color: rgba(99, 99, 99, 0.2); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; 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: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; padding: 20px; position: relative; width: 1px; }\",\".framer-w6c7y .framer-7lrimy { flex: none; height: 82px; position: relative; width: 83px; }\",\".framer-w6c7y .framer-1m3c9is { flex: none; height: 64px; position: relative; width: 73px; }\",\".framer-w6c7y .framer-18epphc { flex: none; height: 58px; overflow: visible; position: relative; width: 69px; }\",\".framer-w6c7y .framer-19sak7x { flex: none; height: 69px; left: calc(49.27536231884061% - 58px / 2); position: absolute; top: calc(44.82758620689658% - 69px / 2); width: 58px; }\",\".framer-w6c7y .framer-1bf34df { align-content: center; align-items: center; background-color: var(--token-04df45f7-6155-49f4-ac00-2ed8fdd118f3, #5c0fd9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 10px 80px 10px; position: relative; width: 100%; }\",\".framer-w6c7y .framer-qbmimu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-w6c7y.framer-1vw6ww3, .framer-w6c7y .framer-19d7h33, .framer-w6c7y .framer-p47qey, .framer-w6c7y .framer-1s05f32, .framer-w6c7y .framer-1n3rftu, .framer-w6c7y .framer-1s7cx8k, .framer-w6c7y .framer-jsszmf, .framer-w6c7y .framer-fa2ov8, .framer-w6c7y .framer-13v1etk, .framer-w6c7y .framer-js57jw, .framer-w6c7y .framer-1navzjk, .framer-w6c7y .framer-5vm49b, .framer-w6c7y.framer-1f1cvs3, .framer-w6c7y .framer-146udd6, .framer-w6c7y .framer-1ep7t9m, .framer-w6c7y .framer-6svtov, .framer-w6c7y .framer-17d7n07, .framer-w6c7y .framer-lmodvy, .framer-w6c7y .framer-b262k0, .framer-w6c7y .framer-2fgrsc, .framer-w6c7y .framer-o9nea3, .framer-w6c7y .framer-4f3lo0, .framer-w6c7y .framer-h6dct6, .framer-w6c7y .framer-sxxso9, .framer-w6c7y .framer-gy0dic, .framer-w6c7y .framer-79igh8, .framer-w6c7y .framer-14wqzrs, .framer-w6c7y .framer-iu058g, .framer-w6c7y .framer-1v42x2f, .framer-w6c7y .framer-zk3d23, .framer-w6c7y .framer-1ik3dlv, .framer-w6c7y .framer-5a6bv9, .framer-w6c7y .framer-1j3a1sn, .framer-w6c7y .framer-430ce1, .framer-w6c7y .framer-1ikeekm, .framer-w6c7y .framer-f7sgtb, .framer-w6c7y .framer-1ky4dqc, .framer-w6c7y .framer-g4293c, .framer-w6c7y .framer-1k6uoep, .framer-w6c7y .framer-1idyjtd, .framer-w6c7y .framer-nhxojo, .framer-w6c7y .framer-1wjcy82, .framer-w6c7y .framer-17ddsrt, .framer-w6c7y .framer-kunpi0, .framer-w6c7y .framer-9yba2b, .framer-w6c7y .framer-11zgoap, .framer-w6c7y .framer-2ewx95, .framer-w6c7y .framer-888kzk, .framer-w6c7y .framer-a0kkxx, .framer-w6c7y .framer-12r7pxi, .framer-w6c7y .framer-lu68h8, .framer-w6c7y .framer-1j0mlff, .framer-w6c7y .framer-1fj3hsj, .framer-w6c7y .framer-15jd9af, .framer-w6c7y .framer-12kdr39, .framer-w6c7y .framer-6zsyra, .framer-w6c7y .framer-410ko2, .framer-w6c7y .framer-1yuyl9v, .framer-w6c7y .framer-1d9a9wo, .framer-w6c7y .framer-3ycpn9, .framer-w6c7y .framer-1yq7a55, .framer-w6c7y .framer-1lkql6t, .framer-w6c7y .framer-1wwkxud, .framer-w6c7y .framer-246tc7, .framer-w6c7y .framer-6qmtwf, .framer-w6c7y .framer-1120wti, .framer-w6c7y .framer-1bf34df, .framer-w6c7y .framer-qbmimu { gap: 0px; } .framer-w6c7y.framer-1vw6ww3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-w6c7y.framer-1vw6ww3 > :first-child, .framer-w6c7y .framer-19d7h33 > :first-child, .framer-w6c7y .framer-p47qey > :first-child, .framer-w6c7y .framer-1s05f32 > :first-child, .framer-w6c7y .framer-1n3rftu > :first-child, .framer-w6c7y .framer-jsszmf > :first-child, .framer-w6c7y .framer-13v1etk > :first-child, .framer-w6c7y .framer-js57jw > :first-child, .framer-w6c7y .framer-1navzjk > :first-child, .framer-w6c7y.framer-1f1cvs3 > :first-child, .framer-w6c7y .framer-146udd6 > :first-child, .framer-w6c7y .framer-17d7n07 > :first-child, .framer-w6c7y .framer-lmodvy > :first-child, .framer-w6c7y .framer-b262k0 > :first-child, .framer-w6c7y .framer-2fgrsc > :first-child, .framer-w6c7y .framer-o9nea3 > :first-child, .framer-w6c7y .framer-h6dct6 > :first-child, .framer-w6c7y .framer-sxxso9 > :first-child, .framer-w6c7y .framer-gy0dic > :first-child, .framer-w6c7y .framer-79igh8 > :first-child, .framer-w6c7y .framer-14wqzrs > :first-child, .framer-w6c7y .framer-iu058g > :first-child, .framer-w6c7y .framer-1v42x2f > :first-child, .framer-w6c7y .framer-zk3d23 > :first-child, .framer-w6c7y .framer-1ik3dlv > :first-child, .framer-w6c7y .framer-1j3a1sn > :first-child, .framer-w6c7y .framer-430ce1 > :first-child, .framer-w6c7y .framer-f7sgtb > :first-child, .framer-w6c7y .framer-g4293c > :first-child, .framer-w6c7y .framer-1k6uoep > :first-child, .framer-w6c7y .framer-nhxojo > :first-child, .framer-w6c7y .framer-1wjcy82 > :first-child, .framer-w6c7y .framer-17ddsrt > :first-child, .framer-w6c7y .framer-kunpi0 > :first-child, .framer-w6c7y .framer-9yba2b > :first-child, .framer-w6c7y .framer-2ewx95 > :first-child, .framer-w6c7y .framer-888kzk > :first-child, .framer-w6c7y .framer-a0kkxx > :first-child, .framer-w6c7y .framer-lu68h8 > :first-child, .framer-w6c7y .framer-1j0mlff > :first-child, .framer-w6c7y .framer-1fj3hsj > :first-child, .framer-w6c7y .framer-12kdr39 > :first-child, .framer-w6c7y .framer-6zsyra > :first-child, .framer-w6c7y .framer-410ko2 > :first-child, .framer-w6c7y .framer-1d9a9wo > :first-child, .framer-w6c7y .framer-3ycpn9 > :first-child, .framer-w6c7y .framer-1yq7a55 > :first-child, .framer-w6c7y .framer-1lkql6t > :first-child, .framer-w6c7y .framer-246tc7 > :first-child, .framer-w6c7y .framer-6qmtwf > :first-child, .framer-w6c7y .framer-1120wti > :first-child, .framer-w6c7y .framer-1bf34df > :first-child, .framer-w6c7y .framer-qbmimu > :first-child { margin-top: 0px; } .framer-w6c7y.framer-1vw6ww3 > :last-child, .framer-w6c7y .framer-19d7h33 > :last-child, .framer-w6c7y .framer-p47qey > :last-child, .framer-w6c7y .framer-1s05f32 > :last-child, .framer-w6c7y .framer-1n3rftu > :last-child, .framer-w6c7y .framer-jsszmf > :last-child, .framer-w6c7y .framer-13v1etk > :last-child, .framer-w6c7y .framer-js57jw > :last-child, .framer-w6c7y .framer-1navzjk > :last-child, .framer-w6c7y.framer-1f1cvs3 > :last-child, .framer-w6c7y .framer-146udd6 > :last-child, .framer-w6c7y .framer-17d7n07 > :last-child, .framer-w6c7y .framer-lmodvy > :last-child, .framer-w6c7y .framer-b262k0 > :last-child, .framer-w6c7y .framer-2fgrsc > :last-child, .framer-w6c7y .framer-o9nea3 > :last-child, .framer-w6c7y .framer-h6dct6 > :last-child, .framer-w6c7y .framer-sxxso9 > :last-child, .framer-w6c7y .framer-gy0dic > :last-child, .framer-w6c7y .framer-79igh8 > :last-child, .framer-w6c7y .framer-14wqzrs > :last-child, .framer-w6c7y .framer-iu058g > :last-child, .framer-w6c7y .framer-1v42x2f > :last-child, .framer-w6c7y .framer-zk3d23 > :last-child, .framer-w6c7y .framer-1ik3dlv > :last-child, .framer-w6c7y .framer-1j3a1sn > :last-child, .framer-w6c7y .framer-430ce1 > :last-child, .framer-w6c7y .framer-f7sgtb > :last-child, .framer-w6c7y .framer-g4293c > :last-child, .framer-w6c7y .framer-1k6uoep > :last-child, .framer-w6c7y .framer-nhxojo > :last-child, .framer-w6c7y .framer-1wjcy82 > :last-child, .framer-w6c7y .framer-17ddsrt > :last-child, .framer-w6c7y .framer-kunpi0 > :last-child, .framer-w6c7y .framer-9yba2b > :last-child, .framer-w6c7y .framer-2ewx95 > :last-child, .framer-w6c7y .framer-888kzk > :last-child, .framer-w6c7y .framer-a0kkxx > :last-child, .framer-w6c7y .framer-lu68h8 > :last-child, .framer-w6c7y .framer-1j0mlff > :last-child, .framer-w6c7y .framer-1fj3hsj > :last-child, .framer-w6c7y .framer-12kdr39 > :last-child, .framer-w6c7y .framer-6zsyra > :last-child, .framer-w6c7y .framer-410ko2 > :last-child, .framer-w6c7y .framer-1d9a9wo > :last-child, .framer-w6c7y .framer-3ycpn9 > :last-child, .framer-w6c7y .framer-1yq7a55 > :last-child, .framer-w6c7y .framer-1lkql6t > :last-child, .framer-w6c7y .framer-246tc7 > :last-child, .framer-w6c7y .framer-6qmtwf > :last-child, .framer-w6c7y .framer-1120wti > :last-child, .framer-w6c7y .framer-1bf34df > :last-child, .framer-w6c7y .framer-qbmimu > :last-child { margin-bottom: 0px; } .framer-w6c7y .framer-19d7h33 > *, .framer-w6c7y .framer-p47qey > *, .framer-w6c7y .framer-1s05f32 > *, .framer-w6c7y .framer-1n3rftu > *, .framer-w6c7y.framer-1f1cvs3 > *, .framer-w6c7y .framer-146udd6 > *, .framer-w6c7y .framer-o9nea3 > *, .framer-w6c7y .framer-h6dct6 > *, .framer-w6c7y .framer-gy0dic > *, .framer-w6c7y .framer-zk3d23 > *, .framer-w6c7y .framer-1ik3dlv > *, .framer-w6c7y .framer-1j3a1sn > *, .framer-w6c7y .framer-430ce1 > *, .framer-w6c7y .framer-kunpi0 > *, .framer-w6c7y .framer-1bf34df > *, .framer-w6c7y .framer-qbmimu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-w6c7y .framer-1s7cx8k > *, .framer-w6c7y .framer-5vm49b > *, .framer-w6c7y .framer-1ky4dqc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-w6c7y .framer-1s7cx8k > :first-child, .framer-w6c7y .framer-fa2ov8 > :first-child, .framer-w6c7y .framer-5vm49b > :first-child, .framer-w6c7y .framer-1ep7t9m > :first-child, .framer-w6c7y .framer-6svtov > :first-child, .framer-w6c7y .framer-4f3lo0 > :first-child, .framer-w6c7y .framer-5a6bv9 > :first-child, .framer-w6c7y .framer-1ikeekm > :first-child, .framer-w6c7y .framer-1ky4dqc > :first-child, .framer-w6c7y .framer-1idyjtd > :first-child, .framer-w6c7y .framer-11zgoap > :first-child, .framer-w6c7y .framer-12r7pxi > :first-child, .framer-w6c7y .framer-15jd9af > :first-child, .framer-w6c7y .framer-1yuyl9v > :first-child, .framer-w6c7y .framer-1wwkxud > :first-child { margin-left: 0px; } .framer-w6c7y .framer-1s7cx8k > :last-child, .framer-w6c7y .framer-fa2ov8 > :last-child, .framer-w6c7y .framer-5vm49b > :last-child, .framer-w6c7y .framer-1ep7t9m > :last-child, .framer-w6c7y .framer-6svtov > :last-child, .framer-w6c7y .framer-4f3lo0 > :last-child, .framer-w6c7y .framer-5a6bv9 > :last-child, .framer-w6c7y .framer-1ikeekm > :last-child, .framer-w6c7y .framer-1ky4dqc > :last-child, .framer-w6c7y .framer-1idyjtd > :last-child, .framer-w6c7y .framer-11zgoap > :last-child, .framer-w6c7y .framer-12r7pxi > :last-child, .framer-w6c7y .framer-15jd9af > :last-child, .framer-w6c7y .framer-1yuyl9v > :last-child, .framer-w6c7y .framer-1wwkxud > :last-child { margin-right: 0px; } .framer-w6c7y .framer-jsszmf > *, .framer-w6c7y .framer-14wqzrs > *, .framer-w6c7y .framer-nhxojo > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-w6c7y .framer-fa2ov8 > *, .framer-w6c7y .framer-6svtov > *, .framer-w6c7y .framer-1ikeekm > *, .framer-w6c7y .framer-11zgoap > *, .framer-w6c7y .framer-12r7pxi > *, .framer-w6c7y .framer-15jd9af > *, .framer-w6c7y .framer-1yuyl9v > *, .framer-w6c7y .framer-1wwkxud > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-w6c7y .framer-13v1etk > *, .framer-w6c7y .framer-17d7n07 > *, .framer-w6c7y .framer-lmodvy > *, .framer-w6c7y .framer-b262k0 > *, .framer-w6c7y .framer-2fgrsc > *, .framer-w6c7y .framer-f7sgtb > *, .framer-w6c7y .framer-888kzk > *, .framer-w6c7y .framer-1j0mlff > *, .framer-w6c7y .framer-6zsyra > *, .framer-w6c7y .framer-3ycpn9 > *, .framer-w6c7y .framer-246tc7 > *, .framer-w6c7y .framer-6qmtwf > *, .framer-w6c7y .framer-1120wti > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-w6c7y .framer-js57jw > *, .framer-w6c7y .framer-a0kkxx > *, .framer-w6c7y .framer-1fj3hsj > *, .framer-w6c7y .framer-410ko2 > *, .framer-w6c7y .framer-1yq7a55 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-w6c7y .framer-1navzjk > *, .framer-w6c7y .framer-2ewx95 > *, .framer-w6c7y .framer-lu68h8 > *, .framer-w6c7y .framer-12kdr39 > *, .framer-w6c7y .framer-1d9a9wo > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-w6c7y .framer-1ep7t9m > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-w6c7y .framer-4f3lo0 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-w6c7y .framer-sxxso9 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-w6c7y .framer-79igh8 > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-w6c7y .framer-iu058g > *, .framer-w6c7y .framer-1wjcy82 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-w6c7y .framer-1v42x2f > *, .framer-w6c7y .framer-17ddsrt > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-w6c7y .framer-5a6bv9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-w6c7y .framer-g4293c > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-w6c7y .framer-1k6uoep > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-w6c7y .framer-1idyjtd > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-w6c7y .framer-9yba2b > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-w6c7y .framer-1lkql6t > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-w6c7y[data-border=\"true\"]::after, .framer-w6c7y [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 (max-width: 1199px) { .framer-w6c7y.framer-1vw6ww3 { width: 400px; } .framer-w6c7y .framer-p47qey { background: radial-gradient(80% 75% at 50% 50%, #4a65a1 0%, rgba(95, 120, 199, 0.77) 49.564259572072075%, rgba(0, 0, 0, 0.37) 100%); } .framer-w6c7y .framer-1s05f32 { padding: 0px 10px 0px 10px; } .framer-w6c7y .framer-1s7cx8k { flex-direction: column; padding: 20px; } .framer-w6c7y .framer-o7rjqh-container, .framer-w6c7y .framer-16ka0b1-container { width: 100%; } .framer-w6c7y .framer-jsszmf { padding: 23px 10px 23px 10px; } .framer-w6c7y .framer-fa2ov8 { flex-direction: column; gap: 34px; } .framer-w6c7y .framer-13v1etk { background-color: unset; box-shadow: unset; flex: none; gap: 22px; padding: 10px; width: 100%; } .framer-w6c7y .framer-1navzjk { align-self: unset; flex: none; height: 300px; width: 100%; } .framer-w6c7y .framer-1k85xty { height: 400%; top: calc(49.80026631158457% - 400% / 2); } .framer-w6c7y .framer-6svtov { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(150px, 1fr)); grid-template-rows: repeat(2, min-content); height: 475px; justify-content: center; max-width: unset; } .framer-w6c7y .framer-17d7n07, .framer-w6c7y .framer-lmodvy, .framer-w6c7y .framer-b262k0, .framer-w6c7y .framer-2fgrsc { align-self: start; flex: none; justify-self: start; padding: 20px; width: 100%; } .framer-w6c7y .framer-1gkv1p7 { height: 45px; width: 45px; } .framer-w6c7y .framer-1pvk2w5 { height: 43px; width: 46px; } .framer-w6c7y .framer-qd4bjn { height: 42px; width: 60px; } .framer-w6c7y .framer-feka15 { height: 46px; width: 46px; } .framer-w6c7y .framer-o9nea3 { padding: 11px 0px 40px 0px; } .framer-w6c7y .framer-sxxso9, .framer-w6c7y .framer-14wqzrs { padding: 10px; } .framer-w6c7y .framer-1v42x2f, .framer-w6c7y .framer-17ddsrt { padding: 50px 0px 40px 0px; } .framer-w6c7y .framer-1ik3dlv { gap: 29px; padding: 0px; } .framer-w6c7y .framer-5a6bv9 { flex-direction: column; gap: 18px; max-width: unset; } .framer-w6c7y .framer-1j3a1sn, .framer-w6c7y .framer-430ce1 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; padding: 30px 20px 30px 20px; width: 100%; } .framer-w6c7y .framer-1ikeekm { flex-direction: column; padding: 0px 10px 10px 10px; } .framer-w6c7y .framer-f7sgtb { flex: none; min-height: unset; padding: 60px 40px 60px 40px; width: 100%; } .framer-w6c7y .framer-nhxojo { min-height: unset; padding: 20px; } .framer-w6c7y .framer-11zgoap, .framer-w6c7y .framer-12r7pxi, .framer-w6c7y .framer-15jd9af, .framer-w6c7y .framer-1yuyl9v { flex-direction: column; } .framer-w6c7y .framer-2ewx95, .framer-w6c7y .framer-lu68h8, .framer-w6c7y .framer-12kdr39, .framer-w6c7y .framer-1d9a9wo { align-self: unset; flex: none; height: 180px; width: 100%; } .framer-w6c7y .framer-888kzk, .framer-w6c7y .framer-1j0mlff, .framer-w6c7y .framer-6zsyra, .framer-w6c7y .framer-3ycpn9 { flex: none; gap: 8px; min-height: unset; padding: 20px 0px 20px 0px; width: 100%; } .framer-w6c7y .framer-1lkql6t { padding: 40px 0px 0px 0px; } .framer-w6c7y .framer-14x62vj { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-w6c7y .framer-1wwkxud { flex-direction: column; height: min-content; max-width: unset; } .framer-w6c7y .framer-246tc7, .framer-w6c7y .framer-6qmtwf, .framer-w6c7y .framer-1120wti { flex: none; flex-direction: row; height: min-content; padding: 36px 20px 36px 20px; width: 100%; } .framer-w6c7y .framer-7lrimy { height: 58px; width: 59px; } .framer-w6c7y .framer-j96o7n, .framer-w6c7y .framer-1o9s6of, .framer-w6c7y .framer-18ftggf { flex: 1 0 0px; width: 1px; } .framer-w6c7y .framer-1m3c9is { height: 51px; width: 58px; } .framer-w6c7y .framer-1bf34df { padding: 80px 10px 0px 10px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-w6c7y .framer-1s7cx8k, .framer-w6c7y .framer-fa2ov8, .framer-w6c7y .framer-13v1etk, .framer-w6c7y .framer-6svtov, .framer-w6c7y .framer-1ik3dlv, .framer-w6c7y .framer-5a6bv9, .framer-w6c7y .framer-1ikeekm, .framer-w6c7y .framer-11zgoap, .framer-w6c7y .framer-888kzk, .framer-w6c7y .framer-12r7pxi, .framer-w6c7y .framer-1j0mlff, .framer-w6c7y .framer-15jd9af, .framer-w6c7y .framer-6zsyra, .framer-w6c7y .framer-1yuyl9v, .framer-w6c7y .framer-3ycpn9, .framer-w6c7y .framer-1wwkxud, .framer-w6c7y .framer-246tc7, .framer-w6c7y .framer-6qmtwf, .framer-w6c7y .framer-1120wti { gap: 0px; } .framer-w6c7y .framer-1s7cx8k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-w6c7y .framer-1s7cx8k > :first-child, .framer-w6c7y .framer-fa2ov8 > :first-child, .framer-w6c7y .framer-13v1etk > :first-child, .framer-w6c7y .framer-1ik3dlv > :first-child, .framer-w6c7y .framer-5a6bv9 > :first-child, .framer-w6c7y .framer-1ikeekm > :first-child, .framer-w6c7y .framer-11zgoap > :first-child, .framer-w6c7y .framer-888kzk > :first-child, .framer-w6c7y .framer-12r7pxi > :first-child, .framer-w6c7y .framer-1j0mlff > :first-child, .framer-w6c7y .framer-15jd9af > :first-child, .framer-w6c7y .framer-6zsyra > :first-child, .framer-w6c7y .framer-1yuyl9v > :first-child, .framer-w6c7y .framer-3ycpn9 > :first-child, .framer-w6c7y .framer-1wwkxud > :first-child { margin-top: 0px; } .framer-w6c7y .framer-1s7cx8k > :last-child, .framer-w6c7y .framer-fa2ov8 > :last-child, .framer-w6c7y .framer-13v1etk > :last-child, .framer-w6c7y .framer-1ik3dlv > :last-child, .framer-w6c7y .framer-5a6bv9 > :last-child, .framer-w6c7y .framer-1ikeekm > :last-child, .framer-w6c7y .framer-11zgoap > :last-child, .framer-w6c7y .framer-888kzk > :last-child, .framer-w6c7y .framer-12r7pxi > :last-child, .framer-w6c7y .framer-1j0mlff > :last-child, .framer-w6c7y .framer-15jd9af > :last-child, .framer-w6c7y .framer-6zsyra > :last-child, .framer-w6c7y .framer-1yuyl9v > :last-child, .framer-w6c7y .framer-3ycpn9 > :last-child, .framer-w6c7y .framer-1wwkxud > :last-child { margin-bottom: 0px; } .framer-w6c7y .framer-fa2ov8 > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-w6c7y .framer-13v1etk > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-w6c7y .framer-6svtov > *, .framer-w6c7y .framer-6svtov > :first-child, .framer-w6c7y .framer-6svtov > :last-child { margin: 0px; } .framer-w6c7y .framer-1ik3dlv > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-w6c7y .framer-5a6bv9 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-w6c7y .framer-1ikeekm > *, .framer-w6c7y .framer-11zgoap > *, .framer-w6c7y .framer-12r7pxi > *, .framer-w6c7y .framer-15jd9af > *, .framer-w6c7y .framer-1yuyl9v > *, .framer-w6c7y .framer-1wwkxud > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-w6c7y .framer-888kzk > *, .framer-w6c7y .framer-1j0mlff > *, .framer-w6c7y .framer-6zsyra > *, .framer-w6c7y .framer-3ycpn9 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-w6c7y .framer-246tc7 > *, .framer-w6c7y .framer-6qmtwf > *, .framer-w6c7y .framer-1120wti > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-w6c7y .framer-246tc7 > :first-child, .framer-w6c7y .framer-6qmtwf > :first-child, .framer-w6c7y .framer-1120wti > :first-child { margin-left: 0px; } .framer-w6c7y .framer-246tc7 > :last-child, .framer-w6c7y .framer-6qmtwf > :last-child, .framer-w6c7y .framer-1120wti > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7246\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ocwGbkWhC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"IO_qNLix1\":{\"pattern\":\":IO_qNLix1\",\"name\":\"highlights\"},\"XcxQb5HC3\":{\"pattern\":\":XcxQb5HC3\",\"name\":\"anmeldung\"}}\n * @framerResponsiveScreen\n */const FrameroGlL_yyb8=withCSS(Component,css,\"framer-w6c7y\");export default FrameroGlL_yyb8;FrameroGlL_yyb8.displayName=\"Page\";FrameroGlL_yyb8.defaultProps={height:7246,width:1200};addFonts(FrameroGlL_yyb8,[{explicitInter:true,fonts:[{family:\"Gordita Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/ooYAvjTR8GxlJleEqR3O0dKIMBY.woff2\"},{family:\"Gordita Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/lbQr2PcMUoZCl9qmmwcgTLnQsM.woff2\"},{family:\"Inter Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/t7cTapAQ8d8U1ttLYrUEYblhUiM.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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 Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/jU5rsmEyPR73IMrMfqNJG0ONE.woff2\"},{family:\"Inter Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/4aET6boO2eu6F6pBjWs188xrJ8.woff2\"}]},...NavigationCopyFonts,...TickerFonts,...CallToActionFonts,...VideoFonts,...YouTubeFonts,...SpeakersSliderFonts,...BrandLogosFonts,...EmbedFonts,...Footer2025Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroGlL_yyb8\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ocwGbkWhC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"IO_qNLix1\\\":{\\\"pattern\\\":\\\":IO_qNLix1\\\",\\\"name\\\":\\\"highlights\\\"},\\\"XcxQb5HC3\\\":{\\\"pattern\\\":\\\":XcxQb5HC3\\\",\\\"name\\\":\\\"anmeldung\\\"}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7246\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "NavigationCopyFonts", "getFonts", "Nb5hgYFdz_default", "TickerFonts", "Ticker", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "CallToActionFonts", "AtAkIKfH7_default", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "Video", "YouTubeFonts", "Youtube", "MotionDivWithOptimizedAppearEffect", "RichTextWithFX", "SpeakersSliderFonts", "x0G3U0wos_default", "ContainerWithOptimizedAppearEffect", "Container", "BrandLogosFonts", "a4K0zNq4w_default", "ImageWithFX", "Image2", "EmbedFonts", "Embed", "Footer2025Fonts", "PPlubLOJn_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "animation6", "transition4", "animation7", "animation8", "animation9", "animation10", "animation11", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition5", "animation12", "transition6", "animation13", "transition7", "animation14", "transition8", "animation15", "animation16", "transition9", "animation17", "animation18", "transition10", "animation19", "transition11", "animation20", "transition12", "animation21", "transition13", "animation22", "transition14", "animation23", "transition15", "animation24", "transition16", "animation25", "animation26", "animation27", "transition17", "animation28", "animation29", "transition18", "animation30", "animation31", "animation32", "animation33", "transition19", "animation34", "transition20", "animation35", "transition21", "animation36", "transition22", "animation37", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "SVG", "x", "ResolveLinks", "resolvedLinks", "l", "AnimatePresence", "Ga", "resolvedLinks1", "getLoadingLazyAtYPosition", "Link", "css", "FrameroGlL_yyb8", "withCSS", "oGlL_yyb8_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
