{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/oQk14E8Ar7JXjnVOhZW2/tTjSZGoYpVB4w8r1kHS0/TextWrap_Prod.js", "ssg:https://framerusercontent.com/modules/wtCWCDefZAF8uwRUa8z9/K7SB4rOAiUHTg03TJ5iQ/Overrides.js", "ssg:https://framerusercontent.com/modules/GH700FLnFX6SqJv9M1Mt/gSPa98ZIbbYroLmHd6IX/C6PpHdl17.js", "ssg:https://framerusercontent.com/modules/cxNcP9CVPhUPeIb0viJm/K2svhi4v8L17ucYTGzCw/CYcJqTRPY.js", "ssg:https://framerusercontent.com/modules/tWfObq1BtR7eNhM1C07X/RtIIcdp9kVECDPW09wTu/Carousel.js", "ssg:https://framerusercontent.com/modules/IPHVDP8YWrhOVvBkyE0M/H0P4eD7XTcSA7hH1zkC1/xi7gNxZQc.js", "ssg:https://framerusercontent.com/modules/32z4YqcjcegQEJp0AGJx/SIwnhuttZljsiHbQT5Bh/DrR4eLLVl.js", "ssg:https://framerusercontent.com/modules/Tnesfab6lIRAYMw6ImnK/judfAUEnDpzLz8kWJItZ/ewwruNBJ0.js", "ssg:https://framerusercontent.com/modules/hUncJfzP0arqlIwZgRr6/PXWmInjozqibN9tC8AAQ/lTUdsAyqt.js", "ssg:https://framerusercontent.com/modules/S8pf9V14RZQYACYULy6w/5mUYXz178X9VSc2v9fzS/PndKS1aLH.js", "ssg:https://framerusercontent.com/modules/2Rx0pyF0HzGywIVM8pWm/xGHqO4YgQGT9nphXjwga/V_ZaC2iIM.js", "ssg:https://framerusercontent.com/modules/7Fc91LtvaZg6qXRyF8Cr/CPA3QvBpmkiwb7N6jNki/GYQYWcM8K.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight auto\n */export default function TextWrap({layers=[],text,slot,font,color,layerGap,transform,layerAlign,decoration,balance,userSelect,tag,style}){const Tag=tag;const parts=text.split(slot);const content=[];// Insert layers at slot positions, keeping empty slots if no layer is available\nfor(let i=0;i<parts.length;i++){content.push(parts[i]);if(i<parts.length-1){// If we're not at the last part\nif(i<layers.length){// If we have a layer for this slot, insert it\ncontent.push(/*#__PURE__*/_jsx(InlineLayer,{align:layerAlign,gap:layerGap,children:layers[i]},`layer-${i}`));}else{// If we don't have a layer, keep the slot marker\ncontent.push(slot);}}}// Append any remaining layers at the end\nif(layers.length>parts.length-1){for(let i=parts.length-1;i<layers.length;i++){content.push(/*#__PURE__*/_jsx(InlineLayer,{align:layerAlign,gap:layerGap,children:layers[i]},`layer-${i}`));}}return /*#__PURE__*/_jsx(Tag,{style:{color,margin:0,whiteSpace:style?.width?\"pre\":\"nowrap\",fontWeight:400,textAlign:\"center\",userSelect:userSelect?\"auto\":\"none\",textDecoration:decoration,textWrap:balance?\"balance\":undefined,textTransform:transform,...color.mode==\"solid\"?{color:color.color}:{WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",backgroundImage:`linear-gradient(${color.angle}deg, ${color.endColor}, ${color.startColor})`},...font,...style},children:content});}TextWrap.displayName=\"Text Wrap\";addPropertyControls(TextWrap,{text:{type:ControlType.String,defaultValue:\"Learn [] Framer With [] Framer University\",displayTextArea:true},layers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance}},slot:{type:ControlType.String,defaultValue:\"[]\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:32,lineHeight:1.4}},color:{type:ControlType.Object,icon:\"color\",controls:{mode:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:\"#999999\",hidden:props=>props.mode!==\"solid\"},startColor:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!==\"gradient\"},endColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.mode!==\"gradient\"},angle:{type:ControlType.Number,defaultValue:0,min:-360,max:360,unit:\"\\xb0\",hidden:props=>props.mode!==\"gradient\"}}},layerAlign:{type:ControlType.Enum,defaultValue:\"baseline\",options:[\"baseline\",\"middle\"],optionTitles:[\"Baseline\",\"Middle\"],displaySegmentedControl:true,title:\"Align\"},layerGap:{type:ControlType.Number,defaultValue:0,min:0,step:1},transform:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"inherit\",\"capitalize\",\"uppercase\",\"lowercase\"],optionTitles:[\"None\",\"Inherit\",\"Capitalize\",\"Uppercase\",\"Lowercase\"]},decoration:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"underline\",\"line-through\"],optionTitles:[\"None\",\"Underline\",\"Strikethrough\"]},balance:{type:ControlType.Boolean,defaultValue:false},userSelect:{type:ControlType.Boolean,defaultValue:true},tag:{type:ControlType.Enum,defaultValue:\"h1\",options:[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"p\",\"span\"],description:\"More components at [Framer University](https://frameruni.link/cc).\"}});function InlineLayer({children,align=\"middle\",gap=0}){return /*#__PURE__*/_jsx(\"span\",{style:{display:\"inline-block\",verticalAlign:align,marginLeft:gap,marginRight:gap},children:children});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextWrap\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"auto\",\"framerIntrinsicHeight\":\"auto\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TextWrap_Prod.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{forwardRef}from\"react\";export function OpenType(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{...props,ref:ref,style:{...props.style,fontFeatureSettings:`\"salt\", \"kern\", \"cv05\", \"cv11\", \"ccmp\"`}});});}\nexport const __FramerMetadata__ = {\"exports\":{\"OpenType\":{\"type\":\"reactHoc\",\"name\":\"OpenType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Overrides.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"Wu_uwM41F\",\"vBf9ncrJ8\"];const serializationHash=\"framer-xdCxm\";const variantClassNames={vBf9ncrJ8:\"framer-v-rfiy9z\",Wu_uwM41F:\"framer-v-1wih5h2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"Wu_uwM41F\",Phone:\"vBf9ncrJ8\"};const getProps=({height,id,title,width,...props})=>{return{...props,CWjybAqsV:title??props.CWjybAqsV??\"Design Maturity\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Wu_uwM41F\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,CWjybAqsV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Wu_uwM41F\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1wih5h2\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Wu_uwM41F\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(97, 97, 97, 0.51)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(0, 0, 0, 0.08)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,WebkitBackdropFilter:\"blur(8px)\",...style},...addPropertyOverrides({vBf9ncrJ8:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(191, 191, 191))\"},children:\"Design Maturity\"})}),className:\"framer-3b7zm\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"cvt0bgOvo\",style:{\"--extracted-r6o4lv\":\"rgb(191, 191, 191)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:CWjybAqsV,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({vBf9ncrJ8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(191, 191, 191))\"},children:\"Design Maturity\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xdCxm.framer-17r5pdd, .framer-xdCxm .framer-17r5pdd { display: block; }\",\".framer-xdCxm.framer-1wih5h2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-xdCxm .framer-3b7zm { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xdCxm.framer-1wih5h2 { gap: 0px; } .framer-xdCxm.framer-1wih5h2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xdCxm.framer-1wih5h2 > :first-child { margin-left: 0px; } .framer-xdCxm.framer-1wih5h2 > :last-child { margin-right: 0px; } }\",'.framer-xdCxm[data-border=\"true\"]::after, .framer-xdCxm [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37.5\n * @framerIntrinsicWidth 165.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"vBf9ncrJ8\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"CWjybAqsV\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerC6PpHdl17=withCSS(Component,css,\"framer-xdCxm\");export default FramerC6PpHdl17;FramerC6PpHdl17.displayName=\"Elements/Topic Tag\";FramerC6PpHdl17.defaultProps={height:37.5,width:165.5};addPropertyControls(FramerC6PpHdl17,{variant:{options:[\"Wu_uwM41F\",\"vBf9ncrJ8\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},CWjybAqsV:{defaultValue:\"Design Maturity\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerC6PpHdl17,[{explicitInter:true,fonts:[{family:\"Geist Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/frJ5q4NHnnex5RR436powUFHE1I.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC6PpHdl17\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"CWjybAqsV\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"165.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vBf9ncrJ8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"37.5\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C6PpHdl17.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-igh06\";const variantClassNames={Wqu16KJuF:\"framer-v-1pkx21a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Wqu16KJuF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pkx21a\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Wqu16KJuF\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGU=\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134)))\"},children:\"IN L   VE\"})}),className:\"framer-15v20ue\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"LnV9Ij44w\",style:{\"--extracted-r6o4lv\":\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14q05ce\",layoutDependency:layoutDependency,layoutId:\"NGgs45QZv\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ir3wxm\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:50,layoutDependency:layoutDependency,layoutId:\"GuwOGwBLU\",svg:'<svg width=\"50\" height=\"45\" viewBox=\"0 0 50 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M48.6278 9.54141C47.8686 7.78349 46.7739 6.19049 45.405 4.85157C44.035 3.50865 42.4198 2.44145 40.6471 1.70801C38.809 0.944456 36.8375 0.553625 34.8471 0.558206C32.0548 0.558206 29.3303 1.32285 26.9628 2.76719C26.3964 3.1127 25.8583 3.49219 25.3485 3.90567C24.8387 3.49219 24.3007 3.1127 23.7343 2.76719C21.3667 1.32285 18.6423 0.558206 15.8499 0.558206C13.8391 0.558206 11.8907 0.943363 10.0499 1.70801C8.27136 2.44434 6.66843 3.50352 5.29207 4.85157C3.92134 6.18898 2.82637 7.78236 2.06921 9.54141C1.28191 11.3709 0.879761 13.3137 0.879761 15.3131C0.879761 17.1992 1.26492 19.1647 2.02957 21.1641C2.6696 22.835 3.58718 24.5682 4.75964 26.3184C6.61746 29.0881 9.17195 31.9768 12.3438 34.9051C17.6001 39.7592 22.8053 43.1123 23.0262 43.2482L24.3686 44.1092C24.9634 44.4887 25.728 44.4887 26.3227 44.1092L27.6651 43.2482C27.886 43.1066 33.0856 39.7592 38.3475 34.9051C41.5194 31.9768 44.0739 29.0881 45.9317 26.3184C47.1042 24.5682 48.0274 22.835 48.6618 21.1641C49.4264 19.1647 49.8116 17.1992 49.8116 15.3131C49.8173 13.3137 49.4151 11.3709 48.6278 9.54141V9.54141ZM25.3485 39.6289C25.3485 39.6289 5.18445 26.7092 5.18445 15.3131C5.18445 9.54141 9.95925 4.86289 15.8499 4.86289C19.9903 4.86289 23.5813 7.17383 25.3485 10.5496C27.1157 7.17383 30.7067 4.86289 34.8471 4.86289C40.7378 4.86289 45.5126 9.54141 45.5126 15.3131C45.5126 26.7092 25.3485 39.6289 25.3485 39.6289Z\" fill=\"#2AA786\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1x93jiy\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:41,layoutDependency:layoutDependency,layoutId:\"mKaZBRdr8\",svg:'<svg width=\"41\" height=\"36\" viewBox=\"0 0 41 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.1\" d=\"M29.8471 0.864563C25.7067 0.864563 22.1157 3.1755 20.3485 6.55128C18.5813 3.1755 14.9903 0.864563 10.8499 0.864563C4.95925 0.864563 0.184448 5.54308 0.184448 11.3148C0.184448 22.7109 20.3485 35.6306 20.3485 35.6306C20.3485 35.6306 40.5126 22.7109 40.5126 11.3148C40.5126 5.54308 35.7378 0.864563 29.8471 0.864563Z\" fill=\"#2AA786\"/>\\n</svg>\\n',withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-igh06.framer-1ftx4it, .framer-igh06 .framer-1ftx4it { display: block; }\",\".framer-igh06.framer-1pkx21a { height: 68px; overflow: hidden; position: relative; width: 156px; }\",\".framer-igh06 .framer-15v20ue { flex: none; height: auto; left: -3px; position: absolute; top: 6px; white-space: pre; width: auto; }\",\".framer-igh06 .framer-14q05ce { flex: none; height: 33px; overflow: visible; position: absolute; right: 44px; top: calc(45.588235294117666% - 33px / 2); width: 37px; }\",\".framer-igh06 .framer-1ir3wxm { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-igh06 .framer-1x93jiy { flex: none; height: 26px; left: calc(51.35135135135137% - 30px / 2); position: absolute; top: calc(48.484848484848506% - 26px / 2); width: 30px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 68\n * @framerIntrinsicWidth 156\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCYcJqTRPY=withCSS(Component,css,\"framer-igh06\");export default FramerCYcJqTRPY;FramerCYcJqTRPY.displayName=\"home/header icon/love\";FramerCYcJqTRPY.defaultProps={height:68,width:156};const variationAxes=[{defaultValue:400,maxValue:700,minValue:100,name:\"Weight\",tag:\"wght\"},{defaultValue:0,maxValue:10,minValue:0,name:\"Slant\",tag:\"slnt\"}];addFonts(FramerCYcJqTRPY,[{explicitInter:true,fonts:[{family:\"Hatch Mono 25 Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/2HhgBhdgVOpqJnJCxas7eCwb2e4.woff2\",variationAxes}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCYcJqTRPY\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"68\",\"framerIntrinsicWidth\":\"156\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CYcJqTRPY.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useRef,useEffect}from\"react\";export function InfiniteCarousel({items=[],arrowColor,leftIcon,rightIcon}){const[position,setPosition]=useState(0);const[isAtStart,setIsAtStart]=useState(true);const[isAtEnd,setIsAtEnd]=useState(false);const carouselRef=useRef(null);const[itemWidth,setItemWidth]=useState(100);const[carouselWidth,setCarouselWidth]=useState(0);const[containerWidth,setContainerWidth]=useState(600);useEffect(()=>{if(carouselRef.current?.children.length){const firstItemWidth=carouselRef.current.children[0].offsetWidth;setItemWidth(firstItemWidth);// Get total width of all items dynamically\nconst totalWidth=[...carouselRef.current.children].reduce((acc,child)=>acc+child.offsetWidth,0);setCarouselWidth(totalWidth);setIsAtStart(true);setIsAtEnd(false);}},[items]);const handleNext=()=>{setPosition(prev=>{const newPos=prev-itemWidth;const lastItemRightEdge=newPos+carouselWidth;// Right arrow should disable only when the last item's right edge is fully inside the container\nif(lastItemRightEdge<=containerWidth){setIsAtEnd(true);return prev;}setIsAtStart(false);return newPos;});};const handlePrev=()=>{setPosition(prev=>{const newPos=prev+itemWidth;if(newPos>=0){setIsAtStart(true);return 0;}setIsAtEnd(false);return newPos;});};return /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",position:\"relative\",display:\"flex\",alignItems:\"center\",justifyContent:\"flex-start\",overflow:\"visible\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",left:\"-50px\",top:\"50%\",transform:\"translateY(-50%)\",zIndex:1e3,opacity:isAtStart?.5:1,pointerEvents:isAtStart?\"none\":\"auto\"},children:/*#__PURE__*/_jsx(\"button\",{onClick:handlePrev,disabled:isAtStart,style:{background:arrowColor||\"rgba(0, 0, 0, 0.6)\",color:\"white\",border:\"none\",padding:\"10px 15px\",fontSize:\"18px\",cursor:isAtStart?\"default\":\"pointer\",borderRadius:\"50%\",boxShadow:\"0px 4px 10px rgba(0,0,0,0.2)\"},children:leftIcon||\"\u25C0\"})}),/*#__PURE__*/_jsx(motion.div,{ref:carouselRef,style:{display:\"flex\",whiteSpace:\"nowrap\",x:position,width:carouselWidth,overflow:\"visible\",position:\"relative\",justifyContent:\"flex-start\"},animate:{x:position},transition:{type:\"tween\",duration:.5},children:items.length>0?items.map((item,index)=>/*#__PURE__*/_jsx(\"div\",{style:{flexShrink:0,marginRight:\"10px\"},children:item},`carousel-item-${index}`)):[\"Item 1\",\"Item 2\",\"Item 3\"].map((text,index)=>/*#__PURE__*/_jsx(\"div\",{style:{padding:\"20px\",background:\"lightgray\",display:\"inline-block\",textAlign:\"center\"},children:text},`placeholder-${index}`))}),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",right:\"-50px\",top:\"50%\",transform:\"translateY(-50%)\",zIndex:1e3,opacity:isAtEnd?.5:1,pointerEvents:isAtEnd?\"none\":\"auto\"},children:/*#__PURE__*/_jsx(\"button\",{onClick:handleNext,disabled:isAtEnd,style:{background:arrowColor||\"rgba(0, 0, 0, 0.6)\",color:\"white\",border:\"none\",padding:\"10px 15px\",fontSize:\"18px\",cursor:isAtEnd?\"default\":\"pointer\",borderRadius:\"50%\",boxShadow:\"0px 4px 10px rgba(0,0,0,0.2)\"},children:rightIcon||\"\u25B6\"})})]});}// Framer Property Controls\naddPropertyControls(InfiniteCarousel,{items:{type:ControlType.Array,title:\"Items\",control:{type:ControlType.ComponentInstance}},arrowColor:{type:ControlType.Color,title:\"Arrow Color\",defaultValue:\"rgba(0, 0, 0, 0.6)\"},leftIcon:{type:ControlType.String,title:\"Left Arrow Icon\",defaultValue:\"\u25C0\"},rightIcon:{type:ControlType.String,title:\"Right Arrow Icon\",defaultValue:\"\u25B6\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"InfiniteCarousel\":{\"type\":\"reactComponent\",\"name\":\"InfiniteCarousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{DitheredZX}from\"https://framerusercontent.com/modules/tl9cy8m6Jm5K2Ubh5ppM/SJYB69cdSB0cg7C6cuAO/dither.js\";const DitheredZXFonts=getFonts(DitheredZX);const enabledGestures={x4xw9EyhJ:{hover:true}};const cycleOrder=[\"x4xw9EyhJ\",\"N5s79F94u\",\"ipJXsDmxW\"];const serializationHash=\"framer-dG9dM\";const variantClassNames={ipJXsDmxW:\"framer-v-1kiijpk\",N5s79F94u:\"framer-v-n823ys\",x4xw9EyhJ:\"framer-v-10aklmy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition2={duration:0,type:\"tween\"};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.96,skewX:0,skewY:0,transition:transition3};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Empty:\"ipJXsDmxW\",Mobile:\"N5s79F94u\",Regular:\"x4xw9EyhJ\"};const getProps=({company,height,id,image,link,logo,name1,position,width,...props})=>{return{...props,B5EUebd5g:company??props.B5EUebd5g,fhHCj0cD_:image??props.fhHCj0cD_??{src:\"https://framerusercontent.com/images/dLCEUk833T4BIxEV0VRYTJeJPc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dLCEUk833T4BIxEV0VRYTJeJPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/dLCEUk833T4BIxEV0VRYTJeJPc.png 880w\"},FSlkPxHFg:link??props.FSlkPxHFg,UPIa26gMY:logo??props.UPIa26gMY,variant:humanReadableVariantMap[props.variant]??props.variant??\"x4xw9EyhJ\",WL11LsHcD:name1??props.WL11LsHcD??\"Lorem   Ipsum\",Y02HNE7Sa:position??props.Y02HNE7Sa??\"Vp of Design\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,WL11LsHcD,Y02HNE7Sa,fhHCj0cD_,UPIa26gMY,FSlkPxHFg,B5EUebd5g,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"x4xw9EyhJ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1r02aus=activeVariantCallback(async(...args)=>{setVariant(\"x4xw9EyhJ\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"N5s79F94u\",\"ipJXsDmxW\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"ipJXsDmxW\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"ipJXsDmxW\")return true;return false;};const visible=isSet(UPIa26gMY);const visible1=negate(isSet(UPIa26gMY));const isDisplayed3=value=>{if(baseVariant===\"ipJXsDmxW\")return false;return value;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({ipJXsDmxW:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:FSlkPxHFg,motionChild:true,nodeId:\"x4xw9EyhJ\",openInNewTab:false,scopeId:\"xi7gNxZQc\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-10aklmy\",className,classNames)} framer-1e9xu4z`,\"data-framer-name\":\"Regular\",layoutDependency:layoutDependency,layoutId:\"x4xw9EyhJ\",ref:refBinding,style:{...style},...addPropertyOverrides({\"x4xw9EyhJ-hover\":{\"data-framer-name\":undefined},ipJXsDmxW:{\"data-framer-name\":\"Empty\"},N5s79F94u:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hbtyxj\",\"data-framer-name\":\"Image Container\",layoutDependency:layoutDependency,layoutId:\"GRNLicj0n\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\"},variants:{\"x4xw9EyhJ-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(160, 232, 213)\"},ipJXsDmxW:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0.41)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(135, 212, 191, 0.14)\"}},whileHover:animation,...addPropertyOverrides({ipJXsDmxW:{\"data-border\":true,whileHover:undefined},N5s79F94u:{whileHover:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5mknj0-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Igt59ayUH-container\",nodeId:\"Igt59ayUH\",rendersWithMotion:true,scopeId:\"xi7gNxZQc\",style:{opacity:0},variants:{\"x4xw9EyhJ-hover\":{opacity:.84}},children:/*#__PURE__*/_jsx(DitheredZX,{ditherStrength:1.5,globalBrightness:1.5,greenBrightness:1.1,greenSaturation:.8,gridScale:2.5,height:\"100%\",id:\"Igt59ayUH\",image:toImageSrc(fhHCj0cD_),layoutId:\"Igt59ayUH\",size:370,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||367)-0-529)/2+0+0)+7),sizes:\"249px\",...toResponsiveImage(fhHCj0cD_)},className:\"framer-7hmgdx\",layoutDependency:layoutDependency,layoutId:\"wOCBR37sj\",...addPropertyOverrides({N5s79F94u:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||227.5)-0-365)/2+0+0)+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(fhHCj0cD_),...{positionX:\"center\",positionY:\"top\"}}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"More announced each week\"})}),className:\"framer-h65ui4\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"uZ2PGetZM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-185ln88\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"V2HlJitn3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"38px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-2.3px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Lorem Ipsum\"})}),className:\"framer-1m2ftwn\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"pcYgtaoJN\",style:{\"--extracted-2gg91v\":'\"wght\" 600, \"slnt\" 0',\"--extracted-r6o4lv\":\"var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WL11LsHcD,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({N5s79F94u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"30px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-2.3px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Lorem Ipsum\"})})}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1io7w29\",layoutDependency:layoutDependency,layoutId:\"rby72maqF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\"},children:\"Vp of Design\"})}),className:\"framer-1h7ujbj\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"kcbfN5c4K\",style:{\"--extracted-r6o4lv\":\"var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:Y02HNE7Sa,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({N5s79F94u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\"},children:\"Vp of Design\"})})}},baseVariant,gestureVariant)}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||367)-0-529)/2+325+0)+12+73.5),sizes:\"175px\",...toResponsiveImage(UPIa26gMY),...{positionX:\"left\",positionY:\"center\"}},className:\"framer-ng2svq\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"e1ol081AQ\",onTap:onTap1r02aus,...addPropertyOverrides({N5s79F94u:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||227.5)-0-365)/2+188+0)+12+67.5),sizes:\"113px\",...toResponsiveImage(UPIa26gMY),...{positionX:\"left\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]}),isDisplayed3(visible1)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-dryd0y\",\"data-framer-name\":\"Company\",layoutDependency:layoutDependency,layoutId:\"kfQhU4CO0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\"},children:\"Vp of Design\"})}),className:\"framer-1es9uyq\",\"data-framer-name\":\"Company\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"G9znYhFhh\",style:{\"--extracted-r6o4lv\":\"var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:B5EUebd5g,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({N5s79F94u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\"},children:\"Vp of Design\"})})}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dG9dM.framer-1e9xu4z, .framer-dG9dM .framer-1e9xu4z { display: block; }\",\".framer-dG9dM.framer-10aklmy { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 240px; }\",\".framer-dG9dM .framer-hbtyxj { flex: none; height: 284px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-dG9dM .framer-5mknj0-container { flex: none; height: 312px; left: calc(29.16666666666669% - 278px / 2); position: absolute; top: 8px; width: 278px; z-index: 2; }\",\".framer-dG9dM .framer-7hmgdx { flex: none; height: 101%; left: -9px; overflow: visible; position: absolute; top: 7px; width: 249px; }\",\".framer-dG9dM .framer-h65ui4 { flex: none; height: auto; left: 110px; position: absolute; top: 101px; white-space: pre-wrap; width: 1fr; word-break: break-word; word-wrap: break-word; }\",\".framer-dG9dM .framer-185ln88 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 41px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dG9dM .framer-1m2ftwn { flex: 0.9 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-dG9dM .framer-1io7w29 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-dG9dM .framer-1h7ujbj, .framer-dG9dM .framer-1es9uyq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dG9dM .framer-ng2svq { cursor: pointer; flex: none; height: 41px; overflow: visible; position: relative; width: 175px; }\",\".framer-dG9dM .framer-dryd0y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dG9dM.framer-10aklmy, .framer-dG9dM .framer-185ln88, .framer-dG9dM .framer-1io7w29, .framer-dG9dM .framer-dryd0y { gap: 0px; } .framer-dG9dM.framer-10aklmy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-dG9dM.framer-10aklmy > :first-child, .framer-dG9dM .framer-1io7w29 > :first-child, .framer-dG9dM .framer-dryd0y > :first-child { margin-top: 0px; } .framer-dG9dM.framer-10aklmy > :last-child, .framer-dG9dM .framer-1io7w29 > :last-child, .framer-dG9dM .framer-dryd0y > :last-child { margin-bottom: 0px; } .framer-dG9dM .framer-185ln88 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dG9dM .framer-185ln88 > :first-child { margin-left: 0px; } .framer-dG9dM .framer-185ln88 > :last-child { margin-right: 0px; } .framer-dG9dM .framer-1io7w29 > *, .framer-dG9dM .framer-dryd0y > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-dG9dM.framer-v-n823ys.framer-10aklmy { cursor: default; width: 181px; }\",\".framer-dG9dM.framer-v-n823ys .framer-hbtyxj { height: 159px; will-change: unset; }\",\".framer-dG9dM.framer-v-n823ys .framer-7hmgdx { height: 100%; left: 0px; top: 0px; width: 100%; }\",\".framer-dG9dM.framer-v-n823ys .framer-185ln88 { height: 29px; }\",\".framer-dG9dM.framer-v-n823ys .framer-ng2svq { height: 26px; width: 113px; }\",\".framer-dG9dM.framer-v-1kiijpk .framer-hbtyxj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 20px; will-change: unset; }\",\".framer-dG9dM.framer-v-1kiijpk .framer-h65ui4 { flex: 1 0 0px; left: unset; position: relative; top: unset; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dG9dM.framer-v-1kiijpk .framer-hbtyxj { gap: 0px; } .framer-dG9dM.framer-v-1kiijpk .framer-hbtyxj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dG9dM.framer-v-1kiijpk .framer-hbtyxj > :first-child { margin-left: 0px; } .framer-dG9dM.framer-v-1kiijpk .framer-hbtyxj > :last-child { margin-right: 0px; } }\",'.framer-dG9dM[data-border=\"true\"]::after, .framer-dG9dM [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 367\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"N5s79F94u\":{\"layout\":[\"fixed\",\"auto\"]},\"ipJXsDmxW\":{\"layout\":[\"fixed\",\"auto\"]},\"TGIEKUSDH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"WL11LsHcD\":\"name1\",\"Y02HNE7Sa\":\"position\",\"fhHCj0cD_\":\"image\",\"UPIa26gMY\":\"logo\",\"FSlkPxHFg\":\"link\",\"B5EUebd5g\":\"company\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerxi7gNxZQc=withCSS(Component,css,\"framer-dG9dM\");export default Framerxi7gNxZQc;Framerxi7gNxZQc.displayName=\"Speaker Carousel/Item\";Framerxi7gNxZQc.defaultProps={height:367,width:240};addPropertyControls(Framerxi7gNxZQc,{variant:{options:[\"x4xw9EyhJ\",\"N5s79F94u\",\"ipJXsDmxW\"],optionTitles:[\"Regular\",\"Mobile\",\"Empty\"],title:\"Variant\",type:ControlType.Enum},WL11LsHcD:{defaultValue:\"Lorem   Ipsum\",displayTextArea:false,title:\"Name\",type:ControlType.String},Y02HNE7Sa:{defaultValue:\"Vp of Design\",displayTextArea:false,title:\"Position\",type:ControlType.String},fhHCj0cD_:{__defaultAssetReference:\"data:framer/asset-reference,dLCEUk833T4BIxEV0VRYTJeJPc.png?originalFilename=didier.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},UPIa26gMY:{title:\"Logo\",type:ControlType.ResponsiveImage},FSlkPxHFg:{title:\"Link\",type:ControlType.Link},B5EUebd5g:{defaultValue:\"\",displayTextArea:false,title:\"Company\",type:ControlType.String}});const variationAxes=[{defaultValue:400,maxValue:700,minValue:100,name:\"Weight\",tag:\"wght\"},{defaultValue:0,maxValue:10,minValue:0,name:\"Slant\",tag:\"slnt\"}];addFonts(Framerxi7gNxZQc,[{explicitInter:true,fonts:[{family:\"Geist Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/frJ5q4NHnnex5RR436powUFHE1I.woff2\"},{family:\"Hatch Mono 25 Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/2HhgBhdgVOpqJnJCxas7eCwb2e4.woff2\",variationAxes}]},...DitheredZXFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerxi7gNxZQc\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N5s79F94u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ipJXsDmxW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TGIEKUSDH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"WL11LsHcD\\\":\\\"name1\\\",\\\"Y02HNE7Sa\\\":\\\"position\\\",\\\"fhHCj0cD_\\\":\\\"image\\\",\\\"UPIa26gMY\\\":\\\"logo\\\",\\\"FSlkPxHFg\\\":\\\"link\\\",\\\"B5EUebd5g\\\":\\\"company\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"240\",\"framerIntrinsicHeight\":\"367\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xi7gNxZQc.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,Image,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{InfiniteCarousel}from\"https://framerusercontent.com/modules/tWfObq1BtR7eNhM1C07X/RtIIcdp9kVECDPW09wTu/Carousel.js\";import Workshops from\"https://framerusercontent.com/modules/1urkJSKt846SkwDwoYOd/3stbgT3KFyKC1RiL88Wi/j2XzBPy52.js\";import Facilitators from\"https://framerusercontent.com/modules/DkFA4QUx6bzapSamS0f3/TxAax6gqfUPyEEjGyZtU/KnvdyLCs9.js\";import SpeakerCarouselItem from\"https://framerusercontent.com/modules/IPHVDP8YWrhOVvBkyE0M/H0P4eD7XTcSA7hH1zkC1/xi7gNxZQc.js\";import TicketsTeaserSwitchButton from\"https://framerusercontent.com/modules/nnvHLApvyiYvY4CXJnQq/26o9QKqIQKjkz5Q1zWFi/zmDQ9Suvk.js\";const TicketsTeaserSwitchButtonFonts=getFonts(TicketsTeaserSwitchButton);const SpeakerCarouselItemFonts=getFonts(SpeakerCarouselItem);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const InfiniteCarouselFonts=getFonts(InfiniteCarousel);const cycleOrder=[\"XAnLTY2AC\",\"PQ4BeyjDq\",\"J63MLQgD4\",\"JuwqkeiuD\",\"XHqDGjgHd\",\"FNqk14sB4\"];const serializationHash=\"framer-cIBsN\";const variantClassNames={FNqk14sB4:\"framer-v-jhtf73\",J63MLQgD4:\"framer-v-1fa3wuq\",JuwqkeiuD:\"framer-v-1rgc0xa\",PQ4BeyjDq:\"framer-v-1bl4w67\",XAnLTY2AC:\"framer-v-l3v5s0\",XHqDGjgHd:\"framer-v-sgem9k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.2,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition3={delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const transition4={delay:.1,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const transition5={delay:.2,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const transition6={delay:.3,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const transition7={delay:0,duration:.35,ease:[.44,0,.56,1],type:\"tween\"};const animation1={backgroundColor:'var(--token-f9f54fe1-c154-4e26-b4f6-3a87d2f2ec3c, rgb(10, 10, 10)) /* {\"name\":\"Ultra Black\"} */',opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const query=prequery=>prequery({from:{constraint:{left:{collection:\"v4o5W5_Nx\",name:\"XEhR3OmJp\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XEhR3OmJp\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"v4o5W5_Nx\",data:Workshops,type:\"Collection\"},right:{alias:\"XEhR3OmJp\",data:Facilitators,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"v4o5W5_Nx\",name:\"U8wWyZCvo\",type:\"Identifier\"},{alias:\"XEhR3OmJp.COXwqHgm1\",collection:\"XEhR3OmJp\",name:\"COXwqHgm1\",type:\"Identifier\"},{alias:\"XEhR3OmJp.ysYPmRd4B\",collection:\"XEhR3OmJp\",name:\"ysYPmRd4B\",type:\"Identifier\"},{alias:\"XEhR3OmJp.vC4XXtDTP\",collection:\"XEhR3OmJp\",name:\"vC4XXtDTP\",type:\"Identifier\"},{alias:\"XEhR3OmJp.VrP5KQF0o\",collection:\"XEhR3OmJp\",name:\"VrP5KQF0o\",type:\"Identifier\"},{collection:\"v4o5W5_Nx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"v4o5W5_Nx\",name:\"TWbCuCkr6\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"zSXOgvTxB\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Facilitators\":\"JuwqkeiuD\",\"Desktop - Speakers\":\"XAnLTY2AC\",\"Phone - Facilitators\":\"FNqk14sB4\",\"Phone - Speakers\":\"J63MLQgD4\",\"Tablet - Facilitators\":\"XHqDGjgHd\",\"Tablet - Speakers\":\"PQ4BeyjDq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XAnLTY2AC\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,U8wWyZCvov4o5W5_Nx,XEhR3OmJp_COXwqHgm1v4o5W5_Nx,XEhR3OmJp_ysYPmRd4Bv4o5W5_Nx,XEhR3OmJp_vC4XXtDTPv4o5W5_Nx,XEhR3OmJp_VrP5KQF0ov4o5W5_Nx,idv4o5W5_Nx,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XAnLTY2AC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const xsKLZZ0cFcw1pni=activeVariantCallback(async(...args)=>{setVariant(\"XAnLTY2AC\");});const xsKLZZ0cF13kh3n=activeVariantCallback(async(...args)=>{setVariant(\"PQ4BeyjDq\");});const xsKLZZ0cF1yoqxri=activeVariantCallback(async(...args)=>{setVariant(\"J63MLQgD4\");});const xsKLZZ0cF3cxlma=activeVariantCallback(async(...args)=>{setVariant(\"JuwqkeiuD\");});const xsKLZZ0cF1u2c6wy=activeVariantCallback(async(...args)=>{setVariant(\"XHqDGjgHd\");});const xsKLZZ0cFi9d8sw=activeVariantCallback(async(...args)=>{setVariant(\"FNqk14sB4\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"JuwqkeiuD\",\"XHqDGjgHd\",\"FNqk14sB4\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"J63MLQgD4\")return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"J63MLQgD4\")return false;return true;};const isDisplayed3=()=>{if([\"JuwqkeiuD\",\"XHqDGjgHd\",\"FNqk14sB4\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"FNqk14sB4\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"FNqk14sB4\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-l3v5s0\",className,classNames),\"data-framer-name\":\"Desktop - Speakers\",layoutDependency:layoutDependency,layoutId:\"XAnLTY2AC\",ref:refBinding,style:{backgroundColor:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\",...style},...addPropertyOverrides({FNqk14sB4:{\"data-framer-name\":\"Phone - Facilitators\"},J63MLQgD4:{\"data-framer-name\":\"Phone - Speakers\"},JuwqkeiuD:{\"data-framer-name\":\"Desktop - Facilitators\"},PQ4BeyjDq:{\"data-framer-name\":\"Tablet - Speakers\"},XHqDGjgHd:{\"data-framer-name\":\"Tablet - Facilitators\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k74xf9\",layoutDependency:layoutDependency,layoutId:\"dL7aSsHyd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+120+(((componentViewport?.height||910)-240-454)/2+0+0)+15,...addPropertyOverrides({FNqk14sB4:{y:undefined},J63MLQgD4:{y:(componentViewport?.y||0)+6+0+15},JuwqkeiuD:{y:(componentViewport?.y||0)+120+(((componentViewport?.height||800)-240-454)/2+0+0)+15},PQ4BeyjDq:{y:(componentViewport?.y||0)+80+(((componentViewport?.height||800)-80-454)/2+0+0)+15},XHqDGjgHd:{y:(componentViewport?.y||0)+80+(((componentViewport?.height||800)-80-454)/2+0+0)+15}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-126f6in-container\",layoutDependency:layoutDependency,layoutId:\"EuW3K8h9M-container\",nodeId:\"EuW3K8h9M\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(TicketsTeaserSwitchButton,{bPOrpvfmA:\"Speakers\",cK6xtnMu4:\"8px 24px 8px 24px\",height:\"100%\",id:\"EuW3K8h9M\",layoutId:\"EuW3K8h9M\",variant:\"HU5d0YvkZ\",width:\"100%\",...addPropertyOverrides({FNqk14sB4:{variant:\"zf5AFeiCv\",xsKLZZ0cF:xsKLZZ0cF1yoqxri},JuwqkeiuD:{variant:\"zf5AFeiCv\",xsKLZZ0cF:xsKLZZ0cFcw1pni},XHqDGjgHd:{variant:\"zf5AFeiCv\",xsKLZZ0cF:xsKLZZ0cF13kh3n}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+120+(((componentViewport?.height||910)-240-454)/2+0+0)+15,...addPropertyOverrides({FNqk14sB4:{y:undefined},J63MLQgD4:{y:(componentViewport?.y||0)+6+0+15},JuwqkeiuD:{y:(componentViewport?.y||0)+120+(((componentViewport?.height||800)-240-454)/2+0+0)+15},PQ4BeyjDq:{y:(componentViewport?.y||0)+80+(((componentViewport?.height||800)-80-454)/2+0+0)+15},XHqDGjgHd:{y:(componentViewport?.y||0)+80+(((componentViewport?.height||800)-80-454)/2+0+0)+15}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w3diap-container\",layoutDependency:layoutDependency,layoutId:\"bN0tCMmSs-container\",nodeId:\"bN0tCMmSs\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(TicketsTeaserSwitchButton,{bPOrpvfmA:\"Facilitators\",cK6xtnMu4:\"8px 24px 8px 24px\",height:\"100%\",id:\"bN0tCMmSs\",layoutId:\"bN0tCMmSs\",variant:\"zf5AFeiCv\",width:\"100%\",xsKLZZ0cF:xsKLZZ0cF3cxlma,...addPropertyOverrides({FNqk14sB4:{variant:\"HU5d0YvkZ\",xsKLZZ0cF:undefined},J63MLQgD4:{xsKLZZ0cF:xsKLZZ0cFi9d8sw},JuwqkeiuD:{variant:\"HU5d0YvkZ\",xsKLZZ0cF:undefined},PQ4BeyjDq:{xsKLZZ0cF:xsKLZZ0cF1u2c6wy},XHqDGjgHd:{variant:\"HU5d0YvkZ\",xsKLZZ0cF:undefined}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16dd0rc\",\"data-framer-name\":\"Keynotes\",layoutDependency:layoutDependency,layoutId:\"utYbuxna8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nfiooz\",layoutDependency:layoutDependency,layoutId:\"xNHyfncDF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o6iwxr\",layoutDependency:layoutDependency,layoutId:\"GRhWwU74P\",style:{backgroundColor:\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"50px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)))\",\"--framer-text-transform\":\"uppercase\"},children:\"FEATURING KEYNOTES FROM \"})}),className:\"framer-6ljoy8\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"gxuwohRHr\",style:{\"--extracted-2gg91v\":'\"wght\" 600, \"slnt\" 0',\"--extracted-r6o4lv\":\"var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({J63MLQgD4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"39px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)))\",\"--framer-text-transform\":\"uppercase\"},children:\"1ST KEYNOTE\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18xzw5p\",layoutDependency:layoutDependency,layoutId:\"C4b871LUA\",style:{backgroundColor:\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"50px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)))\"},children:\"TOP \"}),\"DESIGN LEADERS & MAKERS\"]})}),className:\"framer-1omwhpq\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"qHYq9fHLe\",style:{\"--extracted-1w3ko1f\":\"var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28))\",\"--extracted-2gg91v\":'\"wght\" 600, \"slnt\" 0',\"--extracted-r6o4lv\":\"var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{J63MLQgD4:{\"--extracted-r6o4lv\":\"var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({J63MLQgD4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"39px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)))\",\"--framer-text-transform\":\"uppercase\"},children:\"SPEAKERS\"})})}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-kk8cvf\",layoutDependency:layoutDependency,layoutId:\"TRZbOhn0k\",children:isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lbkbwh\",layoutDependency:layoutDependency,layoutId:\"MhV18efor\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{GjULVWEMd:\"didier-hilhorst\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"dUaLYY5Bu\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined},{href:{pathVariables:{GjULVWEMd:\"didier-hilhorst\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"dUaLYY5Bu\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({J63MLQgD4:{height:367,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1024px) - 30px) / 2, 50px), 178px)`,y:(componentViewport?.y||0)+6+84+0+0+66+78+0+0+10+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-30l8x9-container\",layoutDependency:layoutDependency,layoutId:\"aZRScjgYC-container\",nodeId:\"aZRScjgYC\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"\",FSlkPxHFg:resolvedLinks[0],height:\"100%\",id:\"aZRScjgYC\",layoutId:\"aZRScjgYC\",style:{maxWidth:\"100%\",width:\"100%\"},UPIa26gMY:addImageAlt({src:\"https://framerusercontent.com/images/P3QzBQVvriX5GEFZgRj7AT9S0.svg\"},\"\"),variant:\"N5s79F94u\",width:\"100%\",WL11LsHcD:\"Didier Hilhorst\",Y02HNE7Sa:\"Vp of Design\",...addPropertyOverrides({J63MLQgD4:{FSlkPxHFg:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{GjULVWEMd:\"christina-white\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"Ev9dLukdP\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined},{href:{pathVariables:{GjULVWEMd:\"christina-white\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"Ev9dLukdP\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({J63MLQgD4:{height:367,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1024px) - 30px) / 2, 50px), 178px)`,y:(componentViewport?.y||0)+6+84+0+0+66+78+0+0+10+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-c4bpe6-container\",layoutDependency:layoutDependency,layoutId:\"RyNaXTF0g-container\",nodeId:\"RyNaXTF0g\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/aKoiU1Cit87jd8z23r3zjcqKVro.png\",srcSet:\"https://framerusercontent.com/images/aKoiU1Cit87jd8z23r3zjcqKVro.png?scale-down-to=512 512w,https://framerusercontent.com/images/aKoiU1Cit87jd8z23r3zjcqKVro.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks1[0],height:\"100%\",id:\"RyNaXTF0g\",layoutId:\"RyNaXTF0g\",style:{maxWidth:\"100%\",width:\"100%\"},UPIa26gMY:addImageAlt({src:\"https://framerusercontent.com/images/S4JVORpSR0bbLTauQJMuu3AlxIY.svg\"},\"\"),variant:\"N5s79F94u\",width:\"100%\",WL11LsHcD:\"Christina White\",Y02HNE7Sa:\"Vp of Design\",...addPropertyOverrides({J63MLQgD4:{FSlkPxHFg:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{GjULVWEMd:\"david-carson\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"I4i0ICe9O\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined},{href:{pathVariables:{GjULVWEMd:\"david-carson\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"I4i0ICe9O\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,...addPropertyOverrides({J63MLQgD4:{width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1024px) - 30px) / 2, 50px), 178px)`,y:(componentViewport?.y||0)+6+84+0+0+66+78+0+0+10+377}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-gm8rc-container\",layoutDependency:layoutDependency,layoutId:\"TB4SW0m45-container\",nodeId:\"TB4SW0m45\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/jRH3S8AiB3dELIsACs5OwbrVBU.png\",srcSet:\"https://framerusercontent.com/images/jRH3S8AiB3dELIsACs5OwbrVBU.png?scale-down-to=512 512w,https://framerusercontent.com/images/jRH3S8AiB3dELIsACs5OwbrVBU.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks2[0],height:\"100%\",id:\"TB4SW0m45\",layoutId:\"TB4SW0m45\",style:{maxWidth:\"100%\",width:\"100%\"},UPIa26gMY:addImageAlt({src:\"https://framerusercontent.com/images/vE62GnqkyzH7dUiEPNOx74cCVTY.svg\"},\"\"),variant:\"N5s79F94u\",width:\"100%\",WL11LsHcD:\"David Carson\",Y02HNE7Sa:\"Artist &  Designer\",...addPropertyOverrides({J63MLQgD4:{FSlkPxHFg:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{GjULVWEMd:\"jenny-wen\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"IZKfAl_ZB\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined},{href:{pathVariables:{GjULVWEMd:\"jenny-wen\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"IZKfAl_ZB\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,...addPropertyOverrides({J63MLQgD4:{width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1024px) - 30px) / 2, 50px), 178px)`,y:(componentViewport?.y||0)+6+84+0+0+66+78+0+0+10+377}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-cdcvhg-container\",layoutDependency:layoutDependency,layoutId:\"tAdDu9_fP-container\",nodeId:\"tAdDu9_fP\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/CHJsZkPJiZJfHmA7pSiL6Y4IJZk.png\",srcSet:\"https://framerusercontent.com/images/CHJsZkPJiZJfHmA7pSiL6Y4IJZk.png?scale-down-to=512 512w,https://framerusercontent.com/images/CHJsZkPJiZJfHmA7pSiL6Y4IJZk.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks3[0],height:\"100%\",id:\"tAdDu9_fP\",layoutId:\"tAdDu9_fP\",style:{maxWidth:\"100%\",width:\"100%\"},UPIa26gMY:addImageAlt({src:\"https://framerusercontent.com/images/B79Oj6oZJQn73SrAY1fVC81QxY.svg\"},\"\"),variant:\"N5s79F94u\",width:\"100%\",WL11LsHcD:\"Jenny    Wen\",Y02HNE7Sa:\"Lead Designer\",...addPropertyOverrides({J63MLQgD4:{FSlkPxHFg:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-68lkav\",layoutDependency:layoutDependency,layoutId:\"eAJpXzZYq\",children:isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGU=\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\"},children:\"more announced every week!\"})}),className:\"framer-1qny4ez\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"pFxbIvf6C\",style:{\"--extracted-r6o4lv\":\"var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ghkvxm\",layoutDependency:layoutDependency,layoutId:\"W8Uhc9SAa\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bjtdvy-container\",\"data-framer-name\":\"Speakers\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"zdHIt_KKF-container\",name:\"Speakers\",nodeId:\"zdHIt_KKF\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(InfiniteCarousel,{arrowColor:\"rgba(0, 0, 0, 0.6)\",height:\"100%\",id:\"zdHIt_KKF\",items:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{GjULVWEMd:\"didier-hilhorst\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"dUaLYY5Bu\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-10jws3x-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KFkPUZhWE-container\",nodeId:\"KFkPUZhWE\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"\",FSlkPxHFg:resolvedLinks4[0],height:\"100%\",id:\"KFkPUZhWE\",layoutId:\"KFkPUZhWE\",style:{width:\"100%\"},UPIa26gMY:addImageAlt({src:\"https://framerusercontent.com/images/P3QzBQVvriX5GEFZgRj7AT9S0.svg\"},\"\"),variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Didier Hilhorst\",Y02HNE7Sa:\"Vp of Design\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{GjULVWEMd:\"christina-white\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"Ev9dLukdP\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qyk38o-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"fpMHGioOZ-container\",nodeId:\"fpMHGioOZ\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/aKoiU1Cit87jd8z23r3zjcqKVro.png\",srcSet:\"https://framerusercontent.com/images/aKoiU1Cit87jd8z23r3zjcqKVro.png?scale-down-to=512 512w,https://framerusercontent.com/images/aKoiU1Cit87jd8z23r3zjcqKVro.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks5[0],height:\"100%\",id:\"fpMHGioOZ\",layoutId:\"fpMHGioOZ\",style:{width:\"100%\"},UPIa26gMY:addImageAlt({src:\"https://framerusercontent.com/images/BbaooDA389FVl9OaI2Uk5zE8UI.svg\"},\"\"),variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Christina White\",Y02HNE7Sa:\"Vp of Design\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{GjULVWEMd:\"david-carson\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"I4i0ICe9O\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1f13qio-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"NjI_3VtF9-container\",nodeId:\"NjI_3VtF9\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/jRH3S8AiB3dELIsACs5OwbrVBU.png\",srcSet:\"https://framerusercontent.com/images/jRH3S8AiB3dELIsACs5OwbrVBU.png?scale-down-to=512 512w,https://framerusercontent.com/images/jRH3S8AiB3dELIsACs5OwbrVBU.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks6[0],height:\"100%\",id:\"NjI_3VtF9\",layoutId:\"NjI_3VtF9\",style:{width:\"100%\"},UPIa26gMY:addImageAlt({src:\"https://framerusercontent.com/images/vE62GnqkyzH7dUiEPNOx74cCVTY.svg\"},\"\"),variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"David Carson\",Y02HNE7Sa:\"Artist & Designer\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{GjULVWEMd:\"jenny-wen\"},unresolvedPathSlugs:{GjULVWEMd:{collectionId:\"ulGD93LRg\",collectionItemId:\"IZKfAl_ZB\"}},webPageId:\"WKrq4onPa\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-117sebv-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"j9LVxXTgw-container\",nodeId:\"j9LVxXTgw\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/CHJsZkPJiZJfHmA7pSiL6Y4IJZk.png\",srcSet:\"https://framerusercontent.com/images/CHJsZkPJiZJfHmA7pSiL6Y4IJZk.png?scale-down-to=512 512w,https://framerusercontent.com/images/CHJsZkPJiZJfHmA7pSiL6Y4IJZk.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks7[0],height:\"100%\",id:\"j9LVxXTgw\",layoutId:\"j9LVxXTgw\",style:{width:\"100%\"},UPIa26gMY:addImageAlt({src:\"https://framerusercontent.com/images/B79Oj6oZJQn73SrAY1fVC81QxY.svg\"},\"\"),variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Jenny         Wen\",Y02HNE7Sa:\"Design Lead\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14dr02t-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"P21quiouU-container\",nodeId:\"P21quiouU\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"\",height:\"100%\",id:\"P21quiouU\",layoutId:\"P21quiouU\",style:{width:\"100%\"},variant:\"ipJXsDmxW\",width:\"100%\",WL11LsHcD:\"\",Y02HNE7Sa:\"\"})})})],layoutId:\"zdHIt_KKF\",leftIcon:\"\u25C0\",name:\"Speakers\",rightIcon:\"\u25B6\",style:{width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10v483l\",\"data-framer-name\":\"Strategy\",layoutDependency:layoutDependency,layoutId:\"SltkCVZua\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4jtm24\",layoutDependency:layoutDependency,layoutId:\"EAkLQBQaM\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14gir8r\",layoutDependency:layoutDependency,layoutId:\"eHB9njkoa\",style:{backgroundColor:\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"50px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Hands-On orkshops with\"})}),className:\"framer-10p0srs\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"n44YvP6jT\",style:{\"--extracted-2gg91v\":'\"wght\" 600, \"slnt\" 0',\"--extracted-r6o4lv\":\"var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FNqk14sB4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"31px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)))\",\"--framer-text-transform\":\"uppercase\"},children:\"hands-on workshops\"})})},JuwqkeiuD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"50px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Hands-On workshops with\"})})},XHqDGjgHd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"50px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Hands-On workshops with\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5mgtlx\",layoutDependency:layoutDependency,layoutId:\"GJXkYk0B1\",style:{backgroundColor:\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"50px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)))\"},children:\"EXPERT \"}),\"Leaders and Trainers\"]})}),className:\"framer-1uwpjf1\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"TqeIXJM33\",style:{\"--extracted-1w3ko1f\":\"var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28))\",\"--extracted-2gg91v\":'\"wght\" 600, \"slnt\" 0',\"--extracted-r6o4lv\":\"var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{FNqk14sB4:{\"--extracted-r6o4lv\":\"var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FNqk14sB4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"31px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)))\",\"--framer-text-transform\":\"uppercase\"},children:\"with top facilitators\"})})}},baseVariant,gestureVariant)})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-2dp8n4\",layoutDependency:layoutDependency,layoutId:\"ikBfZN8Mc\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-j8brb2\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"swgqTDp6l\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rsq6vq\",layoutDependency:layoutDependency,layoutId:\"KDy8QWM2Y\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10iqbto\",layoutDependency:layoutDependency,layoutId:\"v4o5W5_Nx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{constraint:{left:{collection:\"v4o5W5_Nx\",name:\"XEhR3OmJp\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XEhR3OmJp\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"v4o5W5_Nx\",data:Workshops,type:\"Collection\"},right:{alias:\"XEhR3OmJp\",data:Facilitators,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"v4o5W5_Nx\",name:\"U8wWyZCvo\",type:\"Identifier\"},{alias:\"XEhR3OmJp.COXwqHgm1\",collection:\"XEhR3OmJp\",name:\"COXwqHgm1\",type:\"Identifier\"},{alias:\"XEhR3OmJp.ysYPmRd4B\",collection:\"XEhR3OmJp\",name:\"ysYPmRd4B\",type:\"Identifier\"},{alias:\"XEhR3OmJp.vC4XXtDTP\",collection:\"XEhR3OmJp\",name:\"vC4XXtDTP\",type:\"Identifier\"},{alias:\"XEhR3OmJp.VrP5KQF0o\",collection:\"XEhR3OmJp\",name:\"VrP5KQF0o\",type:\"Identifier\"},{collection:\"v4o5W5_Nx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"v4o5W5_Nx\",name:\"TWbCuCkr6\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"zSXOgvTxB\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({\"XEhR3OmJp.COXwqHgm1\":XEhR3OmJp_COXwqHgm1v4o5W5_Nx,\"XEhR3OmJp.vC4XXtDTP\":XEhR3OmJp_vC4XXtDTPv4o5W5_Nx,\"XEhR3OmJp.VrP5KQF0o\":XEhR3OmJp_VrP5KQF0ov4o5W5_Nx,\"XEhR3OmJp.ysYPmRd4B\":XEhR3OmJp_ysYPmRd4Bv4o5W5_Nx,id:idv4o5W5_Nx,U8wWyZCvo:U8wWyZCvov4o5W5_Nx},index)=>{U8wWyZCvov4o5W5_Nx??=\"\";XEhR3OmJp_ysYPmRd4Bv4o5W5_Nx??=\"\";XEhR3OmJp_vC4XXtDTPv4o5W5_Nx??=\"\";XEhR3OmJp_VrP5KQF0ov4o5W5_Nx??=\"\";const visible=isSet(XEhR3OmJp_VrP5KQF0ov4o5W5_Nx);return /*#__PURE__*/_jsx(LayoutGroup,{id:`v4o5W5_Nx-${idv4o5W5_Nx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{U8wWyZCvo:U8wWyZCvov4o5W5_Nx},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{U8wWyZCvo:U8wWyZCvov4o5W5_Nx},webPageId:\"gn9oASFYU\"},motionChild:true,nodeId:\"y1IzZbLt5\",scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-o1vdvg framer-1s65dly\",layoutDependency:layoutDependency,layoutId:\"y1IzZbLt5\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},whileHover:animation1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ij2nw\",layoutDependency:layoutDependency,layoutId:\"ZZiR_OLNz\",style:{backgroundColor:\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"80px\",...toResponsiveImage(XEhR3OmJp_COXwqHgm1v4o5W5_Nx)},className:\"framer-efju1l\",layoutDependency:layoutDependency,layoutId:\"eDylf5WT1\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10glvi7\",layoutDependency:layoutDependency,layoutId:\"FbyaBqWaD\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9zm3wc\",layoutDependency:layoutDependency,layoutId:\"STJGDnOzS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qhs1rz\",layoutDependency:layoutDependency,layoutId:\"GiR4sd0ZR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"20px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 600, \"slnt\" 0)',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Zalihata Ahamada\"})}),className:\"framer-1qwlz1h\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"onXN6XFEB\",style:{\"--extracted-2gg91v\":'\"wght\" 600, \"slnt\" 0',\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.79},text:XEhR3OmJp_ysYPmRd4Bv4o5W5_Nx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i3sor5\",layoutDependency:layoutDependency,layoutId:\"Nmie_3dpf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\"},children:\"Design Ops Manager & Strategist\"})}),className:\"framer-1qnnrp2\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"bwI_Zs1aI\",style:{\"--extracted-r6o4lv\":\"var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255))\",opacity:.79},text:XEhR3OmJp_vC4XXtDTPv4o5W5_Nx,verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191)))\"},children:\",\"})}),className:\"framer-43vlfn\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"XROd8rqsQ\",style:{\"--extracted-r6o4lv\":\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\",opacity:.79},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\"},children:\"Life and Learning\"})}),className:\"framer-1ajjnbk\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"kzY1_D8SS\",style:{\"--extracted-r6o4lv\":\"var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255))\",opacity:.79},text:XEhR3OmJp_VrP5KQF0ov4o5W5_Nx,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]})})})},idv4o5W5_Nx);})})})})})})})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vj529l\",layoutDependency:layoutDependency,layoutId:\"ChogjQOiT\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16f746-container\",\"data-framer-name\":\"Speakers\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"I55k9HxKo-container\",name:\"Speakers\",nodeId:\"I55k9HxKo\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(InfiniteCarousel,{arrowColor:\"rgba(0, 0, 0, 0.6)\",height:\"100%\",id:\"I55k9HxKo\",items:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"presenting-design-work\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"HROHr4SlP\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1sklcf9-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FJsBYksns-container\",name:\"Facilitator/Item\",nodeId:\"FJsBYksns\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/Qc0c8Nwo0OZnP56hc16cyS7sxw.png\",srcSet:\"https://framerusercontent.com/images/Qc0c8Nwo0OZnP56hc16cyS7sxw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Qc0c8Nwo0OZnP56hc16cyS7sxw.png 881w\"},\"\"),FSlkPxHFg:resolvedLinks8[0],height:\"100%\",id:\"FJsBYksns\",layoutId:\"FJsBYksns\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Ben         Sauer\",Y02HNE7Sa:\"Author & Product Design Leader\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"from-defending-design-to-proving-its-value\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"BZIVlcs8p\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-6i1kpz-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cKpGPnYXg-container\",name:\"Facilitator/Item\",nodeId:\"cKpGPnYXg\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"HelloFresh\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/xL6pJk2kk2xQgs7XOJWLrjtG9s0.png\",srcSet:\"https://framerusercontent.com/images/xL6pJk2kk2xQgs7XOJWLrjtG9s0.png?scale-down-to=512 512w,https://framerusercontent.com/images/xL6pJk2kk2xQgs7XOJWLrjtG9s0.png 881w\"},\"\"),FSlkPxHFg:resolvedLinks9[0],height:\"100%\",id:\"cKpGPnYXg\",layoutId:\"cKpGPnYXg\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Dan O'Connell\",Y02HNE7Sa:\"Director of Product design\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"design-experiments-that-increase-revenue\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"mBixbPBD7\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1oo1ofa-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"j5tPUchah-container\",name:\"Facilitator/Item\",nodeId:\"j5tPUchah\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"Sumup\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/STUM6kGRUDUDOPTTt7hTrGhKnGE.png\",srcSet:\"https://framerusercontent.com/images/STUM6kGRUDUDOPTTt7hTrGhKnGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/STUM6kGRUDUDOPTTt7hTrGhKnGE.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks10[0],height:\"100%\",id:\"j5tPUchah\",layoutId:\"j5tPUchah\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"David Muehlfeld\",Y02HNE7Sa:\"Lead Designer\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"aligning-teams-goals-and-metrics-for-product-success\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"L_Fb64R2q\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qihsbv-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"IONnUOiVK-container\",name:\"Facilitator/Item\",nodeId:\"IONnUOiVK\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"Life and Learning\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/oxVwTFYBe1XCNjUCqoagQ8q2Qco.png\",srcSet:\"https://framerusercontent.com/images/oxVwTFYBe1XCNjUCqoagQ8q2Qco.png?scale-down-to=512 512w,https://framerusercontent.com/images/oxVwTFYBe1XCNjUCqoagQ8q2Qco.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks11[0],height:\"100%\",id:\"IONnUOiVK\",layoutId:\"IONnUOiVK\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Zalihata Ahamada\",Y02HNE7Sa:\"Trainer & Consultant\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"data-for-designers\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"w5i0kCKo4\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1lsvu62-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"EOYDGEWXz-container\",name:\"Facilitator/Item\",nodeId:\"EOYDGEWXz\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"Accelerate Design\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/NtBXHRM6wIQ3jTjnCeBHKTCkzE.png\",srcSet:\"https://framerusercontent.com/images/NtBXHRM6wIQ3jTjnCeBHKTCkzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/NtBXHRM6wIQ3jTjnCeBHKTCkzE.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks12[0],height:\"100%\",id:\"EOYDGEWXz\",layoutId:\"EOYDGEWXz\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Ryan       Scott\",Y02HNE7Sa:\"Founder\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"applying-strategic-inquiry-for-impact\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"Ir6sEaBOA\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qn3h8p-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"fzrgaN5oV-container\",name:\"Facilitator/Item\",nodeId:\"fzrgaN5oV\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"Owtcome\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/8MdpxQOZKNJL8HSX7Zr7gcC1Y.png\",srcSet:\"https://framerusercontent.com/images/8MdpxQOZKNJL8HSX7Zr7gcC1Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/8MdpxQOZKNJL8HSX7Zr7gcC1Y.png 881w\"},\"\"),FSlkPxHFg:resolvedLinks13[0],height:\"100%\",id:\"fzrgaN5oV\",layoutId:\"fzrgaN5oV\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Krasi Bozhinkova\",Y02HNE7Sa:\"Strategy Director\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"designing-value-creation-not-products\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"zcF0I8acM\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1vej414-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q12aRRwpy-container\",name:\"Facilitator/Item\",nodeId:\"Q12aRRwpy\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"For Planet Strategy Lab\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/n5rmQS8tAybTTsw2Yox6IGv6LN4.png\",srcSet:\"https://framerusercontent.com/images/n5rmQS8tAybTTsw2Yox6IGv6LN4.png?scale-down-to=512 512w,https://framerusercontent.com/images/n5rmQS8tAybTTsw2Yox6IGv6LN4.png 881w\"},\"\"),FSlkPxHFg:resolvedLinks14[0],height:\"100%\",id:\"Q12aRRwpy\",layoutId:\"Q12aRRwpy\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Samuel Huber\",Y02HNE7Sa:\"Founder\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"becoming-internal-change-agents\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"hhGomoddP\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1bolmw5-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"yM9KPAQrh-container\",name:\"Facilitator/Item\",nodeId:\"yM9KPAQrh\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"Plan\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/APQeenwdDIq8ejC8jdPY3zFYzo.png\",srcSet:\"https://framerusercontent.com/images/APQeenwdDIq8ejC8jdPY3zFYzo.png?scale-down-to=512 512w,https://framerusercontent.com/images/APQeenwdDIq8ejC8jdPY3zFYzo.png 881w\"},\"\"),FSlkPxHFg:resolvedLinks15[0],height:\"100%\",id:\"yM9KPAQrh\",layoutId:\"yM9KPAQrh\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Kevin McCullagh\",Y02HNE7Sa:\"Owner\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"using-jobs-to-be-done-design\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"TfGYnuGxh\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-slv69s-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jFT2fwUiR-container\",name:\"Facilitator/Item\",nodeId:\"jFT2fwUiR\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"SAP\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/EXjbDioB8IOh9HjhYtp4lwvLM.png\",srcSet:\"https://framerusercontent.com/images/EXjbDioB8IOh9HjhYtp4lwvLM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EXjbDioB8IOh9HjhYtp4lwvLM.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks16[0],height:\"100%\",id:\"jFT2fwUiR\",layoutId:\"jFT2fwUiR\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Itamar Medeiros\",Y02HNE7Sa:\"VP of Design Strategy\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"building-a-design-process-for-the-age-of-ai\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"M4WaQ_kaH\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-wee67a-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"CEjleiOgR-container\",name:\"Facilitator/Item\",nodeId:\"CEjleiOgR\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"PJ&Clo\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/ZzvipNGZhwuUHrDi8fdo3IUb960.png\",srcSet:\"https://framerusercontent.com/images/ZzvipNGZhwuUHrDi8fdo3IUb960.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZzvipNGZhwuUHrDi8fdo3IUb960.png 881w\"},\"\"),FSlkPxHFg:resolvedLinks17[0],height:\"100%\",id:\"CEjleiOgR\",layoutId:\"CEjleiOgR\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Paul Jervis Heath\",Y02HNE7Sa:\"Strategy & Innovation Consultant\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"let-accessibility-work-with-your-creativity\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"teAZcaa6d\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-6eq3ha-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"fw0Ca4bMD-container\",name:\"Facilitator/Item\",nodeId:\"fw0Ca4bMD\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/3bcTVH0PP9P0lFcXaGCn7Bw9smE.png\",srcSet:\"https://framerusercontent.com/images/3bcTVH0PP9P0lFcXaGCn7Bw9smE.png?scale-down-to=512 512w,https://framerusercontent.com/images/3bcTVH0PP9P0lFcXaGCn7Bw9smE.png 881w\"},\"\"),FSlkPxHFg:resolvedLinks18[0],height:\"100%\",id:\"fw0Ca4bMD\",layoutId:\"fw0Ca4bMD\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Piccia Neri\",Y02HNE7Sa:\"Accessible Design Consultant\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"microinteractions-animation-for-user-interfaces\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"zgRtnzNxI\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-eqdb4c-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rcxNaHi3W-container\",name:\"Facilitator/Item\",nodeId:\"rcxNaHi3W\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"Lottie Files\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/W9VGeX4iLdkSW076ecuuK6JVeo.png\",srcSet:\"https://framerusercontent.com/images/W9VGeX4iLdkSW076ecuuK6JVeo.png?scale-down-to=512 512w,https://framerusercontent.com/images/W9VGeX4iLdkSW076ecuuK6JVeo.png 881w\"},\"\"),FSlkPxHFg:resolvedLinks19[0],height:\"100%\",id:\"rcxNaHi3W\",layoutId:\"rcxNaHi3W\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Carmen Ansio\",Y02HNE7Sa:\"Design Engineer\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"ai-integration-automation-for-design-teams\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"d6lbhFudb\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"256px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qtx8cz-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"oMIgzlday-container\",name:\"Facilitator/Item\",nodeId:\"oMIgzlday\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"Delivery Hero\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/4Sz5lfPqA4OUxJz6yy2HJGlTPRw.png\",srcSet:\"https://framerusercontent.com/images/4Sz5lfPqA4OUxJz6yy2HJGlTPRw.png?scale-down-to=512 512w,https://framerusercontent.com/images/4Sz5lfPqA4OUxJz6yy2HJGlTPRw.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks20[0],height:\"100%\",id:\"oMIgzlday\",layoutId:\"oMIgzlday\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Aswin Ranganathan\",Y02HNE7Sa:\"Design Manager\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{U8wWyZCvo:\"creating-and-handing-off-high-quality-ds-components\"},unresolvedPathSlugs:{U8wWyZCvo:{collectionId:\"j2XzBPy52\",collectionItemId:\"P20ljbjxK\"}},webPageId:\"gn9oASFYU\"},implicitPathVariables:undefined}],children:resolvedLinks21=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:\"240px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-vgkk2h-container\",\"data-framer-name\":\"Facilitator/Item\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"lDNscE83Q-container\",name:\"Facilitator/Item\",nodeId:\"lDNscE83Q\",rendersWithMotion:true,scopeId:\"DrR4eLLVl\",children:/*#__PURE__*/_jsx(SpeakerCarouselItem,{B5EUebd5g:\"Wolt\",fhHCj0cD_:addImageAlt({src:\"https://framerusercontent.com/images/eh7WHhjkMN2u6MPQ8fwr88sMOkE.png\",srcSet:\"https://framerusercontent.com/images/eh7WHhjkMN2u6MPQ8fwr88sMOkE.png?scale-down-to=512 512w,https://framerusercontent.com/images/eh7WHhjkMN2u6MPQ8fwr88sMOkE.png 880w\"},\"\"),FSlkPxHFg:resolvedLinks21[0],height:\"100%\",id:\"lDNscE83Q\",layoutId:\"lDNscE83Q\",name:\"Facilitator/Item\",style:{width:\"100%\"},variant:\"x4xw9EyhJ\",width:\"100%\",WL11LsHcD:\"Francesco Cuolo\",Y02HNE7Sa:\"Lead Design Systems\"})})})})],layoutId:\"I55k9HxKo\",leftIcon:\"\u25C0\",name:\"Speakers\",rightIcon:\"\u25B6\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cIBsN.framer-1s65dly, .framer-cIBsN .framer-1s65dly { display: block; }\",\".framer-cIBsN.framer-l3v5s0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 1140px; }\",\".framer-cIBsN .framer-k74xf9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: flex-start; max-width: 1020px; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-126f6in-container, .framer-cIBsN .framer-1w3diap-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-cIBsN .framer-16dd0rc, .framer-cIBsN .framer-10v483l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-nfiooz, .framer-cIBsN .framer-4jtm24 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1024px; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-1o6iwxr, .framer-cIBsN .framer-18xzw5p, .framer-cIBsN .framer-14gir8r, .framer-cIBsN .framer-5mgtlx { 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 10px 0px 10px; position: relative; width: min-content; }\",\".framer-cIBsN .framer-6ljoy8, .framer-cIBsN .framer-1omwhpq, .framer-cIBsN .framer-10p0srs, .framer-cIBsN .framer-1uwpjf1, .framer-cIBsN .framer-1qwlz1h, .framer-cIBsN .framer-1qnnrp2, .framer-cIBsN .framer-43vlfn, .framer-cIBsN .framer-1ajjnbk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cIBsN .framer-kk8cvf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-lbkbwh { display: grid; flex: 1 0 0px; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-cIBsN .framer-30l8x9-container, .framer-cIBsN .framer-c4bpe6-container, .framer-cIBsN .framer-gm8rc-container, .framer-cIBsN .framer-cdcvhg-container { align-self: start; flex: none; height: auto; justify-self: start; max-width: 178px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-68lkav { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 200px; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-1qny4ez { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-cIBsN .framer-1ghkvxm, .framer-cIBsN .framer-vj529l { 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: 1140px; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-1bjtdvy-container, .framer-cIBsN .framer-16f746-container { flex: none; height: auto; position: relative; width: 90%; }\",\".framer-cIBsN .framer-10jws3x-container, .framer-cIBsN .framer-qyk38o-container, .framer-cIBsN .framer-1f13qio-container, .framer-cIBsN .framer-117sebv-container, .framer-cIBsN .framer-1sklcf9-container, .framer-cIBsN .framer-6i1kpz-container, .framer-cIBsN .framer-1oo1ofa-container, .framer-cIBsN .framer-qihsbv-container, .framer-cIBsN .framer-1lsvu62-container, .framer-cIBsN .framer-qn3h8p-container, .framer-cIBsN .framer-1vej414-container, .framer-cIBsN .framer-1bolmw5-container, .framer-cIBsN .framer-slv69s-container, .framer-cIBsN .framer-wee67a-container, .framer-cIBsN .framer-6eq3ha-container, .framer-cIBsN .framer-eqdb4c-container, .framer-cIBsN .framer-vgkk2h-container { height: auto; position: relative; width: 240px; }\",\".framer-cIBsN .framer-14dr02t-container { cursor: default; height: auto; position: relative; width: 240px; }\",\".framer-cIBsN .framer-2dp8n4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-j8brb2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 32px 0px; position: relative; width: 1px; z-index: 3; }\",\".framer-cIBsN .framer-rsq6vq { 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: 13px 0px 13px 0px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-10iqbto { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-o1vdvg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-cIBsN .framer-5ij2nw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-cIBsN .framer-efju1l { flex: none; height: 83px; position: relative; width: 80px; }\",\".framer-cIBsN .framer-10glvi7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-cIBsN .framer-9zm3wc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-qhs1rz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 6px 0px 6px 0px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-i3sor5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cIBsN .framer-qtx8cz-container { height: auto; position: relative; width: 256px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cIBsN.framer-l3v5s0, .framer-cIBsN .framer-k74xf9, .framer-cIBsN .framer-16dd0rc, .framer-cIBsN .framer-nfiooz, .framer-cIBsN .framer-1o6iwxr, .framer-cIBsN .framer-18xzw5p, .framer-cIBsN .framer-kk8cvf, .framer-cIBsN .framer-68lkav, .framer-cIBsN .framer-1ghkvxm, .framer-cIBsN .framer-10v483l, .framer-cIBsN .framer-4jtm24, .framer-cIBsN .framer-14gir8r, .framer-cIBsN .framer-5mgtlx, .framer-cIBsN .framer-2dp8n4, .framer-cIBsN .framer-j8brb2, .framer-cIBsN .framer-rsq6vq, .framer-cIBsN .framer-10iqbto, .framer-cIBsN .framer-o1vdvg, .framer-cIBsN .framer-5ij2nw, .framer-cIBsN .framer-10glvi7, .framer-cIBsN .framer-9zm3wc, .framer-cIBsN .framer-qhs1rz, .framer-cIBsN .framer-i3sor5, .framer-cIBsN .framer-vj529l { gap: 0px; } .framer-cIBsN.framer-l3v5s0 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-cIBsN.framer-l3v5s0 > :first-child, .framer-cIBsN .framer-16dd0rc > :first-child, .framer-cIBsN .framer-nfiooz > :first-child, .framer-cIBsN .framer-1ghkvxm > :first-child, .framer-cIBsN .framer-10v483l > :first-child, .framer-cIBsN .framer-4jtm24 > :first-child, .framer-cIBsN .framer-j8brb2 > :first-child, .framer-cIBsN .framer-rsq6vq > :first-child, .framer-cIBsN .framer-10iqbto > :first-child, .framer-cIBsN .framer-10glvi7 > :first-child, .framer-cIBsN .framer-9zm3wc > :first-child, .framer-cIBsN .framer-qhs1rz > :first-child, .framer-cIBsN .framer-vj529l > :first-child { margin-top: 0px; } .framer-cIBsN.framer-l3v5s0 > :last-child, .framer-cIBsN .framer-16dd0rc > :last-child, .framer-cIBsN .framer-nfiooz > :last-child, .framer-cIBsN .framer-1ghkvxm > :last-child, .framer-cIBsN .framer-10v483l > :last-child, .framer-cIBsN .framer-4jtm24 > :last-child, .framer-cIBsN .framer-j8brb2 > :last-child, .framer-cIBsN .framer-rsq6vq > :last-child, .framer-cIBsN .framer-10iqbto > :last-child, .framer-cIBsN .framer-10glvi7 > :last-child, .framer-cIBsN .framer-9zm3wc > :last-child, .framer-cIBsN .framer-qhs1rz > :last-child, .framer-cIBsN .framer-vj529l > :last-child { margin-bottom: 0px; } .framer-cIBsN .framer-k74xf9 > *, .framer-cIBsN .framer-1o6iwxr > *, .framer-cIBsN .framer-18xzw5p > *, .framer-cIBsN .framer-kk8cvf > *, .framer-cIBsN .framer-68lkav > *, .framer-cIBsN .framer-14gir8r > *, .framer-cIBsN .framer-5mgtlx > *, .framer-cIBsN .framer-2dp8n4 > *, .framer-cIBsN .framer-5ij2nw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cIBsN .framer-k74xf9 > :first-child, .framer-cIBsN .framer-1o6iwxr > :first-child, .framer-cIBsN .framer-18xzw5p > :first-child, .framer-cIBsN .framer-kk8cvf > :first-child, .framer-cIBsN .framer-68lkav > :first-child, .framer-cIBsN .framer-14gir8r > :first-child, .framer-cIBsN .framer-5mgtlx > :first-child, .framer-cIBsN .framer-2dp8n4 > :first-child, .framer-cIBsN .framer-o1vdvg > :first-child, .framer-cIBsN .framer-5ij2nw > :first-child, .framer-cIBsN .framer-i3sor5 > :first-child { margin-left: 0px; } .framer-cIBsN .framer-k74xf9 > :last-child, .framer-cIBsN .framer-1o6iwxr > :last-child, .framer-cIBsN .framer-18xzw5p > :last-child, .framer-cIBsN .framer-kk8cvf > :last-child, .framer-cIBsN .framer-68lkav > :last-child, .framer-cIBsN .framer-14gir8r > :last-child, .framer-cIBsN .framer-5mgtlx > :last-child, .framer-cIBsN .framer-2dp8n4 > :last-child, .framer-cIBsN .framer-o1vdvg > :last-child, .framer-cIBsN .framer-5ij2nw > :last-child, .framer-cIBsN .framer-i3sor5 > :last-child { margin-right: 0px; } .framer-cIBsN .framer-16dd0rc > *, .framer-cIBsN .framer-1ghkvxm > *, .framer-cIBsN .framer-10v483l > *, .framer-cIBsN .framer-rsq6vq > *, .framer-cIBsN .framer-vj529l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cIBsN .framer-nfiooz > *, .framer-cIBsN .framer-4jtm24 > *, .framer-cIBsN .framer-9zm3wc > *, .framer-cIBsN .framer-qhs1rz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cIBsN .framer-j8brb2 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-cIBsN .framer-10iqbto > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-cIBsN .framer-o1vdvg > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-cIBsN .framer-10glvi7 > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-cIBsN .framer-i3sor5 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",\".framer-cIBsN.framer-v-1bl4w67.framer-l3v5s0, .framer-cIBsN.framer-v-sgem9k.framer-l3v5s0 { padding: 80px 0px 0px 0px; width: 810px; }\",\".framer-cIBsN.framer-v-1fa3wuq.framer-l3v5s0, .framer-cIBsN.framer-v-jhtf73.framer-l3v5s0 { justify-content: flex-start; padding: 6px 0px 12px 0px; width: 390px; }\",\".framer-cIBsN.framer-v-1fa3wuq .framer-nfiooz { padding: 66px 10px 20px 10px; }\",\".framer-cIBsN.framer-v-1fa3wuq .framer-kk8cvf, .framer-cIBsN.framer-v-1fa3wuq .framer-68lkav { flex-direction: column; min-height: unset; }\",\".framer-cIBsN.framer-v-1fa3wuq .framer-lbkbwh, .framer-cIBsN.framer-v-1fa3wuq .framer-1qny4ez, .framer-cIBsN.framer-v-jhtf73 .framer-j8brb2 { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cIBsN.framer-v-1fa3wuq .framer-kk8cvf, .framer-cIBsN.framer-v-1fa3wuq .framer-68lkav { gap: 0px; } .framer-cIBsN.framer-v-1fa3wuq .framer-kk8cvf > *, .framer-cIBsN.framer-v-1fa3wuq .framer-68lkav > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cIBsN.framer-v-1fa3wuq .framer-kk8cvf > :first-child, .framer-cIBsN.framer-v-1fa3wuq .framer-68lkav > :first-child { margin-top: 0px; } .framer-cIBsN.framer-v-1fa3wuq .framer-kk8cvf > :last-child, .framer-cIBsN.framer-v-1fa3wuq .framer-68lkav > :last-child { margin-bottom: 0px; } }\",\".framer-cIBsN.framer-v-jhtf73 .framer-4jtm24 { padding: 0px 10px 20px 10px; }\",\".framer-cIBsN.framer-v-jhtf73 .framer-2dp8n4 { flex-direction: column; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cIBsN.framer-v-jhtf73 .framer-2dp8n4 { gap: 0px; } .framer-cIBsN.framer-v-jhtf73 .framer-2dp8n4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cIBsN.framer-v-jhtf73 .framer-2dp8n4 > :first-child { margin-top: 0px; } .framer-cIBsN.framer-v-jhtf73 .framer-2dp8n4 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 910\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"PQ4BeyjDq\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"J63MLQgD4\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"JuwqkeiuD\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"XHqDGjgHd\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"FNqk14sB4\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDrR4eLLVl=withCSS(Component,css,\"framer-cIBsN\");export default FramerDrR4eLLVl;FramerDrR4eLLVl.displayName=\"Home / Speakers\";FramerDrR4eLLVl.defaultProps={height:910,width:1140};addPropertyControls(FramerDrR4eLLVl,{variant:{options:[\"XAnLTY2AC\",\"PQ4BeyjDq\",\"J63MLQgD4\",\"JuwqkeiuD\",\"XHqDGjgHd\",\"FNqk14sB4\"],optionTitles:[\"Desktop - Speakers\",\"Tablet - Speakers\",\"Phone - Speakers\",\"Desktop - Facilitators\",\"Tablet - Facilitators\",\"Phone - Facilitators\"],title:\"Variant\",type:ControlType.Enum}});const variationAxes=[{defaultValue:400,maxValue:700,minValue:100,name:\"Weight\",tag:\"wght\"},{defaultValue:0,maxValue:10,minValue:0,name:\"Slant\",tag:\"slnt\"}];addFonts(FramerDrR4eLLVl,[{explicitInter:true,fonts:[{family:\"Hatch Mono 25 Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/2HhgBhdgVOpqJnJCxas7eCwb2e4.woff2\",variationAxes},{family:\"Geist Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/frJ5q4NHnnex5RR436powUFHE1I.woff2\"}]},...TicketsTeaserSwitchButtonFonts,...SpeakerCarouselItemFonts,...InfiniteCarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDrR4eLLVl\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"PQ4BeyjDq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"J63MLQgD4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"JuwqkeiuD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"XHqDGjgHd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"FNqk14sB4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerIntrinsicWidth\":\"1140\",\"framerIntrinsicHeight\":\"910\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DrR4eLLVl.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const serializationHash=\"framer-xaQm9\";const variantClassNames={iidFORJ8e:\"framer-v-geyfx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:60,delay:.9,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-20};const transition3={damping:60,delay:1,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={damping:60,delay:1.1,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={damping:60,delay:1.2,mass:1,stiffness:500,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={damping:60,delay:1.3,mass:1,stiffness:500,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={delay:1,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition8={delay:1.1,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"iidFORJ8e\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-geyfx\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"iidFORJ8e\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x960ar\",layoutDependency:layoutDependency,layoutId:\"yoWgqNWjh\",children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1qur0b9\",\"data-framer-appear-id\":\"1qur0b9\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"BmXdqOPQ7\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tay1ca\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wueYL_VTm\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 27\"><g><defs><path d=\"M 16.361 10.257 L 14 3 L 11.64 10.257 L 4 10.257 L 10.18 14.743 L 7.82 22 L 14 17.515 L 20.181 22 L 17.82 14.743 L 24 10.257 Z\" id=\"a1030z\"></path><filter id=\"a1032z\" filterUnits=\"objectBoundingBox\" x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\"><feOffset dx=\"0\" dy=\"1\" in=\"SourceAlpha\" result=\"a1034z\"></feOffset><feGaussianBlur stdDeviation=\"2\" in=\"a1034z\" result=\"a1035z\"></feGaussianBlur><feColorMatrix color-interpolation-filters=\"sRGB\" values=\"0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.6 0\" type=\"matrix\" in=\"a1035z\" result=\"a1036z\"></feColorMatrix></filter></defs><mask id=\"a1037z\" x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\"><rect x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\" fill=\"white\"></rect><use href=\"#a1030z\" fill=\"black\"></use></mask><g filter=\"url(#a1032z)\" mask=\"url(#a1037z)\"><use fill=\"black\" fill-opacity=\"1\" stroke=\"black\" stroke-opacity=\"0\" stroke-width=\"0\" xlink:href=\"#a1030z\" clip-path=\"url(#a1031z)\"></use></g><use xlink:href=\"#a1030z\" fill=\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\" clip-path=\"url(#a1031z)\"></use></g></svg>',svgContentId:8957227478,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-okrm5f\",\"data-framer-appear-id\":\"okrm5f\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"ecCpzzshf\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1d6gjae\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vM_t_XZ64\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 27\"><g><defs><path d=\"M 16.361 10.257 L 14 3 L 11.64 10.257 L 4 10.257 L 10.18 14.743 L 7.82 22 L 14 17.515 L 20.181 22 L 17.82 14.743 L 24 10.257 Z\" id=\"a1030z\"></path><filter id=\"a1032z\" filterUnits=\"objectBoundingBox\" x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\"><feOffset dx=\"0\" dy=\"1\" in=\"SourceAlpha\" result=\"a1034z\"></feOffset><feGaussianBlur stdDeviation=\"2\" in=\"a1034z\" result=\"a1035z\"></feGaussianBlur><feColorMatrix color-interpolation-filters=\"sRGB\" values=\"0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.6 0\" type=\"matrix\" in=\"a1035z\" result=\"a1036z\"></feColorMatrix></filter></defs><mask id=\"a1037z\" x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\"><rect x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\" fill=\"white\"></rect><use href=\"#a1030z\" fill=\"black\"></use></mask><g filter=\"url(#a1032z)\" mask=\"url(#a1037z)\"><use fill=\"black\" fill-opacity=\"1\" stroke=\"black\" stroke-opacity=\"0\" stroke-width=\"0\" xlink:href=\"#a1030z\" clip-path=\"url(#a1031z)\"></use></g><use xlink:href=\"#a1030z\" fill=\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\" clip-path=\"url(#a1031z)\"></use></g></svg>',svgContentId:8957227478,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-uu49ec\",\"data-framer-appear-id\":\"uu49ec\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"iYjzeLnU4\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yf59fi\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NgJXnDb2S\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 27\"><g><defs><path d=\"M 16.361 10.257 L 14 3 L 11.64 10.257 L 4 10.257 L 10.18 14.743 L 7.82 22 L 14 17.515 L 20.181 22 L 17.82 14.743 L 24 10.257 Z\" id=\"a1030z\"></path><filter id=\"a1032z\" filterUnits=\"objectBoundingBox\" x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\"><feOffset dx=\"0\" dy=\"1\" in=\"SourceAlpha\" result=\"a1034z\"></feOffset><feGaussianBlur stdDeviation=\"2\" in=\"a1034z\" result=\"a1035z\"></feGaussianBlur><feColorMatrix color-interpolation-filters=\"sRGB\" values=\"0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.6 0\" type=\"matrix\" in=\"a1035z\" result=\"a1036z\"></feColorMatrix></filter></defs><mask id=\"a1037z\" x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\"><rect x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\" fill=\"white\"></rect><use href=\"#a1030z\" fill=\"black\"></use></mask><g filter=\"url(#a1032z)\" mask=\"url(#a1037z)\"><use fill=\"black\" fill-opacity=\"1\" stroke=\"black\" stroke-opacity=\"0\" stroke-width=\"0\" xlink:href=\"#a1030z\" clip-path=\"url(#a1031z)\"></use></g><use xlink:href=\"#a1030z\" fill=\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\" clip-path=\"url(#a1031z)\"></use></g></svg>',svgContentId:8957227478,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1bhrw5j\",\"data-framer-appear-id\":\"1bhrw5j\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"gluxsRr4W\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gmp4e9\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"w27g0vsBD\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 27\"><g><defs><path d=\"M 16.361 10.257 L 14 3 L 11.64 10.257 L 4 10.257 L 10.18 14.743 L 7.82 22 L 14 17.515 L 20.181 22 L 17.82 14.743 L 24 10.257 Z\" id=\"a1030z\"></path><filter id=\"a1032z\" filterUnits=\"objectBoundingBox\" x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\"><feOffset dx=\"0\" dy=\"1\" in=\"SourceAlpha\" result=\"a1034z\"></feOffset><feGaussianBlur stdDeviation=\"2\" in=\"a1034z\" result=\"a1035z\"></feGaussianBlur><feColorMatrix color-interpolation-filters=\"sRGB\" values=\"0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.6 0\" type=\"matrix\" in=\"a1035z\" result=\"a1036z\"></feColorMatrix></filter></defs><mask id=\"a1037z\" x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\"><rect x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\" fill=\"white\"></rect><use href=\"#a1030z\" fill=\"black\"></use></mask><g filter=\"url(#a1032z)\" mask=\"url(#a1037z)\"><use fill=\"black\" fill-opacity=\"1\" stroke=\"black\" stroke-opacity=\"0\" stroke-width=\"0\" xlink:href=\"#a1030z\" clip-path=\"url(#a1031z)\"></use></g><use xlink:href=\"#a1030z\" fill=\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\" clip-path=\"url(#a1031z)\"></use></g></svg>',svgContentId:8957227478,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,className:\"framer-1l6iutc\",\"data-framer-appear-id\":\"1l6iutc\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"UCSXvDfdP\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h1bayx\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tyEjB4uPM\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 27\"><g><defs><path d=\"M 16.361 10.257 L 14 3 L 11.64 10.257 L 4 10.257 L 10.18 14.743 L 7.82 22 L 14 17.515 L 20.181 22 L 17.82 14.743 L 24 10.257 Z\" id=\"a1030z\"></path><filter id=\"a1032z\" filterUnits=\"objectBoundingBox\" x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\"><feOffset dx=\"0\" dy=\"1\" in=\"SourceAlpha\" result=\"a1034z\"></feOffset><feGaussianBlur stdDeviation=\"2\" in=\"a1034z\" result=\"a1035z\"></feGaussianBlur><feColorMatrix color-interpolation-filters=\"sRGB\" values=\"0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.6 0\" type=\"matrix\" in=\"a1035z\" result=\"a1036z\"></feColorMatrix></filter></defs><mask id=\"a1037z\" x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\"><rect x=\"-41.8%\" y=\"-49.2%\" width=\"183.1%\" height=\"197.9%\" fill=\"white\"></rect><use href=\"#a1030z\" fill=\"black\"></use></mask><g filter=\"url(#a1032z)\" mask=\"url(#a1037z)\"><use fill=\"black\" fill-opacity=\"1\" stroke=\"black\" stroke-opacity=\"0\" stroke-width=\"0\" xlink:href=\"#a1030z\" clip-path=\"url(#a1031z)\"></use></g><use xlink:href=\"#a1030z\" fill=\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\" clip-path=\"url(#a1031z)\"></use></g></svg>',svgContentId:8957227478,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"114%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-200c9854-51be-4e8e-8060-59fcf7c1713f, rgb(255, 255, 255)))\"},children:\"\u201CExcellent quality and incredible networking. 100% worth attending\u201D\"})}),className:\"framer-afabrh\",\"data-framer-appear-id\":\"afabrh\",\"data-framer-name\":\"\u201CFinally, a conference that is tied to the market\u201D\",fonts:[\"CUSTOM;Geist Regular\"],initial:animation7,layoutDependency:layoutDependency,layoutId:\"pIr86dzVj\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-200c9854-51be-4e8e-8060-59fcf7c1713f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"27px\",textShadow:\"0px 1px 42px rgba(33, 33, 33, 0.25)\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"114%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-87397401-59f8-43f2-8bd4-0ff34f6164cb, rgb(153, 153, 153)))\"},children:\"Thomas S. \u2013 2024 Attendee\"})}),className:\"framer-mf92jq\",\"data-framer-appear-id\":\"mf92jq\",\"data-framer-name\":\"Fiona L. \u2013 2023 Attendee\",fonts:[\"CUSTOM;Geist Regular\"],initial:animation7,layoutDependency:layoutDependency,layoutId:\"bSHdlaRhD\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-87397401-59f8-43f2-8bd4-0ff34f6164cb, rgb(153, 153, 153))\",\"--framer-paragraph-spacing\":\"27px\",textShadow:\"0px 1px 42px rgba(33, 33, 33, 0.6)\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xaQm9.framer-1f69gxj, .framer-xaQm9 .framer-1f69gxj { display: block; }\",\".framer-xaQm9.framer-geyfx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 429px; }\",\".framer-xaQm9 .framer-x960ar { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-xaQm9 .framer-1qur0b9, .framer-xaQm9 .framer-okrm5f, .framer-xaQm9 .framer-uu49ec, .framer-xaQm9 .framer-1bhrw5j, .framer-xaQm9 .framer-1l6iutc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 20px; }\",\".framer-xaQm9 .framer-1tay1ca, .framer-xaQm9 .framer-1d6gjae, .framer-xaQm9 .framer-1yf59fi, .framer-xaQm9 .framer-1gmp4e9, .framer-xaQm9 .framer-1h1bayx { flex: none; height: 27px; position: relative; width: 28px; }\",\".framer-xaQm9 .framer-afabrh, .framer-xaQm9 .framer-mf92jq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xaQm9.framer-geyfx, .framer-xaQm9 .framer-x960ar, .framer-xaQm9 .framer-1qur0b9, .framer-xaQm9 .framer-okrm5f, .framer-xaQm9 .framer-uu49ec, .framer-xaQm9 .framer-1bhrw5j, .framer-xaQm9 .framer-1l6iutc { gap: 0px; } .framer-xaQm9.framer-geyfx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xaQm9.framer-geyfx > :first-child { margin-top: 0px; } .framer-xaQm9.framer-geyfx > :last-child { margin-bottom: 0px; } .framer-xaQm9 .framer-x960ar > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-xaQm9 .framer-x960ar > :first-child, .framer-xaQm9 .framer-1qur0b9 > :first-child, .framer-xaQm9 .framer-okrm5f > :first-child, .framer-xaQm9 .framer-uu49ec > :first-child, .framer-xaQm9 .framer-1bhrw5j > :first-child, .framer-xaQm9 .framer-1l6iutc > :first-child { margin-left: 0px; } .framer-xaQm9 .framer-x960ar > :last-child, .framer-xaQm9 .framer-1qur0b9 > :last-child, .framer-xaQm9 .framer-okrm5f > :last-child, .framer-xaQm9 .framer-uu49ec > :last-child, .framer-xaQm9 .framer-1bhrw5j > :last-child, .framer-xaQm9 .framer-1l6iutc > :last-child { margin-right: 0px; } .framer-xaQm9 .framer-1qur0b9 > *, .framer-xaQm9 .framer-okrm5f > *, .framer-xaQm9 .framer-uu49ec > *, .framer-xaQm9 .framer-1bhrw5j > *, .framer-xaQm9 .framer-1l6iutc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 101\n * @framerIntrinsicWidth 429\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerewwruNBJ0=withCSS(Component,css,\"framer-xaQm9\");export default FramerewwruNBJ0;FramerewwruNBJ0.displayName=\"Review Spinner\";FramerewwruNBJ0.defaultProps={height:101,width:429};addFonts(FramerewwruNBJ0,[{explicitInter:true,fonts:[{family:\"Geist Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/frJ5q4NHnnex5RR436powUFHE1I.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerewwruNBJ0\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"101\",\"framerIntrinsicWidth\":\"429\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ewwruNBJ0.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-j2jSV\";const variantClassNames={td_Co076p:\"framer-v-1p0njlu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"td_Co076p\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1p0njlu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"td_Co076p\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGU=\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134)))\"},children:\"UP\"})}),className:\"framer-1vkzw92\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"LeHTQwnnZ\",style:{\"--extracted-r6o4lv\":\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-573irz\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yL5Qoy_Uk\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 54 49\"><path d=\"M 48.726 24.564 C 48.726 35.844 39.201 44.989 27.452 44.989 C 15.703 44.989 6.178 35.844 6.178 24.564 C 6.178 13.283 15.703 4.139 27.452 4.139 C 39.201 4.139 48.726 13.283 48.726 24.564 Z\" fill=\"transparent\" stroke-width=\"3\" stroke=\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\"></path></svg>',svgContentId:8831279550,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGU=\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134)))\"},children:\"LEVEL\"})}),className:\"framer-14qxa75\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"j03LPvoi3\",style:{\"--extracted-r6o4lv\":\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mayav5\",\"data-framer-name\":\"Icon (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"WDTKKNSj1\",svg:'<svg width=\"28\" height=\"27\" viewBox=\"-2 -2 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.0321 0.534311C11.6135 -0.0273062 12.5353 -0.0273062 13.1166 0.534311L22.9499 10.0343C23.5457 10.6099 23.5621 11.5595 22.9865 12.1553C22.4109 12.7511 21.4613 12.7675 20.8655 12.1919L13.5744 5.14793V20.6131C13.5744 21.4415 12.9028 22.1131 12.0744 22.1131C11.2459 22.1131 10.5744 21.4415 10.5744 20.6131V5.14793L3.28325 12.1919C2.68745 12.7675 1.73784 12.7511 1.16224 12.1553C0.586641 11.5595 0.603013 10.6099 1.19881 10.0343L11.0321 0.534311Z\" fill=\"#2AA786\"/>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-j2jSV.framer-1o7v7r8, .framer-j2jSV .framer-1o7v7r8 { display: block; }\",\".framer-j2jSV.framer-1p0njlu { height: 53px; overflow: visible; position: relative; width: 220px; }\",\".framer-j2jSV .framer-1vkzw92 { flex: none; height: auto; position: absolute; right: 1px; top: -2px; white-space: pre; width: auto; }\",\".framer-j2jSV .framer-573irz { flex: none; height: 49px; position: absolute; right: 50px; top: -1px; width: 54px; }\",\".framer-j2jSV .framer-14qxa75 { flex: none; height: auto; left: -4px; position: absolute; top: -2px; white-space: pre; width: auto; }\",\".framer-j2jSV .framer-mayav5 { flex: none; height: 27px; position: absolute; right: 63px; top: 10px; width: 28px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 53\n * @framerIntrinsicWidth 220\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlTUdsAyqt=withCSS(Component,css,\"framer-j2jSV\");export default FramerlTUdsAyqt;FramerlTUdsAyqt.displayName=\"home/header icon/up\";FramerlTUdsAyqt.defaultProps={height:53,width:220};const variationAxes=[{defaultValue:400,maxValue:700,minValue:100,name:\"Weight\",tag:\"wght\"},{defaultValue:0,maxValue:10,minValue:0,name:\"Slant\",tag:\"slnt\"}];addFonts(FramerlTUdsAyqt,[{explicitInter:true,fonts:[{family:\"Hatch Mono 25 Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/2HhgBhdgVOpqJnJCxas7eCwb2e4.woff2\",variationAxes}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlTUdsAyqt\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"53\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"220\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lTUdsAyqt.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"v3wEOGvlE\",\"Km6DF_jiA\",\"X_X8kTDX3\",\"G4FY1nMn9\"];const serializationHash=\"framer-CR87r\";const variantClassNames={G4FY1nMn9:\"framer-v-la4vqd\",Km6DF_jiA:\"framer-v-hv27ye\",v3wEOGvlE:\"framer-v-131ruw\",X_X8kTDX3:\"framer-v-nvefk6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"v3wEOGvlE\",\"Variant 2\":\"Km6DF_jiA\",\"Variant 3\":\"X_X8kTDX3\",\"Variant 4\":\"G4FY1nMn9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"v3wEOGvlE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"v3wEOGvlE\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntern3gnja=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"Km6DF_jiA\");});const onAppear1jstmxa=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"X_X8kTDX3\",true),300);});const onAppearqkmn8u=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"G4FY1nMn9\",true),300);});const onAppear1b6j4bh=activeVariantCallback(async(...args)=>{setVariant(\"v3wEOGvlE\",true);});useOnVariantChange(baseVariant,{G4FY1nMn9:onAppear1b6j4bh,Km6DF_jiA:onAppear1jstmxa,X_X8kTDX3:onAppearqkmn8u});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-131ruw\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"v3wEOGvlE\",onMouseEnter:onMouseEntern3gnja,ref:refBinding,style:{...style},...addPropertyOverrides({G4FY1nMn9:{\"data-framer-name\":\"Variant 4\"},Km6DF_jiA:{\"data-framer-name\":\"Variant 2\"},X_X8kTDX3:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a0om4w\",layoutDependency:layoutDependency,layoutId:\"sqV_1kF9m\",style:{backgroundColor:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8pn6ff\",layoutDependency:layoutDependency,layoutId:\"P5VOtvr5O\",style:{backgroundColor:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ob4pbc\",layoutDependency:layoutDependency,layoutId:\"k1dobGgQR\",style:{backgroundColor:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g8x0pt\",layoutDependency:layoutDependency,layoutId:\"aWM8s_pDR\",style:{backgroundColor:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\",opacity:1,rotate:90},variants:{G4FY1nMn9:{opacity:1},Km6DF_jiA:{opacity:0},X_X8kTDX3:{opacity:0}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qafpu5\",layoutDependency:layoutDependency,layoutId:\"X6wH67J8F\",style:{backgroundColor:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\",opacity:1,rotate:90},variants:{G4FY1nMn9:{opacity:1},Km6DF_jiA:{opacity:0},X_X8kTDX3:{opacity:0}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CR87r.framer-1j8rs43, .framer-CR87r .framer-1j8rs43 { display: block; }\",\".framer-CR87r.framer-131ruw { height: 54px; overflow: hidden; position: relative; width: 49px; }\",\".framer-CR87r .framer-a0om4w { flex: none; height: 33px; left: calc(20.408163265306143% - 4px / 2); overflow: visible; position: absolute; top: 6px; width: 4px; }\",\".framer-CR87r .framer-8pn6ff { flex: none; height: 33px; left: calc(51.02040816326533% - 4px / 2); overflow: visible; position: absolute; top: 6px; width: 4px; }\",\".framer-CR87r .framer-ob4pbc { flex: none; height: 33px; left: calc(81.63265306122452% - 4px / 2); overflow: visible; position: absolute; top: 6px; width: 4px; }\",\".framer-CR87r .framer-g8x0pt { flex: none; height: 49px; left: 22px; overflow: visible; position: absolute; top: calc(12.962962962962985% - 49px / 2); width: 4px; }\",\".framer-CR87r .framer-qafpu5 { flex: none; height: 49px; left: 22px; overflow: visible; position: absolute; top: calc(68.51851851851855% - 49px / 2); width: 4px; }\",\".framer-CR87r.framer-v-hv27ye .framer-a0om4w, .framer-CR87r.framer-v-hv27ye .framer-8pn6ff, .framer-CR87r.framer-v-hv27ye .framer-ob4pbc { height: 0px; }\",\".framer-CR87r.framer-v-hv27ye .framer-g8x0pt, .framer-CR87r.framer-v-nvefk6 .framer-g8x0pt { height: 1px; top: 15px; }\",\".framer-CR87r.framer-v-hv27ye .framer-qafpu5, .framer-CR87r.framer-v-nvefk6 .framer-qafpu5 { bottom: 22px; height: 1px; left: 8px; top: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 54\n * @framerIntrinsicWidth 49\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Km6DF_jiA\":{\"layout\":[\"fixed\",\"fixed\"]},\"X_X8kTDX3\":{\"layout\":[\"fixed\",\"fixed\"]},\"G4FY1nMn9\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPndKS1aLH=withCSS(Component,css,\"framer-CR87r\");export default FramerPndKS1aLH;FramerPndKS1aLH.displayName=\"home/header icon/3\";FramerPndKS1aLH.defaultProps={height:54,width:49};addPropertyControls(FramerPndKS1aLH,{variant:{options:[\"v3wEOGvlE\",\"Km6DF_jiA\",\"X_X8kTDX3\",\"G4FY1nMn9\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPndKS1aLH,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPndKS1aLH\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"49\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"54\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Km6DF_jiA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X_X8kTDX3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G4FY1nMn9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PndKS1aLH.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ButtonButton from\"https://framerusercontent.com/modules/pDsvQehiAsapqmdEGnmH/CykyLwRc1gFTPWJqcTwl/vpgtN4EAU.js\";const ButtonButtonFonts=getFonts(ButtonButton);const cycleOrder=[\"p_9Qy7MTQ\",\"cEMYN9L6D\",\"pBX7PYAQ4\",\"j5rukL5eJ\"];const serializationHash=\"framer-7su7h\";const variantClassNames={cEMYN9L6D:\"framer-v-qojq94\",j5rukL5eJ:\"framer-v-uorxlt\",p_9Qy7MTQ:\"framer-v-u9c3d9\",pBX7PYAQ4:\"framer-v-roxd2q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Small\":\"pBX7PYAQ4\",\"Tablet - Big\":\"cEMYN9L6D\",\"Tablet - Small\":\"j5rukL5eJ\",Desktop:\"p_9Qy7MTQ\"};const getProps=({amount,date,height,id,image,line1,line2,link,price,text,width,...props})=>{return{...props,AkuOpGRJO:line2??props.AkuOpGRJO??\"DAY\",hDIBUGzFq:amount??props.hDIBUGzFq??\"100 Spots\",IWdQrsaEh:line1??props.IWdQrsaEh??\"BUILDER'S\",jP6RylglM:text??props.jP6RylglM??\"A former crematorium repurposed as cultural center. This year we are enjoying the summer inside and outside!\",jukcEaKBm:link??props.jukcEaKBm,MXrSjmbOY:date??props.MXrSjmbOY??\"Sep 10\",ndV3z6mOK:image??props.ndV3z6mOK??{alt:\"\",src:\"https://framerusercontent.com/images/6FqLV2rdJKSe1w9XBkbgqmQ1Ttg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6FqLV2rdJKSe1w9XBkbgqmQ1Ttg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6FqLV2rdJKSe1w9XBkbgqmQ1Ttg.jpg 795w\"},sS0F1CWTp:price??props.sS0F1CWTp??\"From \u20AC400\",variant:humanReadableVariantMap[props.variant]??props.variant??\"p_9Qy7MTQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,MXrSjmbOY,ndV3z6mOK,IWdQrsaEh,AkuOpGRJO,jP6RylglM,hDIBUGzFq,sS0F1CWTp,jukcEaKBm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p_9Qy7MTQ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"pBX7PYAQ4\",\"j5rukL5eJ\"].includes(baseVariant))return false;return true;};const visible=isSet(AkuOpGRJO);const isDisplayed1=value=>{if([\"pBX7PYAQ4\",\"j5rukL5eJ\"].includes(baseVariant))return false;return value;};const visible1=isSet(jukcEaKBm);const isDisplayed2=()=>{if([\"pBX7PYAQ4\",\"j5rukL5eJ\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-u9c3d9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"p_9Qy7MTQ\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-87397401-59f8-43f2-8bd4-0ff34f6164cb, rgb(153, 153, 153))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,boxShadow:\"18px 18px 0px 0px rgb(0, 0, 0)\",...style},...addPropertyOverrides({cEMYN9L6D:{\"data-framer-name\":\"Tablet - Big\"},j5rukL5eJ:{\"data-framer-name\":\"Tablet - Small\"},pBX7PYAQ4:{\"data-framer-name\":\"Desktop - Small\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234.5,intrinsicWidth:397.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||495)-0-563.4)/2+0+0)),pixelHeight:469,pixelWidth:795,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(ndV3z6mOK)},className:\"framer-sefkzr\",\"data-framer-name\":\"Highlight 3\",layoutDependency:layoutDependency,layoutId:\"yQKqP10fW\",...addPropertyOverrides({cEMYN9L6D:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234.5,intrinsicWidth:397.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-576.6)/2+0+0)),pixelHeight:469,pixelWidth:795,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(ndV3z6mOK)}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1czokk9\",\"data-border\":true,\"data-framer-name\":\"Date\",layoutDependency:layoutDependency,layoutId:\"xKmtnN0rK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(97, 97, 97, 0.51)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(0, 0, 0, 0.91)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,WebkitBackdropFilter:\"blur(8px)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Sep 10\"})}),className:\"framer-1utzz84\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"xKmtnN0rKcvt0bgOvo\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:MXrSjmbOY,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vvqklc\",layoutDependency:layoutDependency,layoutId:\"XPswHYP5m\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-30zzhx\",layoutDependency:layoutDependency,layoutId:\"grrg_UzKT\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kfeep6\",layoutDependency:layoutDependency,layoutId:\"crjM_OYTd\",style:{backgroundColor:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\"},variants:{j5rukL5eJ:{backgroundColor:\"rgba(0, 0, 0, 0)\"},pBX7PYAQ4:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEVTVNaXdnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"32px\",\"--framer-font-variation-axes\":'var(--extracted-zfisys, \"wght\" 592, \"slnt\" 0)',\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"BUILDER'S\"})}),className:\"framer-128aga8\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"AFlBAyEPI\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--extracted-zfisys\":'\"wght\" 592, \"slnt\" 0',\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:IWdQrsaEh,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cEMYN9L6D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEVTVNaXdnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"28px\",\"--framer-font-variation-axes\":'var(--extracted-zfisys, \"wght\" 592, \"slnt\" 0)',\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"BUILDER'S\"})})},j5rukL5eJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEVTVNaXdnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"28px\",\"--framer-font-variation-axes\":'var(--extracted-zfisys, \"wght\" 592, \"slnt\" 0)',\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"BUILDER'S\"})})}},baseVariant,gestureVariant)})}),isDisplayed1(visible)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hlshz2\",layoutDependency:layoutDependency,layoutId:\"KBq4n8E6F\",style:{backgroundColor:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEVTVNaXdnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"32px\",\"--framer-font-variation-axes\":'var(--extracted-zfisys, \"wght\" 592, \"slnt\" 0)',\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"DAY\"})}),className:\"framer-1r3ra97\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],layoutDependency:layoutDependency,layoutId:\"Z9dkw6v90\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--extracted-zfisys\":'\"wght\" 592, \"slnt\" 0',\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AkuOpGRJO,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cEMYN9L6D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEVTVNaXdnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"28px\",\"--framer-font-variation-axes\":'var(--extracted-zfisys, \"wght\" 592, \"slnt\" 0)',\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"DAY\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sslseh\",layoutDependency:layoutDependency,layoutId:\"QzNYaQL1v\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(212, 212, 212))\"},children:\"A former crematorium repurposed as cultural center. This year we are enjoying the summer inside and outside!\"})}),className:\"framer-10kr5w\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"eVx4YZA7G\",style:{\"--extracted-r6o4lv\":\"rgb(212, 212, 212)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:jP6RylglM,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1479v6a\",layoutDependency:layoutDependency,layoutId:\"HdTjDCr24\",style:{backgroundColor:\"var(--token-dc9e0bbd-4786-4bef-b5fa-eeb00bd03164, rgb(97, 97, 97))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vo3v6w\",layoutDependency:layoutDependency,layoutId:\"ZhA2H2QMV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19r87yp\",layoutDependency:layoutDependency,layoutId:\"LEvHqZcLP\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-yr59r6\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"yroybJ0IB\",svg:'<svg width=\"32\" height=\"30\" viewBox=\"0 0 32 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.2905 11.9352L19.6257 14.1322L20.7349 13.0337L18.4581 10.8367L17.2905 11.9352Z\" fill=\"white\"/>\\n<path d=\"M30.7762 11.2214L27.3317 7.98086C27.0982 7.76116 26.8647 7.65132 26.5728 7.65132C26.2809 7.65132 25.989 7.76116 25.8138 7.92594C25.23 8.47518 24.7046 8.7498 24.296 8.80472C23.8873 8.80472 23.3619 8.5301 22.7781 7.92594C22.1359 7.32177 21.844 6.88238 21.844 6.44298C21.844 6.05851 22.1359 5.56419 22.7781 5.01495C23.0116 4.79526 23.07 4.57556 23.07 4.30094C23.07 4.02632 22.9532 3.75169 22.7197 3.58692L19.2752 0.346391C19.0417 0.126694 18.7498 0.0168457 18.4579 0.0168457C18.166 0.0168457 17.8741 0.126694 17.699 0.346391L0.476747 16.4941C0.243226 16.7138 0.126465 16.9335 0.126465 17.2081C0.126465 17.4828 0.243226 17.7574 0.476747 17.9221L3.92119 21.1627C4.15471 21.3824 4.38824 21.4922 4.68014 21.4922C4.97204 21.4922 5.26394 21.3824 5.43908 21.2176C6.08127 20.6134 6.60669 20.2839 6.95697 20.2839C7.30726 20.2839 7.83268 20.6134 8.47486 21.1627C9.11705 21.7668 9.40895 22.2612 9.40895 22.5907C9.40895 22.9203 9.05867 23.4146 8.41648 24.0187C8.18296 24.2384 8.12458 24.4581 8.12458 24.7328C8.12458 25.0074 8.24134 25.282 8.47486 25.4468L11.9193 28.6873C12.1528 28.907 12.3864 29.0168 12.6783 29.0168C12.9702 29.0168 13.2621 28.907 13.4372 28.6873L24.4127 18.6911L30.7762 12.7043C31.0097 12.4846 31.1265 12.265 31.1265 11.9903C31.0681 11.6608 30.9513 11.3862 30.7762 11.2214ZM23.07 15.2309L21.9024 16.3293L22.8364 17.2081L12.795 26.6002L10.6933 24.6229C11.2187 24.0187 11.6858 23.4146 11.7442 22.6456C11.7442 21.657 11.2771 20.7782 10.1095 19.7347C9.00029 18.6911 8.0662 18.1968 7.01535 18.1968C6.19803 18.1968 5.55584 18.6911 4.91366 19.1854L2.81196 17.2081L12.8534 7.76116L14.9551 9.73844L16.1227 8.63995L14.021 6.66268L18.4579 2.48844L20.5596 4.46571C20.0926 5.01495 19.6255 5.61912 19.5671 6.38806C19.5088 7.37669 20.0342 8.36533 21.1434 9.40889C22.1943 10.3975 23.1867 10.8918 24.2376 10.8918H24.3543C25.1133 10.8918 25.7555 10.3975 26.3977 9.95813L28.4993 11.9354L24.0624 16.1096L23.07 15.2309Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255)))\"},children:\"100 Spots\"})}),className:\"framer-17v32oo\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"qysfWIk7P\",style:{\"--extracted-r6o4lv\":\"var(--token-3f2e5203-00b1-4830-8182-643b4bba95c4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:hDIBUGzFq,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191)))\"},children:\"From \u20AC400\"})}),className:\"framer-cs5xau\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"h6GtMMzc2\",style:{\"--extracted-r6o4lv\":\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:sS0F1CWTp,verticalAlignment:\"top\",withExternalLayout:true})]}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||495)-0-563.4)/2+234.5+0)+20+269.9,...addPropertyOverrides({cEMYN9L6D:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-576.6)/2+234.5+0)+15+293.1},j5rukL5eJ:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 30px)`,y:(componentViewport?.y||0)+0+15+217.9},pBX7PYAQ4:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px)`,y:(componentViewport?.y||0)+0+20+222.3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ohpakv-container\",layoutDependency:layoutDependency,layoutId:\"CqI1dtfZ8-container\",nodeId:\"CqI1dtfZ8\",rendersWithMotion:true,scopeId:\"V_ZaC2iIM\",children:/*#__PURE__*/_jsx(ButtonButton,{c3KVgZNDp:\"var(--token-897b9dd4-2da8-4e8f-9c27-ef6bea2f68b7, rgb(25, 25, 25))\",height:\"100%\",HNvtcQ6hq:\"More Info\",id:\"CqI1dtfZ8\",ircBUxoIe:false,Joj899VfW:\"rgb(255, 255, 255)\",jpvq200N5:jukcEaKBm,layoutId:\"CqI1dtfZ8\",pRq7qWjm7:\"rgba(0, 0, 0, 0)\",qrVAq1cgJ:{borderColor:\"rgba(237, 237, 237, 0.77)\",borderStyle:\"solid\",borderWidth:1},rgPUohYGe:\"var(--token-897b9dd4-2da8-4e8f-9c27-ef6bea2f68b7, rgb(25, 25, 25))\",style:{height:\"100%\",width:\"100%\"},sYRcPMM6U:\"ajPI4T54p\",tsbFbKFtU:{borderColor:\"rgba(237, 237, 237, 0.77)\",borderStyle:\"solid\",borderWidth:1},Usk3nuA8o:\"rgb(237, 237, 237)\",variant:\"oLJwuwtwl\",width:\"100%\",yMfgLfwpW:false})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v0mmva\",\"data-border\":true,\"data-framer-name\":\"Date\",layoutDependency:layoutDependency,layoutId:\"PvDkpVsrk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(97, 97, 97, 0.51)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(0, 0, 0, 0.91)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,WebkitBackdropFilter:\"blur(8px)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Sep 10\"})}),className:\"framer-r9ziwu\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"kRydkztkl\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:MXrSjmbOY,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7su7h.framer-1jq5xcc, .framer-7su7h .framer-1jq5xcc { display: block; }\",\".framer-7su7h.framer-u9c3d9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 368px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7su7h .framer-sefkzr { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.695095948827292 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 217px); justify-content: flex-start; overflow: visible; padding: 15px; position: relative; width: 100%; }\",\".framer-7su7h .framer-1czokk9, .framer-7su7h .framer-1v0mmva { 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: 6px 18px 6px 18px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-7su7h .framer-1utzz84, .framer-7su7h .framer-128aga8, .framer-7su7h .framer-1r3ra97, .framer-7su7h .framer-17v32oo, .framer-7su7h .framer-cs5xau, .framer-7su7h .framer-r9ziwu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7su7h .framer-1vvqklc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-7su7h .framer-30zzhx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7su7h .framer-1kfeep6, .framer-7su7h .framer-1hlshz2 { 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 6px 0px 6px; position: relative; width: min-content; }\",\".framer-7su7h .framer-1sslseh { 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: 7px 0px 7px 0px; position: relative; width: 100%; }\",\".framer-7su7h .framer-10kr5w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7su7h .framer-1479v6a { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-7su7h .framer-1vo3v6w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-7su7h .framer-19r87yp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7su7h .framer-yr59r6 { flex: none; height: 30px; position: relative; width: 32px; }\",\".framer-7su7h .framer-1ohpakv-container { flex: none; height: 48px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7su7h.framer-u9c3d9, .framer-7su7h .framer-sefkzr, .framer-7su7h .framer-1czokk9, .framer-7su7h .framer-1vvqklc, .framer-7su7h .framer-30zzhx, .framer-7su7h .framer-1kfeep6, .framer-7su7h .framer-1hlshz2, .framer-7su7h .framer-1sslseh, .framer-7su7h .framer-19r87yp, .framer-7su7h .framer-1v0mmva { gap: 0px; } .framer-7su7h.framer-u9c3d9 > *, .framer-7su7h .framer-30zzhx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7su7h.framer-u9c3d9 > :first-child, .framer-7su7h .framer-sefkzr > :first-child, .framer-7su7h .framer-1vvqklc > :first-child, .framer-7su7h .framer-30zzhx > :first-child, .framer-7su7h .framer-1kfeep6 > :first-child, .framer-7su7h .framer-1hlshz2 > :first-child, .framer-7su7h .framer-1sslseh > :first-child { margin-top: 0px; } .framer-7su7h.framer-u9c3d9 > :last-child, .framer-7su7h .framer-sefkzr > :last-child, .framer-7su7h .framer-1vvqklc > :last-child, .framer-7su7h .framer-30zzhx > :last-child, .framer-7su7h .framer-1kfeep6 > :last-child, .framer-7su7h .framer-1hlshz2 > :last-child, .framer-7su7h .framer-1sslseh > :last-child { margin-bottom: 0px; } .framer-7su7h .framer-sefkzr > *, .framer-7su7h .framer-1vvqklc > *, .framer-7su7h .framer-1kfeep6 > *, .framer-7su7h .framer-1hlshz2 > *, .framer-7su7h .framer-1sslseh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7su7h .framer-1czokk9 > *, .framer-7su7h .framer-19r87yp > *, .framer-7su7h .framer-1v0mmva > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7su7h .framer-1czokk9 > :first-child, .framer-7su7h .framer-19r87yp > :first-child, .framer-7su7h .framer-1v0mmva > :first-child { margin-left: 0px; } .framer-7su7h .framer-1czokk9 > :last-child, .framer-7su7h .framer-19r87yp > :last-child, .framer-7su7h .framer-1v0mmva > :last-child { margin-right: 0px; } }\",\".framer-7su7h.framer-v-qojq94 .framer-1vvqklc { padding: 15px; }\",\".framer-7su7h.framer-v-qojq94 .framer-1vo3v6w { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 14px; justify-content: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7su7h.framer-v-qojq94 .framer-1vo3v6w { gap: 0px; } .framer-7su7h.framer-v-qojq94 .framer-1vo3v6w > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-7su7h.framer-v-qojq94 .framer-1vo3v6w > :first-child { margin-top: 0px; } .framer-7su7h.framer-v-qojq94 .framer-1vo3v6w > :last-child { margin-bottom: 0px; } }\",\".framer-7su7h.framer-v-roxd2q.framer-u9c3d9, .framer-7su7h.framer-v-uorxlt.framer-u9c3d9 { flex-direction: row; }\",\".framer-7su7h.framer-v-roxd2q .framer-1vvqklc { flex: 1 0 0px; width: 1px; }\",\".framer-7su7h.framer-v-roxd2q .framer-30zzhx, .framer-7su7h.framer-v-uorxlt .framer-30zzhx { order: 1; }\",\".framer-7su7h.framer-v-roxd2q .framer-1kfeep6, .framer-7su7h.framer-v-uorxlt .framer-1kfeep6 { padding: 0px; width: 100%; }\",\".framer-7su7h.framer-v-roxd2q .framer-128aga8, .framer-7su7h.framer-v-uorxlt .framer-128aga8 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7su7h.framer-v-roxd2q .framer-1sslseh, .framer-7su7h.framer-v-uorxlt .framer-1sslseh { order: 2; }\",\".framer-7su7h.framer-v-roxd2q .framer-1479v6a, .framer-7su7h.framer-v-uorxlt .framer-1479v6a { order: 3; }\",\".framer-7su7h.framer-v-roxd2q .framer-1vo3v6w { order: 5; }\",\".framer-7su7h.framer-v-roxd2q .framer-1ohpakv-container, .framer-7su7h.framer-v-uorxlt .framer-1ohpakv-container { order: 4; }\",\".framer-7su7h.framer-v-roxd2q .framer-1v0mmva, .framer-7su7h.framer-v-uorxlt .framer-1v0mmva { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7su7h.framer-v-roxd2q.framer-u9c3d9 { gap: 0px; } .framer-7su7h.framer-v-roxd2q.framer-u9c3d9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7su7h.framer-v-roxd2q.framer-u9c3d9 > :first-child { margin-left: 0px; } .framer-7su7h.framer-v-roxd2q.framer-u9c3d9 > :last-child { margin-right: 0px; } }\",\".framer-7su7h.framer-v-uorxlt .framer-1vvqklc { flex: 1 0 0px; padding: 15px; width: 1px; }\",\".framer-7su7h.framer-v-uorxlt .framer-1vo3v6w { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 15px; justify-content: flex-start; order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7su7h.framer-v-uorxlt.framer-u9c3d9, .framer-7su7h.framer-v-uorxlt .framer-1vo3v6w { gap: 0px; } .framer-7su7h.framer-v-uorxlt.framer-u9c3d9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7su7h.framer-v-uorxlt.framer-u9c3d9 > :first-child { margin-left: 0px; } .framer-7su7h.framer-v-uorxlt.framer-u9c3d9 > :last-child { margin-right: 0px; } .framer-7su7h.framer-v-uorxlt .framer-1vo3v6w > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-7su7h.framer-v-uorxlt .framer-1vo3v6w > :first-child { margin-top: 0px; } .framer-7su7h.framer-v-uorxlt .framer-1vo3v6w > :last-child { margin-bottom: 0px; } }\",'.framer-7su7h[data-border=\"true\"]::after, .framer-7su7h [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 495\n * @framerIntrinsicWidth 368\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cEMYN9L6D\":{\"layout\":[\"fixed\",\"auto\"]},\"pBX7PYAQ4\":{\"layout\":[\"fixed\",\"auto\"]},\"j5rukL5eJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"MXrSjmbOY\":\"date\",\"ndV3z6mOK\":\"image\",\"IWdQrsaEh\":\"line1\",\"AkuOpGRJO\":\"line2\",\"jP6RylglM\":\"text\",\"hDIBUGzFq\":\"amount\",\"sS0F1CWTp\":\"price\",\"jukcEaKBm\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerV_ZaC2iIM=withCSS(Component,css,\"framer-7su7h\");export default FramerV_ZaC2iIM;FramerV_ZaC2iIM.displayName=\"Day Card Big\";FramerV_ZaC2iIM.defaultProps={height:495,width:368};addPropertyControls(FramerV_ZaC2iIM,{variant:{options:[\"p_9Qy7MTQ\",\"cEMYN9L6D\",\"pBX7PYAQ4\",\"j5rukL5eJ\"],optionTitles:[\"Desktop\",\"Tablet - Big\",\"Desktop - Small\",\"Tablet - Small\"],title:\"Variant\",type:ControlType.Enum},MXrSjmbOY:{defaultValue:\"Sep 10\",displayTextArea:false,title:\"Date\",type:ControlType.String},ndV3z6mOK:{__defaultAssetReference:\"data:framer/asset-reference,6FqLV2rdJKSe1w9XBkbgqmQ1Ttg.jpg?originalFilename=highlight+3.jpg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,6FqLV2rdJKSe1w9XBkbgqmQ1Ttg.jpg?originalFilename=highlight+3.jpg&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},IWdQrsaEh:{defaultValue:\"BUILDER'S\",displayTextArea:false,title:\"Line 1\",type:ControlType.String},AkuOpGRJO:{defaultValue:\"DAY\",displayTextArea:false,title:\"Line 2\",type:ControlType.String},jP6RylglM:{defaultValue:\"A former crematorium repurposed as cultural center. This year we are enjoying the summer inside and outside!\",displayTextArea:true,title:\"Text\",type:ControlType.String},hDIBUGzFq:{defaultValue:\"100 Spots\",displayTextArea:false,title:\"Amount\",type:ControlType.String},sS0F1CWTp:{defaultValue:\"From \u20AC400\",displayTextArea:false,title:\"Price\",type:ControlType.String},jukcEaKBm:{title:\"Link\",type:ControlType.Link}});const variationAxes=[{defaultValue:400,maxValue:700,minValue:100,name:\"Weight\",tag:\"wght\"},{defaultValue:0,maxValue:10,minValue:0,name:\"Slant\",tag:\"slnt\"}];addFonts(FramerV_ZaC2iIM,[{explicitInter:true,fonts:[{family:\"Geist Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/frJ5q4NHnnex5RR436powUFHE1I.woff2\"},{family:\"Hatch Mono 25 Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/2HhgBhdgVOpqJnJCxas7eCwb2e4.woff2\",variationAxes}]},...ButtonButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV_ZaC2iIM\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"495\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"MXrSjmbOY\\\":\\\"date\\\",\\\"ndV3z6mOK\\\":\\\"image\\\",\\\"IWdQrsaEh\\\":\\\"line1\\\",\\\"AkuOpGRJO\\\":\\\"line2\\\",\\\"jP6RylglM\\\":\\\"text\\\",\\\"hDIBUGzFq\\\":\\\"amount\\\",\\\"sS0F1CWTp\\\":\\\"price\\\",\\\"jukcEaKBm\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"368\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cEMYN9L6D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pBX7PYAQ4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j5rukL5eJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}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{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import TextWrap from\"https://framerusercontent.com/modules/oQk14E8Ar7JXjnVOhZW2/tTjSZGoYpVB4w8r1kHS0/TextWrap_Prod.js\";import PixelTrail from\"https://framerusercontent.com/modules/P7CERvZDMOoPtAW3iQjh/hu0acDdjZEUAD16X6pPP/PixelTrail_Prod.js\";import{OpenType}from\"https://framerusercontent.com/modules/wtCWCDefZAF8uwRUa8z9/K7SB4rOAiUHTg03TJ5iQ/Overrides.js\";import ElementsTopicTag from\"#framer/local/canvasComponent/C6PpHdl17/C6PpHdl17.js\";import HomeHeaderIconLove from\"#framer/local/canvasComponent/CYcJqTRPY/CYcJqTRPY.js\";import HomeSpeakers from\"#framer/local/canvasComponent/DrR4eLLVl/DrR4eLLVl.js\";import ReviewSpinner from\"#framer/local/canvasComponent/ewwruNBJ0/ewwruNBJ0.js\";import HomeHeaderIconUp from\"#framer/local/canvasComponent/lTUdsAyqt/lTUdsAyqt.js\";import TicketsTeaser from\"#framer/local/canvasComponent/MxmYqJt6N/MxmYqJt6N.js\";import HomeHeaderIcon3 from\"#framer/local/canvasComponent/PndKS1aLH/PndKS1aLH.js\";import HatchIcon from\"#framer/local/canvasComponent/tUFYsoERm/tUFYsoERm.js\";import DayCardBig from\"#framer/local/canvasComponent/V_ZaC2iIM/V_ZaC2iIM.js\";import ButtonButton from\"#framer/local/canvasComponent/vpgtN4EAU/vpgtN4EAU.js\";import*as sharedStyle1 from\"#framer/local/css/lkMMPfVXF/lkMMPfVXF.js\";import*as sharedStyle from\"#framer/local/css/mu13pzD9K/mu13pzD9K.js\";import metadataProvider from\"#framer/local/webPageMetadata/GYQYWcM8K/GYQYWcM8K.js\";const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ButtonButtonFonts=getFonts(ButtonButton);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ReviewSpinnerFonts=getFonts(ReviewSpinner);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const PixelTrailFonts=getFonts(PixelTrail);const ImageWithFX=withFX(Image);const HatchIconFonts=getFonts(HatchIcon);const RichTextOpenTypen4kwc1=withCodeBoundaryForOverrides(RichText,{nodeId:\"ydqC2XtDR\",override:OpenType,scopeId:\"GYQYWcM8K\"});const YouTubeFonts=getFonts(YouTube);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const ElementsTopicTagFonts=getFonts(ElementsTopicTag);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const HomeHeaderIcon3Fonts=getFonts(HomeHeaderIcon3);const HomeHeaderIcon3WithVariantAppearEffect=withVariantAppearEffect(HomeHeaderIcon3);const HomeHeaderIconUpFonts=getFonts(HomeHeaderIconUp);const HomeHeaderIconLoveFonts=getFonts(HomeHeaderIconLove);const TextWrapFonts=getFonts(TextWrap);const DayCardBigFonts=getFonts(DayCardBig);const HomeSpeakersFonts=getFonts(HomeSpeakers);const TicketsTeaserFonts=getFonts(TicketsTeaser);const breakpoints={H16n3Tmgz:\"(min-width: 810px) and (max-width: 1139px)\",HegDjfVJV:\"(max-width: 809px)\",ssjVoubpk:\"(min-width: 1140px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-LRcHG\";const variantClassNames={H16n3Tmgz:\"framer-v-1eoeryh\",HegDjfVJV:\"framer-v-138ny25\",ssjVoubpk:\"framer-v-kchrnn\"};const transition1={delay:.3,duration:.5,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 transition2={delay:.4,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const transition3={delay:.7,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:.2,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:.3,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={delay:.4,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={delay:.7,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition8};const transition9={delay:.8,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={delay:.9,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={delay:1,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const transition12={delay:1.1,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transition13={delay:1.2,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:400,y:300};const transition14={damping:23,delay:0,mass:2.5,stiffness:130,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:-400,y:300};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:-150};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:400,y:-200};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:-100,y:-100};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:300,y:100};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:-400,y:-300};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0};const transition15={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transition:transition15,x:0,y:0};const animation24={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,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 animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition16={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition16,x:0,y:0};const transition17={delay:.1,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const transition18={delay:.3,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const transition19={delay:.4,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const transition20={delay:.5,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const transition21={delay:.6,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const transition22={delay:.7,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const transition23={delay:.8,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const transition24={delay:.9,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const transition25={delay:1,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const transition26={delay:1.1,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const transition27={delay:1.2,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const transition28={delay:1.3,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition29={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition30={delay:.1,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition31={delay:.2,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition32={delay:.3,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition33={delay:.5,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition34={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ssjVoubpk\",Phone:\"HegDjfVJV\",Tablet:\"H16n3Tmgz\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ssjVoubpk\"};};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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"HegDjfVJV\")return false;return true;};const elementId=useRouteElementId(\"fdWX7mycf\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ssjVoubpk\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-kchrnn\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ep27j\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ctt1k\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1imebhk\",\"data-framer-name\":\"Information\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xsnsa7\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yczdwh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlETTNNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"wght\" 370, \"slnt\" 0',\"--framer-letter-spacing\":\"0.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\",\"--framer-text-transform\":\"uppercase\"},children:\"September 10 - 12\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlETTNNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"17px\",\"--framer-font-variation-axes\":'\"wght\" 370, \"slnt\" 0',\"--framer-letter-spacing\":\"0.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\",\"--framer-text-transform\":\"uppercase\"},children:\"September 10 - 12\"})}),className:\"framer-1t711kv\",\"data-framer-appear-id\":\"1t711kv\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e4qa06\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1svs0yt\",\"data-framer-appear-id\":\"1svs0yt\",initial:animation3,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlETTNNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"wght\" 370, \"slnt\" 0',\"--framer-letter-spacing\":\"0.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\",\"--framer-text-transform\":\"uppercase\"},children:\"Berlin & Online\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlETTNNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"17px\",\"--framer-font-variation-axes\":'\"wght\" 370, \"slnt\" 0',\"--framer-letter-spacing\":\"0.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, rgb(135, 211, 191))\",\"--framer-text-transform\":\"uppercase\"},children:\"Berlin & Online\"})}),className:\"framer-rump0o\",\"data-framer-appear-id\":\"rump0o\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p6amky\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{viewBox:\"0 0 660.4587718317629 208\"},HegDjfVJV:{viewBox:\"0 0 660.4587718317629 208\"}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdPQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-variation-axes\":'\"wght\" 608, \"slnt\" 0',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-96b337ef-03b0-4997-a8f9-18c71ef37c79, rgb(237, 237, 237))\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"115.29239439209569px\"},children:\"Hatch \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEY3dNQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-size\":\"115.29239439209569px\",\"--framer-font-variation-axes\":'\"wght\" 700, \"slnt\" 0'},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"115.29239439209569px\"},children:\"Conference\"})]})}),className:\"framer-1igaohe\",\"data-framer-appear-id\":\"1igaohe\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],initial:animation1,optimized:true,verticalAlignment:\"top\",viewBox:\"0 0 660 208\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-6j3hu9\",\"data-styles-preset\":\"mu13pzD9K\",children:\"The event where experienced UX & Design Professionals in Europe meet to learn, get inspired and connect. Tickets on sale.\"})}),className:\"framer-1gu8fyr\",\"data-framer-appear-id\":\"1gu8fyr\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5udnr8\",\"data-framer-name\":\"CTAs\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vJNiMyfq7\"},implicitPathVariables:undefined},{href:{webPageId:\"vJNiMyfq7\"},implicitPathVariables:undefined},{href:{webPageId:\"vJNiMyfq7\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1o9kfpz-container\",\"data-framer-appear-id\":\"1o9kfpz\",initial:animation1,nodeId:\"ktnYKPmK0\",optimized:true,rendersWithMotion:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{jpvq200N5:resolvedLinks[1]},HegDjfVJV:{jpvq200N5:resolvedLinks[2],style:{width:\"100%\"},variant:\"p0Z6mj0ZR\"}},children:/*#__PURE__*/_jsx(ButtonButton,{c3KVgZNDp:\"rgb(255, 255, 255)\",height:\"100%\",HNvtcQ6hq:\"Apply for an Invite\",id:\"ktnYKPmK0\",ircBUxoIe:false,Joj899VfW:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\",jpvq200N5:resolvedLinks[0],layoutId:\"ktnYKPmK0\",pRq7qWjm7:\"rgba(0, 0, 0, 0)\",qrVAq1cgJ:{borderColor:'var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134)) /* {\"name\":\"Primary\"} */',borderStyle:\"solid\",borderWidth:1},rgPUohYGe:\"var(--token-897b9dd4-2da8-4e8f-9c27-ef6bea2f68b7, rgb(25, 25, 25))\",sYRcPMM6U:\"ajPI4T54p\",tsbFbKFtU:{borderColor:\"rgba(237, 237, 237, 0.77)\",borderStyle:\"solid\",borderWidth:1},Usk3nuA8o:\"rgb(237, 237, 237)\",variant:\"fFpTpMIvi\",width:\"100%\",yMfgLfwpW:false})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hzywcf-container\",nodeId:\"GvtIDUnoA\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"oLJwuwtwl\"}},children:/*#__PURE__*/_jsx(ButtonButton,{c3KVgZNDp:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\",height:\"100%\",HNvtcQ6hq:\"Get Tickets\",id:\"GvtIDUnoA\",ircBUxoIe:true,Joj899VfW:\"var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28))\",jpvq200N5:\"https://tickets.hatchconference.com\",layoutId:\"GvtIDUnoA\",pRq7qWjm7:\"rgba(28, 28, 28, 0.49)\",qrVAq1cgJ:{borderColor:'var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134)) /* {\"name\":\"Primary\"} */',borderStyle:\"solid\",borderWidth:1},rgPUohYGe:\"var(--token-897b9dd4-2da8-4e8f-9c27-ef6bea2f68b7, rgb(25, 25, 25))\",sYRcPMM6U:\"ajPI4T54p\",tsbFbKFtU:{borderColor:\"rgba(237, 237, 237, 0.77)\",borderStyle:\"solid\",borderWidth:1},Usk3nuA8o:\"rgb(237, 237, 237)\",variant:\"nkgIb3OgW\",width:\"100%\",yMfgLfwpW:false})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1140px) - 40px) * 0.8)`},HegDjfVJV:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1140px) - 30px, 1140px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:101,width:`min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1140px) - 40px) * 0.6, 1140px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p4vxu4-container\",nodeId:\"tJYFSdXYm\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(ReviewSpinner,{height:\"100%\",id:\"tJYFSdXYm\",layoutId:\"tJYFSdXYm\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1peka4z\",\"data-framer-name\":\"Sponsor Logos\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1lu78dc\",\"data-framer-appear-id\":\"1lu78dc\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.usertesting.com\",motionChild:true,nodeId:\"yO9pNvDSx\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18j6fju framer-1af9asj\",whileHover:animation9,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-eh3fm7\",\"data-framer-name\":\"Ut white\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:170,svg:'<svg width=\"170\" height=\"44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M74.042 6.927v22.215a6.74 6.74 0 0 1-6.737 6.737H60.05l2.389 7.931-11.876-7.93H6.737A6.741 6.741 0 0 1 0 29.141V6.927A6.74 6.74 0 0 1 6.737.19h60.568a6.741 6.741 0 0 1 6.737 6.737ZM14.186 23.924a3.558 3.558 0 0 1-1.399-1.404c-.349-.616-.523-1.354-.523-2.214v-9.982c0-.154-.034-.272-.103-.352-.07-.081-.185-.122-.347-.122H9.26a.387.387 0 0 0-.305.14.494.494 0 0 0-.12.335v9.933c-.001 1.59.325 2.923.978 4 .653 1.078 1.53 1.88 2.634 2.407 1.103.527 2.331.79 3.686.79 1.362 0 2.592-.257 3.691-.772 1.099-.514 1.974-1.308 2.627-2.382.653-1.074.98-2.41.98-4.006v-9.958a.487.487 0 0 0-.134-.347.48.48 0 0 0-.365-.14h-2.433a.476.476 0 0 0-.353.134.477.477 0 0 0-.133.353v9.97c0 .803-.173 1.516-.518 2.14a3.68 3.68 0 0 1-1.404 1.447c-.593.34-1.245.51-1.959.51s-1.363-.16-1.946-.48Zm11.576.536a.598.598 0 0 1-.043-.22c0-.145.07-.284.207-.414l1.494-1.132a.373.373 0 0 1 .255-.097c.153 0 .295.09.425.268.372.527.779.945 1.22 1.253.442.308.986.463 1.634.463a3.455 3.455 0 0 0 1.184-.213c.393-.142.715-.345.966-.609s.377-.562.376-.895c0-.34-.073-.607-.218-.797a1.375 1.375 0 0 0-.596-.439c-.25-.101-.64-.23-1.165-.384a15.07 15.07 0 0 1-.814-.232c-1.061-.324-1.918-.694-2.57-1.108-.651-.414-1.137-.915-1.457-1.503-.32-.589-.48-1.301-.48-2.137 0-.674.211-1.336.632-1.985.421-.65 1.022-1.18 1.804-1.59.781-.41 1.682-.614 2.702-.614 1.1 0 2.046.227 2.836.682a6.755 6.755 0 0 1 1.962 1.668c.12.162.181.292.181.39 0 .113-.077.23-.23.353l-1.385 1.144c-.121.098-.227.146-.316.146-.114 0-.235-.077-.364-.231-.357-.414-.733-.724-1.13-.931-.396-.208-.886-.311-1.47-.311-.615 0-1.095.13-1.439.39-.344.26-.516.597-.516 1.01 0 .317.093.571.28.762.185.19.436.347.752.469.316.121.798.271 1.446.45l.4.11c.147.04.305.09.474.146 1.328.398 2.316 1.007 2.965 1.826.648.82.972 1.746.972 2.777 0 .966-.266 1.792-.796 2.478a4.84 4.84 0 0 1-2.065 1.54 7.04 7.04 0 0 1-2.654.512c-1.166 0-2.206-.243-3.121-.73a5.832 5.832 0 0 1-2.198-2.01 1.361 1.361 0 0 1-.14-.255Zm24.894-1.325a.317.317 0 0 0-.28-.145.555.555 0 0 0-.316.11l-.352.267a8.497 8.497 0 0 1-.856.59c-.256.15-.581.28-.978.39a5.41 5.41 0 0 1-1.41.163 4.526 4.526 0 0 1-1.974-.438 4.361 4.361 0 0 1-1.548-1.228 4.54 4.54 0 0 1-.875-1.838h10.447c.316 0 .549-.018.699-.055.15-.034.269-.137.358-.308.09-.17.134-.447.134-.828 0-1.679-.37-3.096-1.112-4.252-.741-1.155-1.676-2.015-2.806-2.579-1.13-.564-2.274-.846-3.432-.846-1.425 0-2.713.345-3.863 1.034a7.387 7.387 0 0 0-2.703 2.792c-.651 1.173-.977 2.456-.977 3.851 0 1.371.35 2.643 1.05 3.814a7.867 7.867 0 0 0 2.813 2.792 7.317 7.317 0 0 0 3.766 1.034c.988 0 1.913-.168 2.775-.505.863-.337 1.727-.886 2.594-1.649.12-.114.181-.231.181-.353a.571.571 0 0 0-.145-.353l-1.19-1.46Zm-7.526-6.569c.4-.48.895-.873 1.452-1.156a3.915 3.915 0 0 1 1.797-.426c.948 0 1.788.295 2.52.883.733.588 1.274 1.364 1.623 2.33H42.2a5.173 5.173 0 0 1 .93-1.631Zm13.77-4.3h1.682c.202 0 .363.033.481.098.119.065.198.215.237.45l.232 1.279a4.177 4.177 0 0 1 1.504-1.473 4.032 4.032 0 0 1 2.028-.524c.796 0 1.535.177 2.217.53.683.353 1.247.72 1.694 1.102.178.17.267.328.268.474a.54.54 0 0 1-.135.329l-1.096 1.546c-.089.13-.195.195-.317.195-.105 0-.227-.049-.365-.146a7.238 7.238 0 0 0-1.243-.682 3.531 3.531 0 0 0-1.388-.268 2.897 2.897 0 0 0-1.42.366c-.441.243-.803.616-1.083 1.12-.28.503-.42 1.123-.42 1.862v8.169c.008.325-.15.487-.476.487h-2.4c-.308 0-.462-.162-.462-.487V12.767c0-.334.155-.5.463-.5ZM90.839 9.85H78.34c-.308 0-.462.155-.462.463v2.199c0 .316.154.474.462.474h4.467v13.732c0 .308.154.462.462.462h2.507c.308 0 .462-.154.462-.462V12.985h4.6c.3 0 .45-.157.45-.473v-2.2c0-.308-.15-.462-.45-.462Zm11.587 13.14a.32.32 0 0 1 .28.147l1.192 1.46a.57.57 0 0 1 .145.352c0 .122-.06.24-.181.353-.868.763-1.734 1.312-2.598 1.649a7.564 7.564 0 0 1-2.78.504 7.337 7.337 0 0 1-3.772-1.034 7.87 7.87 0 0 1-2.816-2.792 7.289 7.289 0 0 1-1.052-3.815c0-1.394.326-2.678.98-3.85a7.391 7.391 0 0 1 2.706-2.792c1.151-.69 2.44-1.034 3.868-1.035 1.16 0 2.305.282 3.437.846 1.131.564 2.068 1.424 2.81 2.58.742 1.155 1.113 2.573 1.113 4.251 0 .382-.044.658-.133.829-.089.17-.209.274-.359.31-.151.037-.384.055-.7.055H94.103c.162.697.454 1.31.876 1.838.416.523.947.943 1.55 1.228a4.527 4.527 0 0 0 1.978.438c.543 0 1.014-.055 1.41-.164.398-.11.725-.239.98-.39a8.46 8.46 0 0 0 .858-.59l.353-.267a.554.554 0 0 1 .317-.11Zm-5.803-7.579a4.61 4.61 0 0 0-1.454 1.156 5.178 5.178 0 0 0-.93 1.63h8.333c-.349-.965-.89-1.742-1.624-2.33a3.92 3.92 0 0 0-2.525-.883 3.928 3.928 0 0 0-1.8.426v.001Zm10.131 8.829c0 .075.014.149.042.219.038.09.085.176.141.256a5.825 5.825 0 0 0 2.198 2.01c.915.486 1.955.73 3.122.73a7.034 7.034 0 0 0 2.653-.512 4.836 4.836 0 0 0 2.064-1.54c.531-.686.796-1.512.796-2.478a4.348 4.348 0 0 0-.971-2.776c-.649-.82-1.637-1.43-2.964-1.827a9.711 9.711 0 0 0-.474-.146l-.401-.11a16.373 16.373 0 0 1-1.445-.45 2.082 2.082 0 0 1-.753-.47c-.187-.19-.28-.444-.28-.76 0-.414.173-.751.516-1.011.345-.26.825-.39 1.44-.39.582 0 1.072.103 1.469.31.396.207.772.518 1.128.932.13.154.251.231.365.231.089 0 .195-.049.316-.146l1.385-1.145c.154-.121.23-.24.23-.353 0-.098-.06-.228-.181-.39a6.761 6.761 0 0 0-1.962-1.667c-.79-.455-1.735-.683-2.836-.683-1.02 0-1.921.205-2.702.615-.781.41-1.383.94-1.804 1.59-.42.649-.631 1.31-.631 1.984 0 .837.16 1.549.48 2.137.32.588.806 1.09 1.457 1.503.652.414 1.508.784 2.569 1.109.462.138.733.215.814.231.527.155.915.283 1.166.384.25.102.449.248.595.439.146.19.218.457.218.797.001.333-.125.631-.376.895a2.461 2.461 0 0 1-.965.61c-.38.139-.781.211-1.185.212-.647 0-1.191-.154-1.633-.462-.442-.309-.849-.726-1.22-1.254-.13-.179-.272-.268-.426-.268a.373.373 0 0 0-.255.097l-1.494 1.133c-.137.13-.206.268-.206.414Zm19.023-11.858c.333 0 .499.17.5.51v1.932a.467.467 0 0 1-.16.377.573.573 0 0 1-.389.133h-1.681V22.6c0 .527.093.946.28 1.258.186.312.516.48.987.504l.377.024c.268.017.435.088.499.213a.91.91 0 0 1 .099.431v1.652c0 .39-.301.584-.902.584-.91 0-1.72-.174-2.431-.523a3.922 3.922 0 0 1-1.663-1.5c-.398-.652-.598-1.416-.598-2.29v-7.618h-1.352a.532.532 0 0 1-.353-.133.464.464 0 0 1-.158-.377v-1.896c0-.178.05-.314.151-.407a.518.518 0 0 1 .36-.14h1.352v-2.44c0-.171.033-.294.098-.371.065-.077.191-.14.378-.189l2.388-.693a.67.67 0 0 1 .134-.024.289.289 0 0 1 .262.146.698.698 0 0 1 .092.377v3.195h1.73Zm5.717-5.434h-2.021c-.485 0-.727.247-.727.741V9.73c0 .438.242.657.727.657h2.021c.226 0 .394-.05.503-.146.109-.097.164-.267.164-.51V7.688c0-.494-.223-.74-.667-.74Zm-2.19 5.335a.47.47 0 0 0-.328.12c-.089.082-.133.2-.133.353v13.95c0 .316.153.474.459.474h2.471c.298 0 .448-.158.448-.474v-13.95a.488.488 0 0 0-.121-.346.43.43 0 0 0-.327-.127h-2.469Zm8.699 14.763a.823.823 0 0 1-.468.133h-2.149c-.332 0-.498-.166-.498-.498V12.767c0-.332.166-.499.498-.499h1.58a.65.65 0 0 1 .437.17.8.8 0 0 1 .255.426l.195 1.679c.558-.803 1.244-1.4 2.057-1.794a5.861 5.861 0 0 1 2.582-.59c.898 0 1.775.227 2.629.681.854.454 1.558 1.156 2.113 2.104.554.949.831 2.12.831 3.515v8.234c0 .324-.154.486-.461.486h-2.345c-.331 0-.498-.162-.498-.486v-8.124c0-.56-.142-1.093-.424-1.6a3.3 3.3 0 0 0-1.167-1.216 3.083 3.083 0 0 0-1.651-.456 3.23 3.23 0 0 0-1.561.42c-.514.28-.935.68-1.263 1.204-.328.523-.491 1.125-.491 1.806v7.954a.416.416 0 0 1-.201.364Zm23.586 4.233c1.135-.6 2.024-1.495 2.668-2.684.645-1.189.968-2.64.968-4.352V12.778c0-.341-.147-.512-.438-.512h-1.884c-.187 0-.321.045-.401.134-.082.09-.139.243-.171.462l-.207 1.376c-1.32-1.428-2.914-2.142-4.777-2.142a6.81 6.81 0 0 0-3.628 1.04 7.829 7.829 0 0 0-2.711 2.788 7.379 7.379 0 0 0-1.016 3.78c0 1.436.338 2.724 1.016 3.864a7.212 7.212 0 0 0 2.704 2.66 7.3 7.3 0 0 0 3.635.95c.965 0 1.81-.173 2.535-.518.724-.345 1.42-.866 2.084-1.564v.049c0 .787-.172 1.489-.517 2.106a3.68 3.68 0 0 1-1.44 1.442c-.616.345-1.313.517-2.091.517-1.54 0-2.82-.357-3.841-1.07a.753.753 0 0 0-.414-.147c-.17 0-.308.08-.413.243l-.973 1.412c-.097.146-.145.26-.145.34 0 .114.069.228.206.342.68.576 1.497 1.028 2.449 1.357a8.803 8.803 0 0 0 2.888.492c1.475 0 2.78-.3 3.914-.9Zm-1.677-15.538c.672.417 1.201.98 1.586 1.685.385.706.577 1.477.577 2.313 0 .836-.187 1.609-.565 2.319a4.343 4.343 0 0 1-1.561 1.686c-.666.414-1.41.62-2.237.62a4.541 4.541 0 0 1-2.28-.583 4.22 4.22 0 0 1-1.616-1.631c-.394-.698-.59-1.493-.59-2.386 0-.844.186-1.621.559-2.331a4.329 4.329 0 0 1 1.563-1.692c.668-.418 1.436-.627 2.303-.627.835 0 1.588.209 2.261.627Zm8.324-3.455c-.933 0-1.705.754-1.705 1.706 0 .933.772 1.705 1.705 1.705a1.705 1.705 0 1 0 0-3.41Zm0 3.051c-.716 0-1.327-.61-1.327-1.345 0-.736.611-1.346 1.327-1.346a1.34 1.34 0 0 1 1.328 1.345c0 .736-.61 1.346-1.328 1.346Zm-.62-2.288a.05.05 0 0 0-.038.015.06.06 0 0 0-.01.035v1.762c0 .033.014.05.048.05h.267c.033 0 .049-.017.049-.05v-.595h.382l.299.601a.09.09 0 0 0 .025.035.027.027 0 0 0 .014.007.073.073 0 0 0 .018.002h.324c.012 0 .021-.004.026-.01a.032.032 0 0 0 .011-.025.06.06 0 0 0-.004-.019l-.342-.678a.64.64 0 0 0 .23-.222.554.554 0 0 0 .087-.296.604.604 0 0 0-.076-.301.646.646 0 0 0-.212-.226.567.567 0 0 0-.302-.085h-.796Zm.706.898h-.39v-.587h.39c.058 0 .111.013.155.04a.287.287 0 0 1 .11.107c.028.046.04.094.04.147a.271.271 0 0 1-.04.148.312.312 0 0 1-.11.105.293.293 0 0 1-.155.04Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ngs33 hidden-138ny25\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com\",motionChild:true,nodeId:\"rKGlPq7In\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation10,className:\"framer-us3n7 framer-1af9asj\",\"data-framer-appear-id\":\"us3n7\",initial:animation1,optimized:true,whileHover:animation9,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lbvxlg\",\"data-framer-name\":\"Framer white\",fill:\"black\",intrinsicHeight:36,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.94 11.96h11.55l11.813 11.814H12.49v11.814L.94 23.774V11.96ZM.94.412h23.362V11.96H12.49L.94.412Zm45.463 24.955V7.912h10.752v3.518H50.45v4.579h6.704v3.451H50.45v5.907h-4.048Zm13.141 0v-12.08h4.048v2.722c.067-.863.465-1.593 1.062-2.19.597-.531 1.394-.797 2.19-.797.531 0 .797.266 1.062.266v3.517h-1.062c-.929-.132-1.858.332-2.455 1.062-.531.531-.797 1.593-.797 2.92v4.58h-4.048Zm15.862-2.655c.863.133 1.725-.332 2.124-1.062a3.13 3.13 0 0 0 .796-2.123c0-.863-.265-1.726-.796-2.39-.531-.597-1.328-.863-2.124-.796-.797 0-1.593.265-2.19.796-.531.664-.863 1.527-.797 2.39 0 .796.266 1.592.797 2.123a2.8 2.8 0 0 0 2.19 1.062Zm-1.062 3.186a5.87 5.87 0 0 1-4.314-1.858 7.422 7.422 0 0 1-1.327-4.58c0-1.062.199-2.19.53-3.186.465-.995 1.262-1.792 2.124-2.455.863-.531 1.925-.797 2.987-.797.796.067 1.66.2 2.39.531.663.332 1.128.93 1.327 1.593v-1.925h4.048v12.08h-4.048v-1.593c-.332.597-.797 1.128-1.328 1.593-.73.398-1.526.53-2.389.597Zm10.752-.531v-12.08h3.783v1.925c.265-.796.796-1.061 1.327-1.592.664-.332 1.394-.465 2.19-.531 1.858 0 3.252.796 3.783 2.19l1.593-1.593c.796-.332 1.593-.464 2.456-.53 2.92 0 4.314 1.592 4.314 4.844v7.5h-3.783v-6.836c0-.664-.2-1.328-.531-1.859-.399-.331-.863-.53-1.394-.53a1.677 1.677 0 0 0-1.593.796c-.398.663-.597 1.394-.53 2.124v6.172h-3.784v-6.703c0-.664-.199-1.328-.53-1.859-.333-.331-.864-.53-1.328-.53-.597.066-1.195.331-1.593.796-.398.663-.597 1.394-.531 2.124v6.172h-3.85Zm25.286-7.234h5.11c0-.664-.199-1.328-.531-1.858-.531-.531-1.061-.531-1.858-.531-.73 0-1.46.199-2.124.53a3.105 3.105 0 0 0-.597 1.859Zm8.827.53v1.859h-8.893c0 .73.265 1.394.796 1.858a2.668 2.668 0 0 0 1.858.531c1.328 0 1.859-.265 2.39-1.062h3.783a4.396 4.396 0 0 1-2.124 2.92c-1.261.664-2.655 1.063-4.049 1.063-2.123 0-3.783-.531-4.845-1.859-1.194-1.194-1.924-2.854-1.924-4.58 0-1.791.663-3.517 1.924-4.844 1.062-1.062 2.655-1.593 4.845-1.593 1.66-.066 3.319.531 4.58 1.593 1.128 1.128 1.725 2.588 1.659 4.115Zm2.19 6.704v-12.08h3.783v2.722c.266-.796.73-1.527 1.328-2.19a3.129 3.129 0 0 1 2.123-.797c.266 0 .797.266 1.062.266v3.517h-1.327c-.863-.066-1.659.399-2.124 1.062-.796.531-1.062 1.593-1.062 2.92v4.58h-3.783Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.mews.com\",motionChild:true,nodeId:\"nwROPHj1j\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation11,className:\"framer-17p4kgl framer-1af9asj\",\"data-framer-appear-id\":\"17p4kgl\",initial:animation1,optimized:true,whileHover:animation9,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-q51mbu\",\"data-framer-name\":\"Mews white\",fill:\"black\",intrinsicHeight:16,intrinsicWidth:118,svg:'<svg width=\"118\" height=\"16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M117.065 9.653c-.409-2.7-3.644-2.86-5.785-2.968 0 0-8.836-.238-9.768-.28-.821-.034-1.774-.193-1.868-1.108-.097-.957.767-1.4 1.55-1.567 1.57-.332 3.138-.36 4.695-.36 3.42 0 6.567.375 9.89.982l.363-2.663v-.02c-2.504-.462-5.971-1.012-9.668-1.012a37.41 37.41 0 0 0-4.842.292c-1.75.23-3.665.631-4.605 1.86-.798 1.046-.88 2.81-.396 4.015.832 2.07 3.775 2.15 5.61 2.233 0 0 8.889.258 9.83.295.82.036 1.775.2 1.868 1.142.084.843-.478 1.451-1.638 1.693-1.516.316-3.116.359-4.671.359-3.779 0-7.117-.395-10.954-.99l-.314 2.69c3.52.708 7.1 1.075 10.69 1.098h.053c1.629 0 3.273 0 4.89-.232 1.421-.206 2.92-.516 4.043-1.493 1.122-.977 1.231-2.617 1.027-3.966Zm-103.78 2.074L4.448.756H.695V15.25h3.32V5.201l7.361 9.134c1.034 1.29 2.788 1.29 3.831 0l7.356-9.133V15.25h3.318V.756h-3.759l-8.837 10.971ZM53.643.756H34.34v14.495h19.464l.488-2.931H37.66V9.47h15.324V6.537H37.66v-2.85h15.983V.756ZM85.68 15.247 91.725.757H88.3l-4.634 11.095-5.461-9.776a2.75 2.75 0 0 0-3.763-1.009 2.75 2.75 0 0 0-1.008 1.009l-5.462 9.772L63.335.756h-3.422l6.053 14.491h3.522l6.329-11.433 6.329 11.433h3.533Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://en.zalando.de/fashion-trends/\",motionChild:true,nodeId:\"o4SbSFJrE\",openInNewTab:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation12,className:\"framer-131gani framer-1af9asj\",\"data-framer-appear-id\":\"131gani\",initial:animation1,optimized:true,whileHover:animation9,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d0j4t0\",\"data-framer-name\":\"Zalando Wordmark_White_RGB\",fill:\"black\",intrinsicHeight:103,intrinsicWidth:544,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 544 103.2\"><path d=\"m0 85.92 53.76-52.16H1.44V20.48h73.12v15.2L20.8 87.84h55.04v13.28H0v-15.2Zm78.4-6.72c0-17.92 15.36-22.88 28.96-24.64l25.28-3.2c6.08-.8 7.84-3.52 7.84-7.2V44c0-7.2-6.24-12.48-19.84-12.48s-20.48 4.96-21.76 13.28H81.92c1.92-16.32 16.16-26.4 39.2-26.4 25.76 0 36.32 10.88 36.32 28.8v53.92h-16.16v-12.8c-6.88 9.92-19.2 14.88-33.12 14.88-18.4 0-29.76-9.28-29.76-24Zm62.08-14.56V60.8c-2.72 1.12-5.76 1.76-9.12 2.24l-20.16 2.72C100.8 67.2 96 71.04 96 78.08c0 7.52 6.4 12 16.8 12 17.12 0 27.68-11.68 27.68-25.44ZM164.96 0h16.96v101.12h-16.96V0Zm22.56 79.2c0-17.92 15.36-22.88 28.96-24.64l25.28-3.2c6.08-.8 7.84-3.52 7.84-7.2V44c0-7.2-6.24-12.48-19.84-12.48S209.28 36.48 208 44.8h-16.96c1.92-16.32 16.16-26.4 39.2-26.4 25.76 0 36.32 10.88 36.32 28.8v53.92H250.4v-12.8c-6.88 9.92-19.2 14.88-33.12 14.88-18.4 0-29.76-9.28-29.76-24Zm62.08-14.56V60.8c-2.72 1.12-5.76 1.76-9.12 2.24l-20.16 2.72c-10.4 1.44-15.2 5.28-15.2 12.32 0 7.52 6.4 12 16.8 12 17.12 0 27.68-11.68 27.68-25.44Zm24.48-44.16h16.96V33.6c6.08-9.6 17.6-15.2 31.68-15.2 21.12 0 33.6 12.16 33.6 34.56v48.16h-16.96V55.36c0-14.88-7.84-23.04-22.24-23.04-15.52 0-26.08 10.4-26.08 25.12v43.68h-16.96V20.48Zm87.84 40c0-26.08 18.08-42.08 39.68-42.08 12.96 0 24.16 4.64 30.88 14.24V0h16.96v101.12h-16.96V88.8c-7.36 9.92-17.92 14.4-30.88 14.4-21.6 0-39.68-16.32-39.68-42.72Zm71.04.16c0-16.8-9.92-28.48-26.72-28.48s-26.72 11.52-26.72 28.32 10.08 28.96 26.72 28.96 26.72-12 26.72-28.8Zm22.08 0c0-24.8 16.8-42.24 44.48-42.24S544 35.84 544 60.64s-16.64 42.56-44.48 42.56-44.48-17.76-44.48-42.56Zm71.36 0c0-15.68-8.64-28.48-26.88-28.48s-26.88 12.8-26.88 28.48 8.64 28.8 26.88 28.8 26.88-12.96 26.88-28.8Z\" style=\"fill:#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.hellofreshgroup.com\",motionChild:true,nodeId:\"gvAoSRz_d\",openInNewTab:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation13,className:\"framer-1msssm9 framer-1af9asj\",\"data-framer-appear-id\":\"1msssm9\",initial:animation1,optimized:true,whileHover:animation9,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-npmrbb\",\"data-framer-name\":\"HF_group_logo_white\",fill:\"black\",intrinsicHeight:680,intrinsicWidth:1608,svg:'<svg width=\"1608\" height=\"680\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M550.8 457.261c0-25.7 17.6-44 42.6-44 17.2 0 31.8 10.7 36.4 25.8l-13.4 3.4c-3.2-9.7-12.5-16.6-23.1-16.6-16.5 0-28.2 13-28.2 31.4s12.5 31.6 30.1 31.6c15.8 0 28-11.1 28.3-26.2h-31.8v-10.3h46v45.9h-11.1l-1.4-15.6h-.1c-6.3 11.5-18.2 18.4-32.8 18.4-24.3 0-41.5-18.2-41.5-43.8Zm118.7 41v-82.2h38.7c18.1 0 30.3 9.9 30.3 24.3 0 11.6-8.4 20.1-20.8 22.5 2.6 15.5 7.8 22.1 19.7 22.7v12.6c-18.8.6-29.1-9.4-33.4-32.9h-20.2v32.9h-14.3v.1Zm14.3-43.9h23.1c10.2 0 17-5.3 17-13.3 0-7.9-6.8-13.4-17-13.4h-23.1v26.7Zm83.9 2.9c0-26.5 17.6-44 44.7-44s44.9 17.5 44.9 44-17.7 43.9-44.9 43.9c-27.1 0-44.7-17.4-44.7-43.9Zm75.1 0c0-18.9-12.1-31.4-30.4-31.4-18.3 0-30.4 12.5-30.4 31.4s12.1 31.4 30.4 31.4c18.3 0 30.4-12.5 30.4-31.4Zm45.3 9.9v-51h14.5v50.8c0 12.2 7.9 21.8 20.5 21.8 12.5 0 20.5-8.8 20.5-21.8v-50.8h14.5v51c0 20.6-13.8 34.1-35 34.1-21.3-.1-35-13.5-35-34.1Zm102.8 31.1v-82.2h36.1c18.3 0 30.7 10.7 30.7 26.1 0 15.4-12.5 26-30.8 26h-21.7v30.1h-14.3Zm14.2-41.6h20.3c10.6 0 17.9-5.9 17.9-14.5s-7.2-14.6-17.9-14.6h-20.3v29.1ZM341 269.561h61.9v-29.1H341v-25.7h69.5v-30.9H306v146.1h106.4v-30.8H341v-29.6Zm754.8 0h61.9v-29.1h-61.9v-25.7h69.6v-30.9h-104.6v146.1h106.5v-30.8h-71.5v-29.6Zm-632.9-85.7h-36.6v146.1h97.5v-31.6h-60.9v-114.5Zm109.5 0h-36.6v146.1h97.5v-31.6h-60.9v-114.5Zm139.4-4.7c-47.3 0-79 31.3-79 77.9 0 46.5 31.8 77.7 79 77.7 47.4 0 79.2-31.2 79.2-77.7 0-46.6-31.8-77.9-79.2-77.9Zm0 125c-27 0-44.4-18.5-44.4-47.1s17.4-47.1 44.4-47.1 44.4 18.5 44.4 47.1-17.4 47.1-44.4 47.1Zm183.2-59h-51.4v-29.5h62.8v-31.8h-99.6v146.1h36.8v-55.5H895v-29.3Zm388 1.2c-6.6-2.5-19.3-5.1-30.5-7.3-6.6-1.3-12-2.4-16.2-3.5-5-1.3-10.7-3.4-13.9-7.7-4.2-5.6-2.1-14.1 3-18.5 5.1-4.3 12.1-5.2 18.5-5 12.8.4 22.3 6.6 25.7 16.7l27.1-14.4c-5.1-9.8-13.7-17.4-25.6-22.6-25.8-10.7-64-8.1-80.8 14.8-10.3 14-12.7 34.5-1.9 49.1 11 14.9 30.7 17.8 47.6 21.3.6.1 1.2.2 1.8.4 7 1.5 13.6 2.8 18.2 4.1 7.6 2.4 16.1 6.4 15.6 16.2-1 14-18.6 16.9-28.8 16.4-13-.5-23.3-4.9-29.6-12.9-2-2.6-3.5-5.5-4.5-8.6l-30 15.9c12.5 23.7 41.9 31.9 65.5 31.8h1.9c31.3 0 62.8-16 63.7-47.3.4-11-2-19.7-7.2-25.7-5.5-6.3-12-10.7-19.6-13.2Zm-241 .6c5.7-12 4.1-29.6-3.8-40.9-10.1-14.6-28.6-22.7-52.3-22.7h-66.4v146.5H959v-52.8h12.3l.6 1.4c13 32.6 40.9 52.8 72.9 53.1v-33.9c-4.2-.5-8.1-1.4-11.6-2.9-15.1-6.2-21.5-20.8-22.2-22.4l-.9-2.2 2.3-.8c15.2-5.2 25-12.5 29.6-22.4Zm-36.5-11.1c-1.7 6.1-6.4 11.4-12.8 14.1-3.8 1.7-7.9 2.5-12.2 2.5H959v-42.9h21.7c8.7 0 17 3.8 21.7 10 3.5 4.9 4.7 10.7 3.1 16.3Zm-817.1-50.3h-34.3l-.1 144.7h34.3v-50.9h.7c12.2-.6 38.6-3.9 60.3-12l1.3-.5v63.4h34.3l.1-144.7h-34.3v48.6l-.5.2c-29 9.5-52.4 11.3-61 11.7h-.7l-.1-60.5Zm1169 60.4v-60.4h-34.3l-.1 144.7h34.3v-50.9h.7c12.2-.6 38.6-3.9 60.3-12l1.3-.5v63.4h34.3l.1-144.7h-34.3v48.6l-.5.2c-29 9.5-52.4 11.3-61 11.7l-.8-.1Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.accelevents.com\",motionChild:true,nodeId:\"U9_K6AgB3\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation14,className:\"framer-byzrzx framer-1af9asj\",\"data-framer-appear-id\":\"byzrzx\",initial:animation1,optimized:true,whileHover:animation9,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1k94kmj\",\"data-framer-name\":\"Group 395\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:96,intrinsicWidth:476,svg:'<svg width=\"476\" height=\"96\" viewBox=\"0 0 476 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_224_33)\">\\n<path d=\"M50.8 66.8999C57.6 61.7999 69.7 54.7999 84 63.1999C89.4 66.3999 93 69.7999 95.3 72.9999L95 72.4999C89.8 63.1999 66.4 23.2999 57.5 7.79988C47.4 -9.70012 39.6 7.69988 39.6 7.69988C39.6 7.69988 7.80001 63.2999 3.00001 71.9999C-1.79999 80.6999 0.500011 86.7999 0.500011 86.7999C3.10001 95.1999 13 96.3999 19.5 93.5999C24.8 91.2999 37.4 79.2999 44.8 72.2999C46.7 70.2999 48.7 68.4999 50.8 66.8999Z\" fill=\"white\"/>\\n<path d=\"M149.6 49.3999C149.6 46.3999 148.9 43.3999 147.3 40.6999C144.3 35.3999 138.6 32.1999 132.5 32.2999C126.4 32.0999 120.7 35.2999 117.7 40.5999C116.2 43.2999 115.4 46.2999 115.4 49.3999C115.3 52.3999 116.1 55.4999 117.5 58.1999C118.8 60.6999 120.7 62.7999 123.1 64.2999C128.1 67.2999 134.3 67.2999 139.3 64.3999C140.8 63.4999 142 62.2999 143.1 60.9999V63.2999C143.1 64.9999 144.5 66.2999 146.2 66.2999H146.4C148.1 66.2999 149.4 64.8999 149.4 63.1999L149.6 49.3999ZM142.1 55.1999C141.2 56.8999 139.9 58.3999 138.2 59.3999C136.5 60.3999 134.6 60.9999 132.6 60.9999C130.6 60.9999 128.7 60.4999 127 59.3999C125.3 58.3999 123.9 56.8999 123 55.1999C122 53.3999 121.5 51.2999 121.6 49.2999C121.5 47.1999 122 45.0999 123 43.2999C123.9 41.5999 125.3 40.0999 127 39.0999C130.5 37.0999 134.8 37.0999 138.2 39.0999C139.9 40.0999 141.2 41.5999 142.1 43.2999C143.9 46.9999 143.9 51.3999 142.1 55.1999Z\" fill=\"white\"/>\\n<path d=\"M171.5 66.5999C168.4 66.5999 165.4 65.8999 162.7 64.2999C160.2 62.7999 158.1 60.6999 156.6 58.1999C155.1 55.4999 154.3 52.4999 154.4 49.3999C154.3 46.2999 155.1 43.1999 156.6 40.4999C158 37.9999 160 35.8999 162.5 34.3999C165.1 32.8999 168.1 32.1999 171.2 32.2999C173.5 32.2999 175.8 32.7999 177.9 33.6999C180 34.6999 181.9 36.0999 183.3 37.8999C183.8 38.3999 184.1 39.1999 183.9 39.8999C183.7 40.6999 183.2 41.2999 182.5 41.6999C181.9 42.0999 181.2 42.2999 180.6 42.0999C179.9 41.8999 179.2 41.5999 178.7 40.9999C176.8 38.8999 174 37.6999 171.1 37.7999C169.1 37.6999 167.2 38.1999 165.5 39.1999C163.9 40.1999 162.6 41.5999 161.7 43.1999C160.7 45.0999 160.3 47.1999 160.3 49.2999C160.3 51.3999 160.8 53.3999 161.7 55.1999C163.7 58.6999 167.4 60.8999 171.4 60.7999C172.7 60.7999 174 60.5999 175.2 60.2999C176.3 59.8999 177.3 59.3999 178.2 58.6999C178.8 58.1999 179.5 57.8999 180.2 57.7999C180.9 57.6999 181.6 57.8999 182.1 58.3999C182.7 58.8999 183.2 59.5999 183.3 60.2999C183.4 60.9999 183.1 61.7999 182.5 62.2999C179.6 65.1999 175.6 66.6999 171.5 66.5999Z\" fill=\"white\"/>\\n<path d=\"M204.4 66.5999C201.3 66.5999 198.3 65.8999 195.6 64.2999C193.1 62.7999 191 60.6999 189.6 58.1999C188.1 55.4999 187.4 52.4999 187.4 49.3999C187.3 46.2999 188.1 43.1999 189.6 40.4999C191 37.9999 193 35.8999 195.5 34.3999C198.1 32.8999 201.1 32.1999 204.2 32.2999C206.5 32.2999 208.8 32.7999 210.9 33.6999C213 34.6999 214.9 36.0999 216.3 37.8999C216.8 38.3999 217.1 39.1999 216.9 39.8999C216.7 40.6999 216.2 41.2999 215.5 41.6999C215 42.0999 214.3 42.1999 213.6 41.9999C212.9 41.7999 212.2 41.4999 211.7 40.8999C209.8 38.7999 207 37.5999 204.1 37.6999C202.1 37.5999 200.2 38.0999 198.5 39.0999C196.9 40.0999 195.6 41.4999 194.7 43.0999C193.7 44.9999 193.2 47.0999 193.3 49.1999C193.3 51.2999 193.8 53.2999 194.7 55.0999C195.6 56.7999 196.9 58.1999 198.6 59.1999C200.3 60.1999 202.3 60.7999 204.3 60.6999C205.6 60.6999 206.9 60.4999 208.1 60.1999C209.2 59.7999 210.2 59.2999 211.1 58.5999C211.7 58.0999 212.4 57.7999 213.1 57.6999C213.8 57.5999 214.4 57.7999 215 58.2999C215.6 58.7999 216 59.4999 216.2 60.1999C216.3 60.8999 216 61.6999 215.5 62.1999C212.4 65.1999 208.4 66.6999 204.4 66.5999Z\" fill=\"white\"/>\\n<path d=\"M252.7 50.9C253.2 50.4 253.5 49.7 253.5 49C253.6 46 252.9 43.1 251.7 40.4C250.5 38 248.7 35.9 246.4 34.5C243.9 33 241 32.3 238.1 32.4C235.1 32.3 232.1 33.1 229.4 34.5C226.9 35.9 224.9 38 223.5 40.6C222 43.3 221.3 46.4 221.4 49.5C221.3 52.6 222.1 55.7 223.6 58.4C225.1 61 227.2 63.1 229.8 64.5C234.4 67 239.9 67.4 244.8 65.6C246.7 65 248.5 64.1 250 62.9C250.7 62.5 251 61.8 251 61C250.9 60.2 250.5 59.5 249.9 59C249.4 58.6 248.7 58.3 248 58.3C247.3 58.3 246.6 58.6 246 59C243.9 60.4 241.4 61.2 238.9 61.3C236.7 61.3 234.6 60.8 232.7 59.8C230.9 58.8 229.5 57.3 228.5 55.6C227.8 54.4 227.4 53.1 227.1 51.8H250.6C251.4 51.7 252.1 51.4 252.7 50.9ZM227.2 46.7C227.4 45.5 227.8 44.4 228.3 43.4C229.1 41.7 230.5 40.2 232.1 39.2C233.9 38.1 236 37.6 238.1 37.7C241.8 37.5 245.2 39.6 246.7 43C247.3 44.2 247.6 45.5 247.8 46.8L227.2 46.7Z\" fill=\"white\"/>\\n<path d=\"M269 66.2999C267.3 66.2999 265.6 65.7999 264.1 64.7999C262.7 63.7999 261.5 62.3999 260.8 60.6999C260 58.7999 259.6 56.7999 259.6 54.7999V21.0999C259.6 19.3999 260.9 17.9999 262.6 17.8999C264.2 17.8999 265.6 19.0999 265.8 20.6999V54.7999C265.7 56.0999 266 57.3999 266.7 58.5999C267.1 59.4999 267.9 59.9999 268.9 60.0999H270.4C271.2 60.0999 271.9 60.3999 272.4 60.9999C272.9 61.5999 273.2 62.3999 273.2 63.1999C273.2 64.0999 272.8 64.8999 272 65.3999C271.1 65.9999 270.1 66.2999 269 66.2999Z\" fill=\"white\"/>\\n<path d=\"M307.8 50.9C308.3 50.4 308.6 49.7 308.6 49C308.7 46 308 43.1 306.8 40.4C305.6 38 303.8 35.9 301.5 34.5C299 33 296.1 32.3 293.2 32.4C290.2 32.3 287.2 33.1 284.5 34.5C282 35.9 280 38 278.6 40.6C277.1 43.3 276.4 46.4 276.5 49.5C276.4 52.6 277.2 55.7 278.8 58.4C280.3 61 282.4 63.1 285.1 64.5C289.7 67 295.2 67.4 300.1 65.6C302 65 303.8 64.1 305.3 62.9C305.9 62.5 306.3 61.8 306.3 61C306.2 60.2 305.8 59.5 305.2 59C304.7 58.6 304 58.3 303.3 58.3C302.6 58.3 301.9 58.6 301.3 59C300.3 59.7 299.2 60.2 298.1 60.6C296.8 61.1 295.5 61.3 294.2 61.3C292 61.3 289.9 60.8 288 59.8C286.2 58.8 284.8 57.3 283.8 55.6C283.1 54.4 282.7 53.1 282.4 51.8H305.9C306.5 51.7 307.2 51.4 307.8 50.9ZM282.3 46.7C282.5 45.5 282.9 44.4 283.4 43.4C284.2 41.7 285.6 40.2 287.2 39.2C289 38.1 291.1 37.6 293.2 37.7C296.9 37.5 300.3 39.6 301.8 43C302.4 44.2 302.7 45.5 302.9 46.8L282.3 46.7Z\" fill=\"white\"/>\\n<path d=\"M343.4 36.5001L330.3 64.2001C329.9 65.4001 328.7 66.3001 327.4 66.3001C326.1 66.3001 324.9 65.5001 324.4 64.3001L311.3 36.5001C311 35.9001 310.9 35.1001 311.2 34.4001C311.5 33.7001 312.1 33.1001 312.8 32.8001C313.4 32.4001 314.2 32.4001 314.9 32.6001C315.6 32.8001 316.2 33.3001 316.5 34.0001L327.3 57.2001L338 34.1001C338.4 33.4001 339 32.9001 339.7 32.7001C340.5 32.5001 341.3 32.5001 342 32.9001C343.4 33.4001 344 35.0001 343.5 36.3001C343.4 36.4001 343.4 36.5001 343.4 36.5001Z\" fill=\"white\"/>\\n<path d=\"M378.9 50.8C379.4 50.3 379.7 49.6 379.7 48.9C379.8 45.9 379.1 43 377.9 40.3C376.7 37.9 374.9 35.9 372.6 34.5C370.1 33 367.2 32.3 364.3 32.4C361.3 32.3 358.3 33 355.6 34.5C353.1 35.9 351.1 38 349.7 40.6C348.2 43.3 347.5 46.4 347.6 49.5C347.5 52.6 348.3 55.7 349.9 58.4C351.4 61 353.6 63.1 356.2 64.5C360.9 67 366.3 67.4 371.3 65.6C373.2 65 375 64.1 376.5 62.9C377.1 62.5 377.5 61.8 377.5 61C377.4 60.2 377 59.5 376.4 59C375.9 58.5 375.2 58.3 374.5 58.3C373.8 58.3 373.1 58.6 372.5 59C371.5 59.7 370.4 60.3 369.3 60.7C368 61.2 366.7 61.4 365.4 61.4C363.2 61.5 361 60.9 359 59.8C357.2 58.8 355.8 57.3 354.8 55.6C354.1 54.4 353.7 53.1 353.4 51.7H377C377.6 51.7 378.4 51.4 378.9 50.8ZM353.4 46.7C353.6 45.6 354 44.4 354.5 43.4C355.3 41.7 356.7 40.2 358.3 39.2C360.1 38.1 362.2 37.6 364.3 37.7C368 37.5 371.4 39.6 372.9 43C373.5 44.2 373.8 45.5 374 46.8L353.4 46.7Z\" fill=\"white\"/>\\n<path d=\"M417.6 48.0001V63.2001C417.7 64.9001 416.3 66.3001 414.6 66.4001C414.5 66.4001 414.5 66.4001 414.4 66.4001C412.7 66.4001 411.3 65.1001 411.3 63.4001V48.0001C411.4 46.0001 410.9 44.0001 410 42.3001C409.2 40.9001 408 39.7001 406.5 39.0001C404.9 38.3001 403.2 37.9001 401.5 37.9001C399.9 37.9001 398.3 38.2001 396.8 39.0001C395.5 39.6001 394.3 40.6001 393.4 41.8001C392.6 42.9001 392.2 44.3001 392.2 45.7001V63.3001C392.2 64.1001 391.9 65.0001 391.3 65.6001C390 66.8001 388 66.8001 386.8 65.5001C386.3 65.0001 385.9 64.2001 385.9 63.5001V35.6001C385.9 34.7001 386.2 33.9001 386.8 33.3001C388.1 32.2001 390 32.2001 391.3 33.3001C391.9 33.9001 392.2 34.7001 392.2 35.6001V36.2001C393.1 35.3001 394.2 34.5001 395.4 33.9001C397.7 32.7001 400.2 32.1001 402.8 32.1001C405.5 32.1001 408.1 32.7001 410.4 33.9001C412.7 35.1001 414.5 37.0001 415.7 39.3001C417.1 42.0001 417.7 45.0001 417.6 48.0001Z\" fill=\"white\"/>\\n<path d=\"M443.3 63.1997C443.3 64.0997 443 64.8997 442.3 65.3997C441.6 65.9997 440.6 66.2997 439.7 66.2997H438.5C436.5 66.2997 434.6 65.7997 432.9 64.6997C431.2 63.5997 429.9 62.1997 429 60.3997C428 58.4997 427.6 56.3997 427.6 54.2997V38.9997H424.7C423.9 38.9997 423.2 38.7997 422.6 38.2997C422.1 37.7997 421.8 37.1997 421.8 36.4997C421.8 35.6997 422 34.9997 422.6 34.4997C423.2 33.9997 423.9 33.6997 424.7 33.7997H427.6V24.7997C427.6 23.0997 429 21.6997 430.7 21.6997C432.4 21.6997 433.8 23.0997 433.8 24.7997V33.7997H439C439.8 33.7997 440.5 33.9997 441.1 34.4997C441.7 34.9997 442 35.6997 441.9 36.4997C441.9 37.1997 441.6 37.8997 441.1 38.3997C440.5 38.8997 439.8 39.1997 439 39.0997H433.8V54.2997C433.8 55.7997 434.3 57.2997 435.2 58.4997C436 59.4997 437.2 60.1997 438.6 60.1997H440.7C441.4 60.1997 442.1 60.4997 442.6 61.0997C443.1 61.5997 443.3 62.3997 443.3 63.1997Z\" fill=\"white\"/>\\n<path d=\"M462.7 66.5999C460 66.5999 457.3 66.0999 454.7 65.1999C452.6 64.4999 450.6 63.3999 449 61.7999C448.4 61.1999 448.1 60.3999 448.2 59.5999C448.3 58.7999 448.7 57.9999 449.4 57.4999C450.1 56.8999 451 56.5999 451.9 56.6999C452.7 56.7999 453.4 57.1999 454 57.7999C455 58.7999 456.1 59.4999 457.4 59.9999C459 60.6999 460.8 60.9999 462.6 60.9999C464.5 61.0999 466.4 60.6999 468.1 59.7999C469.2 59.1999 470 58.0999 470 56.7999C470 55.4999 469.4 54.2999 468.2 53.5999C466.2 52.3999 463.9 51.6999 461.6 51.3999C457.4 50.5999 454.4 49.3999 452.5 47.7999C450.7 46.2999 449.7 44.0999 449.7 41.6999C449.6 39.7999 450.3 37.8999 451.6 36.4999C452.9 35.0999 454.5 33.9999 456.4 33.3999C458.4 32.6999 460.4 32.3999 462.5 32.3999C465 32.3999 467.4 32.7999 469.7 33.6999C471.6 34.3999 473.4 35.6999 474.7 37.2999C475.2 37.8999 475.5 38.5999 475.5 39.3999C475.4 40.0999 475 40.7999 474.4 41.1999C473.7 41.6999 472.9 41.7999 472.1 41.5999C471.2 41.4999 470.4 41.0999 469.8 40.4999C468.9 39.5999 467.7 38.8999 466.4 38.4999C465 38.0999 463.6 37.8999 462.2 37.8999C460.6 37.8999 459 38.1999 457.6 38.7999C456.5 39.1999 455.7 40.2999 455.7 41.4999C455.7 42.1999 455.9 42.8999 456.3 43.4999C456.9 44.2999 457.8 44.7999 458.7 45.0999C460.3 45.6999 462 46.1999 463.7 46.4999C466.2 46.8999 468.7 47.6999 471 48.7999C472.6 49.4999 473.9 50.6999 474.9 52.0999C475.7 53.3999 476.1 54.8999 476.1 56.3999C476.1 58.1999 475.6 59.9999 474.6 61.4999C473.5 63.0999 471.9 64.3999 470.1 65.0999C467.7 66.1999 465.2 66.6999 462.7 66.5999Z\" fill=\"white\"/>\\n<path d=\"M44.7998 72.3001C46.6998 70.3001 48.6998 68.5001 50.7998 66.9001C57.5998 61.8001 69.6998 54.8001 83.9998 63.2001C105.2 75.8001 98.5998 90.1001 91.3998 94.2001C84.1998 98.3001 70.8998 90.6001 62.2998 82.7001C53.6998 74.8001 49.0998 72.2001 44.7998 72.3001Z\" fill=\"url(#paint0_linear_224_33)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_224_33\" x1=\"49.8199\" y1=\"65.3907\" x2=\"99.1599\" y2=\"85.4007\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.3\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_224_33\">\\n<rect width=\"476\" height=\"95.4\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u2yt1w\",\"data-framer-name\":\"Dark Gradient\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ncut6q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gJIVPmjG1\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PixelTrail,{delay:1.2,height:\"100%\",id:\"gJIVPmjG1\",layoutId:\"gJIVPmjG1\",mode:\"trail\",style:{height:\"100%\",width:\"100%\"},tileSize:73,trailColor:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\",transition:{delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"},trigger:\"hover\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9u0lgb\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96,intrinsicWidth:96,pixelHeight:1091,pixelWidth:1962,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Ao4CHxHPC4UQhxkieIrnFvxJMAk.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ao4CHxHPC4UQhxkieIrnFvxJMAk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ao4CHxHPC4UQhxkieIrnFvxJMAk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ao4CHxHPC4UQhxkieIrnFvxJMAk.jpg 1962w\"},className:\"framer-w66h00\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1okzhhz\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z343vx\",\"data-framer-name\":\"Aftermovie & Topics\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-21wxx6\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation15,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.73,background:{alt:\"\",fit:\"fill\",intrinsicHeight:377.5,intrinsicWidth:463.5,pixelHeight:755,pixelWidth:927,sizes:\"316px\",src:\"https://framerusercontent.com/images/MdGYzcDcOBPb12QO0Uz4EvjTIo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MdGYzcDcOBPb12QO0Uz4EvjTIo.png?scale-down-to=512 512w,https://framerusercontent.com/images/MdGYzcDcOBPb12QO0Uz4EvjTIo.png 927w\"},className:\"framer-1y3pge4\",\"data-framer-name\":\"Cube 1\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:377.5,intrinsicWidth:463.5,pixelHeight:755,pixelWidth:927,sizes:\"194px\",src:\"https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png 927w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:95,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.73,background:{alt:\"\",fit:\"fill\",intrinsicHeight:377.5,intrinsicWidth:463.5,pixelHeight:755,pixelWidth:927,sizes:\"187px\",src:\"https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png 927w\"},className:\"framer-1kbhw8m\",\"data-framer-name\":\"Cylinder 1\",style:{rotateY:180}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:377.5,intrinsicWidth:463.5,pixelHeight:755,pixelWidth:927,sizes:`calc(${componentViewport?.width||\"100vw\"} - 869px)`,src:\"https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png 927w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation17,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:95,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:.39,background:{alt:\"\",fit:\"fill\",intrinsicHeight:377.5,intrinsicWidth:463.5,pixelHeight:755,pixelWidth:927,sizes:\"134px\",src:\"https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png 927w\"},className:\"framer-1ig7er0\",\"data-framer-name\":\"Cylinder 1\",style:{rotate:-305}})}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation18,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:95,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.73,background:{alt:\"\",fit:\"fill\",intrinsicHeight:377.5,intrinsicWidth:463.5,pixelHeight:755,pixelWidth:927,sizes:\"210px\",src:\"https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/jFdmly4ZbzJXSnIovHo6BBkg1U.png 927w\"},className:\"framer-xjakwh hidden-138ny25\",\"data-framer-name\":\"Cylinder 1\"}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation19,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.58,background:{alt:\"\",fit:\"fill\",intrinsicHeight:377.5,intrinsicWidth:463.5,pixelHeight:755,pixelWidth:927,sizes:\"376px\",src:\"https://framerusercontent.com/images/1spYRNxLJYohZBQeysfIwWvk8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1spYRNxLJYohZBQeysfIwWvk8.png?scale-down-to=512 512w,https://framerusercontent.com/images/1spYRNxLJYohZBQeysfIwWvk8.png 927w\"},className:\"framer-s53vox hidden-138ny25\",\"data-framer-name\":\"Pyramid 1\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:377.5,intrinsicWidth:463.5,pixelHeight:755,pixelWidth:927,sizes:\"271px\",src:\"https://framerusercontent.com/images/Uv8sBbSR8w2pjSc1Xl0yVL08.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Uv8sBbSR8w2pjSc1Xl0yVL08.png?scale-down-to=512 512w,https://framerusercontent.com/images/Uv8sBbSR8w2pjSc1Xl0yVL08.png 927w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation20,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:95,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.4,background:{alt:\"\",fit:\"fill\",intrinsicHeight:377.5,intrinsicWidth:463.5,pixelHeight:755,pixelWidth:927,sizes:\"463.5px\",src:\"https://framerusercontent.com/images/Uv8sBbSR8w2pjSc1Xl0yVL08.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Uv8sBbSR8w2pjSc1Xl0yVL08.png?scale-down-to=512 512w,https://framerusercontent.com/images/Uv8sBbSR8w2pjSc1Xl0yVL08.png 927w\"},className:\"framer-1s9aokz\",\"data-framer-name\":\"Sphere 1\",transformTemplate:transformTemplate1})}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation21,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:95,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.73,background:{alt:\"\",fit:\"fill\",intrinsicHeight:377.5,intrinsicWidth:463.5,pixelHeight:755,pixelWidth:927,sizes:\"291px\",src:\"https://framerusercontent.com/images/Uv8sBbSR8w2pjSc1Xl0yVL08.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Uv8sBbSR8w2pjSc1Xl0yVL08.png?scale-down-to=512 512w,https://framerusercontent.com/images/Uv8sBbSR8w2pjSc1Xl0yVL08.png 927w\"},className:\"framer-1tyg0pg hidden-138ny25\",\"data-framer-name\":\"Sphere 1\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition15},__framer__animateOnce:false,__framer__enter:animation22,__framer__exit:animation23,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:102,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:33,pixelWidth:33,src:\"https://framerusercontent.com/images/jDLf1TOr5gHW2XRzKLFvTx1tsM.svg\"},className:\"framer-1nt5kuf\",\"data-framer-name\":\"cross\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hcayrg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9uhzx6\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-br9u1h\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:\"67px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11lvqna-container\",nodeId:\"I7cBjG7iv\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(HatchIcon,{height:\"100%\",id:\"I7cBjG7iv\",layoutId:\"I7cBjG7iv\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-gvtxwg\",\"data-styles-preset\":\"lkMMPfVXF\",children:\"The event for experienced designers in Europe\"})}),className:\"framer-5bcshc\",\"data-framer-appear-id\":\"5bcshc\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-96b337ef-03b0-4997-a8f9-18c71ef37c79, rgb(237, 237, 237))\"},children:\"A unique invitation-only event for seniors that brings the top design experts from Europe and the world together to learn and connect.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation24,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-96b337ef-03b0-4997-a8f9-18c71ef37c79, rgb(237, 237, 237))\"},children:\"A unique invitation-only event for seniors that brings the top design experts from Europe and the world together to learn and connect.\"})}),className:\"framer-1hfz075\",\"data-framer-appear-id\":\"1hfz075\",fonts:[\"CUSTOM;Geist Regular\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vetk66\",\"data-border\":true,id:\"vetk66\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1obd8mp\",\"data-border\":true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ncxq2v\",\"data-framer-name\":\"Polygon 1\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 23.561 12.226 C 24.927 13.014 24.927 14.986 23.561 15.774 L 10.756 23.167 C 9.39 23.956 7.683 22.97 7.683 21.393 L 7.683 6.607 C 7.683 5.03 9.39 4.044 10.756 4.833 Z\" fill=\"transparent\" stroke-width=\"1.3658536585365855\" stroke=\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\" stroke-miterlimit=\"6.829268292682928\" stroke-dasharray=\"\"></path></svg>',svgContentId:11074259324,withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextOpenTypen4kwc1,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Play 2024 Aftermovie\"})}),className:\"framer-n4kwc1\",fonts:[\"CUSTOM;Geist Regular\"],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:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-jsya1f\"),\"data-framer-portal-id\":\"vetk66\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"vHLaIWYL1\"),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-1i5cfvy\"),\"data-framer-portal-id\":\"vetk66\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rear5r-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"emslUYbKS\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"emslUYbKS\",isMixedBorderRadius:false,isRed:true,layoutId:\"emslUYbKS\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:8,topRightRadius:8,url:\"https://www.youtube.com/watch?v=kue3H7pJgDE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Saans SemiBold\", \"Saans SemiBold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Close\"})}),className:\"framer-15ld9t8\",fonts:[\"CUSTOM;Saans SemiBold\"],onTap:onTap1wnntms({overlay}),verticalAlignment:\"top\",withExternalLayout:true})]})]}),getContainer())})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p2o7ci-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qyXBu0s9g\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"qyXBu0s9g\",isMixedBorderRadius:false,layoutId:\"qyXBu0s9g\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/sCoJWWe8erufAQyRWm1yiyOAyAY.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/2P0cWvtl0bopiDIthyIyZZew.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition15},__framer__animateOnce:false,__framer__enter:animation22,__framer__exit:animation23,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:102,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:33,pixelWidth:33,src:\"https://framerusercontent.com/images/jDLf1TOr5gHW2XRzKLFvTx1tsM.svg\"},className:\"framer-6m11zu\",\"data-framer-name\":\"cross\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition15},__framer__animateOnce:false,__framer__enter:animation22,__framer__exit:animation23,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:102,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:33,pixelWidth:33,src:\"https://framerusercontent.com/images/jDLf1TOr5gHW2XRzKLFvTx1tsM.svg\"},className:\"framer-1iah9u5\",\"data-framer-name\":\"cross\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition15},__framer__animateOnce:false,__framer__enter:animation22,__framer__exit:animation23,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:102,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:33,pixelWidth:33,src:\"https://framerusercontent.com/images/jDLf1TOr5gHW2XRzKLFvTx1tsM.svg\"},className:\"framer-1511aau\",\"data-framer-name\":\"cross\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition15},__framer__animateOnce:false,__framer__enter:animation22,__framer__exit:animation23,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:102,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:33,pixelWidth:33,src:\"https://framerusercontent.com/images/jDLf1TOr5gHW2XRzKLFvTx1tsM.svg\"},className:\"framer-1edkxev\",\"data-framer-name\":\"cross\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition15},__framer__animateOnce:false,__framer__enter:animation22,__framer__exit:animation23,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:102,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:33,pixelWidth:33,src:\"https://framerusercontent.com/images/jDLf1TOr5gHW2XRzKLFvTx1tsM.svg\"},className:\"framer-hnp2oa\",\"data-framer-name\":\"cross\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hee5cf\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:false,__framer__enter:animation25,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mc3412\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhYW5zIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Saans Regular\", \"Saans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(212, 212, 212)\",\"--framer-text-transform\":\"uppercase\"},children:\"Covering topics such as\"})}),className:\"framer-gfb7vc\",fonts:[\"CUSTOM;Saans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uo53ig\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7hn3at-container\",nodeId:\"QhPl34eRz\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"Design Maturity\",height:\"100%\",id:\"QhPl34eRz\",layoutId:\"QhPl34eRz\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bcubtc-container\",nodeId:\"LrVBJzQj9\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"Career\",height:\"100%\",id:\"LrVBJzQj9\",layoutId:\"LrVBJzQj9\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1krcvq2-container\",nodeId:\"YLn2nWwiW\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"Strategy\",height:\"100%\",id:\"YLn2nWwiW\",layoutId:\"YLn2nWwiW\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h5502m-container\",nodeId:\"jKnEyub7k\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"Design Ops\",height:\"100%\",id:\"jKnEyub7k\",layoutId:\"jKnEyub7k\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qpl68l-container\",nodeId:\"ZcsHY2VDW\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"AI\",height:\"100%\",id:\"ZcsHY2VDW\",layoutId:\"ZcsHY2VDW\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u9labs-container\",nodeId:\"zSEdoVKBq\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"Accessibility\",height:\"100%\",id:\"zSEdoVKBq\",layoutId:\"zSEdoVKBq\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dedewm-container\",nodeId:\"bNBMfAqdg\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"Design Systems\",height:\"100%\",id:\"bNBMfAqdg\",layoutId:\"bNBMfAqdg\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mxgti5-container\",nodeId:\"tx0OT9qsF\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"Leaner Teams\",height:\"100%\",id:\"tx0OT9qsF\",layoutId:\"tx0OT9qsF\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition24},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lv8faq-container\",nodeId:\"vldVSllCP\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"AI\",height:\"100%\",id:\"vldVSllCP\",layoutId:\"vldVSllCP\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition25},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fbqf9t-container\",nodeId:\"vaJRuBlBl\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"Business\",height:\"100%\",id:\"vaJRuBlBl\",layoutId:\"vaJRuBlBl\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4kzzfb-container\",nodeId:\"SwC9yGK1k\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"Automation\",height:\"100%\",id:\"SwC9yGK1k\",layoutId:\"SwC9yGK1k\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition27},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j8njik-container\",nodeId:\"rlUbiqcdf\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{variant:\"vBf9ncrJ8\"}},children:/*#__PURE__*/_jsx(ElementsTopicTag,{CWjybAqsV:\"Staying Competitive\",height:\"100%\",id:\"rlUbiqcdf\",layoutId:\"rlUbiqcdf\",variant:\"Wu_uwM41F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhYW5zIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Saans Regular\", \"Saans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.09em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(212, 212, 212)\",\"--framer-text-transform\":\"uppercase\"},children:\" & MORE\"})}),fonts:[\"CUSTOM;Saans Regular\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.09em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(212, 212, 212)\",\"--framer-text-transform\":\"uppercase\"},children:\"& MORE\"})}),className:\"framer-1esxiev\",fonts:[\"CUSTOM;Geist Regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14k8ror\",\"data-framer-name\":\"Days\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8bxbmp\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3083b\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18yae1y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KZ68ce0sQ\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(TextWrap,{balance:true,color:{angle:0,color:\"rgb(255, 255, 255)\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},decoration:\"none\",font:{fontFamily:'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',fontSize:\"43px\",letterSpacing:\"-0.08em\",lineHeight:\"1em\",textAlign:\"center\"},height:\"100%\",id:\"KZ68ce0sQ\",layerAlign:\"middle\",layerGap:0,layers:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"49px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-in0isn-container\",inComponentSlot:true,nodeId:\"wzCy5_l90\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(HomeHeaderIcon3WithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"v3wEOGvlE\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"Km6DF_jiA\",height:\"100%\",id:\"wzCy5_l90\",layoutId:\"wzCy5_l90\",style:{height:\"100%\",width:\"100%\"},variant:\"v3wEOGvlE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aqy9c-container\",inComponentSlot:true,nodeId:\"ruhLtvPVE\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(HomeHeaderIconUp,{height:\"100%\",id:\"ruhLtvPVE\",layoutId:\"ruhLtvPVE\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12zmhe6-container\",inComponentSlot:true,nodeId:\"lCSt2GYCu\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(HomeHeaderIconLove,{height:\"100%\",id:\"lCSt2GYCu\",layoutId:\"lCSt2GYCu\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],layoutId:\"KZ68ce0sQ\",slot:\"[]\",style:{maxWidth:\"100%\"},tag:\"h2\",text:\"[] Days to [] & fall back [] with Design\",transform:\"uppercase\",userSelect:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rzfdc6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wo7jdo\",\"data-framer-name\":\"Columns\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cwbf0f\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"F7oc9H3VU\"},implicitPathVariables:undefined},{href:{webPageId:\"F7oc9H3VU\"},implicitPathVariables:undefined},{href:{webPageId:\"F7oc9H3VU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 36px) / 3, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10qouj3-container\",nodeId:\"xu_kbq30B\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{jukcEaKBm:resolvedLinks1[1],variant:\"cEMYN9L6D\"},HegDjfVJV:{jukcEaKBm:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(DayCardBig,{AkuOpGRJO:\"DAY\",hDIBUGzFq:\"100 Spots\",height:\"100%\",id:\"xu_kbq30B\",IWdQrsaEh:\"BUILDER'S\",jP6RylglM:\"Full day workshops to level up on technical design, AI, Accessibility, Design Systems and more.\",jukcEaKBm:resolvedLinks1[0],layoutId:\"xu_kbq30B\",MXrSjmbOY:\"Sep 10\",sS0F1CWTp:\"From \u20AC390*\",style:{width:\"100%\"},variant:\"p_9Qy7MTQ\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 36px) / 3, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition30},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hc35y3-container hidden-138ny25\",nodeId:\"PS0Kc3nbA\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{variant:\"j5rukL5eJ\"}},children:/*#__PURE__*/_jsx(DayCardBig,{AkuOpGRJO:\"\",hDIBUGzFq:\"50-100 Spots\",height:\"100%\",id:\"PS0Kc3nbA\",IWdQrsaEh:\"EU MIXERS\",jP6RylglM:\"Meetups in 10+ cities around Europe\",layoutId:\"PS0Kc3nbA\",MXrSjmbOY:\"Sep 10\",sS0F1CWTp:\"Free\",style:{width:\"100%\"},variant:\"pBX7PYAQ4\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pg8iev\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YPYxQId0v\"},implicitPathVariables:undefined},{href:{webPageId:\"YPYxQId0v\"},implicitPathVariables:undefined},{href:{webPageId:\"YPYxQId0v\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 36px) / 3, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition31},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3p8m28-container\",nodeId:\"tPx87O34V\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{jukcEaKBm:resolvedLinks2[1],variant:\"cEMYN9L6D\"},HegDjfVJV:{jukcEaKBm:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(DayCardBig,{AkuOpGRJO:\"Biz Day\",hDIBUGzFq:\"100 Spots\",height:\"100%\",id:\"tPx87O34V\",IWdQrsaEh:\"Strategy &\",jP6RylglM:\"Combine two half day workshops and improve your work inside your product team combining business knowledge and design strategy\",jukcEaKBm:resolvedLinks2[0],layoutId:\"tPx87O34V\",MXrSjmbOY:\"Sep 11\",ndV3z6mOK:addImageAlt({src:\"https://framerusercontent.com/images/Gg0lLFjsUewdaUtGaRhKvoq31ns.jpg\",srcSet:\"https://framerusercontent.com/images/Gg0lLFjsUewdaUtGaRhKvoq31ns.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gg0lLFjsUewdaUtGaRhKvoq31ns.jpg 795w\"},\"\"),sS0F1CWTp:\"From \u20AC450*\",style:{width:\"100%\"},variant:\"p_9Qy7MTQ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 36px) / 3, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition32},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pan1jq-container\",nodeId:\"LW2RDkrat\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{variant:\"j5rukL5eJ\"}},children:/*#__PURE__*/_jsx(DayCardBig,{AkuOpGRJO:\"\",hDIBUGzFq:\"20 Spots\",height:\"100%\",id:\"LW2RDkrat\",IWdQrsaEh:\"Workshop w/ David Carson\",jP6RylglM:\"More info Soon!\",layoutId:\"LW2RDkrat\",MXrSjmbOY:\"Sep 11\",sS0F1CWTp:\"\u20AC300\",style:{width:\"100%\"},variant:\"pBX7PYAQ4\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kayjc5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 36px) / 3, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p7zlp3-container\",nodeId:\"VI7QzOLYt\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{variant:\"cEMYN9L6D\"}},children:/*#__PURE__*/_jsx(DayCardBig,{AkuOpGRJO:\"Day\",hDIBUGzFq:\"500 Spots\",height:\"100%\",id:\"VI7QzOLYt\",IWdQrsaEh:\"Conference\",jP6RylglM:\"The big event with two stages, multiple smaller sessions and networking activities to learn and connect\",layoutId:\"VI7QzOLYt\",MXrSjmbOY:\"Sep 12\",ndV3z6mOK:addImageAlt({src:\"https://framerusercontent.com/images/A4YHCfYe5oLIsDzMURwsHFEoOU.jpg\",srcSet:\"https://framerusercontent.com/images/A4YHCfYe5oLIsDzMURwsHFEoOU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/A4YHCfYe5oLIsDzMURwsHFEoOU.jpg 795w\"},\"\"),sS0F1CWTp:\"\u20AC330\",style:{width:\"100%\"},variant:\"p_9Qy7MTQ\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 36px) / 3, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition33},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12ojf61-container hidden-138ny25\",nodeId:\"m6zNeEtNH\",rendersWithMotion:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{variant:\"j5rukL5eJ\"}},children:/*#__PURE__*/_jsx(DayCardBig,{AkuOpGRJO:\"\",hDIBUGzFq:\"Included\",height:\"100%\",id:\"m6zNeEtNH\",IWdQrsaEh:\"Afterparty\",jP6RylglM:\"Celebrate in a unique Berlin club with us from 9 pm\",layoutId:\"m6zNeEtNH\",MXrSjmbOY:\"Sep 12\",sS0F1CWTp:\"Free\",style:{width:\"100%\"},variant:\"pBX7PYAQ4\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16n22z4\",\"data-framer-name\":\"CTAs\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vJNiMyfq7\"},implicitPathVariables:undefined},{href:{webPageId:\"vJNiMyfq7\"},implicitPathVariables:undefined},{href:{webPageId:\"vJNiMyfq7\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-5gm8e-container\",\"data-framer-appear-id\":\"5gm8e\",initial:animation1,nodeId:\"G13d6dcgz\",optimized:true,rendersWithMotion:true,scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{jpvq200N5:resolvedLinks3[1]},HegDjfVJV:{jpvq200N5:resolvedLinks3[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonButton,{c3KVgZNDp:\"rgb(255, 255, 255)\",height:\"100%\",HNvtcQ6hq:\"Apply for an Invite\",id:\"G13d6dcgz\",ircBUxoIe:false,Joj899VfW:\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\",jpvq200N5:resolvedLinks3[0],layoutId:\"G13d6dcgz\",pRq7qWjm7:\"rgba(0, 0, 0, 0)\",qrVAq1cgJ:{borderColor:'var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134)) /* {\"name\":\"Primary\"} */',borderStyle:\"solid\",borderWidth:1},rgPUohYGe:\"var(--token-897b9dd4-2da8-4e8f-9c27-ef6bea2f68b7, rgb(25, 25, 25))\",sYRcPMM6U:\"ajPI4T54p\",tsbFbKFtU:{borderColor:\"rgba(237, 237, 237, 0.77)\",borderStyle:\"solid\",borderWidth:1},Usk3nuA8o:\"rgb(237, 237, 237)\",variant:\"fFpTpMIvi\",width:\"100%\",yMfgLfwpW:false})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\"},children:\"*Proportional price in Bundles including Conference Tickets\"})}),className:\"framer-r2ysvf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:910,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wdzhdq-container\",nodeId:\"ABtHQhNz2\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{variant:\"PQ4BeyjDq\"},HegDjfVJV:{variant:\"J63MLQgD4\"}},children:/*#__PURE__*/_jsx(HomeSpeakers,{height:\"100%\",id:\"ABtHQhNz2\",layoutId:\"ABtHQhNz2\",style:{width:\"100%\"},variant:\"XAnLTY2AC\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cfcn4s\",\"data-framer-name\":\"Venue\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition34},__framer__animateOnce:false,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1999,pixelWidth:2800,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/NhMhuh6huNACRWceLrrafOnBt2U.png\",srcSet:\"https://framerusercontent.com/images/NhMhuh6huNACRWceLrrafOnBt2U.png?scale-down-to=512 512w,https://framerusercontent.com/images/NhMhuh6huNACRWceLrrafOnBt2U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NhMhuh6huNACRWceLrrafOnBt2U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NhMhuh6huNACRWceLrrafOnBt2U.png 2800w\"},className:\"framer-hwomp2\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{viewBox:\"0 0 1140.063207407156 212\"},HegDjfVJV:{viewBox:\"0 0 1140.063207407156 212\"}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEWXdPQ3dnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"235.44024690519453px\",\"--framer-font-variation-axes\":'\"wght\" 608, \"slnt\" 0',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-96b337ef-03b0-4997-a8f9-18c71ef37c79, rgb(237, 237, 237))\",\"--framer-text-transform\":\"uppercase\"},children:\"THE VENUE\"})}),className:\"framer-xnna3f\",\"data-framer-appear-id\":\"xnna3f\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],initial:animation1,optimized:true,verticalAlignment:\"top\",viewBox:\"0 0 1140 212\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2iaewh\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1crtl9l\",\"data-border\":true,\"data-framer-name\":\"Rectangle 474\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uojr0k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEVTVNaXdnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"20px\",\"--framer-font-variation-axes\":'\"wght\" 592, \"slnt\" 0',\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Silent Green Kulturquartier\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhdGNoIE1vbm8gMjUgVmFyaWFibGVWRj1JbmRuYUhRaUlEVTVNaXdnSW5Oc2JuUWlJREE9\",\"--framer-font-family\":'\"Hatch Mono 25 Variable\", \"Hatch Mono 25 Placeholder\", monospace',\"--framer-font-size\":\"24px\",\"--framer-font-variation-axes\":'\"wght\" 592, \"slnt\" 0',\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Silent Green Kulturquartier\"})}),className:\"framer-74o5rr\",fonts:[\"CUSTOM;Hatch Mono 25 Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\",\"--framer-text-transform\":\"uppercase\"},children:\"BERLIN, GERMANY\"})}),className:\"framer-16w2gph hidden-138ny25\",fonts:[\"CUSTOM;Geist Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HegDjfVJV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(212, 212, 212)\"},children:\"A former crematorium repurposed as cultural center. This year we are enjoying the summer inside and outside!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(212, 212, 212)\"},children:\"A former crematorium repurposed as cultural center. This year we are enjoying the summer inside and outside!\"})}),className:\"framer-1y3s3u6\",fonts:[\"CUSTOM;Geist Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kiq7a\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ql35rl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m92lm6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8iecr8\",\"data-framer-name\":\"icon-location\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"23\" viewBox=\"0 0 17 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.5 11.0422C9.73537 11.0422 10.7368 10.0123 10.7368 8.74178C10.7368 7.47126 9.73537 6.44131 8.5 6.44131C7.26463 6.44131 6.26316 7.47126 6.26316 8.74178C6.26316 10.0123 7.26463 11.0422 8.5 11.0422Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17 8.56726C17 12.4546 11.5494 20.0102 9.36873 22.5826C8.85477 23.1888 8.20664 23.1144 7.7122 22.4912C5.60533 19.8356 0 12.4096 0 8.56726C0 3.83569 3.80558 0 8.5 0C13.1944 0 17 3.83569 17 8.56726ZM16.1053 8.56726C16.1053 9.34949 15.8226 10.4118 15.2931 11.6699C14.7719 12.9085 14.0469 14.2555 13.2429 15.5811C11.6342 18.2338 9.75503 20.7266 8.69432 21.9778C8.64306 22.0383 8.60583 22.0649 8.58818 22.0754C8.56089 22.063 8.49653 22.0242 8.40544 21.9094C7.36076 20.5927 5.45707 18.1033 3.81911 15.4774C2.99975 14.1638 2.25847 12.8345 1.72487 11.6133C1.18229 10.3715 0.894737 9.33061 0.894737 8.56726C0.894737 4.3613 4.28263 0.920187 8.5 0.920187C12.7174 0.920187 16.1053 4.3613 16.1053 8.56726Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(212, 212, 212)\"},children:\"Gerichtstra\\xdfe 35, 13347 Berlin\"})}),className:\"framer-595l4i\",fonts:[\"CUSTOM;Geist Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, rgb(42, 167, 134))\"},children:\"Directions\"})}),className:\"framer-1bdptci\",fonts:[\"CUSTOM;Geist Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1270,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-q9rsdy-container\",nodeId:\"KWwORFrzl\",scopeId:\"GYQYWcM8K\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H16n3Tmgz:{variant:\"CnoHOZMPh\"},HegDjfVJV:{variant:\"m1tb7Qu82\"}},children:/*#__PURE__*/_jsx(TicketsTeaser,{DWpxcYFeQ:true,fU3XFfvGZ:\"Workshop Days\",height:\"100%\",id:\"KWwORFrzl\",k1EzLLNIc:true,layoutId:\"KWwORFrzl\",lnfYWgkjm:true,O5UhHpEK8:true,oljRT5xd4:\"From \u20AC\",PlkblyDee:\"Conf + Bundles\",PVTAymgqh:\"720\",q7aDh8g0j:true,RX1DpAvgV:true,SFCHWfojk:\"Attend either on Builder's Day or Strategy + Biz Day as well as the Conference\",style:{width:\"100%\"},u56scbsYJ:\"Sep 10 or 11 + 12\",variant:\"X8A_R41so\",wi3Y6JfS3:true,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LRcHG.framer-1af9asj, .framer-LRcHG .framer-1af9asj { display: block; }\",\".framer-LRcHG.framer-kchrnn { align-content: center; align-items: center; background-color: var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, #1c1c1c); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1140px; }\",\".framer-LRcHG .framer-6ep27j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 90vh; overflow: hidden; padding: 70px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-ctt1k { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1140px; overflow: hidden; padding: 20px; position: relative; width: 1px; z-index: 3; }\",\".framer-LRcHG .framer-1imebhk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 1140px; overflow: hidden; padding: 0px; position: relative; width: 60%; z-index: 2; }\",\".framer-LRcHG .framer-xsnsa7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px 0px 18px 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-yczdwh, .framer-LRcHG .framer-1mc3412, .framer-LRcHG .framer-1ql35rl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-1t711kv, .framer-LRcHG .framer-rump0o { --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-LRcHG .framer-1e4qa06 { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 50px; }\",\".framer-LRcHG .framer-1svs0yt { background-color: var(--token-bcc64b04-cc81-4a08-8ed1-6c847966f62a, #87d3bf); flex: none; height: 1px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(50.00000000000002% - 1px / 2); will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-LRcHG .framer-p6amky { 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-LRcHG .framer-1igaohe, .framer-LRcHG .framer-xnna3f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-LRcHG .framer-1gu8fyr { --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-LRcHG .framer-5udnr8 { 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: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-1o9kfpz-container, .framer-LRcHG .framer-5gm8e-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-LRcHG .framer-1hzywcf-container, .framer-LRcHG .framer-7hn3at-container, .framer-LRcHG .framer-bcubtc-container, .framer-LRcHG .framer-1krcvq2-container, .framer-LRcHG .framer-h5502m-container, .framer-LRcHG .framer-qpl68l-container, .framer-LRcHG .framer-u9labs-container, .framer-LRcHG .framer-1dedewm-container, .framer-LRcHG .framer-1mxgti5-container, .framer-LRcHG .framer-lv8faq-container, .framer-LRcHG .framer-fbqf9t-container, .framer-LRcHG .framer-4kzzfb-container, .framer-LRcHG .framer-1j8njik-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-LRcHG .framer-p4vxu4-container, .framer-LRcHG .framer-10qouj3-container, .framer-LRcHG .framer-hc35y3-container, .framer-LRcHG .framer-3p8m28-container, .framer-LRcHG .framer-1pan1jq-container, .framer-LRcHG .framer-1p7zlp3-container, .framer-LRcHG .framer-12ojf61-container, .framer-LRcHG .framer-1wdzhdq-container, .framer-LRcHG .framer-q9rsdy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-LRcHG .framer-1peka4z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; max-width: 1140px; opacity: 0.86; overflow: visible; padding: 58px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-1lu78dc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-LRcHG .framer-18j6fju { cursor: pointer; flex: none; height: 39px; overflow: visible; position: relative; text-decoration: none; width: 151px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-LRcHG .framer-eh3fm7 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-LRcHG .framer-2ngs33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-LRcHG .framer-us3n7, .framer-LRcHG .framer-17p4kgl, .framer-LRcHG .framer-131gani { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-LRcHG .framer-lbvxlg { aspect-ratio: 3.611111111111111 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 102px; }\",\".framer-LRcHG .framer-q51mbu { aspect-ratio: 7.375 / 1; flex: none; height: 13px; position: relative; width: var(--framer-aspect-ratio-supported, 94px); }\",\".framer-LRcHG .framer-d0j4t0 { aspect-ratio: 5.281553398058253 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 79px; }\",\".framer-LRcHG .framer-1msssm9 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-LRcHG .framer-npmrbb { aspect-ratio: 2.364705882352941 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 94px; }\",\".framer-LRcHG .framer-byzrzx { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 27px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-LRcHG .framer-1k94kmj { flex: none; height: 20px; position: relative; width: 101px; }\",'.framer-LRcHG .framer-1u2yt1w { background: linear-gradient(180deg, rgba(28, 28, 28, 0) 0%, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)) /* {\"name\":\"Background Dark\"} */ 100%); bottom: 0px; flex: none; height: 47%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 2; }',\".framer-LRcHG .framer-ncut6q-container { flex: none; height: 100%; left: 0px; mix-blend-mode: lighten; opacity: 0.91; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-LRcHG .framer-9u0lgb { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); mix-blend-mode: lighten; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-LRcHG .framer-w66h00 { flex: none; height: 90%; left: 0px; mix-blend-mode: multiply; opacity: 0.53; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-LRcHG .framer-1okzhhz { background: linear-gradient(180deg, rgba(36, 36, 36, 0) 18.3910472972973%, rgba(36, 36, 36, 0.36524) 69.39400337837837%, rgb(35, 35, 35) 100%); flex: none; height: 90%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-LRcHG .framer-z343vx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; min-height: 100vh; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-21wxx6 { bottom: -90px; flex: none; height: 1059px; left: 0px; opacity: 0.52; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-LRcHG .framer-1y3pge4 { aspect-ratio: 1.2278145695364238 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 258px); left: 0px; opacity: 0.73; overflow: visible; position: absolute; top: 0px; width: 316px; z-index: 0; }\",\".framer-LRcHG .framer-1kbhw8m { aspect-ratio: 1.2278145695364238 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 152px); opacity: 0.73; overflow: visible; position: absolute; right: 0px; top: 61px; width: 187px; z-index: 0; }\",\".framer-LRcHG .framer-1ig7er0 { aspect-ratio: 1.2278145695364238 / 1; bottom: 124px; flex: none; height: var(--framer-aspect-ratio-supported, 109px); left: 568px; opacity: 0.39; overflow: visible; position: absolute; width: 134px; z-index: 0; }\",\".framer-LRcHG .framer-xjakwh { aspect-ratio: 1.2278145695364238 / 1; bottom: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 171px); left: 53px; opacity: 0.73; overflow: visible; position: absolute; width: 210px; z-index: 0; }\",\".framer-LRcHG .framer-s53vox { aspect-ratio: 1.2278145695364238 / 1; bottom: 431px; flex: none; height: var(--framer-aspect-ratio-supported, 306px); opacity: 0.58; overflow: visible; position: absolute; right: 80px; width: 376px; z-index: 0; }\",\".framer-LRcHG .framer-1s9aokz { aspect-ratio: 1.2278145695364238 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 378px); left: 13px; opacity: 0.4; overflow: visible; position: absolute; top: 53%; transform: translateY(-50%); width: 464px; z-index: 0; }\",\".framer-LRcHG .framer-1tyg0pg { aspect-ratio: 1.2278145695364238 / 1; bottom: -20px; flex: none; height: var(--framer-aspect-ratio-supported, 237px); opacity: 0.73; overflow: visible; position: absolute; right: 0px; width: 291px; z-index: 0; }\",\".framer-LRcHG .framer-1nt5kuf { bottom: 161px; flex: none; height: 33px; left: 200px; overflow: hidden; position: absolute; width: 34px; z-index: 1; }\",\".framer-LRcHG .framer-1hcayrg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-LRcHG .framer-9uhzx6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; max-width: 1140px; overflow: visible; padding: 8px 0px 32px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-LRcHG .framer-br9u1h { 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: 7px 0px 7px 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-11lvqna-container { flex: none; height: 67px; position: relative; width: 67px; }\",\".framer-LRcHG .framer-5bcshc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 650px; 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-LRcHG .framer-1hfz075 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; opacity: 0.8; 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-LRcHG .framer-vetk66 { --border-bottom-width: 11px; --border-color: #000000; --border-left-width: 11px; --border-right-width: 11px; --border-style: solid; --border-top-width: 11px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 337px; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 644px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-LRcHG .framer-1obd8mp { --border-bottom-width: 1px; --border-color: rgba(237, 237, 237, 0.46); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.58); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; box-shadow: 0px 0px 15px 1px rgba(41, 166, 133, 0.41); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 14px 24px 14px 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-LRcHG .framer-ncxq2v { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-LRcHG .framer-n4kwc1 { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-LRcHG.framer-jsya1f { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 4; }\",\".framer-LRcHG.framer-1i5cfvy { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: 4; }\",\".framer-LRcHG .framer-1rear5r-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 80%; }\",\".framer-LRcHG .framer-15ld9t8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LRcHG .framer-p2o7ci-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: -1; }\",\".framer-LRcHG .framer-6m11zu { flex: none; height: 33px; left: 120px; overflow: hidden; position: absolute; top: 180px; width: 34px; z-index: 1; }\",\".framer-LRcHG .framer-1iah9u5 { bottom: 112px; flex: none; height: 33px; left: 50px; overflow: hidden; position: absolute; width: 34px; z-index: 1; }\",\".framer-LRcHG .framer-1511aau { flex: none; height: 33px; overflow: hidden; position: absolute; right: 78px; top: calc(50.00000000000002% - 33px / 2); width: 34px; z-index: 1; }\",\".framer-LRcHG .framer-1edkxev { flex: none; height: 33px; overflow: hidden; position: absolute; right: 121px; top: calc(83.59621451104104% - 33px / 2); width: 34px; z-index: 1; }\",\".framer-LRcHG .framer-hnp2oa { flex: none; height: 33px; overflow: hidden; position: absolute; right: 44px; top: calc(117.82334384858046% - 33px / 2); width: 34px; z-index: 1; }\",\".framer-LRcHG .framer-hee5cf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-gfb7vc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-LRcHG .framer-uo53ig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 660px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-LRcHG .framer-1esxiev { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-LRcHG .framer-14k8ror { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; min-height: 100vh; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-8bxbmp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 70px; width: 100%; z-index: 1; }\",\".framer-LRcHG .framer-3083b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1140px; overflow: visible; padding: 8px 0px 0px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-LRcHG .framer-18yae1y-container { flex: none; height: auto; max-width: 600px; position: relative; width: auto; }\",\".framer-LRcHG .framer-in0isn-container { height: 54px; position: relative; width: 49px; }\",\".framer-LRcHG .framer-1aqy9c-container { height: 53px; position: relative; width: 220px; }\",\".framer-LRcHG .framer-12zmhe6-container { height: 68px; position: relative; width: 156px; }\",'.framer-LRcHG .framer-1rzfdc6 { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, var(--token-84fe8f2e-53a6-448b-8f61-02b238b45182, rgb(28, 28, 28)) /* {\"name\":\"Background Dark\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 94px 0px 0px 0px; position: sticky; top: 70px; width: 100%; z-index: 1; }',\".framer-LRcHG .framer-1wo7jdo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; max-width: 1140px; overflow: visible; padding: 8px 0px 32px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-LRcHG .framer-1cwbf0f, .framer-LRcHG .framer-pg8iev, .framer-LRcHG .framer-1kayjc5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-LRcHG .framer-16n22z4 { 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: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-r2ysvf, .framer-LRcHG .framer-74o5rr, .framer-LRcHG .framer-16w2gph, .framer-LRcHG .framer-1y3s3u6 { --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-LRcHG .framer-cfcn4s { align-content: center; align-items: center; background-color: var(--token-cb91b205-ebb7-4ad4-9c91-482bb88c07a1, #2aa786); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; min-height: 100vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-hwomp2 { align-content: center; align-items: center; bottom: -80px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 106%; justify-content: center; left: 0px; min-height: 850px; overflow: hidden; padding: 0px 0px 80px 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-LRcHG .framer-2iaewh { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; max-width: 1024px; overflow: hidden; padding: 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-LRcHG .framer-1crtl9l { --border-bottom-width: 1px; --border-color: rgba(150, 170, 248, 0.31); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(8px); align-content: flex-end; align-items: flex-end; backdrop-filter: blur(8px); background-color: rgba(18, 18, 18, 0.89); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 500px; padding: 30px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-1uojr0k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LRcHG .framer-kiq7a { background-color: #d4deff; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-LRcHG .framer-m92lm6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-LRcHG .framer-8iecr8 { flex: none; height: 23px; position: relative; width: 17px; }\",\".framer-LRcHG .framer-595l4i { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; }\",\".framer-LRcHG .framer-1bdptci { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LRcHG.framer-kchrnn, .framer-LRcHG .framer-6ep27j, .framer-LRcHG .framer-ctt1k, .framer-LRcHG .framer-1imebhk, .framer-LRcHG .framer-xsnsa7, .framer-LRcHG .framer-yczdwh, .framer-LRcHG .framer-p6amky, .framer-LRcHG .framer-5udnr8, .framer-LRcHG .framer-1peka4z, .framer-LRcHG .framer-1lu78dc, .framer-LRcHG .framer-2ngs33, .framer-LRcHG .framer-us3n7, .framer-LRcHG .framer-17p4kgl, .framer-LRcHG .framer-131gani, .framer-LRcHG .framer-1msssm9, .framer-LRcHG .framer-byzrzx, .framer-LRcHG .framer-z343vx, .framer-LRcHG .framer-1hcayrg, .framer-LRcHG .framer-9uhzx6, .framer-LRcHG .framer-br9u1h, .framer-LRcHG .framer-vetk66, .framer-LRcHG .framer-1obd8mp, .framer-LRcHG.framer-1i5cfvy, .framer-LRcHG .framer-hee5cf, .framer-LRcHG .framer-1mc3412, .framer-LRcHG .framer-uo53ig, .framer-LRcHG .framer-14k8ror, .framer-LRcHG .framer-8bxbmp, .framer-LRcHG .framer-3083b, .framer-LRcHG .framer-1rzfdc6, .framer-LRcHG .framer-1wo7jdo, .framer-LRcHG .framer-1cwbf0f, .framer-LRcHG .framer-pg8iev, .framer-LRcHG .framer-1kayjc5, .framer-LRcHG .framer-16n22z4, .framer-LRcHG .framer-cfcn4s, .framer-LRcHG .framer-hwomp2, .framer-LRcHG .framer-2iaewh, .framer-LRcHG .framer-1crtl9l, .framer-LRcHG .framer-1uojr0k, .framer-LRcHG .framer-1ql35rl, .framer-LRcHG .framer-m92lm6 { gap: 0px; } .framer-LRcHG.framer-kchrnn > *, .framer-LRcHG .framer-3083b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LRcHG.framer-kchrnn > :first-child, .framer-LRcHG .framer-ctt1k > :first-child, .framer-LRcHG .framer-1imebhk > :first-child, .framer-LRcHG .framer-xsnsa7 > :first-child, .framer-LRcHG .framer-p6amky > :first-child, .framer-LRcHG .framer-1lu78dc > :first-child, .framer-LRcHG .framer-us3n7 > :first-child, .framer-LRcHG .framer-17p4kgl > :first-child, .framer-LRcHG .framer-131gani > :first-child, .framer-LRcHG .framer-1msssm9 > :first-child, .framer-LRcHG .framer-byzrzx > :first-child, .framer-LRcHG .framer-z343vx > :first-child, .framer-LRcHG .framer-1hcayrg > :first-child, .framer-LRcHG .framer-9uhzx6 > :first-child, .framer-LRcHG .framer-vetk66 > :first-child, .framer-LRcHG.framer-1i5cfvy > :first-child, .framer-LRcHG .framer-hee5cf > :first-child, .framer-LRcHG .framer-14k8ror > :first-child, .framer-LRcHG .framer-8bxbmp > :first-child, .framer-LRcHG .framer-3083b > :first-child, .framer-LRcHG .framer-1rzfdc6 > :first-child, .framer-LRcHG .framer-1cwbf0f > :first-child, .framer-LRcHG .framer-pg8iev > :first-child, .framer-LRcHG .framer-1kayjc5 > :first-child, .framer-LRcHG .framer-16n22z4 > :first-child, .framer-LRcHG .framer-cfcn4s > :first-child, .framer-LRcHG .framer-2iaewh > :first-child, .framer-LRcHG .framer-1crtl9l > :first-child, .framer-LRcHG .framer-1uojr0k > :first-child { margin-top: 0px; } .framer-LRcHG.framer-kchrnn > :last-child, .framer-LRcHG .framer-ctt1k > :last-child, .framer-LRcHG .framer-1imebhk > :last-child, .framer-LRcHG .framer-xsnsa7 > :last-child, .framer-LRcHG .framer-p6amky > :last-child, .framer-LRcHG .framer-1lu78dc > :last-child, .framer-LRcHG .framer-us3n7 > :last-child, .framer-LRcHG .framer-17p4kgl > :last-child, .framer-LRcHG .framer-131gani > :last-child, .framer-LRcHG .framer-1msssm9 > :last-child, .framer-LRcHG .framer-byzrzx > :last-child, .framer-LRcHG .framer-z343vx > :last-child, .framer-LRcHG .framer-1hcayrg > :last-child, .framer-LRcHG .framer-9uhzx6 > :last-child, .framer-LRcHG .framer-vetk66 > :last-child, .framer-LRcHG.framer-1i5cfvy > :last-child, .framer-LRcHG .framer-hee5cf > :last-child, .framer-LRcHG .framer-14k8ror > :last-child, .framer-LRcHG .framer-8bxbmp > :last-child, .framer-LRcHG .framer-3083b > :last-child, .framer-LRcHG .framer-1rzfdc6 > :last-child, .framer-LRcHG .framer-1cwbf0f > :last-child, .framer-LRcHG .framer-pg8iev > :last-child, .framer-LRcHG .framer-1kayjc5 > :last-child, .framer-LRcHG .framer-16n22z4 > :last-child, .framer-LRcHG .framer-cfcn4s > :last-child, .framer-LRcHG .framer-2iaewh > :last-child, .framer-LRcHG .framer-1crtl9l > :last-child, .framer-LRcHG .framer-1uojr0k > :last-child { margin-bottom: 0px; } .framer-LRcHG .framer-6ep27j > *, .framer-LRcHG .framer-yczdwh > *, .framer-LRcHG .framer-5udnr8 > *, .framer-LRcHG .framer-br9u1h > *, .framer-LRcHG .framer-1obd8mp > *, .framer-LRcHG .framer-1mc3412 > *, .framer-LRcHG .framer-uo53ig > *, .framer-LRcHG .framer-hwomp2 > *, .framer-LRcHG .framer-1ql35rl > *, .framer-LRcHG .framer-m92lm6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LRcHG .framer-6ep27j > :first-child, .framer-LRcHG .framer-yczdwh > :first-child, .framer-LRcHG .framer-5udnr8 > :first-child, .framer-LRcHG .framer-1peka4z > :first-child, .framer-LRcHG .framer-2ngs33 > :first-child, .framer-LRcHG .framer-br9u1h > :first-child, .framer-LRcHG .framer-1obd8mp > :first-child, .framer-LRcHG .framer-1mc3412 > :first-child, .framer-LRcHG .framer-uo53ig > :first-child, .framer-LRcHG .framer-1wo7jdo > :first-child, .framer-LRcHG .framer-hwomp2 > :first-child, .framer-LRcHG .framer-1ql35rl > :first-child, .framer-LRcHG .framer-m92lm6 > :first-child { margin-left: 0px; } .framer-LRcHG .framer-6ep27j > :last-child, .framer-LRcHG .framer-yczdwh > :last-child, .framer-LRcHG .framer-5udnr8 > :last-child, .framer-LRcHG .framer-1peka4z > :last-child, .framer-LRcHG .framer-2ngs33 > :last-child, .framer-LRcHG .framer-br9u1h > :last-child, .framer-LRcHG .framer-1obd8mp > :last-child, .framer-LRcHG .framer-1mc3412 > :last-child, .framer-LRcHG .framer-uo53ig > :last-child, .framer-LRcHG .framer-1wo7jdo > :last-child, .framer-LRcHG .framer-hwomp2 > :last-child, .framer-LRcHG .framer-1ql35rl > :last-child, .framer-LRcHG .framer-m92lm6 > :last-child { margin-right: 0px; } .framer-LRcHG .framer-ctt1k > *, .framer-LRcHG .framer-xsnsa7 > *, .framer-LRcHG .framer-p6amky > *, .framer-LRcHG .framer-1lu78dc > *, .framer-LRcHG .framer-us3n7 > *, .framer-LRcHG .framer-17p4kgl > *, .framer-LRcHG .framer-131gani > *, .framer-LRcHG .framer-1msssm9 > *, .framer-LRcHG .framer-byzrzx > *, .framer-LRcHG .framer-1hcayrg > *, .framer-LRcHG .framer-vetk66 > *, .framer-LRcHG .framer-8bxbmp > *, .framer-LRcHG .framer-1rzfdc6 > *, .framer-LRcHG .framer-16n22z4 > *, .framer-LRcHG .framer-2iaewh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LRcHG .framer-1imebhk > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-LRcHG .framer-1peka4z > * { margin: 0px; margin-left: calc(41px / 2); margin-right: calc(41px / 2); } .framer-LRcHG .framer-2ngs33 > * { margin: 0px; margin-left: calc(46px / 2); margin-right: calc(46px / 2); } .framer-LRcHG .framer-z343vx > *, .framer-LRcHG .framer-14k8ror > *, .framer-LRcHG .framer-cfcn4s > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-LRcHG .framer-9uhzx6 > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-LRcHG.framer-1i5cfvy > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-LRcHG .framer-hee5cf > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-LRcHG .framer-1wo7jdo > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-LRcHG .framer-1cwbf0f > *, .framer-LRcHG .framer-pg8iev > *, .framer-LRcHG .framer-1kayjc5 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-LRcHG .framer-1crtl9l > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-LRcHG .framer-1uojr0k > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-LRcHG[data-border=\"true\"]::after, .framer-LRcHG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1139px) { .framer-LRcHG.framer-kchrnn { width: 810px; } .framer-LRcHG .framer-1imebhk { max-width: unset; width: 80%; } .framer-LRcHG .framer-1peka4z { flex-direction: column; gap: 12px; padding: 27px 0px 0px 0px; } .framer-LRcHG .framer-w66h00 { height: 66%; } .framer-LRcHG .framer-z343vx { overflow: hidden; } .framer-LRcHG .framer-1ig7er0 { bottom: var(--framer-aspect-ratio-supported, 124px); height: 109px; right: 301px; top: 857px; width: unset; } .framer-LRcHG .framer-s53vox { bottom: 360px; } .framer-LRcHG .framer-1tyg0pg { bottom: 20px; } .framer-LRcHG .framer-cfcn4s { min-height: unset; padding: 0px 0px 80px 0px; } .framer-LRcHG .framer-2iaewh { align-content: center; align-items: center; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LRcHG .framer-1peka4z { gap: 0px; } .framer-LRcHG .framer-1peka4z > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-LRcHG .framer-1peka4z > :first-child { margin-top: 0px; } .framer-LRcHG .framer-1peka4z > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-LRcHG.framer-kchrnn { width: 390px; } .framer-LRcHG .framer-6ep27j { flex-direction: column; gap: 0px; justify-content: flex-end; padding: 105px 0px 105px 0px; } .framer-LRcHG .framer-ctt1k { flex: none; gap: 0px; padding: 15px; width: 100%; } .framer-LRcHG .framer-1imebhk, .framer-LRcHG .framer-5gm8e-container { width: 100%; } .framer-LRcHG .framer-xsnsa7 { padding: 11px 0px 11px 0px; } .framer-LRcHG .framer-1e4qa06 { width: 16px; } .framer-LRcHG .framer-1o9kfpz-container, .framer-LRcHG .framer-595l4i { flex: 1 0 0px; width: 1px; } .framer-LRcHG .framer-1peka4z { flex-direction: column; gap: 23px; padding: 22px 0px 0px 0px; } .framer-LRcHG .framer-w66h00 { height: 43%; } .framer-LRcHG .framer-1okzhhz { height: 45%; } .framer-LRcHG .framer-z343vx { overflow: hidden; padding: 80px 12px 12px 12px; } .framer-LRcHG .framer-21wxx6 { order: 0; } .framer-LRcHG .framer-1y3pge4 { left: -183px; top: 50px; } .framer-LRcHG .framer-1kbhw8m { height: var(--framer-aspect-ratio-supported, 158px); top: 157px; width: 194px; } .framer-LRcHG .framer-1ig7er0 { bottom: 114px; left: 258px; } .framer-LRcHG .framer-1s9aokz { height: var(--framer-aspect-ratio-supported, 221px); left: -24px; top: 657px; transform: unset; width: 271px; } .framer-LRcHG .framer-1nt5kuf { bottom: 51px; } .framer-LRcHG .framer-1hcayrg { order: 1; } .framer-LRcHG .framer-9uhzx6 { gap: 26px; max-width: unset; } .framer-LRcHG .framer-vetk66 { height: 218px; width: 90%; } .framer-LRcHG .framer-6m11zu { left: 30px; } .framer-LRcHG .framer-1511aau { right: 18px; top: calc(61.48760330578514% - 33px / 2); } .framer-LRcHG .framer-hnp2oa { right: -6px; top: calc(117.8512396694215% - 33px / 2); } .framer-LRcHG .framer-hee5cf { order: 2; } .framer-LRcHG .framer-uo53ig { gap: 7px; } .framer-LRcHG .framer-14k8ror { gap: 0px; justify-content: flex-start; overflow: hidden; padding: 80px 12px 100px 12px; } .framer-LRcHG .framer-3083b { gap: 26px; height: 350px; max-width: unset; } .framer-LRcHG .framer-18yae1y-container { max-width: 300px; } .framer-LRcHG .framer-1rzfdc6 { padding: 26px 0px 0px 0px; } .framer-LRcHG .framer-1wo7jdo { flex-direction: column; gap: 26px; max-width: unset; } .framer-LRcHG .framer-1cwbf0f, .framer-LRcHG .framer-pg8iev, .framer-LRcHG .framer-1kayjc5 { flex: none; width: 100%; } .framer-LRcHG .framer-cfcn4s { gap: 0px; justify-content: center; min-height: unset; padding: 26px 0px 122px 0px; } .framer-LRcHG .framer-hwomp2 { height: 396px; min-height: unset; } .framer-LRcHG .framer-2iaewh { justify-content: center; max-width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LRcHG .framer-6ep27j, .framer-LRcHG .framer-ctt1k, .framer-LRcHG .framer-1peka4z, .framer-LRcHG .framer-9uhzx6, .framer-LRcHG .framer-uo53ig, .framer-LRcHG .framer-14k8ror, .framer-LRcHG .framer-3083b, .framer-LRcHG .framer-1wo7jdo, .framer-LRcHG .framer-cfcn4s { gap: 0px; } .framer-LRcHG .framer-6ep27j > *, .framer-LRcHG .framer-ctt1k > *, .framer-LRcHG .framer-14k8ror > *, .framer-LRcHG .framer-cfcn4s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LRcHG .framer-6ep27j > :first-child, .framer-LRcHG .framer-ctt1k > :first-child, .framer-LRcHG .framer-1peka4z > :first-child, .framer-LRcHG .framer-9uhzx6 > :first-child, .framer-LRcHG .framer-14k8ror > :first-child, .framer-LRcHG .framer-3083b > :first-child, .framer-LRcHG .framer-1wo7jdo > :first-child, .framer-LRcHG .framer-cfcn4s > :first-child { margin-top: 0px; } .framer-LRcHG .framer-6ep27j > :last-child, .framer-LRcHG .framer-ctt1k > :last-child, .framer-LRcHG .framer-1peka4z > :last-child, .framer-LRcHG .framer-9uhzx6 > :last-child, .framer-LRcHG .framer-14k8ror > :last-child, .framer-LRcHG .framer-3083b > :last-child, .framer-LRcHG .framer-1wo7jdo > :last-child, .framer-LRcHG .framer-cfcn4s > :last-child { margin-bottom: 0px; } .framer-LRcHG .framer-1peka4z > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-LRcHG .framer-9uhzx6 > *, .framer-LRcHG .framer-3083b > *, .framer-LRcHG .framer-1wo7jdo > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-LRcHG .framer-uo53ig > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-LRcHG .framer-uo53ig > :first-child { margin-left: 0px; } .framer-LRcHG .framer-uo53ig > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6798\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"H16n3Tmgz\":{\"layout\":[\"fixed\",\"auto\"]},\"HegDjfVJV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"fdWX7mycf\":{\"pattern\":\":fdWX7mycf\",\"name\":\"aftermovie\"}}\n * @framerResponsiveScreen\n */const FramerGYQYWcM8K=withCSS(Component,css,\"framer-LRcHG\");export default FramerGYQYWcM8K;FramerGYQYWcM8K.displayName=\"Page\";FramerGYQYWcM8K.defaultProps={height:6798,width:1140};const variationAxes=[{defaultValue:400,maxValue:700,minValue:100,name:\"Weight\",tag:\"wght\"},{defaultValue:0,maxValue:10,minValue:0,name:\"Slant\",tag:\"slnt\"}];addFonts(FramerGYQYWcM8K,[{explicitInter:true,fonts:[{family:\"Hatch Mono 25 Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/2HhgBhdgVOpqJnJCxas7eCwb2e4.woff2\",variationAxes},{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:\"Geist Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/frJ5q4NHnnex5RR436powUFHE1I.woff2\"}]},...ButtonButtonFonts,...ReviewSpinnerFonts,...PixelTrailFonts,...HatchIconFonts,...YouTubeFonts,...VideoFonts,...ElementsTopicTagFonts,...HomeHeaderIcon3Fonts,...HomeHeaderIconUpFonts,...HomeHeaderIconLoveFonts,...TextWrapFonts,...DayCardBigFonts,...HomeSpeakersFonts,...TicketsTeaserFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGYQYWcM8K\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"6798\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H16n3Tmgz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HegDjfVJV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"fdWX7mycf\\\":{\\\"pattern\\\":\\\":fdWX7mycf\\\",\\\"name\\\":\\\"aftermovie\\\"}}\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1140\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "TextWrap", "layers", "text", "slot", "font", "color", "layerGap", "transform", "layerAlign", "decoration", "balance", "userSelect", "tag", "style", "Tag", "parts", "content", "i", "p", "InlineLayer", "addPropertyControls", "ControlType", "props", "children", "align", "gap", "OpenType", "Component", "Y", "props", "ref", "p", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "CWjybAqsV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FramerC6PpHdl17", "withCSS", "C6PpHdl17_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText2", "SVG", "css", "FramerCYcJqTRPY", "withCSS", "CYcJqTRPY_default", "variationAxes", "addFonts", "InfiniteCarousel", "items", "arrowColor", "leftIcon", "rightIcon", "position", "setPosition", "ye", "isAtStart", "setIsAtStart", "isAtEnd", "setIsAtEnd", "carouselRef", "pe", "itemWidth", "setItemWidth", "carouselWidth", "setCarouselWidth", "containerWidth", "setContainerWidth", "ue", "firstItemWidth", "totalWidth", "acc", "child", "handleNext", "prev", "newPos", "u", "p", "motion", "item", "index", "text", "addPropertyControls", "ControlType", "DitheredZXFonts", "getFonts", "DitheredZX", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "animation", "toImageSrc", "value", "toResponsiveImage", "isSet", "negate", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "company", "height", "id", "image", "link", "logo", "name1", "position", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "WL11LsHcD", "Y02HNE7Sa", "fhHCj0cD_", "UPIa26gMY", "FSlkPxHFg", "B5EUebd5g", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1r02aus", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "visible", "visible1", "isDisplayed3", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerxi7gNxZQc", "withCSS", "xi7gNxZQc_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts", "TicketsTeaserSwitchButtonFonts", "getFonts", "zmDQ9Suvk_default", "SpeakerCarouselItemFonts", "xi7gNxZQc_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "InfiniteCarouselFonts", "InfiniteCarousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "addImageAlt", "image", "alt", "transition3", "transition4", "transition5", "transition6", "transition7", "animation1", "toResponsiveImage", "value", "isSet", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "U8wWyZCvov4o5W5_Nx", "XEhR3OmJp_COXwqHgm1v4o5W5_Nx", "XEhR3OmJp_ysYPmRd4Bv4o5W5_Nx", "XEhR3OmJp_vC4XXtDTPv4o5W5_Nx", "XEhR3OmJp_VrP5KQF0ov4o5W5_Nx", "idv4o5W5_Nx", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "xsKLZZ0cFcw1pni", "args", "xsKLZZ0cF13kh3n", "xsKLZZ0cF1yoqxri", "xsKLZZ0cF3cxlma", "xsKLZZ0cF1u2c6wy", "xsKLZZ0cFi9d8sw", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "zmDQ9Suvk_default", "RichText2", "ResolveLinks", "resolvedLinks", "SmartComponentScopedContainerWithFX", "transition2", "animation", "xi7gNxZQc_default", "addImageAlt", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "InfiniteCarousel", "resolvedLinks4", "transition3", "resolvedLinks5", "transition4", "resolvedLinks6", "transition5", "resolvedLinks7", "transition6", "ChildrenCanSuspend", "j2XzBPy52_default", "KnvdyLCs9_default", "collection", "paginationInfo", "loadMore", "l", "index", "visible", "isSet", "PathVariablesContext", "Link", "animation1", "Image2", "toResponsiveImage", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "resolvedLinks18", "resolvedLinks19", "resolvedLinks20", "resolvedLinks21", "css", "FramerDrR4eLLVl", "withCSS", "DrR4eLLVl_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts", "TicketsTeaserSwitchButtonFonts", "SpeakerCarouselItemFonts", "InfiniteCarouselFonts", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "RichTextWithFXWithOptimizedAppearEffect", "RichText2", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "transition6", "animation5", "transition7", "animation6", "animation7", "transition8", "animation8", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "MotionDivWithFXWithOptimizedAppearEffect", "SVG", "RichTextWithFXWithOptimizedAppearEffect", "css", "FramerewwruNBJ0", "withCSS", "ewwruNBJ0_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText2", "SVG", "css", "FramerlTUdsAyqt", "withCSS", "lTUdsAyqt_default", "variationAxes", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntern3gnja", "args", "onAppear1jstmxa", "onAppearqkmn8u", "onAppear1b6j4bh", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "css", "FramerPndKS1aLH", "withCSS", "PndKS1aLH_default", "addPropertyControls", "ControlType", "addFonts", "ButtonButtonFonts", "getFonts", "vpgtN4EAU_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "amount", "date", "height", "id", "image", "line1", "line2", "link", "price", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "MXrSjmbOY", "ndV3z6mOK", "IWdQrsaEh", "AkuOpGRJO", "jP6RylglM", "hDIBUGzFq", "sS0F1CWTp", "jukcEaKBm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "visible", "isDisplayed1", "visible1", "isDisplayed2", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerV_ZaC2iIM", "withCSS", "V_ZaC2iIM_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "ButtonButtonFonts", "getFonts", "vpgtN4EAU_default", "ContainerWithOptimizedAppearEffect", "Container", "ReviewSpinnerFonts", "ewwruNBJ0_default", "MotionAWithOptimizedAppearEffect", "PixelTrailFonts", "PixelTrail", "ImageWithFX", "withFX", "Image2", "HatchIconFonts", "tUFYsoERm_default", "RichTextOpenTypen4kwc1", "withCodeBoundaryForOverrides", "OpenType", "YouTubeFonts", "Youtube", "VideoFonts", "Video", "MotionDivWithFX", "ElementsTopicTagFonts", "C6PpHdl17_default", "ContainerWithFX", "RichTextWithFX", "HomeHeaderIcon3Fonts", "PndKS1aLH_default", "HomeHeaderIcon3WithVariantAppearEffect", "withVariantAppearEffect", "HomeHeaderIconUpFonts", "lTUdsAyqt_default", "HomeHeaderIconLoveFonts", "CYcJqTRPY_default", "TextWrapFonts", "TextWrap", "DayCardBigFonts", "V_ZaC2iIM_default", "HomeSpeakersFonts", "DrR4eLLVl_default", "TicketsTeaserFonts", "MxmYqJt6N_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "transition7", "animation8", "transition8", "animation9", "transition9", "animation10", "transition10", "animation11", "transition11", "animation12", "transition12", "animation13", "transition13", "animation14", "animation15", "transition14", "animation16", "animation17", "animation18", "animation19", "animation20", "transformTemplate1", "_", "t", "animation21", "animation22", "transition15", "animation23", "animation24", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation25", "transition16", "animation26", "transition17", "transition18", "transition19", "transition20", "transition21", "transition22", "transition23", "transition24", "transition25", "transition26", "transition27", "transition28", "animation27", "transition29", "transition30", "transition31", "addImageAlt", "image", "alt", "transition32", "transition33", "transition34", "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", "router", "useRouter", "isDisplayed", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Link", "SVG", "l", "AnimatePresence", "Ga", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FramerGYQYWcM8K", "withCSS", "GYQYWcM8K_default", "variationAxes", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
